@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

 *******************************************************************************/
<link href="../../widgets/menubar/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">

/* Give the menu bar a width and set the margins to "auto"
 * so that the browser does the centering.
 */

ul.MenuBarHorizontal {
	width: 900px;
	margin: auto;
	list-style-type: none;
	cursor: default;
	font-style: normal;
	white-space:nowrap;
	height: 20px;

}

#MenuBarHeader ul.MenuBarHorizontal {
	list-style-type: none;
	cursor: default;
	font-style: normal;
	white-space:nowrap;
	height: 20px;

}

</style>

	
}
/* 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;
	background-color: #000033;
}

}
/* 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 */
#MenuBarHeader ul.MenuBarActive
{
	z-index: 1000;
	background-color: #ab0012;
}

/* 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: 13px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 104px;
	float: left;
	background-color: #000033;
}

/* Menu item containers, position children relative to this container and are a fixed width */
#MenuBarHeader ul.MenuBarHorizontal li
{
	
	padding: 0;
	list-style-type: none;
	font-size: 13px;
	position: fixed;
	text-align: left;
	cursor: pointer;
	width: 200px;
	float: left;
	background-color: #ab0012;
	vertical-align: bottom;
	font-weight: normal;
}

/* 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) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	z-index: 1020;
	cursor: default;
	width: 16em;
	position: absolute;
	left: -1000em;
	font-weight: normal;
	background-color: #000033;
}

/* 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) */
#MenuBarHeader ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: 16em;
	font-weight: bold;
	background-color: #ab0012;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
#MenuBarHeader ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{

	left: auto;
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 13em;
}

/* Menu item containers are same fixed width as parent */
#MenuBarHeader ul.MenuBarHorizontal ul li
{
	width: 13em;
	float: left;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 5% 0 0 95%;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
#MenuBarHeader ul.MenuBarHorizontal ul ul
{
	position: absolute;
	float: left;
	margin-top: 5%;
	margin-right: 0;
	margin-bottom: 0;
	
}

/* 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;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
#MenuBarHeader ul.MenuBarHorizontal #MenuBarHeader ul.MenuBarSubmenuVisible #MenuBarHeader ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0px;
	float: left;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #333333;
	background-color: #000033;
}

#MenuBarHeader ul.MenuBarHorizontal ul
{
	border: 1px solid #333333;
	background-color: #C10418;
	float: left;
}
/* Menu items are black with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display:block;
	cursor: pointer;
	background-color: #000033;
	color: #FFFFFF;
	font-family: "Trebuchet MS", Arial;
	padding: 0.5em 0.5em;
	text-decoration: none;
	font-size: 12px;
	line-height:1em;

}

/* Menu items are black with padding and no text decoration */
#MenuBarHeader ul.MenuBarHorizontal a
{
	display:block;
	cursor: pointer;
	background-color: #C10418;
	color: #FFFFFF;
	font-family: "Verdana", Arial;
	padding: 0.5em 0.5em;
	text-decoration: none;
	font-size: 12px;
	line-height:1em;

}

/* Menu items that have mouse over or focus have a grey background and red text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarItemHover
{
	background-color: #CCCCCC;
	color: #ab0012;
	width: 100%;
}

/* Menu items that have mouse over or focus have a grey background and black text */
#MenuBarHeader ul.MenuBarHorizontal a:hover, #MenuBarHeader ul.MenuBarHorizontal a:focus, #MenuBarHeader ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, #MenuBarHeader ul.MenuBarHorizontal a.MenuBarItemHover
{
	background-color: #CCCCCC;
	color: #000033;
	width: 113%;
}


/* Menu items that are open with submenus are set to MenuBarItemHover with a black background and white text */
 ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #000000;
	color: #FFF;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a black background and white text */
 #MenuBarHeader ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #ab0012;
	color: #FFF;
}


/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* 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%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: 95% 50%;
	font-family: "Trebuchet MS", Arial;
	font-size: 12px;
	font-weight: ;
}

/* 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%) */
 #MenuBarHeader ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: 95% 50%;
	font-family: "Trebuchet MS", Arial;
	font-size: 12px;
	font-weight: ;
}

