.mobilen{
display:none;
}



/* Giving a background-color to the nav container. */
nav { 
	background: linear-gradient(to top, #006593, #0A8ED2 );
	width: 100%;
	text-align: center; 
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}


/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	display: inline-block; 
	}
	

/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	
	}
	

/* Styling the links */
nav a {
	background-color: #006593;
	display:block;
	padding:0 10px;	
	color:#FFFFFF;
	font-size:14px;
	line-height: 40px;
	text-decoration:none;
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;

}

nav span a {
	font-size:16px;
	background:none;
	background-color:#f7e5b700;
	color:#FFFFFF;
	text-align:center;
}

nav a:hover { 
	background-color: #78bee2; 
	color:#000000;
}

nav ul ul a {
	border-bottom: #0A8ED2 solid 1px;
}

nav ul ul ul a {
	background-color: #006999;
}

nav ul li ul li:hover { background: #000000; }

/* Background color change on Hover */
	


/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	top: 100%; 
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	
	min-width:150px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul li:hover > ul {
	display:inherit;
	
}
nav ul ul ul {
	position: absolute;
	top:0px;
	left:100%; 
	min-width:250px;
}

	
/* Change ' +' in order to change the Dropdown symbol */
li > a:after { content:  ' | '; }
li > a:only-child:after { content: ''; }


.BannerOnPanel {
    position:relative; /* положение */
    top: 0px; /* отступ сверху */
    left: 0px; /* отступ слева */
    background-color:#FFFFFF ;/* цвет фона */
    width: 200px; /* ширина блока */
    z-index:1;
    border: #006593 solid 1px;
    text-align:center;
	margin-top:1px;
	margin-bottom:4px;
    }	


/* Левая панель ВНЕШНИЙ БЛОК */
.Leftpanel {
    position:relative; /* положение */
    top: 0px; /* отступ сверху */
    left: 0px; /* отступ слева */
    background: linear-gradient(to bottom, #006593, #0A8ED2 ); /* цвет фона */
    width: 202px; /* ширина блока */
	/* высота блока */
    height: 28px; 
	
    font: 14px Arial; /* размер и тип шрифта */
    color: #fff; /* цвет текста */
    line-height:28px;
	z-index:2;
    -webkit-transition-duration: 0.3s; /* анимационное выдвижение для всех браузеров*/
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-border-radius: 5px 5px 0 0; /* закругление границ для всех браузеров*/
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    }
	

/* СКРЫТЫЙ БЛОК */
	
.hidden_Leftpanel {
    position:relative; /* положение */
    color: #fff; /* цвет текста */
    top: 0px; /* отступ сверху */
    left: 0px; /* отступ слева */
    width: 202px; /* ширина блока */
	font: 14px Arial; /* размер и тип шрифта */
    text-align: left; /* выравнивание текста */
    z-index:1;
    }
.Leftpanel:hover {
    /*left: 240px;  при наведении выдвигается на скрытые 200px + 20px отступы */
}
.Leftpanel:hover .hidden_Leftpanel {
   /* отступ слева
   top:28px;
   left: 0px; */
}

.hidden_Leftpanel a {
	background-color: #0A8ED2;
	display:block;
	text-decoration:none;
	text-align:left;
	padding-left:5px;
	color:#FFFFFF;
	line-height: 30px;
	border: #006593 solid 1px;
}

/* Background color change on Hover */
.hidden_Leftpanel a:hover { 
	/*background-color: #FB8951; */
	background-color: #78bee2; 
	color:#000000;
}

.Rightpanel {
    font: 12px Arial; /* размер и тип шрифта */
    }
	
.Rightpanel a {
	background-color: #fffcf3;
	display:block;
	text-decoration:none;
	text-align:left;
	padding-left:5px;
	color:#000;
	line-height: 20px;
	border: #006593 solid 1px;
}

/* Background color change on Hover */
.Rightpanel a:hover { 
	/*background-color: #FB8951; */
	background-color: #78bee2; 
	color:#000000;
}
	
/*класс основных панелей*/
.main_block{
	position: relative;
	min-width:1000px; 
	width: 80%; 
	margin: auto; 
	font-family:Arial, Helvetica, sans-serif;
	overflow:hidden;
}