/*
Item: Elan-Responsive CSS3 Dropdown Menu
Author: http://codecanyon.net/user/sky_lab
Version: 1.3
*/

/************START_RESET_STYLE****************/
* {
	padding: 0;
	margin: 0;
}
/*********END_BASIC_STYLE***********/


/************START_STYLE_OF_DIV_THAT_HOLDS_MAIN_LINKS**********/

#block_navigation {
	height: 56px;
	background: #001966; /***for IE**/
	background: hsla(225, 100%, 20%, 1);
	margin: 1px auto 0px auto;
	-webkit-box-shadow:0 0 5px #999;
	-moz-box-shadow:0 0 5px #999;
	box-shadow:1px 1px 3px #999;
	background-image: url(bg_ie/bg.png); /***for IE**/
	background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: url(../images/menu-bg.jpg);
	clear: both;
	background-position: center center;
}

#block_navigation  ul {width:92%; margin:0 auto; max-width:1024px;}

#block_navigation  ul li {
	position:relative;
	list-style: none;
	float: left;
	}
	
#block_navigation ul li a {
	font-weight: 300;
	text-decoration: none;
	display: block;
	line-height: 55px;
	color: #eee;
	font-size: 18px;
	padding-left:39px;
	padding-right:39px;
	text-transform:uppercase;
	height: 54px;
	white-space:nowrap;
font-family: 'Arimo', sans-serif;
	font-weight: lighter;
}







@media only screen and (max-width: 1130px) {
#block_navigation ul li a {
		font-size: 17px;
	padding-left:32px;
	padding-right:32px;
}
}


@media only screen and (max-width: 1030px) {
#block_navigation ul li a {
		font-size: 17px;
	padding-left:27px;
	padding-right:27px;
}
}


@media only screen and (max-width: 920px) {
#block_navigation ul li a {
		font-size: 17px;
	padding-left:24px;
	padding-right:24px;
}
}



@media only screen and (max-width: 860px) {
#block_navigation ul li a {
		font-size: 16px;
	padding-left:20px;
	padding-right:20px;
}
}






#block_navigation ul li:hover > a{ text-shadow:1px 1px #000;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b6eb3+0,3b6eb3+50,4976b2+51,3b6eb3+100&0.85+0,1+35,1+100 */
background: -moz-linear-gradient(top, rgba(59,110,179,0.85) 0%, rgba(59,110,179,1) 35%, rgba(59,110,179,1) 50%, rgba(73,118,178,1) 51%, rgba(59,110,179,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,110,179,0.85)), color-stop(35%,rgba(59,110,179,1)), color-stop(50%,rgba(59,110,179,1)), color-stop(51%,rgba(73,118,178,1)), color-stop(100%,rgba(59,110,179,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d93b6eb3', endColorstr='#3b6eb3',GradientType=0 ); /* IE6-9 */
}


#block_navigation  li a:active{ 
	color: #888;
}
/************END_STYLE_OF_DIV_THAT_HOLDS_MAIN_LINKS**********/

/**********START_STYLE_OF_DIV_THAT_HOLDS_SUB_LINKS**********/

#block_navigation ul li ul{
	position: absolute;
}	

#block_navigation ul ul {
	z-index: 100;
	opacity:0;
	visibility: hidden;
	border-bottom:solid 1px #e7e7e7;
	background: #fff; 
	display: block; 
	-webkit-box-shadow:0 1px 1px #eee;
	-moz-box-shadow:0 1px 1px #eee;
	box-shadow:0 1px 1px #eee;
	margin-left: 30px;
	-webkit-transition:opacity 0.2s linear, margin-left 0.2s linear;
	-moz-transition:opacity 0.2s linear, margin-left 0.2s linear;
	-ms-transition:opacity 0.2s linear, margin-left 0.2s linear;
	-o-transition:opacity 0.2s linear, margin-left 0.2s linear;
	transition:opacity 0.2s linear, margin-left 0.2s linear;
}


 #block_navigation ul li ul li{
	position: relative;
	display: block;
	float: none;
	border-top:solid 1px #e7e7e7;
	border-right:solid 1px #e7e7e7;
	border-left:solid 1px #e7e7e7;
}
#block_navigation ul li ul li a {
	width:222px;
	font-weight: normal;
	line-height: 31px;
	color: #777;
	display: block;
	padding-left: 15px;
	background: #fff;
	margin:0;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 13px;
	height: 31px;
		text-transform:uppercase;

}	

#block_navigation ul li ul li a:hover {
	line-height: 31px;
}



#block_navigation ul ul ul li{
	top:-1px;
	padding:0;
	position:relative;

}			

#block_navigation ul ul ul li a

{text-transform:none;}


#block_navigation ul ul ul {
	position: absolute;
	left: 100%;
	top: 30%;
	padding:0;
}

#block_navigation  i {
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	padding-right: 7px; 
}
#block_navigation ul li:hover > ul   {
	opacity: 1;
	visibility: visible;
	margin: 0;
}
	
#block_navigation ul ul li:hover > a{
	background-color: #333;
	color: white;
}
/**********END_STYLE_OF_DIV_THAT_HOLDS_SUB_LINKS**********/

