/* The CSS Code for the menu starts here */
	
/* Reset */
		
#nav * {
	/*  margin:0px;   */
	padding:0px;
}

.clearFix {
	clear: both;
}

/* Slim */
/* Navigation First Level */

#nav{
	clear: both; 
	font-family: Arial, Helvetica, Utkal, sans-serif;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 12px;
	font-weight:300;
	height: 24px;
	border-top: 3px solid #363636;
	border-left: 7px solid #363636;
	border-bottom: 3px solid #363636;
	border-right: 3px solid #363636;
	-webkit-border-radius: 0px 0px 10px 10px;-moz-border-radius: 0px 0px 10px 10px;border-radius: 0px 0px 10px 10px;background-color:#333;
}

#nav ul{
	height:25px;
	list-style:none;
	border: 3px solid #333;
	-webkit-border-radius: 4px;
	z-index: 10; 
}

#nav li{
	float:left;
	padding:0px;
	list-style-type: none;
}

#nav li a{
	display:block;
	text-align:center;
	text-decoration:none;
	color: #eee !important;
	line-height:25px;
	padding:0px 20px;
	-webkit-border-radius: 4px;	
}

#nav li a:hover{
	text-decoration:none;
	background: #6A798B;
	color: #fff;
	-webkit-border-radius: 2px;
}

/* Navigation Second Level */

#nav li ul{
	position:absolute;
	z-index:10; 
	display:none;
	height:auto;
	width:175px;
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	margin-left:-3px;
}

#nav li:hover ul{
	display:block;
}

#nav li li:hover {
	/* font-weight:800;*/
}

#nav li li {
	display:block;
	float:none;
	width:175px;
}

#nav li ul a{
	text-align:left;
	display:block;
	height:25px;
	padding:0px 10px 0px 20px;
}
