@charset "utf-8";
/* CSS Document */


/* style the dropdown menus */
.dmenu {
display: none; /* REQUIRED dont display them to begin with */
position: absolute; /* REQUIRED enables javascript to position them below the right tab */
z-index: 100; /* REQUIRED makes sure they appear on top of other content on the page */
margin: 40px 0 0 0; /* display them 21px below the top of the tabs. this is a kind of average value for the height of the tabs, which seems to vary slightly between browsers */
padding: 0px; /* put some space around the contents */
float:none;
background:#7c7f28;
text-align: left; /* just in case */
}


ul#tabbar { list-style-type:none; margin:0px auto; padding:0px;width:800px;background:#ba3500; }
ul#tabbar li { float:left; margin:0px; padding:0; }
ul#tabbar li a { float:left;height:40px;display:block;vertical-align:middle;text-transform:uppercase;color:#ffa223;font-weight:normal;text-decoration:none;padding:0px 15px 0px 15px;text-align:center;font-size:14px;font-family:Arial;line-height:40px;}
ul#tabbar li a:hover { color:#000; }
ul#tabbar li.tabselected a { color:#000; text-decoration:none; }

