@charset "utf-8";
/* CSS Document */
div.buttonsContainer {
	background-color:#ffcc00;
	margin:0px;
	padding:0px;
}

ul.topnav {
	list-style:none;
	float: left;
	margin:0px;
	padding:0px;
	height:62px;
}
ul.topnav li {
	list-style:none;
	float: left;
	margin: 0px;	
	padding: 0px;
	position: relative; /*--Declare X and Y axis base--*/ 

}


ul.topnav li a{
	padding: 0px;
	display: block;
	text-decoration: none;
	float: left;
	border:0px;
}

ul.topnav li a.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/

ul.topnav li ul.subnav {
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left: 0; 
	top: 57px;
	background: #151515;
	margin:0px; 
	padding:0px;
	display: none;
	float: left;
	width: 160px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border: 1px solid #111;
	z-index:999;
}

ul.topnav li ul.subnav li{
	margin: 0px; 
	padding: 3px;
	border-top: 1px solid #252525; /*--Create bevel effect--*/
	border-bottom: 1px solid #444; /*--Create bevel effect--*/
	clear: both;
	width: 160px;
	height:65px;
}

ul.topnav li ul.subnav li.textOnly{
	margin: 0px; 
	padding: 3px;
	border-top: 1px solid #252525; /*--Create bevel effect--*/
	border-bottom: 1px solid #444; /*--Create bevel effect--*/
	clear: both;
	width: 160px;
	height:35px;
}


html ul.topnav li ul.subnav li a {
	float: left;
	padding-left: 3px;
	color:#fff;
	border:0px;
}

html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/

}

html ul.topnav li ul.subnav li a img {
	border:0;
}