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

html {
   -webkit-text-size-adjust : 100%;
   text-size-adjust         : 100%
}

/*https://color.romanuke.com/tsvetovaya-palitra-3451/*/
/*:root {
	--main_green: #656d44 ;
	--main_gray: #e0e2db;
	--main_black: #27281e;
	--main_white: white;
	--main_link: #51768d;
}*/

/*https://color.romanuke.com/tsvetovaya-palitra-2859/*/
/*:root {
	--main_green: #4a761a ;
	--main_gray: #e5ebd2;
	--main_black: #11220b;
	--main_white: white;
	--main_link: #404866;
}*/

:root {
	--main_green: #276452 ;
	--main_gray: #d8effa;
	--main_black: #0b2035;
	--main_white: #eef5f8;
	--main_link: #1c629e;
	--main_line: #c0c0c0;
	--main_att: red;
}


/*
:root {
	--main_green: #006837;
	--main_gray: #eaeaea;
	--main_black: black;
	--main_white: white;
	--main_link: blue;
}*/


body {
	font-family: 'Open Sans', sans-serif;
    	font-weight: 300;
    	font-size: 1.2em;
    	color: var(--main_black);
	background: var(--main_white);
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 1.8em;
}
h1 {
	line-height: 1em;
	font-weight: normal;
	font-size: 2em;
	color: var(--main_green);
	padding: 20px;
}
h2 {
	line-height: 1em;
	font-weight: normal;
	font-size: 1.5em;
	color: var(--main_green);
	margin: 30px 10px 20px 10px;
	padding: 5px 0;
	background: var(--main_gray);

}
h3 {
	font-size: 1.5em;
	font-weight: normal;
	padding: 20px;
}
h4 {
	font-size: 1.3em;
	font-weight: normal;
	padding: 20px;
}
div, ul, li {
	padding: 0;
	margin: 0;
}
p {
	padding: 10px 0;
}
strong, b {
	font-weight: 600;
}
hr {
	border-top:1px dashed #9A6D56; 
	margin:20px 0;
}
a, .datepicker, .link {
	color: var(--main_link);
	text-decoration: underline;
	cursor: pointer;
}
a:hover, .datepicker:hover, .link:hover {
	text-decoration:none;
}

blockquote {
	padding-left: 10px;
	border-left: 1px solid var(--main_line);
	margin-left: 50px;
}

[canvas=container] {
	max-width: 1100px;
	margin: auto;
	background: var(--main_white);
}

logo {
	display: block;
	padding: 10px 20px;
}
logo img {
	width: 100px;
}

table {
	border-collapse: collapse;
	min-width: 100%;
	word-wrap: anywhere;
}
table, th, td {
	border: 1px solid var(--main_line);
	padding: 5px;
}
tr:nth-child(odd) {
	background-color: var(--main_gray);
}


select {
	border: 1px solid var(--main_line);
	padding: 5px;
	margin: 2px 10px 2px 0;
	border-radius: 5px;
}
input[type=text], textarea {
    border: 1px solid var(--main_line);
    padding: 8px 5px;
    margin: 2px 10px 2px 0;
    border-radius: 5px;
	width: calc(100% - 12px);
}
input[type=submit] {
	padding: 10px 20px;
	border: 1px solid var(--main_line);
	border-radius: 5px;
	cursor: pointer;
	background: var(--main_gray);
	color: var(--main_green);
	font-size: 1.2em;
	margin: 10px auto;
	display: block;

}


.up {
	position: relative;
    margin-bottom: 10px;
}


.slidebar {
	width: 50px;
	height: 50px;
	float: left;
    background: url(/img/menu.png) no-repeat 5px 20px;
    background-size: 40px 33px;
	border: 0;
}

.frame {
	position: relative;
}

.paginator {
	width: 100%;
	padding: 10px;
	text-align: center;
	/*border-top: 1px solid green;*/
}

