@charset "UTF-8";
/*******************************************************************************

  Vertical Menu - taken from DW - Spry Menus - LAYOUT: 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: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 7em;
}
/* 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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 100%;
}
/*******************************************************************************

Vertical Menu - DESIGN: describes color scheme, borders, fonts

 *******************************************************************************/
/* Outermost menu container has borders on all sides 
ul.MenuBarVertical
{
	border: 1px solid #ebeef0;
}*/
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #3d114a; /* MENU Purple Background */
	padding: 0.5em 0.75em;
	color: #fff; /* White Text */
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}
/* Menu items that have focus have a TAS Pink background and white text */
ul.MenuBarVertical a:focus
{
	background-color: #3d114a; /* MENU Pink Background */
	color: #FFF; /* White Text */
}
/* Menu items that hover over have a TAS Grey background and white text */
ul.MenuBarVertical a:hover
{
	color: #e50070; /* TAS Pink Text */
	font-weight: bold;
}
/*******************************************************************************

 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, ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* 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, ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
/*******************************************************************************

 Horizontal Menu - taken from DW - Spry Menus - LAYOUT: describes box model, positioning, z-order

 *******************************************************************************/
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 100%;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	/* Now Set by items4, items6 claseses etc - was width: 25%; */
	float: left;
}
ul.MenuBarHorizontal li.items6
{
width:16.666%;
}
ul.MenuBarHorizontal li.items5
{
width:20%;
}
/*******************************************************************************

 Horizontal Menu -DESIGN: describes color scheme, borders, fonts

 *******************************************************************************/
/* Menu items are a TAS Purple block with padding and no text decoration */

/* Menu items that have mouse over have a  TAS Grey Background and white text */
ul.MenuBarHorizontal a:hover
{
	/* background-color: #ebeef0;  Grey Background */
	color: #e50070; /* Pink Text */
	font-weight: bold;
}
/* Menu items that have focus have a  TAS Purple and white text */
ul.MenuBarHorizontal a:focus
{
	background-color: #3d114a; /* MENU Pink Background */
	color: #FFF;
}
