@charset "utf-8";
/* CSS Document */

/* CSS Document */
#menu, #menu ul {
	list-style:none;
	padding:0;
	margin:0;
}
#menu li {
	float:left; 
	/* position:relative; surrounded this line and the one above it */
 	border-bottom: 1px solid #fff;
	line-height:2.5em;
	width:17em; /*Sets Width of each menu box */
}
#menu li ul {
	position:absolute;
	margin-top:-1em; /* should be -1em */
	margin-left:-10em; /* for IE  should be 1.5em*/
	display:none;
}
#menu ul li ul {
	margin-top:-1em;
	margin-left:5em; /* just changed this should be 5em */
}

/* ******************************************************************* */
/* 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;
	border-right:1px solid #000;
	background: #2A2A2A;
	color: #F90 ;
	text-decoration:none;
	padding:0 10px;
}
#menu a:hover {
	background-color: #03F;
	color:#000;
}
#menu ul {
	border-top:1px solid #000;
}
#menu ul a {
	border-right:none;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	border-left:1px solid #fff;
	background:#000;
}

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

#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 */

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

/* Suppose to Fix the Horizontal in IE */
#menu li ul li {
clear:left;
}


