/* ================================================================ 
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.
=================================================================== */

.menuX {
	font-size:0.85em;
	z-index:100;
	clear:both;
	position:relative;
	display:block;
	width:100%;
	margin:0px auto;
	height:25px;
	background-color:#33455B;
	border:1px solid #fff; 
	border-width:1px 1px 0 0; 
}
/* remove all the bullets, borders and padding from the default list styling */
.menuX ul {
padding:0;
margin:0;
list-style-type:none;
margin-left:25px;
}
.menuX ul ul {
width:80px;
margin-left:0px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menuX li {
float:left;
width:110px;
position:relative;
}
/* style the links for the top level */
.menuX a, .menuX a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#fff; 
width:110px; 
height:25px; 
border:1px solid #fff; 
border-width:0px 0px 0 0; 
background-color:#33455B;
padding-left:10px; 
line-height:24px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menuX a, * html .menuX a:visited {
width:150px;
w\idth:139px;
}

/* style the second level background */
.menuX ul ul a.drop, .menuX ul ul a.drop:visited {
background-color:#33455B;

}
/* style the second level hover */
.menuX ul ul a.drop:hover{
background-color:#c9ba65;
}
.menuX ul ul :hover > a.drop {
background-color:#33455B;
}
/* style the third level background */
.menuX ul ul ul a, .menuX ul ul ul a:visited {
background-color:#33455B;
}
/* style the third level hover */
.menuX ul ul ul a:hover {
background-color:#33455B;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuX ul ul {
visibility:hidden;
position:absolute;
height:0;
top:25px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menuX ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menu */
.menuX ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menuX ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menuX table {position:absolute; top:0; left:0;}

/* style the second level links */
.menuX ul ul a, .menuX ul ul a:visited {
background-color:#33455B;
color:#FFF; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px
/* yet another hack for IE5.5 */
}
* html .menuX ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.menuX a:hover, .menuX ul ul a:hover{
color:#000; 
background-color:#B7C3CA
}
.menuX :hover > a, .menuX ul ul :hover > a {
color:#000;
background-color:#B7C3CA
}

/* make the second level visible when hover on first level list OR link */
.menuX ul li:hover ul,
.menuX ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menuX ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menuX ul :hover ul :hover ul{ 
visibility:visible;
}