.content {
	overflow: hidden;
}
.content ul, .content ol {
	padding: 20px 0 20px 40px;
}
.text_content {
	padding: 0 10px;
}

.content .tags {
    margin: 0 5px 30px;
}

.content .tags:empty {
    display: none;
}

.content .tags a {
    font-size: 0.8em;
    color: var(--main_black);
    text-decoration: none;
    border: 1px solid var(--main_line);
    padding: 2px 10px;
    margin: 0 5px;
    line-height: 40px;
    white-space: nowrap;
}

/*меню*/

menu {
	display: block;
	overflow: hidden;
	/*border-top: 1px solid var(--main_line);*/
	padding-bottom: 10px;
	background: var(--main_gray);
	margin-bottom: 3px;
}
.mobmenu {
	background: var(--main_gray);
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(-100%,0);
	-moz-transform: translate(-100%,0);
	transform: translate(-100%,0);
	z-index: 10;
}
.open:checked ~ .mobmenu {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-transform: translate(0px,0);
    -moz-transform: translate(0px,0);
    transform: translate(0px,0);
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    transition: 0.35s
}
 
.open:not(:checked) ~ .mobmenu {
    -webkit-transition: 0.35s;
    -moz-transition: 0.35s;
    transition: 0.35s
}

.mobmenu ul, menu ul {
	list-style: none;
	line-height: 1.8em;
}
menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}
menu li {
	padding: 15px 20px 0px 10px;
	font-family: 'Open Sans Condensed', sans-serif;
}
.mobmenu a, menu a {
	/*display: block;*/
}
.mobmenu a:hover, .mobmenu a.active, menu a:hover, menu a.active {
	text-shadow: 1px 0 0 var(--main_black); 
}

menu2 {
	position: absolute;
	right: 0;
	font-size: 0.7em;
	padding: 10px;
}

footer {
	display: block;
	padding: 10px;
	border-top: 1px solid var(--main_line);
	margin-top: 50px;
	font-size: 0.7em;
}
.footer_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.footer_menu li {
	list-style: none;
	margin: 0 10px 0 0;
}
.footer_socail {
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
}
.footer_socail img {
    width: 35px;
    padding: 5px;
}
/*новости*/
.news_content {
	overflow: hidden;
}
newsinfo {
	display: block;
	font-size: 0.7em;
	font-style: italic;
	padding: 0 20px 20px 20px;
}

text {
	display: block;
	border-top: 1px solid var(--main_line);
	margin-top: 50px;
	font-size: 1em;
	padding: 10px 10px 20px;
}
.share {
	padding: 10px 10px 10px;
}
.news_tags {
	display: flex;
	padding-left: 10px;
}
.news_tags > div {
	font-size: 0.7em;
  	text-decoration: none;
  	border: 1px solid var(--main_line);
  	padding: 1px 5px;
  	margin: 0 2px;
  	white-space: nowrap;
}

#vk_comments {
	min-height: 200px !important;
}
#vk_comments iframe {
	min-height: 200px !important;
}

.conf_content .share {
	padding: 50px 0;
}
.share_top, .share_top > div {
	display: inline;
	margin-left: 2px;
}
.share_top ul {
	padding: 0;
}
description {
	display: block;
	font-size: 1.2em;
	padding: 10px;
	flex: 1 0;
	min-width: 320px;
	flex-basis: 22%;
}

bookslinks {
	display: block;
	font-size: 1em;
	padding: 10px;
}
descriptionimage {
	display: block;
	font-size: 0.8em;
}
adv {
	display: block;
	padding: 10px 10px 10px 30px;
	font-size: 0.9em;
	border-left: 1px solid var(--main_green);
	margin: 20px 10px 30px;
}

