/*		------	Basic style	------		*/
#menu {
	/*
	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;
  position: absolute;
	top: 124px;
	left: 0px;
  z-index: 1;
}

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

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

#menu a {
	display: block;
}

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

#menu li ul {
	visibility: hidden;
	position: absolute;
	top: 39px;
	left: 0px;
	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 #menu li ul {
	display: none;
}

#menu li li {
  position: relative;
  left: 0px;
	width: 294px;
}

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

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

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

#menu .arrow {
  position: absolute;
  right: 0px;
  margin: 0px;
  padding: 0px 2px;
  font: normal 12px/12px Lucida Sans Unicode,Arial,sans-serif;
}
/*		------   Make-up	--------			*/

#menu {
	height: 39px;
	padding: 0px 0px 0px 35px;
}
ul#menuList {
  display: block;
  margin: 0px;
	padding: 0px;
	background: #ebe8b6 url(../images/menubg.gif) left 37px no-repeat;
}
ul#menuList li {
	margin: 0px;
	padding: 0px;
}

#menu a {
	display: inline;
	float: left;
	position: relative;
	background: url(../images/menu/tab-left.gif) left top no-repeat;
	height: 39px;
	text-decoration: none;
	font: normal 14px/39px Georgia,serif;
	color: white;
	padding: 0px 12px;
}
#menu li {
	background: url(../images/menu/tab-center.gif) left top repeat-x;
}
#menu span.tabend {
	position: absolute;
	top: 0px;
	right: -1px; /* solves a 1px error in IE6 */
	width: 13px;
	height: 39px;
	background: url(../images/menu/tab-right.gif) left top no-repeat;
}

#menu li:hover, #menu li.active {
	background: url(../images/menu/tab-hilited-center.gif) left top repeat-x;
}
#menu li:hover a, #menu li.active a {
	background: url(../images/menu/tab-hilited-left.gif) left top no-repeat;
	color: black;
}
#menu li:hover span.tabend, #menu li.active span.tabend {
	background: url(../images/menu/tab-hilited-right.gif) left top no-repeat;
}

#menu li ul {
	background-color: white;
	border: 1px solid #b5b5b5;
	border-top: none;
	width: 294px;
	margin-left: 2px;
	padding-top: 8px;
	z-index: 20;
}
#menu li li ul {
	margin-left: 0px;
	padding-top: 0px;
}

#menu li li {
	background-image: none;
	padding: 0px;
	width: 294px;
}
#menu li:hover li a {
	display: block;
	float: none;
	padding: 4px 16px;
	height: auto;
	background-image: none;
	color: black;
	font: normal 12px/14px Verdana,sans-serif;
}
#menu li li:hover a {
	background-color: #fff69c;
}