/*
 * Vertical menu
 *
 * (The main MenuV Div is declared elsewhere)
 *
 */
#MenuV A {
   background-color: #F0E68C;
   color: #298c42;
}

#MenuV A:hover
{
   color: #F0E68C;
   background-color: #298c42;
}

#MenuV A.MenuVSelected
{
   color: black;
}

#MenuV A.SmallPrint {
	display: inline;
}

/*
 * Menu items are modified by adding classes to the A tag in DIV MenuV. Following
 * demonstrates how to add pictures to menu items.
 *
 */
#MenuV A.MenuVItem {
	background-image: url(images/Horseshoe.gif);
   background-position: left center;
   background-repeat: no-repeat;
	margin: 0;
	padding: 1px;
   padding-bottom: 5px;
	padding-left: 4px;
   padding-top: 5px;
   display: block;
   text-indent: 20px;
   text-decoration: none;
   white-space: nowrap;
   vertical-align: middle;
}
#MenuV A.MenuVSelected {
	background-image: url(images/Horseshoe.gif);
   background-position: left center;
   background-repeat: no-repeat;
	margin: 0;
	padding: 1px;
   padding-bottom: 5px;
	padding-left: 4px;
   padding-top: 5px;
   display: block;
   text-indent: 20px;
   text-decoration: none;
   white-space: nowrap;
   vertical-align: middle;
}

#MenuV Div.MenuVSep {
   border-bottom: 1px solid #298c42;
   margin-top: 1em;
}