﻿#dropmenu{
	list-style-type: none;
	width: 900px;
	height: 30px;
	margin: 0px auto 0px auto;
	padding: 0;
	background: #0033cc;
	border-bottom: 5px solid #000080;
	border-radius: 3px 3px 0 0;
	z-index: 9999;
	position: relative;
}
#dropmenu li{
	position: relative;
	width: 16.6667%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
	border-bottom-color: #0000FF;
}
#dropmenu li a{
	display: block;
	margin: 0;
	padding: 15px 0 11px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-decoration: none;
	background-color: #0033cc;
	border-bottom-color: #000080;
	border-bottom-width: 5px;
	border-bottom-style: solid;
}
#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
	padding: 0;
  border-radius: 0 0 3px 3px;
}
#dropmenu li:last-child ul{
  left: -100%;
  width: 100%
}
#dropmenu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#dropmenu li ul li a{
	padding: 13px 15px;
	background: #000080;
	text-align: left;
	font-size: 12px;
	font-weight: normal;
	border-bottom-color: #000066;
	background-color: #000080;
	border-bottom-style: solid;
}
#dropmenu li:hover > a{
	background: #000080;
	color: #00FF00;
	border-bottom-color: #008080;
}
#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #7c8c0e;
  border-bottom: 1px solid #616d0b;
}
#dropmenu li:hover ul li:first-child{
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}