/* ================================================================ 
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_drop2.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.
=================================================================== */

/* style the outer div to give it width */
.menu {
width:100%; 
margin-left:120px;
}

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

/* 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:95px;
position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:10px;
text-decoration:none; 
color:#000000; 
width:95px; 
height:20px; 
text-transform:uppercase;
line-height:20px;
}

.menu a:hover, a.active {
background:none;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:none;
background-image: none;
}

/* style the second level hover */
.menu ul ul a.drop:hover{
background-color:#fcf9e1;
background-image: none;
}

.menu ul ul :hover > a.drop {
background-color:#fcf9e1;
background-image: none;
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background-color:#fcf9e1;
background-image: none;
}

/* 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;
border-top:5px solid #1d266b;
left:0; 
width:150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
color:#000000;  
line-height:2em; 
padding:5px 0px 2px 0px; 
width:95px;
height: 20px;
background-color: #FFFFFF;
/*background:transparent url(images/opaque.png);*/
filter:alpha(opacity=80); 
opacity: 0.8;
-moz-opacity:0.8; 
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover, .menu a.hide_starter_active {
color:#000000; 
outline:none;
background:#fcf9e1 url(images/navitopdot.gif) no-repeat bottom;
}

.menu ul ul a:hover {
color:#000000;
background: none;
}

.menu :hover > a, .menu ul ul :hover > a {
color:#212A63;
outline:none;
background-color:#fcf9e1;
}

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