/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarVertical
{
	float: left;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 201px;
	margin-top: 20px;
	margin-left:0;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarVertical li
{
	list-style-type: none;
	font-size: 100%;
	text-align: left;
	cursor: pointer;
	float: left;
}

/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-100em) */
ul.MenuBarVertical ul
{
	margin: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	top: auto;
	width: auto;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 39px;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 211px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarVertical ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: 0;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all but right side, as that is taken care of by the menu item link */
ul.MenuBarVertical ul
{
	border: 1px solid #FFFFFF;
}
/* Menu items are a light gray block with right border, padding, and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	color: #83c249;
	text-decoration: none;
	font-family: verdana;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	padding-left: 10px;
	text-indent: 10px;
	line-height: 20px;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarvertical a:hover, ul.MenuBarVertical a:focus
{
	color: #000;
	text-decoration: none;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarvertical a.MenuBarItemSubmenuHover, ul.MenuBarvertical a.MenuBarSubmenuVisible
{
	background-color: #FFFFFF;
	color: #FFFFFF;
	text-decoration: none;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Main menu items are set to use a background image for normal and hover states */
ul.MenuBarVertical a.MenuBarItem
{
	background-image: url(../imagescss/menu_ville.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
	width: 211px;
	height: 20px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a:hover.MenuBarItem
{
	background-image: url(../imagescss/menu_ville.gif);
	background-repeat: no-repeat;
	background-position: 0 -20px;
	width: 211px;
	height: 20px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a.MenuBarItemhover
{
	background-image: url(../imagescss/menu_ville.gif);
	background-repeat: no-repeat;
	background-position: 0 -20px;
	width: 211px;
	height: 20px;
	margin: 0;
	padding: 0;
}

ul.MenuBarVertical a:hover.MenuBarItemhover
{
	background-image: url(../imagescss/menu_ville.gif);
	background-repeat: no-repeat;
	background-position: 0 -20px;
	width: 211px;
	height: 20px;
	margin: 0;
	padding: 0;
}