/*
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;
	position: relative;
	margin: 0px auto 0px auto;
	clear: both;
	border-top: 1px solid #fff;
	z-index: 105;
	
	background: rgb(91,104,118); /* Old browsers */
background: -moz-linear-gradient(top, rgba(91,104,118,1) 0%, rgba(45,62,80,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(91,104,118,1)), color-stop(100%,rgba(45,62,80,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(91,104,118,1) 0%,rgba(45,62,80,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(91,104,118,1) 0%,rgba(45,62,80,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(91,104,118,1) 0%,rgba(45,62,80,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(91,104,118,1) 0%,rgba(45,62,80,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b6876', endColorstr='#2d3e50',GradientType=0 ); /* IE6-9 */
}

#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-family: 'Raleway', sans-serif;
	font-size: 16px;
	padding-left:44px;
	padding-right:44px;
	text-transform:uppercase;
	height: 54px;
}



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



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




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

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

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


#block_navigation ul li:hover > a{
	background: rgb(45,62,80); /* Old browsers */
background: -moz-linear-gradient(top, rgba(45,62,80,1) 0%, rgba(91,104,118,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(45,62,80,1)), color-stop(100%,rgba(91,104,118,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(45,62,80,1) 0%,rgba(91,104,118,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(45,62,80,1) 0%,rgba(91,104,118,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(45,62,80,1) 0%,rgba(91,104,118,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(45,62,80,1) 0%,rgba(91,104,118,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d3e50', endColorstr='#5b6876',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: 1;
	opacity:0;
	visibility: hidden;
	border-bottom:solid 1px #e7e7e7;
	background: #fff; 
	display: block; 
	margin-left: 30px;
	width:auto;
	
}


 #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;
	z-index: 1000;
}
#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;
}	

#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 {
	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   {
	z-index: 1;
	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;
	
	
}

#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;
	z-index: 30;
	}
	

#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-family: Century Gothic;
	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-family: Century Gothic;
	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;
	background: #002699; /***for IE**/ 
	background: hsla(225, 100%, 30%, 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%);
}
/************END_STYLE_OF_CONTACT_BLOCK*************/







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

	font-family: Tahoma, Geneva, 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{
	background: #363c5e; /* Old browsers */
background: -moz-linear-gradient(top, #363c5e 0%, #202040 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#363c5e), color-stop(100%,#202040)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #363c5e 0%,#202040 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #363c5e 0%,#202040 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #363c5e 0%,#202040 100%); /* IE10+ */
background: linear-gradient(to bottom, #363c5e 0%,#202040 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#363c5e', endColorstr='#202040',GradientType=0 ); /* IE6-9 */
}


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