@charset "utf-8";
/* CSS Document */

/* Menu */
		#MenuContainer {
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	height: 40px;
	float: left;
}
		
				#Menu {
	margin-left: 0px;

}

				#Menu, #Menu ul{
	list-style-type:none;
	position: absolute;
	padding: 0px;
	margin: 0px;
				}
				
				#Menu a {
	font-weight:normal;
	color:#7d634e;
	text-decoration:none;
	background-color:#ada68b;
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 0;
	margin-left: 1px;
	display: block;
	padding-top: 5px;
	padding-right: 6px;
	padding-bottom: 5px;
	padding-left: 6px;
				}
				
				#Menu a:hover{
	background-color:#ada68b;
	color:#7d634e;
}
				#Menu li{
	float: left;
	position: relative;
	display: block;
}
				#Menu ul {
	position:absolute;
	display:none;
	width:auto;
	top:20px;
}/*to style the 1st level menu*/
				#Menu li ul a{
	height:auto;
	float:left;
	background-color:#ada68b;
	color:#FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #d8cfae;
	border-right-color: #d8cfae;
	border-bottom-color: #d8cfae;
	border-left-color: #d8cfae;
	width: 15em;
	padding: 3px;
} /*to style the 2nd level menu*/
				#Menu ul ul{top:auto;}	
				#Menu li ul ul {
	margin:0px -10px 0 0px;
	width:auto;
	left: 13.5em;
}/*width:13em;*/
				#Menu li:hover ul ul, #Menu li:hover ul ul ul, #Menu li:hover ul ul ul ul{ display:none; }
				#Menu li:hover ul, #Menu li li:hover ul, #Menu li li li:hover ul, #Menu li li li li:hover ul{ display:block; }						
