#vertnav {
height:200px;
font-size:15px;
margin:25px 0 50px 15px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
#vertnav ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
width:200px;
}



/* style the list items */
#vertnav li {
background-image: url(images/p7exp_mbar.jpg);
height:33px;
/* for IE7 */
float:left;

}

/* get rid of the table */


/* style the links */
#vertnav a, #vertnav a:visited {
display:block; 
text-decoration:none;
height:32px;
line-height:32px;
width:160px;
color: #ffffff;
text-indent:5px;
border:1px solid #000000;
border-width:1px	 1px 1px 1px;


}
/* hack for IE5.5 */
* html #vertnav a, * html #vertnav a:visited {width:150px; w\idth:149px;}
/* style the link hover */
html #vertnav a:hover { background:#c8b994; position:relative;color:#000000;}

#vertnav li:hover {position:relative;background:#c8b994;}

/* For accessibility of the top level menu when tabbing */
/*#vertnav a:active, #vertnav a:focus {background:#c8b994;} */

/* retain the hover colors for each sublevel IE7 and Firefox etc */
/* #vertnav li:hover > a {background:#c8b994;color:#000000;} */
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
#vertnav li ul {
visibility:hidden;
position:absolute;
top:-30px;
/* set up the overlap (minus the overrun) */
left:131px;
/* set up the overrun area */
padding:30px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent url(transparent.gif);
}

/* for browsers that understand this is all you need for the flyouts */
#vertnav li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
#vertnav ul a:hover ul ul{
visibility:hidden;
background:#c8b994;
}
/* keep the fourth level+ hidden when you hover on second level link */
#vertnav ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
#vertnav ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
#vertnav ul a:hover ul {
visibility:visible;
color:#000000;
}
/* make the third level visible when you hover over second level link */
#vertnav ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
#vertnav ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
#vertnav ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}