comments {
	display: block;
	padding: 10px;
	border-top: 1px solid var(--main_line);
}
comments form {
	display: table;
	width: 98%;
	table-layout: fixed;
}
comments form div {
	display: table-row;
	vertical-align: top;
}
comments form div div {
	display: table-cell;
}
comments form div div:nth-of-type(1) {
	width: 150px;
}
comments input[type=text], comments textarea {
	border: 1px solid var(--main_line);
	padding: 5px;
	margin: 2px;
	border-radius: 5px;
	width: 100%;
}
comments input[type=submit] {
	padding: 5px 10px;
	border: 1px solid var(--main_line);
	border-radius: 5px;
	cursor: pointer;
	width: 100%;
}
comments p {
	display: block;
	width: 100%;
	border-top: 1px solid var(--main_line);
}

.news_view_title {
	overflow: auto;
	min-width: 310px;
	margin: 5px;
}
.news_view_title > div {
	display: flex;
	flex-wrap: wrap;
/*    width: calc(100% - 422px);
    min-width: 380px;
	overflow: hidden;*/
	/*flex-wrap: wrap;*/
}
.news_view_title h1 {
	font-weight: normal;
	line-height: 1em;font-size: 1.5em;
	padding: 20px 20px 10px 20px;
}
.news_menu {
	display: block;
	list-style: none;
	overflow: hidden;
	padding: 0 10px;
}
.news_menu li {
	display: block;
	float: left;
	padding: 5px 10px;
	border-right: 1px solid var(--main_line);
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 0.8em;
}
.news_menu li:nth-last-of-type(1) {
	border: none;
}
h3.news_archive {
	text-align: center;
}
div.news_archive {
	overflow: hidden;
}

newsimage {
	border: 1px solid var(--main_line);
	padding: 10px;
	flex: 1 1;
	min-width: 318px;
}
newsimage img {
	width: 100%;
}
.news_bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 0 0;
}
.news_bottom > div {
    width: 350px;
    margin: auto;
    max-height: 350px;
}

.news_list_text_up {
    padding: 30px 0;
    width: 100%;
}
.news_list_text_up h3 {
    text-align: left;
    font-size: 1.5em;
    padding: 0;
    margin: 0;
}
.news_list_text_up p {
    font-size: 0.8em;
    padding: 0;
    margin: 0;
}

/*мероприятия*/

.conf_list {
	padding: 50px 0 50px 10px;
	margin: 50px 0 50px 10px;
	background: white;
	padding: 20px;
	border-radius: 24px;
}
.conf_list h3 {
	padding: 0;
	font-size: 1.2em;
	font-weight: bold;
}
h2.conf_month {
	text-align: center;

	/*margin: 20px 0px 10px 30px; color: green; font-size: 20px;*/
}
h3.conf_month {
	padding: 50px 0 0 0;
	border-top: 1px solid var(--main_line);
}
.conf_view {

}

.conf_view_info {
	padding: 20px;

}

.conf_view_img {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
	justify-content: start;
	background: white;
	padding: 20px;
	border-radius: 24px;
}
.conf_view_img h1 {
	padding: 0 0 5px 0;
}
.conf_view_img img {
	width: 350px;
	height: 150px;
    object-fit: contain;
    background: white;
    border: white 5px solid;
    max-width: 100%;
    /*box-shadow: var(--main_line) 0px 0px 5px 0px;*/
    
}
.conf_view_img > div:nth-of-type(2) {
	padding-left: 10px;
	flex: 1 1;
	border-left: 1px solid var(--main_line);
}
@media screen and (max-width: 730px) {
	.conf_view_img > div:nth-of-type(2) {
		border: 0;
	}
	.conf_view_img > div {
		flex-shrink: 0;
		width: 100%;
	}
	.conf_view_img > div:nth-of-type(1) {
		text-align: center;
	}

}



.conf_list_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}
.conf_list_img h3 {
	padding: 0 0 5px 0;
}
.conf_list_img img {
	width: 200px;
	height: 110px;
    object-fit: contain;
    background: white;
    border: white 5px solid;
    /*box-shadow: var(--main_line) 0px 0px 5px 0px;*/
}
.conf_list_img > div:nth-of-type(2) {
	padding-left: 10px;
	flex: 1 1;
	min-width: 250px;
	border-left: 1px solid var(--main_line);
}

