/* left navigation menu with rollover list background graphics */


ul#leftnav {
position: relative;
left: 10px;
width: 140px;
border: solid 1px #EF8400;
border-width: 0px 0px 1px 0px;
margin: 0px;
padding: 10px;
}

#leftnav, #leftnav li {
list-style-type: none;
width: 130px;
text-align: right;
b/order: dotted 1px;
margin-left: 0px;
padding-left: 0px;

}

#leftnav li { 
line-height: 1em;
padding-top: 3px;
}
/* link popup image handling */

#leftnav a
{
text-decoration: none;
font: bold 8pt "arial";
color: #336633;
}


#leftnav li a img.popup{
position:absolute;

visibility:hidden; /* hide the image */
width:auto; /* give it a width */
height:0;  /* no height to solve an Opera bug that 
            makes it selectable when hidden */
border:0px;

margin-top: 5px;

}


#leftnav li a:hover {
text-decoration: none;
color: #336633;
border: 0px; /* for IE */
z-index:1000;

}


#leftnav li a:hover img.popup {

visibility:visible; /* make the image visible */
height:auto; /* now give it a height */
padding: 0px;
background: none;
cursor:pointer; /* for IE */
z-index:500; 

margin-top: 5px;
}



