/* css expanding menu style sheet */

.digimenu ul{
margin: 0; 
padding: 0; 
list-style-type: none;
width: 220px; 			/* Width of Menu Items */
/* 
border-right: 4px ridge #808080;
border-bottom: 4px ridge #808080;
*/
}
	
.digimenu ul li{
position: relative;
}
	
/*1st level sub menu style */
.digimenu ul li ul{
left: 220px; 			/* positioning of submenus*/
position: absolute;
width: 220px; 			/* width of sub menus */
top: 0px;
display: none;
z-index: 1;
background-image: url('/images/butt3.gif');
background-repeat: no-repeat;
}

/*All subsequent sub menu levels offset */
.digimenu ul li ul li ul{ 
left: 220px; 			/* positioning of subsequent submenus */
}

/* menu links style */
.digimenu ul li a{
width: 100%;
display: block;
color: #ff9900;
text-align: left;
text-decoration: none;
/*
background: #003399;
*/
background-image: url('/images/butt3.gif');
background-repeat: no-repeat;
padding-left: 6px;
padding-right: 0px;
padding-top: 8px;
padding-bottom: 9px;
/*
border-top: 3px solid #ff9900;
border-left: 3px solid #ff9900;
border-bottom: 3px solid #bb7700;;
border-right: 3px solid #bb7700;;
*/
}

.digimenu ul li a:hover{
background-image: url('/images/butt6.gif');
}

/* Holly Hack for IE \*/
* html .digimenu ul li { float: left; height: 5%; }
* html .digimenu ul li a { height: 5%; }
/* End */