@media screen and (max-width: 560px) {
	.conf_list_img > div:nth-of-type(2) {
		border: 0;
	}
	.conf_list_img > div {
		flex-shrink: 0;
		width: 100%;
	}
	.conf_list_img > div:nth-of-type(1) {
		text-align: center;
	}

}

.conf_view_zayavki {
	font-style: italic;
	padding: 20px 0;
}

.conf_content {
	padding: 20px;
}

.conf_add form {
	
}
.conf_add form > p {
	padding-top: 0;
	font-size: 0.8em;
	font-style: italic;
}
.conf_add form h3 {
	padding-bottom: 0;
}
.conf_add form > div.conf_add_two {
	display: flex;
}
.conf_add ul {
	padding-top: 0;
}

.conf_add input[type=text].datepicker {
	width: 100px;
}
#image_upload_preview {
	max-width: 100%;
	max-height: 100px;
	padding: 10px 0;
}


.conf_table_add {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.conf_table_add > div {
	background: white;
	align-self: stretch;
	margin: 10px;
	padding: 10px 10px 70px 10px;
	width: 320px;
	position: relative;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	-moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.1);
	border-radius: 10px;
}

.conf_table_add > div > div {
	text-align: center;
	position: absolute;
	bottom: 10px;
	width: 300px;
	border-radius: 5px;
	padding: 10px;
	font-size: 1.2em;
	/*background: var(--main_gray);*/
}

.conf_add_type, .katal_add_type {
	cursor: pointer;
}

.conf_table_add > div.conf_favorite {
	-webkit-box-shadow: 0px 10px 8px 0px rgba(34, 60, 80, 0.4);
	-moz-box-shadow: 0px 10px 8px 0px rgba(34, 60, 80, 0.4);
	box-shadow: 0px 10px 8px 0px rgba(34, 60, 80, 0.4);
}
.conf_table_add > div.conf_favorite h3, .conf_table_add > div.conf_favorite > div {
	font-weight: bold;
}

.conf_add_note {
	font-size: 1em;
	/*font-style: italic;*/
	text-align: center;
	padding-top: 30px;
}

 .conf_color_1 {
 	background: var(--main_gray);
 	text-align: center;
 }
 .conf_color_2 {
 	background: var(--main_link);
 	color: var(--main_white);
	text-align: center;
 }
 .conf_color_3 {
 	background: var(--main_green);
 	color: var(--main_white);
	text-align: center;
 }
.conf_table_add ul {
	padding: 5px;
	min-height: 50px;
}
.conf_table_add ul:nth-of-type(1)  {
	min-height: 350px;
	padding: 0;
}
.conf_table_add li {
	list-style: none;
	padding: 5px 0 5px 0;
}
.conf_table_add h4 {
	border-top: 1px solid var(--main_gray);
}

/*книги*/

.books_view {
	padding: 10px;
}
.books_list {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	justify-content: space-evenly;
}


booksimage {
	display: block;
	padding: 20px 0;
	height: 290px;
	border: 1px solid var(--main_gray);
	text-align: center;
	border-radius: 5px;
}
booksimage img {
	width: 200px;
	height: 280px;
}
.books_list a {
	overflow: hidden;
	height: 520px;
	padding: 10px;
	font-size: 1em;
	text-decoration: none;
	display: block;
	float: left;
	width: 255px;
}
.books_list:hover {
	text-decoration: underline;
}
author {
	font-size: 0.7em;
	display: block;
}

