@charset "UTF-8";
* {
	margin: 0;
	padding: 0;	
} 

body {
	background-color: #c2ccd6;
	background: url(/images/bg6.png);  
	width:100%; 
	height:100%;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	font-family: 'PT Sans', sans-serif;
	font-style: normal;
	font-size: 19px;
	color: #333333;
}

body { /* IOS page orientation change resize issue*/
-webkit-text-size-adjust: none ; }

header, nav, aside, footer, main {
	display: block;	
}

.kk-ul-text {
	padding: 0 0 15px 30px;
}

.kk-ul-text li {
	padding: 5px 0 0 0;
	font-weight: 300;
}

.kk-ol-text {
	padding: 0 0 15px 30px;
}

.kk-ol-text li {
	padding: 0;
	font-weight: 300;
}

.kk-line {
	width: 100%;
	margin: 20px 0 20px 0;
	border: 0;
	height: 5px;
	background: url(/_design/line_bg.png) top repeat-x;  
}

.kk-line-2 {
	width: 100%;
	margin: 40px 0 20px 0;
	border: 0;
	height: 5px;
	background: url(/_design/line_bg.png) top repeat-x; 
}

.kk-img-900 {
	max-width:900px; 
	width:100%; 
	margin-bottom: 15px;	
} 

.kk-img-750 {
	max-width:750px; 
	width:100%; 
	margin-top: 5px;	
	margin-bottom: 5px;		
} 

.kk-img-700 {
	max-width:700px; 
	width:100%; 
	margin-top: 5px;	
	margin-bottom: 5px;	
}

.kk-img-600 {
	max-width:600px; 
	width:100%; 
	margin-top: 5px;	
	margin-bottom: 5px;	
}

.kk-img-500 {
	max-width:500px; 
	width:100%; 
	margin-top: 5px;	
	margin-bottom: 5px;	
}

.kk-img-400 {
	max-width:400px; 
	width:100%; 
	margin-top: 5px;	
	margin-bottom: 5px;	
}

.kk-img-300 {
	max-width:300px; 
	width:100%; 
	margin-top: 5px;	
	margin-bottom: 5px;	
}


.clear {
	clear: both;
}


.kk-tab {
	width: 100%;
	overflow: auto;
	padding-bottom: 30px;
} 

.tab {
	font-size: 17px;
	color: #522725;
    border-collapse: collapse; /* Убираем двойные линии между ячейками */
    width: 100%; /* Ширина таблицы */
}

.tab sup {
	font-size: 13px;
}

.tab tr td  {
	border: 1px solid #522725; /* Параметры рамки */
	text-align: center; /* Выравнивание по центру */
	padding: 5px; /* Поля вокруг текста */
	vertical-align: center; 
}

.tab th {
	border: 1px solid #522725; /* Параметры рамки */
    background: #dae3f0; /* Цвет фона ячейки */
	text-align: center; /* Выравнивание по центру */
    padding: 7px; 
	font-weight: normal;
	vertical-align: center; 
}

.tab2 {
	font-size: 13px;
	color: #522725;
    border-collapse: collapse; /* Убираем двойные линии между ячейками */
    width: 100%; /* Ширина таблицы */
}

.tab2 sup {
	font-size: 11px;
}

.tab2 tr td  {
	border: 1px solid #522725; /* Параметры рамки */
	text-align: center; /* Выравнивание по центру */
	padding: 5px; /* Поля вокруг текста */
	vertical-align: center; 
}

.tab2 th {
	border: 1px solid #522725; /* Параметры рамки */
    background: #dae3f0; /* Цвет фона ячейки */
	text-align: center; /* Выравнивание по центру */
    padding: 7px; 
	font-weight: normal;
	vertical-align: center; 
}

.kk-right-block {
	width: 200px; /* Ширина таблицы */
	padding: 10px; 
}

.kk-right-block p {
	padding-top: 10px; 
	font-size: 15px;
} 

/* МОДАЛЬНЫЕ ОКНА */	
	
