ul.topnav {
	list-style: none;	
	margin: 0;	
	width: 45px;
	background: #222;	
}
ul.topnav li {
	float: left;
	margin: 0;	
	padding: 0 10px 0 0;
	position: relative; /*--Declare X and Y axis base for sub navigation--*/
}
ul.topnav li a{
	padding: 5px;
	color:black;
	display: block;
	text-decoration: none;
	float: left;
}

ul.topnav li span { /*--Drop down trigger styles--*/
	width: 17px;
	height: 35px;
	float: left;
	background: url(subnav_btn.gif) no-repeat center top;
}
ul.topnav li span.subhover {background-position: center bottom; cursor: pointer;} /*--Hover effect for trigger--*/
ul.topnav li ul.subnav {
	list-style: none;
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	/*left: 0; top: 35px;*/
	left:0px; top:28px;    
	background: #E3ECF1;
	margin: 0; padding: 0;
	display: none;
	float: left;
	width: 120px;
	border:none!important; 
    border-radius:4px;
    padding: 3px 0px 3px 0px;
    text-align:center;
    z-index:1
}
ul.topnav li ul.subnav li{
	margin: 0; padding: 0;
	 
	clear: both;
    width:100%;
    border-radius:6px;
}
html ul.topnav li ul.subnav li a {
    display:block;
    width:100%;
	background: #E3ECF1 url(dropdown_linkbg.gif) no-repeat 10px center;
	/*padding-left: 10px;*/
    line-height:30px!important;
    padding:0 15px!important
}
    html ul.topnav li ul.subnav li a.logout:hover {background:#1ab394!important; 
    color:white;
    }
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	background:#293846!important; 
    color:white;
}
html ul.topnav li ul.subnav li a:hover span { /*--Hover effect for subnav links--*/
    color:white;
}