.leftmenu{
}

.leftmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.leftmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.leftmenu ul li a{
display: block;
color: white;
padding: 8px 10px;
text-decoration: none;
}

* html .leftmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.leftmenu ul li a:link, .leftmenu ul li a:visited{
color: white;
}

.leftmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background:url(../img/share/bg_menu_over.jpg) no-repeat top left; 
color: white;
}

.leftmenu ul li a:hover{
background:url(../img/share/bg_menu_over.jpg) no-repeat top left; /*background of menu items during onmouseover (hover state)*/
color: white;
}
	
/*1st sub level menu*/
.leftmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.leftmenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.leftmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.leftmenu ul li ul li a{
width: 160px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}

/* Holly Hack for IE \*/
* html .leftmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{ /*shadow for NON CSS3 capable browsers*/
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: none;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
opacity: 0.8;
}

/*-- menu-v----------------------------------------------------------------------------------------------*/
.leftmenu-v ul{
margin: 0;
padding: 0;
width: 203px; /* Main Menu Item widths */
list-style-type: none;
font-weight: bold;
}
 
.leftmenu-v ul li{
position: relative;
background:none;
padding:0; margin:0;
}

/* Top level menu links style */
.leftmenu-v ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
padding:5px 0 5px 30px;
}

.leftmenu-v ul li a:link, .leftmenu-v ul li a:visited, .leftmenu-v ul li a:active{
color: white;
}

.leftmenu-v ul li a.selected, .leftmenu-v ul li a.current{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background:url(../img/share/bg_menu_over.jpg) no-repeat top left #20827f; 
color: white;
}

.leftmenu-v ul li a:hover{
background:url(../img/share/bg_menu_over.jpg) no-repeat top left #20827f; /*background of menu items during onmouseover (hover state)*/
color: white;
}

/*Sub level menu items */
.leftmenu-v ul li ul{
position: absolute;
background:url(../img/share/bg_submenu.jpg) repeat-y top left #099094; 
width: 170px; /*Sub Menu Items width */
top: 0;
visibility: hidden;
}

.leftmenu-v ul li ul li a:link, .leftmenu-v ul li ul li a:visited, .leftmenu-v ul li ul li a:active{
color: white;
padding:5px 0 5px 20px;
}

.leftmenu-v ul li ul li a:hover{
background:#135d5b; /*background of menu items during onmouseover (hover state)*/
color: white;
}

 
/* Holly Hack for IE \*/
* html .leftmenu-v ul li { float: left; height: 1%; }
* html .leftmenu-v ul li a { height: 1%; }
/* End */