﻿/*КОД МЕНЮ
/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}


/* Основные стили */
body {
	background-color: #ece8e5;
}
nav {
	height: 40px;
	width: 100%;
	background: #455868;
	font-size: 11pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
	border-bottom: 2px solid #283744;
}
nav ul {
	padding: 0;
	margin: 0 auto;
	width: 600px;
	height: 40px;
}
nav li {
	display: inline;
	float: left;	
}
nav a {
	color: #fff;
	display: inline-block;
	width: 150px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	text-shadow: 1px 1px 0px #283744;
		
}
.soc-bar {
	width: 50px;
	text-align: center;
	line-height: 10px;		
}
nav ul ul ul a {
	color: #fff;
	display: inline-block;
	width: 200px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	text-shadow: 1px 1px 0px #283744;
}
nav li a {
	border-right: 1px solid #576979;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #8c99a4;
}
/*ВЫПАДАЮЩЕЕ МЕНЮ
/* изменяем цвет фона при наведении курсора */
nav a:hover {
	background-color: #000000;
}
/*Настройка первого уровня выпадающего меню
/* скрываем выпадающие списки по умолчанию
			 * и задаем абсолютное позиционирование */
nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	z-index: 10;
}
			
/* отображаем выпадающий список при наведении */
nav ul li:hover > ul {
	display:inherit;
}
			
/* первый уровень выпадающего списка */
nav ul ul li {
	float:none;
	display:list-item;
	position: relative;
	background-color: #283744;
	width: 150px;
	height: 50px;
}
		
/*Настройка второго и последующих уровней меню
	* смещаем 2 и 3 уровни влево 
	* на значение длины первого уровня.
*/
nav ul ul ul {
	position: absolute;
	top:0;
	left:100%;
	width: 200px;
	height: 50px;
}
nav ul ul ul li {
	float:none;
	display:list-item;
	position: relative;
	background-color: #283744;
	width: 200px;
	height: 50px;
}

/* Стили для экранов 600px и меньше */
@media screen and (max-width: 600px) {
	nav{
		width:100%;
	}
	nav ul {
		padding: 0;
		height: 40px;
		width:100%;
	}
	nav li {
		display: inline;
		float: left;
	}
	nav ul ul{
		margin:0;
	}
	nav ul ul ul {
		margin:0;
		}

	nav ul li{
		width:30%;
		margin:0;
	}
	nav ul ul li{
		width:120px;
		height:55px;
		margin:0;
	}
	nav ul ul ul li{
		width:120px;
		margin:0;
		height:70px;
	}


	nav ul li a{
		width:100%;
		margin:0;
	}
	nav ul ul li a{
		width:100%;
		margin:0;
		height:100%;
	}
	nav ul ul ul li a{
		width:100%;
		margin:0;
		height:100%;
	}
}