.modal-header h2 {
    color: #555;  
    font-size: 31px;
    font-weight: normal;
    line-height: 1;    
    margin: 0;
	padding: 20px 20px;
	border-bottom: #eaeaea solid 1px;
}
/* кнопка закрытия окна */
.modal .btn-close {
    color: #aaa;
    cursor: pointer;
    font-size: 30px;
    text-decoration: none;
    position: absolute;
    right: 5px;
    top: 0;
}
.modal .btn-close:hover {
    color: red;
}
/* слой затемнения */
.modal-wrap:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
}
.modal-overlay {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 102;
}
/* активация слоя затемнения и модального блока */
.modal-open:checked ~ .modal-wrap:before,
.modal-open:checked ~ .modal-wrap .modal-overlay {
    display: block;
}
.modal-open:checked ~ .modal-wrap .modal-dialog {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 20%;
}
/* элементы модального окна */
.modal-dialog {
    background: #fefefe;
    border: none;
    border-radius: 3px;
    position: fixed;
    width: 80%;
    max-width: 500px;
    left: 50%;
    top: -100%;
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-transform: translate(-50%, -500%);
    -ms-transform: translate(-50%, -500%);
    -o-transform: translate(-50%, -500%);
    transform: translate(-50%, -500%);
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -moz-transition: -moz-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    z-index: 103;
}
.modal-body {
  padding: 20px;
}


/* Элементы формы контактов */
.textbox{
    height:45px;
    width:100%;
    border-radius:3px;
    border:rgba(0,0,0,.3) 1px solid;
    box-sizing:border-box;
    font-size:17px; 
    padding:8px;
    margin-bottom:20px;  
}

.textbox2{  /* антиспам */
    display: none;  
}	
	
.message:focus,
.textbox:focus{
    outline:none;
    border:rgba(24,149,215,1) 1px solid;
    color:rgba(24,149,215,1);
}
.message{
	background: rgba(255, 255, 255, 0.4); 
    width:100%;
    height: 120px;
    border:rgba(0,0,0,.3) 1px solid;
    box-sizing:border-box;
    -moz-border-radius: 3px;
    font-size:17px;
    -webkit-border-radius: 3px;
    border-radius: 3px; 
    display:block;
    padding:10px;
    margin-bottom:20px;
    overflow:hidden;
}
/* кнопка "отправить" формы */

.kk-form-button {
	height: 45px;
	margin-top: 10px;
	margin-bottom: 20px;	
	font-size: 19px;
	color: #FFFFFF;
    text-decoration: none;
    user-select: none;
    padding-top: 0px;
    outline: none;
    border: 1px solid #c12121;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
    background: #c12121;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	width:100%;
	-webkit-appearance: none;
}

.kk-form-button:hover {
	color: #FFFFFF;
    background: #B60101;
	border: 1px solid #B60101;
}	

.kk-form-personal {
	padding-bottom: 8px;
}


.arrow {
	background:url(/images/arrow-desktop.png) left top no-repeat; 
	margin:2px 0px 4px 0px;
	padding:0px 0px 0px 15px;
	list-style:none;
	text-align: left;
}

.vnim {
	background:url(/images/ikons/yel.gif) left top no-repeat;
	margin:15px 0px 15px 25px;
	padding: 5px 0px 0px 7%;
	list-style:none;
	width: 90%;
	min-height: 40px;
	text-align:left;
	color:#42799F;   
}

.kk-vnim {
	background:url(/images/ikons/yel.gif) left top no-repeat;
	margin: 0px 0px 0px 0px;
	padding: 5px 0px 0px 0px;
	min-height: 40px;
	text-align:left;
	color:#42799F;   
}

.arrowpdf {
	background:url(/images/ikons/pdf.png) left no-repeat;
	margin:5px 0px 0px 0px;
	padding:0px 0px 0px 25px;
	list-style:none;
	text-align: left;
}

.arrowdoc {
	background:url(/images/ikons/doc.png) left no-repeat;
	margin:5px 0px 0px 0px;
	padding:0px 0px 0px 25px;
	list-style:none;
	text-align: left;
}

.arrowxls {
	background:url(/images/ikons/xls.png) left no-repeat;
	margin:5px 0px 0px 0px;
	padding:0px 0px 0px 25px;
	list-style:none;
	text-align: left;
}
.arrowrar {
	background:url(/images/ikons/rar.png) left no-repeat;
	margin:5px 0px 0px 0px;
	padding:0px 0px 0px 25px;
	list-style:none;
	text-align: left;
}
.yes {
	background:url(/images/ikons/blue1.gif) left top no-repeat;
	margin: 15px 0px 15px 0px;
	padding: 5px 0px 5px 50px;
	list-style:none;
	text-align:left;
}

.kk-table-in {
	font-size: 13px;
	line-height: 17px;
}