@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: 19px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* 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: 195px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
/* 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: 13px;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 72px;
	left: -2000px;
	top: 15px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/












/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/* 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: 210px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/










/******************************************************************************************************************

 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: 210px;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/










/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*THIS CONTROLS THE APEARANCE OF THE MENU ITEMS
*/

ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	padding: 15px 0px 5px 10px;
	color: #000000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
	font-weight: normal;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/














/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*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: #E7E7E7;
	color: #000000;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/











/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/*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: #E7E7E7;
	color: #000000;
}


/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/












/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************
/* 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"  
*/

ul.sub {
	background-color: #FFFFFF;
	color: #000000;
}
ul.sub a  {
	color: #000000;
	height: 13px;
	display: block;
	margin: 0px;
	padding: 5px 2px 3px 4px;
	font-size: 12px;
	cursor: pointer;
	font-weight: normal;
}
ul.sub  a:hover {
	color: #000000;
	background-color: #E7E7E7;
	cursor: pointer;
}

ul.subsub {
	background-color: #FFF;
	color: #000;
	margin-left: 100px;
}
ul.subsub a  {
	color: #000000;
	height: 13px;
	display: block;
	margin: 0px;
	padding: 5px 2px 3px 4px;
	font-size: 12px;
	cursor: pointer;
}
ul.subsub  a:hover {
	color: #000000;
	background-color: #E7E7E7;
	cursor: pointer;
}

/*_____________________________________________________________________________________________________________
/**************************************************************************************************************
***************************************************************************************************************/
















/* ---------------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;
	
	}
}