/*******START_STYLE_OF_RIGHT_ITEM********/

#block_navigation li.right_item {
	float: right;
}
/*******END_STYLE_OF_RIGHT_ITEM********/




/*********START_STYLE_OF_PLUS_SPAN_DIVS_STYLE************/

#block_navigation span.span_level_1, span.span_level_2{
	position: absolute;
	top:0;
	right:10px;
	font-size:16px;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-ms-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
	
}

#block_navigation ul  ul  li:hover  span.span_level_1{
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg));
	opacity: 0.5;
	
}
	
#block_navigation ul  ul ul li:hover span.span_level_2{
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg));
	opacity: 0.5;
}



/*********END_STYLE_OF_PLUS_SPAN_DIVS_STYLE************/	

/************START_STYLE_OF_CONTACT_BLOCK*************/
 .contact_block {
	background: #fff;
	display: none;
	position: absolute;
	right:0;
	border-right:solid 1px #e7e7e7;
	border-left:solid 1px #e7e7e7;
	border-bottom:solid 1px #e7e7e7;
	-webkit-box-shadow:0 1px 1px #eee;
	-moz-box-shadow:0 1px 1px #eee;
	box-shadow:0 1px 1px #eee;
	}
	

#block_navigation li.right_item:hover   .contact_block {
	display: block;
}


#block_navigation h1, #block_navigation textarea, #block_navigation input{
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
}
#block_navigation h1{
	line-height: 50px;
	font-style: normal;
	font-size: 20px;
	font-weight: normal;
	margin-top:0;
	margin-left: 25px;
	margin-right: 25px;
	color: #555;
	border-bottom: solid 1px #e7e7e7;
}
#block_navigation input{
	position: relative;
	width: 200px;
	height: 25px;
	padding-top: 2px;
	
}
#block_navigation textarea {
	width: 250px;
	height: 100px;
	padding-top: 7px;
	
}
#block_navigation input, #block_navigation textarea{

	display: block;
	padding-left: 7px;
	font-size: 12px;
	color: #555;
	margin: 25px;
	border: solid 1px #e7e7e7;
}


#block_navigation input:focus, #block_navigation textarea:focus{
	border:1px solid #bbb;
}

#block_navigation input[type=submit] {
	color: #fff;
	padding: 0;
	width: 60px;
	display: block;
	position: relative;
	border:none;
	background: #001966; /***for IE**/ 
	background: hsla(225, 100%, 20%, 1);
	background-image: linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -o-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0, 0) 50%, rgba(255,255,255, 0.09) 0%);
}

#block_navigation input[type=submit]:hover {
	cursor: pointer;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b6eb3+0,3b6eb3+50,4976b2+51,3b6eb3+100&0.85+0,1+35,1+100 */
background: -moz-linear-gradient(top, rgba(59,110,179,0.85) 0%, rgba(59,110,179,1) 35%, rgba(59,110,179,1) 50%, rgba(73,118,178,1) 51%, rgba(59,110,179,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,110,179,0.85)), color-stop(35%,rgba(59,110,179,1)), color-stop(50%,rgba(59,110,179,1)), color-stop(51%,rgba(73,118,178,1)), color-stop(100%,rgba(59,110,179,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d93b6eb3', endColorstr='#3b6eb3',GradientType=0 ); /* IE6-9 */
}
/************END_STYLE_OF_CONTACT_BLOCK*************/







/*************START_STYLE_PULL_ELEMENT***************/
#block_navigation #pull {
	position:relative;
	list-style: none;
	font-weight: normal;
	height: 55px;

font-family: 'Oswald', sans-serif;
	-webkit-transition:all 0.2s linear;
	-moz-transition:all 0.2s linear;
	-ms-transition:all 0.2s linear;
	-o-transition:all 0.2s linear;
	transition:all 0.2s linear;
	background-image: url(../images/menu-bg.jpg);
	background-position: center center;



}

#block_navigation #pull  a{
	display: block;
	line-height: 55px;
	height: 100%;
	color: #eee;
	text-decoration: none;
	font-size: 15px;
		padding-left:17px;
}

#block_navigation #pull a:hover{
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b6eb3+0,3b6eb3+50,4976b2+51,3b6eb3+100&0.85+0,1+35,1+100 */
background: -moz-linear-gradient(top, rgba(59,110,179,0.85) 0%, rgba(59,110,179,1) 35%, rgba(59,110,179,1) 50%, rgba(73,118,178,1) 51%, rgba(59,110,179,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,110,179,0.85)), color-stop(35%,rgba(59,110,179,1)), color-stop(50%,rgba(59,110,179,1)), color-stop(51%,rgba(73,118,178,1)), color-stop(100%,rgba(59,110,179,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(59,110,179,0.85) 0%,rgba(59,110,179,1) 35%,rgba(59,110,179,1) 50%,rgba(73,118,178,1) 51%,rgba(59,110,179,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d93b6eb3', endColorstr='#3b6eb3',GradientType=0 ); /* IE6-9 */
	
}


/*************END_STYLE_PULL_ELEMENT***************/
