@charset "UTF-8";

 
 
 
/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* THIS IS THE OUTER CONTAINER OF THE INITIAL MENU

--------- The outermost container of the Menu Bar MUST have a fixed width box with no margin or padding.
--------- MUST specify a font size or it will revert to default size fons.
*/ 
 
ul.MenuBarVertical
{
	width: 184px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	font-size: 13px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* LEAVE THIS ALONE
*/
ul.MenuBarActive
{
	z-index: 1000;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/












/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* THIS CONTROLS THE SIZE OF THE ITEMS IN THE MAIN MENU

------- Menu item containers, position children relative to this container and are same fixed width as parent.
------- Width should be the same as the outermost container.
*/

ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 184px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* THIS CONTROLS THE PLACEMENT OF THE SUBMENU

------- Initially WAY off the left side of the screen (-1000em).
------- On rollover it should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index.
------- Must leave margin as a % due to secondary sub menu offset. 
*/

ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 11px;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 72px;
	left: -1000px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/












/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/* THIS CONTROLS THE PLACEMENT OF THE SUBMENU ON ROLLOVER

-------- A "0" value would set the submenu to the just to the right of the parent menu.
 */
 
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* THIS CONTROLS THE WIDTH OF THE SUBMENU

-------Menu item containers are same fixed width as parent.
*/

ul.MenuBarVertical ul li
{
	width: 140px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/










/******************************************************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************************************************/
 




/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/* THIS CONTROLS THE Outermost menu container has borders on all sides 

-------Currently none.
*/

ul.MenuBarVertical
{
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/









/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*THIS IS THE OUTER CONTAINER OF THE SUBMENU

---------Submenu containers have borders on all sides
---------- Should be the same width as the submenu
*/

ul.MenuBarVertical ul
{
	border: 2px solid #CCC;
	width: 175px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/










/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*THIS CONTROLS THE APEARANCE OF THE MENU ITEMS
*/

ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	color: #6D92B3;
	text-decoration: none;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/














/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*THIS CONTROLS THE APEARANCE OF THE  ROLLOVER STATE OF "ACTIVE" MENU

---------/* Menu items that have mouse over or focus have a blue background and white text 
*/

ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #6D92B3;
	color: #ffffff;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*THIS CONTROLS THE APEARANCE OF THE  ROLLOVER STATE OF "INACTIVE" PARENT MENU

---------/* Menu items that have mouse over or focus have a blue background and white text 
*/

ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #6D92B3;
	color: #FFF;
}


/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/












/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/* THIS PLACES THE IDICATOR IMAGE ON THE ROLLOVER STATE TO INDICATE A SUBMENU

---------/* Menu items that have mouse over or focus have a blue background and white text 
*/

ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-image: url(SpryMenuBarRightHover.gif);
}


/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/






/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/* THIS ALLOWS YOU TO HAVE A TRANSPARENT MENU WITH COLORED SUB MENUS  (ALLOWING A DESIGNED BACKGROUND TO SHOW THROUGH

--------- Each submenu item will need need to have id="sub"  
*/

#sub {
	background-color: #6D92B3;
	color: #FFFFFF;
	width: 140px;
}
#sub a {
	color: #FFFFFF;
	font-weight: bold;
	width: 137px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-top: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#sub a:hover {
	color: #6D92B3;
	background-color: #FBE1A6;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
















/* ---------------LEAVE THIS ALONE------------ */
/* ---------------LEAVE THIS ALONE------------ */
/* ---------------LEAVE THIS ALONE------------ */
/* ---------------LEAVE THIS ALONE------------ */
/* ---------------LEAVE THIS ALONE------------ */
/* ---------------LEAVE THIS ALONE------------ */

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #6D92B3;
	
	}
}
