ul.topnav {   
    list-style: none;
    padding: 0;   
    margin: 0;   
    float: left;   
    width: 780px;   
    font-size: 13px; 
}   
ul.topnav li {   
    float: left;   
    margin: 0;   
    padding: 0;
    position: relative; /*--Declare X and Y axis base for sub navigation--*/  
	display: block;
	width: 155px;
}   
ul.topnav li a{   
    padding: 12px 5px;   
    color: #00adef;   
    display: block;   
    text-decoration: none;   
    float: left;   
	font-weight: bold;
	cursor: pointer;
}   
ul.topnav li a:hover{   
	color: rgb(0,70,135);
}   
ul.topnav li a img {
	border: 0;
	margin-right: 5px;
}
ul.topnav li span { /*--Drop down trigger styles--*/  
    width: 17px;   
    height: 35px;   
    float: left;   
    background: url(img/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: 40px;   
    background: white; /*#333;*/
    margin: 0; padding: 0;   
    display: none;   
    float: left;   
    width: 170px;   
    border: 1px solid #111;   
}   
ul.topnav li ul.subnav li{   
    margin: 0; padding: 0;   
    border-top: 1px solid rgb(230,230,230); /*--Create bevel effect--*/  

    clear: both;   
    width: 170px;   
	font-size: 12px;
}   
html ul.topnav li ul.subnav li a {   
    float: left;   
    width: 145px;   
    background: rgb(240,240,240) url(img/dropdown_linkbg.gif) no-repeat 10px center;   
    padding-left: 20px;   
}   
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/  
    background: gray url(img/dropdown_linkbg.gif) no-repeat 10px center;   
	color: white;
}  