/* 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%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: left;
	background-color: #000033;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	overflow: visible;
}

/* 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%) */
 #MenuBarHeader ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: left;
	background-color: #000033;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	overflow: visible;
}
/* 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%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	color: #ab0012;
	background-color: cccccc;
}

/* 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%) */
#MenuBarHeader ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	color: #ab0012;
	background-color: #C10418;
}

/* 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%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-repeat: repeat;
	background-position: 95% 50%;
	width: 100%;
	color: #ab0012;
	background-color: cccccc;
}

/* 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%) */
#MenuBarHeader ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-repeat: repeat;
	background-position: 95% 50%;
	width: 100%;
	color: #ab0012;
	background-color: #C10418;
}

/*******************************************************************************

 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.MenuBarHorizontal iframe
{
		z-index: 1010;
}

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
#MenuBarHeader ul.MenuBarHorizontal iframe
{
		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-color: #fff;
	}
	
	/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	#MenuBarHeader ul.MenuBarHorizontal li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	background-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 make sure the sub menus show above form controls, we underlay each submenu with an iframe */ 
#MenuBarHeader 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; 
position: relative; 
top: 0px; 
left: 150px; 
white-space: nowrap
} 
} 

/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ 
@media screen, projection 
{ 
#MenuBarHeader ul.MenuBarHorizontal li.MenuBarItemIE 
{ 
display: inline; 
f\loat: left; 
background: #FFF; 
position: relative; 
top: 0px; 
left: 150px; 
white-space: nowrap
} 
} 
<link href="../../widgets/menubar/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">

/* Give the menu bar a width and set the margins to "auto"
 * so that the browser does the centering.
 */

ul.MenuBarHorizontal {
	width: 900px;
	margin: auto;
	list-style-type: none;
	cursor: default;
	font-style: normal;
	white-space:nowrap;
	height: 20px;

}

#MenuBarHeader ul.MenuBarHorizontal {
	list-style-type: none;
	cursor: default;
	font-style: normal;
	white-space:nowrap;
	height: 20px;

}

</style>

	
}
/* 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.EbraryMenuBarActiveEbrary
{
	z-index: 1000;
	background-color: #CC1517;
}

}
/* 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 */
#EbraryMenuBarHeader ul.MenuBarActive
{
	z-index: 1000;
	background-color: #ab0012;
}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.EbraryMenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 13px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 104px;
	float: left;
	background-color: #CC1517;
}

/* Menu item containers, position children relative to this container and are a fixed width */
#EbraryMenuBarHeader ul.MenuBarHorizontal li
{
	
	padding: 0;
	list-style-type: none;
	font-size: 13px;
	position: fixed;
	text-align: left;
	cursor: pointer;
	width: 200px;
	float: left;
	background-color: #ab0012;
	vertical-align: bottom;
	font-weight: normal;
}

/* 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) */
ul.EbraryMenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	z-index: 1020;
	cursor: default;
	width: 16em;
	position: absolute;
	left: -1000em;
	font-weight: normal;
	background-color: #CC1517;
}

/* 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) */
#EbraryMenuBarHeader ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: 16em;
	font-weight: bold;
	background-color: #ab0012;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.EbraryMenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
	
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
#EbraryMenuBarHeader ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{

	left: auto;
}

/* Menu item containers are same fixed width as parent */
ul.EbraryMenuBarHorizontal ul li
{
	width: 13em;
}

