/* ================================================================ 
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:625px; 
font-family: verdana, arial, sans-serif;
font-size:10px;
text-align:left;
z-index:600;
position:relative;
margin:0px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
border:0;
}

.menu ul ul {
width:190px;
background:#9e9620;
padding:0px;
padding-top:6px;
padding-bottom:6px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #787118;
}
/* 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:auto;
position:relative;
height:18px;
}


/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding-left:15px;
height:18px;
line-height:1.75em;
margin:0px;
border:0;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:auto;
w\idth:100px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background-image:url(../Images/flyoutBkgd.gif);
background-repeat:no-repeat;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
line-height:1.75em;
margin:0px;
border:0;
width:175px;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background-image:url(../Images/flyoutBkgd-over.gif);
background-repeat:no-repeat;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
height:18px;
line-height:1.75em;
margin:0px;
border:0;
width:175px;
}
.menu ul ul :hover > a.drop {
background-image:url(../Images/flyoutBkgd-over.gif);
background-repeat:no-repeat;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
height:18px;
line-height:1.75em;
margin:0px;
border:0;
width:175px;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background-image:url(../Images/flyout2Bkgd.gif);
background-repeat:no-repeat;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
height:18px;
line-height:1.75em;
width:175px;
margin:0px;
border:0;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background-image:url(../Images/flyout2Bkgd-over.gif);
background-repeat:no-repeat;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
height:18px;
line-height:1.75em;
width:175px;
margin:0px;
border:0;
}


/* 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:auto;
top:20px;
left:0; 
width:auto;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:20px;
t\op:21px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:190px; 
top:-6px;
width:190px;
background:#787118;
padding-top:6px;
padding-bottom:6px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #524d10;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-190px;
}

/* 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; margin:0; padding:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background-image:url(../Images/flyoutBkgd.gif);
background-repeat:no-repeat;
width:190px;
margin:0px;
border:0;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:190px;
w\idth:149px;
}


/* style the top level hover - THIS STOPS IE 6 FROM WORKING IF YOU DELETE BGCOLOR - 2nd level hover in IE6*/
.menu a:hover, .menu ul ul a:hover{
background:#C4ba27;
width:175px;
background-image:url(../Images/flyoutBkgd-over.gif);
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
height:18px;
line-height:1.75em;
margin:0px;
border:0;
}


.menu ul ul :hover > a{
background-image:url(../Images/flyoutBkgd-over.gif);
background-repeat:no-repeat;
color:#f6f4ea;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-decoration:none;
padding:0px;
padding-left:15px;
margin:0px;
border:0;
width:175px;
}

/* 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;
}


