/* remove all the bullets, borders and padding from the default list styling */
#divMenuArea .menu ul {
width:170px;
padding:0;
margin:0;
list-style-type:none;
}
/* position relative so that you can position the sub levels */
#divMenuArea .menu li {
position:relative;
}

/* get rid of the table */
#divMenuArea table {position:absolute; top:0; left:0;}

/* style the links */
#divMenuArea .menu a, #divMenuArea .menu a:visited,#divMenuArea .menu a.alt, #divMenuArea .menu a.alt:visited {
display:block; 
text-decoration:none;
height:25px;
line-height:20px;
width:170px;
color:#000;
background:#ffffcc;
text-indent:5px;
font-size:small;
font-weight:bold;
text-align:center;
}

#divMenuArea .menu a.alt, #divMenuArea .menu a.alt:visited {
background:#ffeb99;
}

/* style the link hover */
#divMenuArea .menu a:hover, #divMenuArea .menu a.alt:hover{
color:#fff; 
background:#910000;
}

#divMenuTitle, #divMenuBlankSpacer {
border-bottom:solid 1px #910000;
font-weight:bold;
text-align:center;
display:block; 
text-decoration:none;
height:25px;
line-height:25px;
width:170px;
color:#000;
background:#ffffcc;
text-indent:5px;
font-size:small;
}

#divMenuBlankSpacer {
background:#ffeb99;
border:none;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#divMenuArea .menu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:170px; 
}
/* make the second level visible when hover on first level list OR link */
#divMenuArea .menu ul :hover ul{
visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
#divMenuArea .menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
#divMenuArea .menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#divMenuArea .menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
#divMenuArea .menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}
