@charset "UTF-8";
ul.topnav {
list-style: none;
padding: 0 20px;
margin: 0;
float: left;
width: 920px;
font-size: 1.2em;
background:transparent;
}
ul.topnav li {
float: left;
margin: 0 0 0 10px;
padding: 0 10px 0 0;
position: relative; /*--Declare X and Y axis base for sub navigation--*/
border-right:1px solid #872d2c;
height:29px;
}
ul.topnav li a {
padding:7px 5px;
color: #fff;
display: block;
text-decoration: none;
float: left;
font-size:12px;
font-weight:bold;
}
ul.topnav li a:hover {
background:#881a1c;
}
ul.topnav li span { /*--Drop down trigger styles--*/
width: 15px;
height: 35px;
float: left;
margin:0 0 0 5px;
background: url(../images/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: -10px; top: 30px;
margin: 0; padding: 0;
display: none;
float: left;
width: 180px;
}
ul.topnav li ul.subnav li{
margin: 0; padding: 0;
border-bottom: 1px solid #fff; /*--Create bevel effect--*/
border-right:none;
clear: both;
width:170px;
background:#bb2225;
}
html ul.topnav li ul.subnav li a {
float: left;
width: 95%;
background:#bb2225;
padding-left: 10px;
}
html ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
background:#881a1c;
}
