﻿.menu 
{
    width:830px; 
    height:32px; 
    font-size:0.85em; 
    position:relative; 
    z-index:100;
	text-align:center;
	margin:0 auto;
}

/* hack to correct IE5.5 faulty box model */
* html .menu 
{
    width:830px; 
    w\idth:830px;
}

/* 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:138px;
	overflow:visible;
}

/* 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:138px;
    position:relative;
	overflow:visible;
}

/* style the links for the top level */
.menu a, .menu a:visited 
{
    display:block;
	text-align:center;
	font-weight:bold;
    font-size:11px;
    text-decoration:none; 
    color:#706f74; 
    width:138px; 
    height:30px; 
    line-height:29px;
	overflow:visible;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
{
    width:138px; 
    w\idth:138px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{
    background-color:#333333;
	color:#ffffff;
	font-weight:normal;
	text-decoration:none;
	text-align:left;
}

/* style the second level hover */
.menu ul ul a.drop:hover
{
    background-color:#f0f0f1;
	color:#3773a5;
	font-weight:normal;
	text-decoration:none;
	text-align:left;
}
.menu ul ul :hover > a.drop 
{
    background-color:#f0f0f1;
	text-align:left;
}

/* 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:30px;
    left:0; 
    width:250px;
}

/* another hack for IE5.5 */
* html .menu ul ul 
{
    top:30px;
    t\op:30px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table 
{
    position:absolute; 
    top:0; 
    left:0; 
    border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
{
    color:#000; 
    height:auto; 
    line-height:1em; 
    padding:10px; 
    width:250px;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited 
{
    width:250px;
    w\idth:220px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover
{
    color:#3773a5; 
    background:none;
}

.menu :hover > a, .menu ul ul :hover > a 
{
    color:#3773a5; 
    background:none;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul
{
    visibility:visible; 
}
