/**
 * Style sheet SpryMenuBarHorizontal
 */

/**
 * BROWSER HACKS: the hacks below s
 */
/* 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: 10100;
	filter:alpha(opacity:0.1);
	background-color: #FFFFFF;
}


/**
 * LAYOUT INFORMATION: describes bo
 */
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	display:block;
	margin:0px;
	padding:0px;
	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: 10000;
}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	width:auto;
	position:relative;
	float:left;
	display:block;
	margin:0px;
	padding:0px;
	text-align:left;
	list-style-type:none;
	cursor: pointer;
}

ul.MenuBarHorizontal ul li.last
{
	padding-bottom:8px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #eee;
	border-bottom-color: #eee;
	border-left-color: #eee;
}

ul.MenuBarHorizontal ul li.first
{
	padding-top:8px;
	border-right-width: 1px;
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-top-style: solid;
	border-left-style: solid;
	border-right-color: #eee;
	border-top-color: #eee;
	border-left-color: #eee;
}

/* 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
{
	width:175px;
	left:-1000em;
	position:absolute;
	display:block;
	margin:0px;
	padding:8px 0px 0px 0px;
	background-image:url("/tl_files/cielomobile/images/menuArrow.gif");
	background-repeat:no-repeat;
	list-style-type:none;
	z-index: 10200;
	cursor: default;
	background-attachment: scroll;
	background-position: 15px top;
}


/* 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;
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width:175px;
	background-color:#CCCCCC;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #eee;
	border-left-color: #eee;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position:absolute;
	margin:-5% 0% 0% 95%;
}

/* 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:0;
}


/**
 * MAIN NAV
 */
ul.MenuBarHorizontal a
{
	display:block;
	padding:2px 10px;
	text-align:center;
	font-family:Helvetica, Arial, sans-serif;
	font-weight:bold;
	text-decoration:none;
	font-size:14px;
	color:#1f5287;
	line-height:15px;
	cursor: pointer;
	
}

ul.MenuBarHorizontal ul a
{
	display:block;
	margin-right:8px;
	margin-left:8px;
	padding:0.4em 0.3em;
	text-align:left;
	background-color:#FFFFFF; !important
	text-decoration:none;
	font-size:11px;
	color:#333;
	line-height:12px;
	cursor: pointer;
	letter-spacing:normal;
	opacity: .9;
	-moz-opacity: 100;
	filter: alpha(opacity=100);
}

/* 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:#003366;
	text-decoration:none;
	color:#ffffff;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover,
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover,
ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color:#003366;
	text-decoration:none;
	color:#ffffff;
}
