ul#nav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#nav li .sub {
	position: absolute; /*--Important--*/
	top: 35px; left: -250px;
	z-index: 99999;
	background: #3c3c3c url(../images/sub_bg.png) repeat-x; /*--Background gradient--*/
	padding: 20px 20px 20px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
	border:1px solid #262626;
	border-top:0;
}
ul#nav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 5px;
}
ul#nav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 150px;
	float: left;
}
ul#nav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
}
ul#nav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size:13px;
	font-weight: normal;
	color: #079cce;
	font-weight:700;
}
ul#nav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #079cce;
	font-weight:700;
}
ul#nav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	background: url(../images/navlist_arrow.png) no-repeat 5px 5px;
	padding: 2px 2px 2px 2px;
	display: block;
	text-decoration: none;
	color: #fff;
	font-size:11px;
}
ul#nav .sub ul li a:hover {
	color: #079cce;
	background-position: 5px 12px ;/*--Override background position--*/
}