@charset "UTF-8";

#menu {
	background-color: #00aeef; 
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	height: 39px;
	font-size: 1.4em;
	font-weight: normal;
	text-transform: capitalize;
	padding-left: 12px;
	margin-top: 14px;
}
#menu ul, #menu li {
	list-style:none;
	padding:0;
	margin:0;
	display:inline;
}
#menu ul {
}
#menu ul li {
	float:left;
	position:relative;
}
#menu ul li a {
	display:block;
	margin-top: 3px; /* gap between hover block and top of menu bar */
	margin-bottom: -3px;
	padding:8px 20px 0 20px;
	height: 28px; /* this + padding + margin = overall height of menu bar */
	font-family: Helvetica, sans-serif;
	color : #FFFFFF;
	text-decoration : none;
	font-weight: normal;
	text-transform:uppercase;
	letter-spacing: 0.1em;
	white-space:nowrap;
	border-radius:6px;
	border-bottom-left-radius:0px;
	border-bottom-right-radius:0px;
}
#menu ul li a:hover {
	background:#fff;
	color: #00aeef;
}
#menu ul ul {
	position:absolute;
	top:-99999px;
	left:0;
	opacity: 0; /* Hide sub level */
 -webkit-transition: opacity .5s ease-in-out;
 -moz-transition: opacity .5s ease-in-out;
 -o-transition: opacity .5s ease-in-out;
	z-index:497;
	background:#fff;
	padding-bottom: 6px;
	border-top:none;
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
}
#menu ul ul li {
	height: 22px; /*height of each li in the dropdown - NOT the height of the li hover block*/
	padding-bottom: 6px;
	margin-top: -3px;
	width: 180px;
}
#menu ul ul li a {
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	font-size: 12px;
	color:#329c48;
	text-transform: capitalize;
	letter-spacing: 0;
	border: 0;
	line-height: 14px;
	border-radius: 0;
	height: 18px /*height of the background block when not hovered - inherited by the hover*/
}
#menu ul ul li a:hover {
	background-color: #329c48;
	color:#fff;
	border-radius: 0;
}
#menu ul ul ul {
	position:absolute;
	top:-99999px;
	left:100%;
	opacity: 0;
 -webkit-transition: opacity .5s ease-in-out; /* Hide sub levels */
 -moz-transition: opacity .5s ease-in-out;
 -o-transition: opacity .5s ease-in-out;
	border-radius:6px;
	border-top-left-radius:0;
}
#menu ul li:hover>ul {
	opacity: 0.8;
	position:absolute;
	top:39px; /*controls position of the dropdown upon hover - This should be the same value as the menu height*/
	left:0;
}
#menu ul ul li:hover>ul {
	position:absolute;
	top:0;
	left:100%;
	opacity: 1;
	z-index:497;
	background:#fff;
}