ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 50px;
}
ul#topnav li:hover a, ul#topnav li a:hover { background-position: left bottom; } /*--Hover State--*/
ul#topnav a.home {
	background: url(../_img/home_btn.jpg) no-repeat;
	width: 74px;
}
ul#topnav a.about {
	background: url(../_img/about_btn.jpg) no-repeat;
	width: 55px;
}
ul#topnav a.services {
	background: url(../_img/services_btn.jpg) no-repeat;
	width: 74px;
}
ul#topnav a.patient {
	background: url(../_img/patient_btn.jpg) no-repeat;
	width: 95px;
}
ul#topnav a.contact {
	background: url(../_img/contact_btn.jpg) no-repeat;
	width: 66px;
}
ul#topnav a.resources {
	background: url(../_img/resources_btn.jpg) no-repeat;
	width: 83px;
}

/* Sub Styles */
ul#topnav li .sub {
	position: absolute; /*--Important--*/
	top: 47px; left: 0;
	z-index: 99999;
	background: #0858a0; /*--Background gradient--*/
	padding: 15px 15px 15px;
	float: left;
	
	display: none; /*--Hidden for those with js turned off--*/
}

ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 150px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
}


ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	padding: 10px 0 10px 0;
	display: block;
	text-decoration: none;
	color: #fff;
}
ul#topnav .sub ul li a:hover {
	color: #ddd;
	text-decoration: underline;
}