#menu 
{
    /*box*/
    height: 30px;
    padding: 0;
    margin: 0;
}
.dropdown 
{
    /*box*/
    padding-right:0px;
    /*position*/
    float:left; 
}
.dropdown dt
{
    /*box*/
    width:110px; 
    border:2px solid #9ac1c9;
    padding:8px;
    background:url('../images/header.gif'); 
    /*font*/
    color: #000000;
    font-weight:bold;
    /*misc*/
    cursor:pointer; 
}
dt .rightborder
{
    border-right: solid 1px red;
}
.dropdown dt a
{
    /*font*/
    color: #000000;
    font-weight:bold;
    text-decoration: none;
}
.dropdown dt:hover 
{
    /*box*/
    background:url('../images/header_over.gif')
}
.dropdown dd 
{
    /*box
    width:130px; */
    background:#9ac1c9;
    /*position*/
    position:absolute;
	overflow:hidden;
    display:none;
    margin-left: 0px;
    z-index:200; 
}
.dropdown ul 
{
    /*box
    width:89px; */
    border:1px solid #9ac1c9;
    border-top:none;
    /*font*/
    list-style:none; 
}
.dropdown li
{
    /*position*/
    display:inline;
}
.dropdown li a  
{
    /*box*/
    width:118px;
    background-color:#eaf0f2;
    padding:5px; 
    /*position*/
    display:block;
    margin-left: -40px;
    /*font*/
    color:#333; 
    text-decoration:none; 
    font-weight: bold;
}
.dropdown li a:hover
{
    /*box*/
    background:#b9d6dc;
    /*font*/
    color:#000
}
.dropdown .underline 
{
    /*box*/
    border-bottom:1px solid #b9d6dc
}