/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
width: 920px; 
margin: 0px auto; padding: 0px;
position: relative;
z-index: 1;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding: 0px; margin: 0px;
font-size: 12px;
text-align: center;
list-style-type: none;
}
.menu ul ul {
padding: 0px; margin: 0px;
font-size: 11px;
text-align: left;
}
/* 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: 113px;
margin: 0px 1px; padding: 0px;
position: relative;
}
/* style the links for the top level */
.menu li a {
display: block;
text-decoration: none; font-weight: bold; letter-spacing: 1px;
color: #000; 
width: 113px; 
height: auto; 
background: url('../interface/navbar-bgd1.png') repeat;
padding: 0px 0px 0px 0px; 
margin: auto 0px; 
line-height: 30px;
}
.menu li a:hover {
color: #000; 
background: url('../interface/navbar-bgd2.png') repeat;
}
.menu li a:active {
color: #FFF; 
background: url('../interface/navbar-bgd3.png') repeat;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width: 113px;
w\idth: 111px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background: #FFF;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background: #000;
}
.menu ul ul :hover > a.drop {
background: url('../interface/transparency-light.png') repeat;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#FFF;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#000;
}


/* 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: 0px;
top: 30px;
left: 0; 
width: 113px;
border-top: 5px solid #000;
}
/* another hack for IE5.5 */
* html .menu ul ul {
margin-left: -3px;
top: 29px;
t\op: 30px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left: 113px; 
top: 0px;
width: 113px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left: -113px;
}

/* 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;}

/* style the second level links */
.menu li li a, .menu li li a:visited {
background: #FFF; border-bottom: 1px solid #999;
color: #000; text-decoration: none; font-weight: normal;
height: auto;
line-height: 16px;
padding: 2px 5px; margin: 0px 0px 0px -1px;
width: 103px;
w\idth: 103px;
}
.menu li li a:hover {
background: #000; border-bottom: 1px solid #999; 
color: #FFF; text-decoration: none; 
}
.menu li li a:active {
background: url('../interface/transparency-light.png') repeat; border-bottom: 1px solid #999; 
color: #000; text-decoration: none; 
}
/* yet another hack for IE5.5 */
* html .menu ul ul a{
width: 113px;
w\idth: 93px;
}
/* style the top level hover
.menu a:hover, .menu ul ul a:hover{
color:#000; 
background:#A0BBDD;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#4277BC;
background:#FFD90F;
}
 */
/* 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; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}