/* Menu item containers are same fixed width as parent */
#EbraryMenuBarHeader ul.MenuBarHorizontal ul li
{
	width: 13em;
	float: left;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.EbraryMenuBarHorizontal ul ul
{
	position: absolute;
	margin: 5% 0 0 95%;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
#EbraryMenuBarHeader ul.MenuBarHorizontal ul ul
{
	position: absolute;
	float: left;
	margin-top: 5%;
	margin-right: 0;
	margin-bottom: 0;
	
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.EbraryMenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0px;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
#EbraryMenuBarHeader ul.MenuBarHorizontal #MenuBarHeader ul.MenuBarSubmenuVisible #MenuBarHeader ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0px;
	float: left;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.EbraryMenuBarHorizontal ul
{
	border: 1px solid #333333;
	background-color: #CC1517;
}

#EbraryMenuBarHeader ul.MenuBarHorizontal ul
{
	border: 1px solid #333333;
	background-color: #C10418;
	float: left;
}
/* Menu items are black with padding and no text decoration */
ul.EbraryMenuBarHorizontal a
{
	display:block;
	cursor: pointer;
	background-color: #CC1517;
	color: #FFFFFF;
	font-family: "Trebuchet MS", Arial;
	padding: 0.5em 0.5em;
	text-decoration: none;
	font-size: 12px;
	line-height:1em;

}

/* Menu items are black with padding and no text decoration */
#EbraryMenuBarHeader ul.MenuBarHorizontal a
{
	display:block;
	cursor: pointer;
	background-color: #C10418;
	color: #FFFFFF;
	font-family: "Verdana", Arial;
	padding: 0.5em 0.5em;
	text-decoration: none;
	font-size: 12px;
	line-height:1em;

}

/* Menu items that have mouse over or focus have a grey background and red text */
ul.EbraryMenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarItemHover
{
	background-color: #CCCCCC;
	color: #ab0012;
	width: 100%;
}

/* Menu items that have mouse over or focus have a grey background and black text */
#EbraryMenuBarHeader ul.MenuBarHorizontal a:hover, #MenuBarHeader ul.MenuBarHorizontal a:focus, #MenuBarHeader ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, #EbraryMenuBarHeader ul.MenuBarHorizontal a.MenuBarItemHover
{
	background-color: #CCCCCC;
	color: #CC1517;
	width: 113%;
}


/* Menu items that are open with submenus are set to MenuBarItemHover with a black background and white text */
 ul.EbraryMenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #CC1517;
	color: #FFF;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a black background and white text */
 #EbraryMenuBarHeader ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #ab0012;
	color: #FFF;
}


/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* 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%) */
ul.EbraryMenuBarHorizontal a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: 95% 50%;
	font-family: "Trebuchet MS", Arial;
	font-size: 12px;
	font-weight: ;
}

/* 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%) */
 #EbraryMenuBarHeader ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: 95% 50%;
	font-family: "Trebuchet MS", Arial;
	font-size: 12px;
	font-weight: ;
}

/* 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%) */
ul.EbraryMenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: left;
	background-color: #CC1517;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	overflow: visible;
}

/* 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%) */
 #EbraryMenuBarHeader ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-repeat: repeat;
	background-position: left;
	background-color: #CC1517;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: lighter;
	overflow: visible;
}
/* 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%) */
ul.EbraryMenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	color: #ab0012;
	background-color: cccccc;
}

/* 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%) */
#EbraryMenuBarHeader ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
	background-position: 95% 50%;
	color: #ab0012;
	background-color: #C10418;
}

/* 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%) */
ul.EbraryMenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-repeat: repeat;
	background-position: 95% 50%;
	width: 100%;
	color: #ab0012;
	background-color: cccccc;
}

/* 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%) */
#EbraryMenuBarHeader ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-repeat: repeat;
	background-position: 95% 50%;
	width: 100%;
	color: #ab0012;
	background-color: #C10418;
}

/*******************************************************************************

 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.EbraryMenuBarHorizontal iframe
{
		z-index: 1010;
}

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
#EbraryMenuBarHeader ul.MenuBarHorizontal iframe
{
		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.EbraryMenuBarHorizontal li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	background-color: #fff;
	}
	
	/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	#EbraryMenuBarHeader ul.MenuBarHorizontal li.MenuBarItemIE
	{
	display: inline;
	f\loat: left;
	background-color: #fff;
	}
}/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ 
ul.EbraryMenuBarHorizontal iframe 
{ 
position: absolute; 
z-index: 1010; 
} 

}/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ 
#EbraryMenuBarHeader 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.EbraryMenuBarHorizontal li.MenuBarItemIE 
{ 
display: inline; 
f\loat: left; 
background: #FFF; 
position: relative; 
top: 0px; 
left: 150px; 
white-space: nowrap
} 
} 

/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ 
@media screen, projection 
{ 
#EbraryMenuBarHeader ul.MenuBarHorizontal li.MenuBarItemIE 
{ 
display: inline; 
f\loat: left; 
background: #FFF; 
position: relative; 
top: 0px; 
left: 150px; 
white-space: nowrap
} 
} 
