/* This is a menu which displays the top level categories, and then immediately
underneath, displays all second level categories.  This menu only works to 2 levels 
deep */
 	
.menu {
position:relative; 
z-index:1000;
font-size:90%;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
width:160px;
}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
position:relative;
}

/* style  LEVEL 1 links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:160px;
color:#FFF;
font-weight: bold;
background:#D62626;
text-indent:5px;
border:1px solid #fff;
border-width:0 1px 1px 0;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {width:160px; w\idth:160px;}
/* style the link hover */
.menu ul li a:hover{
color:#fff; 
}

.menu ul li:hover a {
background:;
}



/* style LEVEL 2 links */
.menu ul ul li a, .menu ul ul li a:visited {
color:#000;
font-weight: normal;
background:#FFF;
text-indent:6px;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
border-width:0 1px 1px 0;
font-size: .9em;
}

.menu ul ul li a:hover{
color:#fff; 
background:#27437F;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
position:relative
left:0px; 
}





/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover 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;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}