
/*универс-й селектор - у всех элементов будут поля = 0 ед */
* {
	margin: 0px;
	padding: 0px;

}
/* определение структуры элементов HTML5 - блочные элементы*/
header, section, footer, aside, nav, article, figure, figcaption, hgroup {
	display: block;
}

h1 {
	
	font: bold 20px verdana, sans-serif;
	text-align: center;
}

h2 {
	font: bold 14px verdana, sans-serif;
}

body {
	/*width: 100%;*/
	text-align: center;
	background:  linear-gradient(#c6e4ee 0%, #c6e4ee 35%, 	#07320a 81%, 	#07320a 100%) no-repeat;

	background-attachment: fixed;

	 -moz-background-size: 100%; 
    -webkit-background-size: 100%; 
    -o-background-size: 100%; 
    background-size: 100%; 
}

/*опр св-ва главного блока*/
#wrapper {
	position: relative;
	min-width: 900px; 
	max-width: 1280px;/*1000px; */
	margin: 0px auto;
	text-align: left;
}

/*================ Header
*/


#main_header{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*padding: 15px 0;*/
	/*border-bottom: 1px solid #a8aebf;*/
	background-color: rgb(218, 229, 229, 0.7) ; /*#dae4e5; */
	 z-index: 1;
/*	border: 1px solid #999999;*/

}

/*
#main_header .header_logo {

	padding: 0 52px 0 52px;
	
}*/

#main_header #header_logo_left {

	padding: 0 45px 0 52px;

}

#main_header #header_logo_right {

	padding: 0 52px 0 45px;

}
#main_header .header_logo img {
	max-width: 75px;
	min-width: 0px;
	
}

#main_header .header_2 {
	width: 100%;
	text-align: center;
	z-index: 4;
	/*border: 1px solid #999999;*/
	padding-top: 20px;
    padding-bottom: 20px;
	
}
#main_header .header_2 h1 {
	padding: 10px;
	/*font-style: italic;*/

}
#main_header .header_2 h2 {
	padding: 5px;
	font-style: italic; /*?*/
}


/*================ Панель навигации
*/
main {
	display: flex;
	width: 100%;
}

/* ================ 
Основная информация*/ 

main #main_aside {
	margin: 0px 0px 0px 0px;
	float: left;
	text-align: center;

	max-width: 170px;
	min-width: 20px;

}

#main_aside li { 
 list-style-type: none;
		padding-bottom: 20px;
		padding-top: 7px;
			
		padding-left: 5%;
		padding-right: 5%;
}
#main_aside li a {
	text-decoration: none;
}

#main_aside2 {
	width: 200px;
	float: right;
	margin: 10px 0px 10px 0px;
}

#main_footer {
	 margin-top: 10px;
	display: flex;
	width: 100%;	
	align-items: center;
	justify-content: space-between;
	padding:  30px 0  30px 0 ;

}
#main_footer p{
    font-size: 12px;
}

#main_footer .footer1{
	width: 150px;
	padding:  0 30px  0 30px  ;
	text-align: center;
}

#main_footer .footer1 img{
	width: 11%;
	padding: 5px;
}


#main_footer address{
	text-align: left;
	padding: 60px 0 15px  10px;
}
#main_footer address a {
	color: #090b12;
	text-decoration: none;
}

/*********************************/
 /* запрет выделения*/
           hgroup, img, h1, article, span, p, li  {
            /**
             * Для эксплорера
             */
            -ms-user-select: none;

            /**
             * Для мозилы
             */
            -moz-user-select: none;

            /**
             * Для конкверора
             */
            -khtml-user-select: none;

            /**
             * Для Сафари и Хрома
             */
            -webkit-user-select: none;
        }