@charset "UTF-8";

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 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
{
	clear:both;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bolder;
	font-size: 100%;
	cursor: default;
	width: auto;
}
/* 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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 120%;
	font-weight:bolder;
	position: relative;
	text-align: left;
	cursor: pointer;
	background-color:#F4F2FC;
	/*border-bottom:thick;
	border-bottom-color:#FFFFFF;*/
	margin-bottom:10px;
	width: 10em;
	float: left;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #F4F2FC;
	padding: 0.75em .75em;
	color: #000000;
	border-bottom:1px solid #999;
	text-decoration: none;
	font-weight:bolder;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul a:hover
{
	color: #006699;
	background-image:url(../images/square.gif);
	background-image:url(../images/square.gif);
	background-position:right;
	background-repeat:no-repeat;
	border-bottom:1px solid #999;
}



