/* CSS3 Drop Nav */
#nav {
	clear: both;
	font-size: 18px;
	display: block;
	padding: 0 !important;
	margin: 0 !important;
	height: 37px;	
}
#nav li {
	position: relative;
	z-index: 1000;
	list-style: none;	
	float: left;
	display: inline;
	background: #ccc;
	width: 140px;
	margin: 0 20px 0 0;
	padding-bottom: 4px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#nav li.last {
	margin-right: 0;
}

/* main level link */
#nav a {
	font-weight: normal;
	color: #e7e5e5;
	text-decoration: none;
	display: block;
	margin: 0;
	width: 120px;
}
#nav a:hover {
	background: #000;
	color: #fff;
}




/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: transparent;
	color: #fff;
}

/* Color */
#nav li.one {
	background: #B11058;
}
#nav li.two {
	background: #B205C7;
}
#nav li.three {
	background: #3F5CA5;
}
#nav li.four {
	background: #0BA91A;
}
#nav li.five {
	background: #C7A005;
}
#nav li.six {
	background: #0CA99F;
}

	
/* sub level link Anchor */
#nav ul li li {
}
#nav ul li a, #nav li li a {
	font-size: 14px;
	width: 180px;
	background: #fff;
}
/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #444;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav ul a:hover {
	background: #666 url(../images/core/nav-gradient.png) repeat-x 0 -100px !important;
	color: #fff !important;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;

	text-shadow: 0 1px 1px rgba(0,0,0, .1);
}

/* dropdown */
#nav li:hover > ul {
	display: block;
	border: 1px solid #ccc;
}

/* level 2 list */
#nav ul {
	display: none;
	margin: 0;
	padding: 0;
	width: 200px;
	position: absolute;
	z-index: 1000;
	top: 37px;
	left: 0;
	background: #eee url(../images/core/nav-gradient.png) repeat-x 0 0;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav ul a {
	font-weight: normal;
	text-shadow: 0 1px 0 #fff;
}

/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners of first and last link */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;

	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;

	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
}

/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
} 
html[xmlns] #nav {
	display: block;
}
 
* html #nav {
	height: 1%;
}

/* ----------------------- */
#nav li a {
	padding: 5px 10px;
	display: block;
	color: #333;
	text-decoration: none;
	background: #ccc;
	position: relative;
	z-index: 1000;
}
#nav li ul li {
	background: #fff;
	position: relative;
	z-index: 1000;
}
#nav li a:hover {
	color: #fff;
	background: transparent;
	text-decoration: none;
	position: relative;
	z-index: 1000;
}
#nav li a.active {
	color: #fff;
	background: transparent;
	text-decoration: none;
}
#nav li a:active {
}
/* ----------------------- */	
