/* nav evKiH
http://webdesignerwall.com/tutorials/css-responsive-navigation-menu
*/
	.home{
	position: relative;
	float: left;
	width:60px; height: 60px;

}
.nav {
	z-index: 222;
	margin: 10px 0;

}
.nav ul {
	display: grid;
	color: #115000;
	background-color:#FFEE00;
	width: 20%;
	min-width:220px;
	font-size: 0.7em;
	font-weight: normal;
	text-align: left;
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.nav li {
	margin: 0 5px 10px 0;
	padding: 0;
}
.nav a {
	padding: 3px 12px;
	text-decoration: none;
	color: #999;
	line-height: 100%;
}
.nav a:hover {
	color: #115000;
}
.nav .current a {
	color: #0e3b01;
	border-radius: 5px;
	list-style-image:url("../Pics/PointRed10.gif");
	list-style-position:inside;
	display: list-item;
}
/* right nav */
.nav.right ul {
	text-align: right;
}

/* center nav */
.nav.center ul {
	text-align: center;
}

/*=========================================================================================*/
@media screen and (max-width: 800px) 
{
	.home{
		position: relative;
		float: left;
		width:60px; height: 60px;
		}
	
	.nav {
		min-height: 60px;
		margin: -60px 0;
		margin-left:60px;
		width:60px;
	}	
	.nav ul {
		display: inline-grid;
		z-index: 222;
		height: 60px;
		margin-left:60px;
		font-size: .8em;
		width: 250px;
		padding: 5px 0;
		position: absolute;
		left: 0;
		background: url("../Pics/menu.png") ;
		background-repeat: no-repeat;
		background-size: 60px;
		border-radius: 5px;

	}
	.nav li {
		display: none; /* hide all <li> items */
		margin: 5px;
		background-color:#ffee00;
	}
	.nav .current {
		display: none; /* hide all <li> items */
	}
	.nav a {
		display: block;
		padding: 5px 5px 5px 32px;
		text-align: left;
	}
	.nav .current a {
		background: none;
		color: #115000;
	}

	/* on nav hover */
	.nav ul:hover {
		background-image: none;
		height: 255px;
	}
	.nav ul:hover li {
		display: block;
		margin: 0 0 5px;
	}
	.nav ul:hover .current {
/*		background: url(images/icon-check.png) no-repeat 10px 7px;*/
		background: #FFEE00  10px 7px;

	}

	/* right nav */
	.nav.right ul {
		left: auto;
		right: 0;
	}

	/* center nav */
	.nav.center ul {
		left: 50%;
		margin-left: -90px;
	}
}


