/* CSS Document */
/* CSS Document */

#menu {
z-index:1000;
width:700px; 
font-size:12px;
font-family:Arial, Helvetica, sans-serif;
position:relative;
}
/* remove all the bullets, borders and padding from the default list styling */
#menu ul {
padding:0;
margin:0;
list-style-type:none;
}
#menu ul ul {
width:140px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#menu li {
float:left;
width:140px;
position:relative;
}
/* style the links for the top level */
#menu a, .menu a:visited {
display:block;
font-size:12px;
text-decoration:none; 
color:#ded6c9;
background:#8C2135;  
width:140px; 
height:20px; 
border:1px solid #fff; 
border-width:0px; 
line-height:20px;
text-align:center;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #menu a, * html #menu a:visited {
width:140px;
}

/* style the second level background */
#menu ul ul a.drop, #menu ul ul a.drop:visited {
color:#ded6c9;
background:#8C2135; 
}
/* style the second level hover */
#menu ul ul a.drop:hover{
color:#000000;
background:#DECD92;
}
/* style the second level hover */
*html #menu ul ul li a:hover {
color:#000000;
background:#DECD92;
}
#menu ul ul :hover > a.drop {
color:#000000;
background:#DECD92;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:20px;
left:0; 
width:140px;
z-index:1000;
}
/* another hack for IE5.5 */
* html #menu ul ul {
top:20px;
t\op:20px;
}

/* style the second level links */
#menu ul ul a, #menu ul ul a:visited {
background:#8C2135; 
color:#ded6c9; 
text-align:left;
height:auto; 
line-height:1em; 
padding:5px 5px; 
width:130px;
}
*html #menu ul ul a, *html #menu ul ul a:visited {
background:#8C2135;
color:#ded6c9; 
height:auto; 
line-height:1em; 
padding:5px 5px; 
width:140px;
}
/* style the top level hover */
#menu li:hover,
#menu a:hover{
color:#000000;
background:#DECD92;
}
#menu ul ul a:hover{
color:#000000;
background:#DECD92;
}
#menu :hover > a {
color:#000000;
background:#DECD92;
}
#menu ul ul :hover > a {
color:#000000;
background:#DECD92;
}
/* make the second level visible when hover on first level list OR link */
#menu ul li:hover ul,
#menu ul li.sfhover ul{
visibility:visible; 
}

.clear {
clear:both;
}
