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

.menudown {
	width:800px;
	font-size:0.85em;
	position:absolute;
	z-index:130;
	
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	left: -3px;

	
}


/* remove all the bullets, borders and padding from the default list styling */
.menudown ul {
	padding:0;
	margin:0;
	list-style-type:none;
	background:#C9050F;
	text-align: center;

	
}
.menudown ul ul {
	width:156px;
	text-align: left;
		
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menudown positon */
.menudown li {
float:left;
width:156px;
position:relative;
background:#C9050F; 


}
/* style the links for the top level */
.menudown a, .menudown a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#fff; 
width:139px; 
height:25px; 
padding-left:5px; 
line-height:27px;
}

#current  {

color:#FCC80D; 

}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menudown a, * html .menudown a:visited {
width:150px;
w\idth:139px;
}

/* style the second level background */
.menudown ul ul a.drop, .menudown ul ul a.drop:visited {
background:#C9050F;



}
/* style the second level hover */
.menudown ul ul a.drop:hover{
background:#C9050F;
}
.menudown ul ul :hover > a.drop {
background:#C9050F;
}
/* style the third level background */
.menudown ul ul ul a, .menudown ul ul ul a:visited {
background:#C9050F;
}
/* style the third level hover */
.menudown ul ul ul a:hover {
background:#C9050F;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menudown ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	width:150px;
	text-align: left;
	
}

.menudown ul ul ul{
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	width:150px;
	text-align: left;
}
/* another hack for IE5.5 */
* html .menudown ul ul {
top:30px;
t\op:25px;
}

/* position the third level flyout menudown */
.menudown ul ul ul{
left:170px; 
top:0;


}
/* position the third level flyout menudown for a left flyout */
.menudown ul ul ul.left {
left:-150px;
}

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

/* style the second level links */
.menudown ul ul a, .menudown ul ul a:visited {
background:#C9050F; 
color:#FFFFFF; 
height:15px; 
line-height:15px; 
border-width: 1px;
border-bottom-style: dotted;
border-color: #FFF;
padding:3px 10px; 
width:150px}
* html .menudown ul ul a{
width:150px;
w\idth:129px;
}

.menudown ul ul ul a, .menudown ul ul ul a:visited {
background:#C9050F; 
color:#FFFFFF; 
height:10px; 
line-height:1em; 
padding-left:10px; 
width:150px




}
* html .menudown ul ul ul a{
width:150px;
w\idth:129px;
}



/* style the top level hover */
.menudown a:hover, .menudown ul ul a:hover , .menudown ul ul ul a:hover{
color:#FCC80D; 
background:#C9050F;
}
.menudown ul ul :hover > a {
color:#FCC80D;
background:#C9050F;


}

.menudown :hover > a {
color:#FCC80D;
background:#C9050F;

}


/* make the second level visible when hover on first level list OR link */
.menudown ul li:hover ul,
.menudown ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menudown ul :hover ul ul{
visibility:hidden;
}

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