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

/* 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 {
	top: 92px;
	left: 0px;
	height: 36px;
	width: 950px;
	border-top: 1px solid #e66969;
	background: url(../images/menubg.gif) left top repeat-x;
}
ul#menuList {
  float: left;
	height: 36px;
  padding: 0px;
  margin: 0px;
	border-right: 1px solid #dd2e2e;
	background: url(../images/menubg.gif) left top repeat-x;
}

/*
	IE6 users will have the "degraded" experience of seeing a border on the first li.
*/
#menu li:first-child a {
	border-left: 0;
}

#menu a {
	font: bold 14px/14px Arial,sans-serif;
  text-decoration: none;
	text-align: left;
	color: white;
	padding: 11px 19px;
	border-right: 1px solid #6e0505;
	border-left: 1px solid #dd2e2e;
}

#menu li:hover a {
	color: black;
}

#menu li ul {
	background-color: #920707;
	border: solid 1px #e66969;
	width: 200px;
}

/*
	The li hover state is managed by the IE6 .htc component, so it's available to us here, too.
*/
#menu li:hover ul li a,
#menu li:hover ul li:hover li a,
#menu li:hover ul li:hover li:hover li a {
	font: bold 12px/14px Arial,sans-serif;
	color: #FFFFFF;
	padding: 5px 10px;
	display: block;
}

#menu li:hover ul li:hover a,
#menu li:hover ul li:hover li:hover a,
#menu li:hover ul li:hover li:hover li:hover a {
	color: black;
}

