/* CSS Document */
<!--
/*  ************************************** */
/*  Menu CSS                               */
/*  ************************************** */
.p3logictreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.p3logictreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #000099; /*overall menu background color*/
}

/*Top level menu link items style*/
.p3logictreemenu ul li a{
display: block;
width: 85px; /*Width of top level menu link items*/
padding: 1px 4px;
border: none;
text-decoration: none;
color: white;
font-family: Verdana, Arial;
font-size: 11px;
}
	
/*1st sub level menu*/
.p3logictreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.p3logictreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.p3logictreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.p3logictreemenu ul li ul li a{
display: block;
width: 220px; /*width of sub menu levels*/
color: white;
text-decoration: none;
padding: 1px 5px;
border: 1px solid #ccc; 
}

.p3logictreemenu ul li a:hover{
/* background-color: #72CD74; */
/* background-color: #C0C0E5; */
background-color: black;
color: white;
}

/*Background image for top level menu list links */
.p3logictreemenu.mainfoldericon{
background: #000099 url(arrowdn.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.p3logictreemenu.subfoldericon{
background: #000099 url(arrow.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows p3logictree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
 html .p3logictreemenu ul li { float: left; height: 1%; }
 html .p3logictreemenu ul li a { height: 1%; } 
 html .p3logictreemenu ul li ul li { float:left; } 
/* End */
-->


