﻿.VerticalMenuItems ul{
margin: 0;
padding: 0;
width: 100%; /* Main Menu Item widths */
list-style-type: none;
font: bold 12px Calibri,caption;
}

.VerticalMenuItems ul li{
position: relative;
float: none;
}

.VerticalMenuItems ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
padding: 6px 16px 6px 6px;
/*border-bottom: 1px solid #778;
border-right: 1px solid #778;*/
}



.VerticalMenuItems ul li a:link, .VerticalMenuItems ul li a:visited, .VerticalMenuItems ul li a:active{
background: none; /*background of menu items (default state)*/
color: white;
}

.VerticalMenuItems ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background-color: #b2f77c;
color: navy;
}


/* Change the link color on hover */
.VerticalMenuItems ul li a:hover {
  background-color: #b2f77c;
  color: navy;
}

/*Sub level menu items */
.VerticalMenuItems ul li ul{
position: absolute;
width: 100%; /*Sub Menu Items width */
top: 0;
font-weight: normal;
visibility: hidden;
}


/* Holly Hack for IE */
* html .VerticalMenuItems ul li { float: left; height: 1%; }
* html .VerticalMenuItems ul li a { height: 1%; }
/* End */