/* -----------------------------------*/
/* >> Dropdown Navigations <<<-----*/
/* -----------------------------------*/

#nav {
	margin: 0px;
	padding: 0px;
	list-style: none;
	float: right;
	width: 640px;
	position: relative;
	height: 100%;
}
#nav ul {
	background: transparent;
	width: 635px;
}


#nav li {
	position: relative;
	display: inline-block;
	float: right;
	color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	font-family: tahoma, Arial;
	font-size: 11px;
	height: 99%;
}

#nav li li{
	background: url(none)!important;
	padding: 0px!important;
	font-family: tahoma, Arial;
	font-size: 10px;
	float: left;

	}

#nav li ul {
	position: absolute;
	left: 0px; /* Set 1px less than menu width */
	top: 39px;
	display: none;
	float: left;
	margin: 0px;
	padding: 0px;
	width: 250px;
	border-right: 0px none;
	border-bottom: 0px none;
	border-left: 0px none;
	border-top-width: 0px;
	border-top-style: none;
	list-style-type: none;
	font-family: tahoma, Arial;
	font-size: 11px;
	z-index: 1000;
	}

/* Styles for Menu Items */
#nav li a {
	text-decoration: none;
	color: #FFFFFF;
	display: inline-block;
	padding: 10px 10px;
	margin: 0px;
	float: left;
	font-size: 11px;
	font-weight: bold;
	height: 19px;
	}
#nav li a:hover {
	text-decoration: none;
	color: #FFFFFF;
	display: inline-block;
	padding: 10px 10px 10px 10px;
	margin: 0;
	float: left;
	font-size: 11px;
	height: 19px;
	background: url(images/ns.png) repeat-x;
	font-weight: bold;
	}

#nav ul li a {
	text-decoration: none;
	color: #FFFFFF;
	display: inline-block;
	padding: 4px 12px 4px 14px;
	margin: 0 0 0 0;
	float: left;
	background: #272727;
	border-bottom: 0px none;
	width: 120px;
	font-size: 11px;
	line-height: 18px;
	border-left: 0px none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-top-style: none;
	border-right-style: none;
	font-weight: 500;
	}
#nav ul li a:hover {
	text-decoration: none;
	color: #FFFFFF;
	display: inline-block;
	background: #066C82!important;
	padding: 4px 12px 4px 14px;
	margin: 0 0 0 0;
	float: left;
	border-bottom: 0px none;
	width: 120px;
	font-size: 11px;
	line-height: 18px;
	border-left: 0px none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-top-style: none;
	border-right-style: none;
	font-weight: 500;
	}

/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#nav li:hover ul, #nav li.over ul { display: block; } /* The magic */

