@charset "UTF-8";
/*******************************************************************************
 LAYOUT INFORMATION: describes box model, positioning, z-order
 *******************************************************************************/
ul.MenuBarHorizontal{			/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
	margin:   0  0  -25px 0;
	padding:  0  0    0px 0;
	padding-left: 25px;	
	list-style-type: none;
	font-size:	  x-small;
	cursor:   	  default;
	width : 	 	 auto;
	height: 	 	 27px;
	line-height: 	 18px;
	text-align : 	  top;
	vertical-align:   top;	
}
ul.MenuBarHorizontal a{	   		/* Menu items are a light gray block with no padding and no text decoration		  */
	margin:   0 0px  0px 0;
	padding:  0 0px  0px 0;
	display: 	  		block;
	cursor: 		  pointer;
	background-color: #E4E4E4;
	color: 			  #505050;
	text-decoration:     none;
	border-bottom: 0;
	height:100%;	
}
ul.MenuBarHorizontal a.MenuBarItemHover, 
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, 
ul.MenuBarHorizontal a.MenuBarSubmenuVisible,
ul.MenuBarHorizontal li.MenuBarItemSubmenu:hover,
ul.MenuBarHorizontal a:hover, 	/* Menu items that have mouse over or focus have a gray background and white text */
ul.MenuBarHorizontal a:focus{
	background-color: #666666;
	color: #FFF;
	border: 0;
}
/*******************************************************************************/
ul.MenuBarActive{			/* 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 */
	z-index: 1000;
}
ul.MenuBarHorizontal li{	/* Menu item containers, position children relative to this container and are a fixed width */
	margin : 0;
	padding: 0;
	border : 0;
	list-style-type: none;
	font-size:       11px;
	height: 	     20px;
	position:    relative;
	text-align:    center;
	cursor:   	  default;
	width:          102px;
	float:           left;
}
ul.MenuBarHorizontal li.active_link{	/* Menu item containers, position children relative to this container and are a fixed width */
	margin : 0;
	padding: 0;
	border : 0;
	list-style-type: none;
	font-size:       11px;
	height: 	     20px;
	position:    relative;
	text-align:    left;
	cursor:   	  default;
	width:          100%;
	float:           left;
	background-color: #F4F4F4;
	color: 			  #202020;
}
ul.MenuBarHorizontal ul{	/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
	margin:  0;
	padding: 0;
	list-style-type: none;
	font-size: 	  	 11px;
	cursor:    	  default;
	width: 		    191px;
	position: 	 absolute;
	left: 	   	  -1000em;
	z-index: 	     1020;
	border: 1px solid #666666;
}
ul.MenuBarHorizontal ul li{ /* Menu item containers are same fixed width as parent */
	padding: 0px 0px   0px  0px;
	margin : 0px 0px   0px  0px;
	width  : 191px;
	text-align: left;
	border: 0;
}
ul.MenuBarHorizontal ul ul{ /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
	text-align: left;
	position: absolute;		
	margin  :  2px 0px 0 100%;	
}
/*******************************************************************************/
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible{  /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
	left: auto;	
	//margin-left: -50%;	
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible{
	left: auto;
	top:  0px;	
	margin  :  -1px 0px 0 100%;	
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/
ul.MenuBarHorizontal a.MenuBarItemSubmenu{			/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
	background-image: url(../img/menu_bar/menubar_down.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
ul.MenuBarHorizontal li.MenuBarItemSubmenu{			/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
	background-image: url(../img/menu_bar/menubar_down.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{		/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
	background-image: url(../img/menu_bar/menubar_right.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{		/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
	background-image:url(../img/menu_bar/menubar_hoverdown.gif)
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{	/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
	background-image:url(../img/menu_bar/menubar_hoverright.gif)
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************
 BROWSER HACKS: the hacks below should not be changed unless you are an expert
*******************************************************************************/
ul.MenuBarHorizontal iframe{		    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
	position: absolute;
	z-index: 1010;
}
@media screen, projection{
ul.MenuBarHorizontal li.MenuBarItemIE{	/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
	display: inline;
	f\loat: left;
	background: #E4E4E4;
}
}
