@charset "utf-8";
/* CSS Document */

/* ================================================================ 
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 */
.H_menu {
width:950px; 
padding-bottom:0px;
ZINDEX:2;
}
/* remove all the bullets, borders and padding from the default list styling */
.H_menu ul {
padding:0;
margin:0;
list-style-type:none;
}
/*.H_menu ul ul {
width:110px;
}*/
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.H_menu li {
float:left;
width:155px;
position:relative;
}
/* style the links for the top level */
.H_menu a, .H_menu a:visited {
display:block;
font-family: Arial, Helvetica, sans-serif;
font-size: 9pt;
text-decoration:none; 
font-weight: bold;
color:#ffffff; 
width:135px; 
height:20px; 
border:0px solid #ce1126; 
border-width:0px 0px 0px 0px; 
background:#ce1126; 
padding-left:10px;  
padding-top:3px;
line-height:16px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .H_menu a, * html .H_menu a:visited {
width:135px;
w\idth:135px;
}

/* style the second level background */
.H_menu ul ul a.drop, .H_menu ul ul a.drop:visited {
background:#ADAFAA;
}
/* style the second level hover */
.H_menu ul ul a.drop:hover{
background:#ADAFAA;
}
.H_menu ul ul :hover > a.drop {
background:#ce1126;
}
/* style the third level background */
.H_menu ul ul ul a, .H_menu ul ul ul a:visited {
background:#ECE9D8;
}
/* style the third level hover */
.H_menu ul ul ul a:hover {
background:#cccccc;
}
.H_menu ul ul ul :hover > a {
background:#D6CAC2;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.H_menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:23px;
left:0; 
width:135px;
}
/* another hack for IE5.5 */
* html .H_menu ul ul {
top:20px;
t\op:21px;
}

/* position the third level flyout menu */
.H_menu ul ul ul{
left:155px; 
top:0;
width:160px;
}
/* position the third level flyout menu for a left flyout */
.H_menu ul ul ul.left {
left:-160px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.H_menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.H_menu ul ul a, .H_menu ul ul a:visited {
	background:#ECE9D8;
	color:#000000;
	font-weight: normal;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:135px/* yet another hack for IE5.5 */
}
* html .H_menu ul ul a{
width:135px;
w\idth:135px;
}


/* style the top level hover */
.H_menu a:hover{
color:#FFFFFF;
font-weight: bold;
text-decoration:underline;
/*color:#ffffff; 
font-weight: bold;
background: #ADAFAA;*/
}
.H_menu ul ul a:hover{
color:#000000;
font-weight: normal;
background: #cccccc;
}
.H_menu :hover > a, .H_menu ul ul :hover > a {
/*color:#0033FF;
font-weight: bold;
background: #ADAFAA;*/
}

/* make the second level visible when hover on first level list OR link */
.H_menu ul li:hover ul,
.H_menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.H_menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.H_menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.H_menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.H_menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}