@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, a fixed width box with no margin or padding */
ul.MenuBarVertical {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 11px;
	width: 133px;
}


/* 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 same fixed width as parent */
ul.MenuBarVertical li {
	list-style-type: none;
	font-size: 11px;
	position: relative;
	text-align: left;
	width: 100%;
}


/* Submenus will appear to the right, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul {
	position: absolute;
	z-index: 1020;
	left: -1000em;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 150px;
	top: 0px;
}


/* Submenu that is showing with class designating MenuBarSubmenuVisible, we set left equal to the width of the primary UL so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible {
	left: 133px;
}



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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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


/* Style the primary A tags */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #CC0000;
	color: #FFFFFF;
	text-decoration: none;
	height: 21px;
	background-repeat: no-repeat;
	background-position: right center;
}

/* Put BG button image in primary A tags, but not secondary A tags */
#CT a {
	background-image: url(../images/btnCT.gif);
}
#CT li a {
	background-image: none;
}


#ME a {
	background-image: url(../images/btnME.gif);
}
#ME li a {
	background-image: none;
}


#MA a {
	background-image: url(../images/btnMA.gif);
}
#MA li a {
	background-image: none;
}


#NH a {
	background-image: url(../images/btnNH.gif);
}
#NH li a {
	background-image: none;
}


#NY a {
	background-image: url(../images/btnNY.gif);
}
#NY li a {
	background-image: none;
}


#NJ a {
	background-image: url(../images/btnNJ.gif);
}
#NJ li a {
	background-image: none;
}


#VT a {
	background-image: url(../images/btnVT.gif);
}
#VT li a {
	background-image: none;
}


#RI a {
	background-image: url(../images/btnRI.gif);
}
#RI li a {
	background-image: none;
}

/* Style the secondary A tags */

ul.MenuBarVertical ul li a {
	background-color: #FFFFCC;
	border: 1px solid #FFCC33;
	font-size: 11px;
	color: #990000;
	height: auto;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	width: 128px;
}

/* SubMenu items have a darker yellow hover state */
ul.MenuBarVertical ul li a:hover {
	background-color: #FFCC33;
}



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

 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: #FFF;
	}
}

