/* CSS Document */
/* nav */
#navigation {
}
.nav {
	position: relative;
	margin-top: 20px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
}
.nav ul {
	margin: 0;
	padding: 0;
}
.nav li {
	margin: 0 5px 10px 0;
	padding: 0;
	list-style: none;
	display: inline-block;
}
.nav a {
	padding: 3px 12px;
	text-decoration: none;
	color: #FFF;
	line-height: 100%;
	font-weight: normal;
	color: #fff;
	border-radius: 5px;
	background-image: url(/images/layout/box_back.png);
}
.nav a:hover {
	color: #9CB3E6;
}
.nav .current a {
	background: #333333;
	color: #fff;
	border-radius: 5px;
}
/* center nav */
.nav.center ul {
	text-align: center;
}
@media screen and (max-width: 600px) {

	.nav {
	position: relative;
	min-height: 40px;
	z-index: 300;
	}	
	.nav ul {
	width: 180px;
	padding: 5px 0;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #999;
	border-radius: 5px;
	box-shadow: 0 1px 2px rgba(0,0,0,1);
	background-color: #666;
	background-image: url(/images/icon-menu.png);
	background-repeat: no-repeat;
	background-position: 10px 11px;
	}
	.nav li {
		display: none; /* hide all <li> items */
		margin: 0;
	}
	.nav .current {
		display: block; /* show only current <li> item */
	}
	.nav a {
		display: block;
		padding: 5px 5px 5px 32px;
		text-align: left;
	}
	.nav .current a {
	background: none;
	color: #333;
	}

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

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

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