/* style the outer div to give it width */
.cssmenu {
font-family:verdana;
font-size:12px;
width:679px; 
font-size:0.85em;
padding-bottom:0px;
z-index:9999;

}

/* remove all the bullets, borders and padding from the default list styling */
.cssmenu ul {
padding:0;
margin:0;
list-style-type:none;
z-index:9999;

}
/*
.menu ul ul {
width:100px;
}
*/

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.cssmenu li {
float:left;
/*width:100px;*/
position:relative;
z-index:9999;

}

/* style the links for the top level */
.cssmenu a, .cssmenu a:visited {
display:block;
font-size:11px;
text-decoration:none;
color:#FFFFFF; 
/*width:100px; */
height:26px; 
border:1px solid #696562; 
border-width:0 0 0 0; 
/*background:#1D1D1D; */
/*padding-left:5px;*/ 
padding:0px; 
/*line-height:29px;*/
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .cssmenu a, * html .cssmenu a:visited {
/*width:100px;*/
w\idth:100px;
}

/* style the second level background */
.cssmenu ul ul a.drop, .cssmenu ul ul a.drop:visited {
background:#1D1D1D;
}
/* style the second level hover */
.cssmenu ul ul a.drop:hover{
/*background:#FFFFFF;*/
}
.cssmenu ul ul :hover > a.drop {
/*background:#FFFFFF;*/
}
/* style the third level background */
.cssmenu ul ul ul a, .cssmenu ul ul ul a:visited {
background:#1D1D1D;
}
/* style the third level hover */
.cssmenu ul ul ul a:hover {
/*background:#FFFFFF;*/
}
.cssmenu ul ul ul :hover > a {
/*background:#FFFFFF;*/
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.cssmenu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:26px;
left:0; 
width:180px;
}
/* another hack for IE5.5 */
* html .cssmenu ul ul {
top:26px;
t\op:26px;
}

/* position the third level flyout menu */
.cssmenu ul ul ul{
left:200px; 
top:0;
width:180px;
}
/* position the third level flyout menu for a left flyout */
.cssmenu ul ul ul.left {
left:-191px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.cssmenu table {position:absolute; top:0; left:0;}

/* style the second level links */
.cssmenu ul ul a, .cssmenu ul ul a:visited {
border-top-width:1px;
border-top-color:#696562;
background:#1D1D1D;
color:#FFFFFF; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:180px
/* yet another hack for IE5.5 */
}
* html .cssmenu ul ul a{
width:180px;
w\idth:180px;
}


/* style the top level hover */

.cssmenu a:hover, .cssmenu ul ul a:hover{
color:#E72E3B; 
/*background:#FFF;*/
}

.cssmenu :hover > a, .cssmenu ul ul :hover > a {
color:#E72E3B;
/*background:#FFF;*/
}


/* make the second level visible when hover on first level list OR link */
.cssmenu ul li:hover ul,
.cssmenu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.cssmenu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.cssmenu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.cssmenu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.cssmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}


