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

menu below. 
 
*******************************************************************************/

/* The outermost container of the Menu Bar*/
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
}
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 116px;
	float: left;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items that are inactive */
ul.MenuBarHorizontal a
{
	background-image:url(../images/menu-buttons.gif);
	background-position:0 0;	
	display: block;
	cursor: pointer;
	height: 22px;
	padding: 10px 0 0 0;
	text-decoration: none;
	font-family: Helvetica, Arial, sans-serif;
	color: #662380;
	text-align: center;
}
/* Menu items that have mouse over or focus */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-image:url(../images/menu-buttons.gif);
	background-position:0 100%;	
	color: #FFF;
	text-decoration:none;
}
/* Menu items that are visited - ie 6 fixul.MenuBarHorizontal a:visited
{
	background-image: url(../images/inactivetab.png);
	color: #005D7B;
	text-decoration:none; 

}*/
/* Menu items that are selected*/
ul.MenuBarHorizontal #selected
{
	background-image:url(../images/menu-buttons.gif);
	background-position:0 100%;	
	color: #FFF;
	text-decoration:none;
}

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

 BROWSER HACKS:

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

/* 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
