@charset "UTF-8";

/* SpryMenuBarHorizontal.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, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
}
/* 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 a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: left;
	cursor: pointer;
	background-image:url(../images/menu-bg.png);
	background-repeat:no-repeat;
	background-position:right;
	float: left;
	font-weight: bold;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 0.5em 1.5em;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color:#a00000;
	color: #FFF;
}
#MenuBar1 li a:visited;
{
	background-color:#a00000;
	color: #FFF;
}

ul.MenuBarHorizontal a.current
{
	background-color:#750000;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover
{	
	color: #FFF;
}



/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}
.leftNav {
	float: left;
	width: 150px;
	display: block;
}
.leftNav ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.leftNav ul li {
	line-height: 20px;
	font-size: 11px;
}
.leftNav ul li a {
	background-image: url(../images/shortcut.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
	display: block;
}
.leftNav ul li a.current {
	background-image: url(../images/shortcut.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 8px;
	display: block;
	font-weight:bold;
	color: #900;
	text-decoration: underline;
}
.rightCon {
	float: right;
	margin-left: 15px;
	display: block;
	width: 780px;
}
