/* CSS Document */
#menu, #menu ul {
	list-style:none;
	padding:0;
	margin:0;
}
#menu li {
	float:left;
	text-align:center;
	position:relative;
	line-height:33px;
	min-width:9em;
	_width:9em;
}
#menu li ul {
	position:absolute;
	margin-top:0em; /*-1em*/
	margin-left:0em; /*.5em*//* for IE */
	line-height:16px;
	display:none;
}
#menu ul li ul {
	margin-top:-2.2em; /*-3em*/
	margin-left:209px; /*7em*/
}
#menu li ul li { /*FOR IE 7*/
  clear:left;
  line-height:2em;
  font-size:11px;
  text-align:left;
  width:210px;/*130*/
}
/* ******************************************************************* */
/* SHOW SUBMENU  1 */
#menu li:hover ul, #menu li.over ul {
	display:block;
}
#menu li:hover ul ul, #menu li.over ul ul {
	display:none;
}
/* SHOW SUBMENU  2 */
#menu ul li:hover ul, #menu ul li.over ul {
	display:block;
}
/* ******************************************************************* */
/* STYLING UP THE LINKS */
#menu a {
	display:block;
	background-color:#b48757;
	background-image:url("../img/menu_bg.png");
	background-position:left center;
	background-repeat:repeat-x;
	color:white;
	text-decoration:none;
	padding:0 10px;
}
#menu a:hover {
	background:#f0bd58;
	color:black;
}
#menu ul {
	border-top:1px solid #fff;
}
#menu ul a {
	border-right:none;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
	background-image:none;
	background-color:#b48757;
}

/* ******************************************************************* */

#menu {
	z-index:1;
}
#menu ul {
	z-index:2;
}
#menu ul ul {
	z-index:3;
}

/* ******************************************************************* */

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */