/* nav */
.knav {
	position: relative;
}
.main-knav {
	width: 100%;
	border:0;
	margin: 0 0 0 10px;
	padding: 11px 0 9px 0;
	/* gradient */
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#222));
	background: -moz-linear-gradient(top,  #000,  #222);
	background: linear-gradient(-90deg, #000, #222);
	/* rounded corner */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* box shadow */
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);

}
.knav ul {
	margin: 0;
	padding: 0;
}
.knav li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
.knav a {
	line-height: 100%;
	font-weight: bold;
	color: #ccc;
	display: inline;
	padding: 8px 20px 10px 20px;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0,0,0,.5);
	font-size:130%;
}
.knav a:hover {
	color: #fff;
	background: #111;
	/* gradient */
	background: -webkit-gradient(linear, left top, left bottom, from(#111), to(#444));
	background: -moz-linear-gradient(top,  #111,  #444);
	background: linear-gradient(-90deg, #111, #444);
}
.knav .kcurrent a {
	color: #fff;
	background: #222;
	/* gradient */
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#111));
	background: -moz-linear-gradient(top,  #000,  #111);
	background: linear-gradient(-90deg, #000, #111);
}
/* right nav */
.nav.right ul {
	text-align: right;
}

/* center nav */
.nav.center ul {
	text-align: center;
}

@media screen and (max-width: 960px) {
	.main-knav {
	font-size:80%;
	}
}
@media screen and (max-width: 767px) {
	.knav {
		position: relative;
		min-height: 40px;
	}	
	.main-knav {
	background: none;
	border:0px solid #C5C5C5;
	margin: 0;
	/* box shadow */
	-webkit-box-shadow: inset 0 0 0 rgba(255,255,255,.3), 0 0 0 rgba(0,0,0,.4);
	-moz-box-shadow: inset 0 0 0 rgba(255,255,255,.3), 0 0 0 rgba(0,0,0,.4);
	box-shadow: inset 0 0 0 rgba(255,255,255,.3), 0 0 0 rgba(0,0,0,.4);
	}
	.knav ul {
		width: 180px;
		padding: 5px 0;
		position: absolute;
		top: 0;
		left: 0;
		border: solid 1px #aaa;
		background: #fff url(../img/bg/icon-menu.png) no-repeat 10px 11px;
		border-radius: 5px;
		box-shadow: 0 1px 2px rgba(0,0,0,.3);
	}
	.knav li {
		display: none; /* hide all <li> items */
		margin: 0;
	}
	.knav .kcurrent {
		display: block; /* show only current <li> item */
	}
	.knav a {
		color:#666;
		display: block;
		padding: 5px 5px 5px 32px;
		text-align: left;
		font-size: 150%;
	}
	.knav .kcurrent a {
		background: none;
		color: #666;
	}

	/* on nav hover */
	.knav ul:hover {
		background-image: none;
	}
	.knav ul:hover li {
		display: block;
		margin: 0 0 5px;
	}
	.knav ul:hover .kcurrent {
		background: url(../img/bg/icon-check.png) no-repeat 10px 7px;
	}

	/* right nav */
	.knav.right ul {
		left: auto;
		right: 0;
	}

	/* center nav */
	.knav.center ul {
		left: 50%;
		margin-left: -90px;
	}
	
}