
/*
#fafafa - цвет текста
#1a75c9 - фон обычный
#42a4ff - фон наведения
#5e8e5e - подчеркивание 3px
*/

.cMenu {
	background-color: #1a75c9;
	
	position: relative;
	z-index: 1000;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.36);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.36);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.36);
}
.cMenuFixed {
	 width: 100%;
	 position: fixed;
	 top: 0px;
	 background-color: #1a75c9;
	 z-index: 1000;
}

.headerMenu {
	font-family: 'Open Sans Condensed';
	font-size: 18px;
	font-weight: bold;
	color: #444444;
	
	text-align: center;
	margin: 0px;
	padding: 0px;
	background-color: #1a75c9;
	
	text-transform: uppercase;
}
.headerMenu LI {
	letter-spacing: 0px;
	display: inline-block;
}
.headerMenu A {
	color: #fafafa;
	display: inline-block;
	padding: 20px 20px 20px 20px;
	border-bottom: 2px solid #1a75c9; /* 3px */
}
.headerMenu A:hover {
	color: #fafafa;
}
.headerMenu LI.act A {
	color: #686868;
}


.headerMenu  li:hover {

}
.headerMenu  li:hover A {
	background-color: #42a4ff;
	border-bottom: 2px solid #ff9933; /* 3px */
}
.headerMenu .sub {
	font-size: 16px;
	background-color: #fff;
	
    position: absolute;
    margin-top: 0px;
    
    /*
    !!! inline version
    left: 0px;
    right: 0px;
    */
    
    z-index: 1000;

	visibility:hidden;
	opacity:0;
	transition:visibility 0s linear 0.3s, opacity 0.3s linear;
	
	
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.36);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.36);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.36);
}
.headerMenu  li.has-sub:hover ,
.headerMenu  li.has-sub:active ,
.headerMenu  li.has-sub:focus {
	
	
}
.headerMenu  li.has-sub:hover  .sub,
.headerMenu  li.has-sub:active  .sub,
.headerMenu  li.has-sub:focus  .sub {

	visibility:visible;
	opacity:1;
	transition-delay:0s;
	
	
}
.headerMenu  li.has-sub a.a-has-sub {

}
.headerMenu  li.has-sub:hover  a.a-has-sub,
.headerMenu  li.has-sub:active  a.a-has-sub,
.headerMenu  li.has-sub:focus  a.a-has-sub {
	
}
.headerMenu .sub UL {
	padding: 0px;
	margin: 0px;
}
.headerMenu .sub UL LI {
	/*
	!!! inline version
	display: inline-block;
	*/
	
	display: block;
	text-align: left;
	padding: 0px;
}
.headerMenu .sub UL LI:hover {
	background-color: #42a4ff;
	
}
.headerMenu .sub UL LI A {
	background-color: transparent;
	display: inline-block;
	width: 100%;
	padding: 10px 20px;
	color: #fafafa;
	border-bottom: 1px solid #b8b8b8;
	border-left: 3px solid #fff;
}
.headerMenu .sub UL LI A:hover {
	
}
.headerMenu .sub UL LI:hover A {
	background-color: #42a4ff;
	border-left: 3px solid #000;
}
.headerMenu .sub UL LI.menu-subtitle {
	padding: 5px 20px;
	background-color: #039fad;
	text-align: center;
}
.headerMenu .sub UL LI.menu-subtitle:hover {
	background-color: #039fad;
}


@media only screen and (max-width: 1200px) {
	.headerMenu {
		font-size: 14px;
	}
	.headerMenu LI {
		letter-spacing: 0px;
	}
	.headerMenu A {
		color: #fafafa;
		display: inline-block;
		padding: 10px 10px 10px 20px;
	}
	.headerMenu .sub {
		font-size: 12px;
	}
}





/**********************/

.headerMenuSmall {
	display: none;
}
.headerMenuSmall .hsLogo {
	text-align: center;
}
.headerMenuSmall .hsMenu {
	text-align: center;
}
.headerMenuSmall .hsMenu A {
	color: #211f2c;
	font-size: 18px;
	font-family: 'PlayfairDisplay-Regular';
}
.headerMenuSmall .hsMenu A:hover {
	color: #ad760a;
}




.headerMenuSmall {
	max-height: 40px;
	display: none;
	font-family: 'Open Sans Condensed';
	color: #fafafa;
}
.headerMenuSmall .hsLogo {
	text-align: center;
}
.headerMenuSmall .hsMenu {
	text-align: right;
	padding-right: 10px;
}
.headerMenuSmall .hsMenu A {
	color: #fafafa;
	font-size: 18px;
	font-weight: bold;
}
.headerMenuSmall .hsMenu A:hover {
	color: #ccc;
}
.headerMenuSmall .hsMenu A I {
	border: 1px solid #fafafa;
	border-radius: 3px;
	padding: 3px;
}


@media only screen and (max-width: 780px) {
	.headerMenu {
		border-top: 1px solid #fafafa;
	}
	.headerMenuSmall {
		display: block;
	}
	.headerMenu {
		display: none;
	}
	.headerMenu .sub {
		font-size: 12px;
		line-height: 13px;
	}
}