	.nav .current {
		display: none; /* показывать только текущие активные <li> пункты */
	 
	}
@media  all  and (max-width: 800px) {
	.nav {
		position: relative;
		min-height: 40px;
	 
			width:50%;
	margin-left:25%;
	}	
	.nav ul {
		/* width: 180px; */
	width:100%;
	padding: 5px 0;
		position: absolute;
		top: 0;
		left: 0;
		/* border: solid 1px #aaa; */
		/* background:   #333333 url("../img/menu.png") no-repeat 10px 11px; */
		background:   #FFFFFF   ;
		
		
 

		border-radius: 5px;
		box-shadow: 0 1px 2px rgba(0,0,0,.3);
		border:solid 1px  #FBBE49;
	}
	.nav li {
		display: none; /* скрыть все <li> пункты */
		margin: 0;
		
	}
	.nav .current {
		display: block; /* показывать только текущие активные <li> пункты */
	 
	}
 
 
	.nav .current b {
		background: none;
		/* color: #666; */
		color:#FBBE49;
		
		padding: 5px 5px 5px 45px;
		
		-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
		
	}
	
	.nav a {
		display: block;
				padding: 5px 5px 5px 45px;
		text-align: left;
	}
	.nav .current a {
		background: none;
		/* color: #666; */
		color:#FBBE49;
		
		padding: 5px 5px 5px 45px;
		
	}
 
	/* при наведении на пункты меню */
	.nav ul:hover {
		background-image: none;
		
	}
	
	/* .nav .current a:before { */
		/* display: block; /* показывать только текущие активные <li> пункты */ */
		/* content: "Главная"; */
	/* } */
	.nav .current a:hover::before {
	 
		content: "";
	}
	.nav .current:hover::before {
		display: block; /* показывать только текущие активные <li> пункты */
	}	
 
 
	
	
	.nav ul:hover li {
		display: block;
		margin: 0 0 5px;
		width:100%;
			 
	}
	.nav ul:hover .current {
		background: url(images/icon-check.png) no-repeat 10px 7px;
	}
	.nav ul:hover .current b {
		color:#333333;
 
	}	
	
	/* .nav ul:hover .current { */
		/* display:none; */
	/* }	 */
 
	/* адаптивное меню справа */
	.nav.right ul {
		left: auto;
		right: 0;
	}
 
	/* адаптивное меню по центру */
	.nav.center ul {
		left: 50%;
		margin-left: -90px;
	}

 	
}