/*********** TOP MENU START ***********/

body {
	behavior:url("/templates/universal/menus/top-menu/csshover.htc"); /* update for IE browsers */
}
#menuBar {
	/*
	height: ??;
	Since we are floating all LIs, then you need to set height in the make-up part, if you want to place some background on the menu
	*/
	display: block;
}

#menuBar ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#menuBar li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	position: relative;
}

#menuBar a {
	display: block;
}

* html #menuBar li a {
	position: relative;/* Fix IE6's inability to expand clickable area */
}

#menuBar li ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
}

/* using display is better (no scrollbars when page loads), but IE can't handle it, so only good browsers should see this */
html>body #menuBar li ul {
	display: none;
}

#menuBar li li {
	width: 100%;
}

/* fix the position */
#menuBar li li ul {
	top: 0;
	left: 100%;
}

/* simulate child selector for IE */
div#menuBar li:hover ul,
#menuBar li:hover li:hover ul,
#menuBar li:hover li:hover li:hover ul {
	visibility: visible;
}
div#menuBar li:hover li ul,
#menuBar li:hover li:hover li ul,
#menuBar li:hover li:hover li:hover li ul {
	visibility: hidden;
}

/* do the normal show, with increased specificity, for good browsers */
#menuBar ul.menuList li:hover>ul {
	display: block !important;
	visibility: visible !important;
}


/*		------   Make-up	--------			*/

#menuBar {
/*	font-family: "Arial CE", "Helvetica CE", Arial, helvetica, sans-serif;*/
	font-size: 95%;
/*	color: white;*/
	z-index:100;
	padding-left: 9px;
	padding-top: 0;
	padding-bottom: 4px;
	_padding-bottom: 1px;
	height: 22px;/* 	Height mentioned above	 */
	background-color: #FFC730;
}

#menuBar a {
	text-decoration: none;
	text-align: center;
	color: black; 
	font-weight: normal;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 9px;
	padding-right: 9px;
}
#menuBar a:hover {
	text-decoration: none;
}

#menuBar li {
	margin: 1px;
	padding: 1px;
}
#menuBar li:hover {
	background-color: #FFEB7D;
}

#menuBar li li {
	width: 149px;/* 	we can't use 100% because LIs have margin and padding (although latter is more important) */
	_width: 155px;
	_margin-left: 0px;
	_margin-right: 0px;
}

#menuBar li ul {
	color: #000;
	background-color: #FFC730;
/*	background-image: url(../images/iconbg.gif);*/
	background-repeat: repeat-y;
	border: 1px solid #FFA751;
	width: 153px;
}
#menuBar li ul a {
	text-align: left;
	padding-left: 9px;
}
#menuBar li ul li ul {
	margin-top: 3px;
	margin-left: -2px;

}
#menuBar li ul a.submenu {
	background-image: url(../images/arrow.gif);
	background-repeat: no-repeat;
	background-position: 100% 5px;
}
.menulist {
	position:absolute;
}

/*		------   Specific fixes	(thank to W3C for these) --------			*/
/* 
		I'm gonna move the submenus 5px up
		5px works fine here and it is roughly calculated as:
			padding-bottom + margin-bottom + border-bottom of the LI
			+
			*-top values of the LI
			
		Mostly it needs a bit of trial and error.
		Basic idea is to remove the scrollbar when menu re-positioning is perfomed. Of course, script could take care of that, but that takes too much code - this is easier.
*/
#menuBar li li ul {
	margin-top: -5px;
}
/*********** TOP MENU END ***********/
