/*		------	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: relative;
  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;
	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: 180px;
}

/* fix the position */
#menu 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 {
	display: inline;
	float: left;
	background: white url(../images/menu-bg.gif) left top repeat-x;
	padding: 0px 16px;
	width: 173px;
}
#menuList {
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 173px;
}
#menu li {
	position: relative;
	border-top: 1px solid #e0e0e0;
	font: bold 14px/18px Arial,sans-serif;
	padding: 10px 0px 10px 16px;
	background: url(../images/arrow-right.gif) left 12px no-repeat;
	width: 157px;
}
#menu li:first-child {
	border-top: none;
}
#menu li li {
	border-top: none;
	background: white;
	padding: 0px;
	font-weight: normal;
}
#menu li a {
	text-decoration: none;
}
#menu li a:hover {
	text-decoration: underline;
}
#menu li li a {
	color: #978d75;
	padding: 10px 6px;
	font-weight: bold;
}
#menu li li a:hover {
	background-color: #00a8aa;
	color: white;
	text-decoration: none;
}
#menuList ul {
	list-style: none;
	padding: 0px;
	margin: 4px 0px 0px 16px;
	display: none;
}
#menuList a.arrow,
#menuList a.downarrow {
	position: absolute;
	top: 11px;
	left: 0px;
	background: url(../images/arrow-right.gif) left top no-repeat;
	width: 12px;
	height: 12px;
	cursor: pointer;
}
#menuList a.downarrow {
	background: url(../images/arrow-down.gif) left top no-repeat;
}
#menu ul ul {
	margin: 0px;
	border: 1px solid #e0e0e0
}