/*ссылки*/
.katal_rasdel {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.katal_rasdel a {
	display: block;
	width: 280px;
	height: 50px;
	text-align: center;
	margin: 10px;
	border: 1px solid var(--main_link);
	line-height: 23px;
	border-radius: 5px;
	background: var(--main_gray);
}
.katal_list {
	margin: 30px 10px;
	border: 1px solid var(--main_line);
	cursor: pointer;
	padding: 10px;
	
}
.katal_list dt {
	font-weight: bold;
	padding: 20px 0 20px 20px;
}
.katal_list div {
	text-decoration: underline;
	color: var(--main_green);
}


/*состав отходов*/
.wastet_table {
	
}
.wastet_table tr {
	margin: 40px;
}
.wastet_table tr > td, .wastet_table tr > th {
	padding: 10px;
}
.wastet_table tr > td:nth-child(1) {
	width: 200px;
}


.wastet_content {
	padding: 10px;
}


.wastet_text h1, .wastet_text h2, .wastet_text h3, .wastet_text h4, .wastet_text h5, .wastet_text h6 {
	font-size: 20px;
	background: none;
	padding: 0;
	margin: 0;
	line-height: 1.5em;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
}


/*конец состав отходов*/


/* словарь */
.dict_letters {
    padding: 50px 0;
}

/* конец словарь*/


/*рефераты*/

.referat_blocks {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.referat_blocks > a {
	min-width: 300px;
	height: 50px;
	border: 1px solid var(--main_line);
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5px 1%;
}

.referat_att {
	font-size: 0.7em;
	color: var(--main_green);
	padding: 10px;
	border-left: 1px solid var(--main_att);
	margin: 30px;
}
/*конец рефераты*/


/*мобильный телефон*/
@media screen and (max-width: 399px) {
	.up {
		min-width: 320px
	}
	.content {
		max-width: 720px;	
	}

	logo img {
		width: 60px;
	}
	.index_anons_img {
		display: block;
		padding-bottom: 50%;
		height: 100px;
		overflow: hidden;
		background-size:cover !important;
		width: 100%;
		background-position: center !important;

	}
	.index_anons {
		min-width: 300px;
		overflow: hidden;
		margin: 10px;
	}
	
	.news_view_title {
		overflow: visible;
	}
	.news_view_title div {
		width: 100%;
		min-width: 320px;
		overflow: auto;
	}
	
	.index_anons_img {
		display: block;
		overflow: hidden;
		background-size:cover !important;
		padding-bottom: 50%;
		height: 80px;
		width: 100%;
		background-position: center !important;
	}
	.index_anons {
		overflow: hidden;
		margin: 2%;
	}

	menu {
		display: none;
	}


}

/*телефон-плантет*/
@media screen and (max-width: 719px) and (min-width: 400px) {

	.up {
		min-width: 400px
	}
	.content {
		max-width: 720px;	
	}

	logo img {
		width: 60px;
	}
	.index_anons_img {
		display: block;
		overflow: hidden;
		background-size:cover !important;
		padding-bottom: 50%;
		height: 80px;
		width: 100%;
		background-position: center !important;
	}
	.index_anons {
		width: 46%;
		overflow: hidden;
		margin: 2%;
	}
	
	
	.news_view_title {
		overflow: visible;
	}
	

	menu {
		display: none;
	}
}

/*планшет*/
@media screen and (min-width: 720px) {

	.content {
		min-width: 100%;	
	}
	.slidebar {
		display: none;
	}
	.mobmenu {
		display: none;
	}

	.index_anons_img {
		display: block;
		height: 250px;
		overflow: hidden;
		background-size:cover !important;
		width: 100%;
		padding: 0;
		background-position: center !important;
	}
	.index_anons {
		width: 30.5%;
		overflow: hidden;
		margin: 15px calc(1.36%);
	}


}

/*компьютер*/
@media screen and (min-width: 1100px) {
	.content .frame {
		width: 1100px;
		margin: 0 auto;
	}
	.index_anons {
		width: 30.5%;
		overflow: hidden;
		margin: 15px;
	}
}

/*главная страница*/
.index_block {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.index_anons {
	border-radius: 24px;
	background: white;
}
.index_anons_date {
    width: 130px;
    background: rgba(0, 121, 0, 0.65);
    color: var(--main_white);
    margin: -20px 0 0 0;
    height: 20px;
    position: relative;
    text-align: center;
    font-size: 0.7em;
    line-height: 1.5em;
}
.index_anons_title {
    font-size: 1em;
    line-height: 1em;
    padding: 10px 20px;
}
.index_anons_title a {
	text-decoration:none;
}

.index_anons_text {
    font-size: 0.8em;
	text-align:justify;
	padding: 0 5px;
}

.index_public {
    min-width: 300px;
    min-height: 50px;
    overflow: hidden;
	padding: 10px 0 20px;
}
.index_link_page {
	clear: both;
	padding: 20px 20px 50px;
	width:	100%;
}

.index_conf {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}
.index_conf > div {
	flex: 1 1;
	min-width: 330px;
	padding: 10px;
}

.index_conf > div:nth-child(2) {
	border-left: 1px solid var(--main_line);
}


.index_conf a {
	text-decoration: none;
	color: var(--main_black);
	display: flex;
	padding: 20px 5px;
}
.index_conf img {
	min-width: 150px;
	min-height: 80px;
	max-width: 150px;
	max-height: 80px;
    object-fit: contain;
    background: white;
    border: white 5px solid;
    box-shadow: var(--main_line) 0px 0px 5px 0px;
    margin: 0 10px 0 0;

    /*
	min-width: 150px;
	height: 80px;
	object-fit: contain;
	background: white;
	border: white 5px solid;
	box-shadow: var(--main_line) 0px 0px 5px 0px;
	margin: 0 10px 0 0;
	max-width: 150px;
	*/

}
.index_conf a > div > div:nth-child(1) {
	font-size: 0.9em;
}
.index_conf a > div > div:nth-child(2) {
	font-size: 0.8em;
	font-style: oblique;
}
.index_conf h4 {
	font-size: 1.2em;
	font-weight: normal;
	padding: 10px;
}
a.index_conf_add {
	text-decoration: underline;
	font-size: 0.8em;
}
.path_site {
	padding: 5px 10px 0;
	font-size: 0.6em;
	color: var(--main_link);
	/*background: var(--main_gray);*/
	line-height: 2em;
	/*margin: 0 10px;*/
	border-bottom: 1px solid var(--main_line);
}
.path_site a {
	color: var(--main_link);
}

.public_img_div img {
    /*max-height: 90vh;*/
	max-width: 100%;
    min-width: 300px;
}
.public_img_div {
    padding: 10px;
    margin: 100px auto;
    border: 1px solid var(--main_line);
    text-align: center;
    border-radius: 5px;
    min-width: 300px;
    max-width: 1000px;
}

.public_video_div { 
    max-width: 100%;
    padding: 10px;
    border: 1px solid var(--main_line);
    border-radius: 5px;
    margin: 100px auto;
}
.public_video_div > div {
    position: relative;
    padding-top: 56.25%;
}
.public_video_div > div iframe,  .public_video_div > div video {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    border: none;
}


.public_img_div p, .public_video_div p {
    text-align: left;
}




.public_list {
	padding: 0 10px;
}

/*стили функций*/
.myf_calendar {
	width: 300px;
	float: left;
	padding: 10px;
	height: 300px;
}
.myf_calendar table {
	border-collapse:collapse;
	width: 100%;
}

.myf_calendar td, .myf_calendar th {
	border: 1px solid var(--main_line);
	padding: 6px 6px;
	text-align: center;
}

.myf_calendar_weekend a, .myf_calendar_weekend {
	color: red;
}
.myf_calendar_now {
	background: green;
}
.myf_calendar_now a {
	color: var(--main_white);
}

.rsy_block {
	padding: 25px 0;
}

.rsy_block:empty {
	padding: 0;
}