@charset "utf-8";
/* CSS Document */

/*-----------------------------
   menu styles
-----------------------------*/
.menu {
width: 990px;
height: 30px;
position: absolute;
top: 95px;
left: 0;
font: normal 11px Verdana,Arial,Helvetica,sans-serif;
}
* html .menu { /*IE only. Add 1em spacing between menu and rest of content*/
margin-bottom: 1em;
}
.menu ul {
list-style-type: none;
margin:0;
padding:0;
}
.menu li {
display:inline;
margin:0;
padding:0;
}
.menu a:link, .menu a:visited {
cursor: pointer;
display:block;
width: 150px;
margin-right: 5px;
padding:8px 2px 9px 8px;
font-weight:bold;
color:#fff;
background-color: #999;
text-decoration:none;
float:left;
}
.menu a:hover {
color: #ff0;
background-color: #666;
}
.menu .selected a:link {
color: #fff;
background-color: #666;
}
.menu .selected a:hover {
color: #ff0;
background-color: #666;
}
html>/**/body .IEonlybr { /*None IE browsers hack*/
display: none; /*Hide BR tag in non IE browsers, since it's not needed*/
}
/*-----------------------------
   drop down menu styles
-----------------------------*/
.dropmenudiv {
width: 160px;
height: auto;
position: absolute;
top: 125px;
left: 0;
font: normal 10px Verdana,Arial,Helvetica,sans-serif;
z-index: 999;
background-color: #666;
visibility: hidden;
}
.dropmenudiv ul {
float: left;
margin: 12px 0 12px 0;
list-style: none;
border-left: 1px solid #000; /* controls left border */
padding: 0 10px 0 10px; /* controls padding around lists */
}
.dropmenudiv ul a:link, .dropmenudiv ul a:visited {
text-decoration: none;
color: #fff;
}
.dropmenudiv ul a:hover { /*THEME CHANGE HERE*/
color: #ff0;
}
.dropmenudiv ul.topics {
border-left: 0;
padding: 0 8px 0 10px; /* controls padding around lists */
}
.dropmenudiv li {
font-size: 10px;
font-weight: bold;
margin: 0 0 15px 0;
padding: 0;
}
* html .dropmenudiv a:link { /*IE only hack*/
width: 100%;
}
