@font-face{
	font-family: 'UbuntuL';
	src: url('font/ubuntu_l.ttf') format('truetype');
	font-weight: 200;
	font-style: normal;
}
@font-face{
	font-family: 'UbuntuR';
	src: url('font/ubuntu_r.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face{
	font-family: 'UbuntuM';
	src: url('font/ubuntu_m.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face{
	font-family: 'UbuntuB';
	src: url('font/ubuntu_b.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

html{
	font-family: UbuntuR;
	height: 100%;
}
body{
	margin: 0;
	/*background-color: #181818;*/
	overflow-y: scroll;
}
body, button, a{
	font-family: UbuntuR;
	font-size: 13px;
	color: #333;
	min-height: 100%;
}
div, opts, opt, sel, seltit{
	float: left;
	width: 100%;
	min-height:  1px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	display: block;
}
.div{
	float: left;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
	display: block;
}
img{
	width: 100%;
}
section{
	float: left;
}
a, a:active{
	text-decoration: none;
    line-height: 13px;
}
p{
	margin: 0;
}
h1,h2,h3,h4,h5{
	margin: 5px 0 10px 0;
	text-align: center;
}
span{
	line-height: 19px;
}
button, .button{
	font-family: UbuntuR;
    width: auto;
    padding: 10px 15px;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 0 2px rgb(0 0 0 / 40%);
    cursor: pointer;
    outline: none;
    min-height: auto;
}
	button:hover, .button:hover{
		background-color: #f9f9f9;
	}


.new_btn{
	padding: 10px 15px;
	font-weight: bold;
	color: #03a9f4;
	text-transform: uppercase;
	border: 0;
	border-radius: 3px;
	background-color: unset;
	box-shadow: unset;
	cursor: pointer;
}
	.new_btn:hover{
		background-color: #e3eef7;
		box-shadow: unset;
	}
.btn_i{
	width: 30px;
	height: 30px;
	padding: 0;
	font-size: 1.8em;
	color: #696969;
    border: none;
    background-color: rgba(0,0,0,0);
    box-shadow: unset;
}
	.btn_i:hover{
		color: #444;
	}
	
input, textarea{
	width: 100%;
	padding: 7px 14px;
	margin: 5px 0;
	border: 1px solid #e6e6e6;
	font-family: UbuntuR;
	font-size: 13px;
	color: #333;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
}
input{
    margin: 0;
    border: 0;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 0 2px 0px #00000047;
}
.small_input
{
	padding: 0;
	margin: 0;
	border: 0;
	color: #333;
	border-radius: 0;
	text-align: center;
	box-shadow: 0 1px 1px -1px rgb(82, 82, 82);
}
textarea{
	min-height: 100px;
	resize: vertical;
}
	.noresize{
		resize: none;
	}
.title{
    padding: 10px;
	border-radius: 5px 5px 0 0;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}
.window{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-top: 0;
	border-radius: 0 0 5px 5px;
}


label input[type="radio"] {
  display: none;
}
label input[type="radio"] ~ span {
  position: relative;
  display: inline-block;
}
label input[type="radio"] ~ span:before {
	content: "";
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	background: #fff;
	margin-top: 3px;
	border: 2px solid #505050;
	border-radius: 50%;
	left: 0;
	top: 0;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}
label input[type="radio"]:checked ~ span:before {
  border: 4px solid #29d;
}

ul{    
	float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}
li{
	display: inline-block;
}

select{
    width: 100%;
    /*height: 32px;*/
    padding: 6px 6px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    background-color: #fff;
    outline: none;
    cursor: pointer;
}
	select:hover{
	    background-color: #f6f6f6;
	}
	select:before{
	  content: ">";
	  display: inline-block;
	  background: white;
	  position: absolute;
	  right: -5px;
	  top: 2px;
	  z-index: 2;
	  width: 30px;
	  height: 26px;
	  text-align: center;
	  line-height: 26px;
	  border: 2px solid #ddd;
	  transform: rotate(90deg);
	  cursor: pointer;
	}
/*sel{
	position: relative;
}
	seltit{
	    width: 100%;
	    padding: 5px 8px 5px 8px;
	    border: 1px solid #e6e6e6;
	    border-radius: 5px;
	    background-color: #fff;
	    outline: none;
	    cursor: pointer;
	}
		seltit:hover{
			background-color: #f6f6f6;
		}
		seltit div{
			width: auto;
			line-height: 19px;
		}
			seltit div i{
				float: left;
				margin-right: 7px;
			}
		seltit i{
			float: right;
			width: auto;
			font-size: 19px!important;
		}
	opts{
		position: absolute;
    	top: 98%;
		border: 1px solid #d4d4d4;
		border-radius: 5px;
		background-color: #fff;
		box-shadow: 0px 4px 16px rgba(0,0,0,0.15);
		overflow: hidden;
		display: none;
	}
		opt{
			padding: 6px 10px;
		}
			opt:hover{
				background-color: #f6f6f6;
				cursor: pointer;
			}
			opt span{
				float: left;
			}
			opt i{
				float: left;
				margin-right: 7px;
			}
*/

.material-icons, i{
	font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}


.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.fixed{
	position: fixed;
}



.center{
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
}
.centerx{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
}
.centery{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}



.top{
	top: 0;
}
.top-3{
	top: -3px;
}
.top8{
	top: 8px;
}
.top10{
	top: 10px;
}
.top12{
	top: 12px;
}
.top20{
	top: 20px;
}
.top-60{
	top: -60px;
}
.top100{
	top: 100%;
}

.r{
	right: 0;
}
.r3{
	right: 3px;
}
.r-3{
	right: -3px;
}
.r5{
	right: 5px;
}
.r-6{
	right: -6px;
}
.r10{
	right: 10px;
}
.r15{
	right: 15px;
}
.r20{
	right: 20px;
}
.r-20{
	right: -20px;
}
.r60{
	right: 60px;
}

.btm{
	bottom: 0;
}
.btm3{
	bottom: 3px;
}
.btm4{
	bottom: 4px;
}
.btm5{
	bottom: 5px;
}
.btm8{
	bottom: 8px;
}
.btm10{
	bottom: 10px;
}

.btm-5{
	bottom: -5px;
}
.btm-6{
	bottom: -6px;
}
.btm-10{
	bottom: -10px;
}
.btm-20{
	bottom: -20px;
}
.btm15{
	bottom: 15px;
}
.btm20{
	bottom: 20px;
}
.btm25{
	bottom: 25px;
}
.btm30{
	bottom: 30px;
}
.btm-60{
	bottom: -60px;
}

.l{
	left: 0;
}
.l5{
	left: 5px;
}
.l10{
	left: 10px;
}
.l50{
	left: 50px;
}
.l60{
	left: 60px;
}



.z1{
	z-index: 1;
}
.z1000{
	z-index: 1000;
}



.fl{
	float: left;
}
.fr{
	float: right;
}
.fn{
	float: none;
}



.div{
	float: left;
	width: 100%;
	display: block;
	box-sizing: border-box;
}
.dblock{
	display: block;
}
.none{
	display: none;
}
.inline{
	float: none;
	display: inline-block;
}
.list-item li{
	display: list-item;
}
.table{
	display: table;
}
.middle{
	float: none;
	display: table-cell;
	vertical-align: middle;
}



.hidden{
	overflow: hidden;
}
.hidden-x{
	overflow-x: hidden!important;
}
.hidden-y{
	overflow-y: hidden!important;
}
.visible{
	overflow: visible;
}
.scroll-y{
	overflow-y: scroll;
}


.fs08{
	font-size: 0.8em;
}
.fs085{
	font-size: 0.85em;
}
.fs09{
	font-size: 0.9em;
}
.fs011{
	font-size: 1.1em;
}
.fs012{
	font-size: 1.2em;
}
.fs013{
	font-size: 1.3em;
}
.fs014{
	font-size: 1.4em;
}
.fs015{
	font-size: 1.5em;
}
.fs016{
	font-size: 1.6em;
}
.fs017{
	font-size: 1.7em;
}
.fs018{
	font-size: 1.8em;
}

.fs2{
	font-size: 2em;
}
.fs023{
	font-size: 2.3em;
}
.fs025{
	font-size: 2.5em;
}
.fs3{
	font-size: 3em;
}
.fs4{
	font-size: 4em;
}

.fs12{
	font-size: 12px;
}
.fs16{
	font-size: 16px;
}
.fs18{
	font-size: 18px;
}
.fs20{
	font-size: 20px;
}
.fs22{
	font-size: 22px;
}
.fs24{
	font-size: 24px;
}
.fs26{
	font-size: 26px;
}
.fs29{
	font-size: 29px;
}



.light{
	font-weight: 300;
}
.normal{
	font-weight: 400;
}
.bold{
	font-weight: 600;
}
.fw5{
	font-weight: 500;
}
.fw700{
	font-weight: 700;
}

.italic{
	font-style: italic;
}



.ltxt{
	text-align: left;
}
.ctxt{
	text-align: center;
}
.rtxt{
	text-align: right;
}

.lh012{
	line-height: 1.2em;
}
.lh013{
	line-height: 1.3em;
}
	a.lh013:active
	{
		line-height: 1.3em;
	}
.lh014{
	line-height: 1.4em;
}

.uppercase{
	text-transform: uppercase;
}
.through{
	text-decoration: line-through;
}


.link{
	color: #03a9f4;
}
	.link:hover{
		text-decoration: underline;
	}


.noselect{
	user-select: none;
}


.b0{
	border: 0;
}
.b1{
	border: 1px solid #939393;
}
	.b1_blue{
		border: 1px solid #2196f3;
	}
.b1t{
	border-top: 1px solid #e4e4e4;
}
.b1r{
	border-right: 1px solid #e4e4e4;
}
.b1b{
	border-bottom: 1px solid #e4e4e4;
}
	.b1b_blue{
		border-bottom: 1px solid #2196f3;
	}
	.b1b_blue:hover{
		border-bottom: 1px solid #2196f3;
	}
	.hov-b1b_ccc:hover{
		border-bottom: 1px solid #ccc;
	}
.b1l{
	border-left: 1px solid #e4e4e4;
}
.b2{
	border: 2px solid #939393;
}

.bc-red{
	border-color: #f44336;
}
.bc-black{
	border-color: #000;
}
.bc-d4{
	border-color: #d4d4d4;
}
.bc-blue{
	border-color: #2196f3;
}
.bc-535262{
	border-color: #535262;
}
.bc-212030{
	border-color: #212030;
}

.br0{
	border-radius: 0!important;
}
.br4{
	border-radius: 4px;
}
.br5{
	border-radius: 5px;
}
.br10{
	border-radius: 10px;
}
.br15{
	border-radius: 15px;
}
.br20{
	border-radius: 20px;
}
.br26{
	border-radius: 26px;
}
.br50{
	border-radius: 50%;
}

.br5_trl{
	border-radius: 5px 5px 0 0;
}
.br5_brl{
	border-radius: 0 0 5px 5px;
}



.sq70{
	width: 70px;
	height: 70px;
}

.auto{
	width: auto;
}

.w10{
	width: 10%;
}
.w11{
	width: 11.11%;
}
.w15{
	width: 15%;
}
.w20{
	width: 20%;
}
.w20im{
	width: 20%;
    max-width: 20%;
    min-width: 20%;
}
.w25{
	width: 25%;
}
.w33{
	width: 33.33%;
}
.w40{
	width: 40%;
}
.w50{
	width: 50%;
}
.w60{
	width: 60%;
}
.w66{
	width: 66.67%;
}
.w75{
	width: 75%;
}
.w80{
	width: 80%;
}
.w100{
	width: 100%;
}
.w-200{
	width: 200%;
}

.w_12{
	width: 12px;
}
.w_14{
	width: 14px;
}
.w_15{
	width: 15px;
}
.w_18{
	width: 18px;
}
.w_19{
	width: 19px;
}
.w_20{
	width: 20px;
}
.w_25{
	width: 25px;
}
.w_27{
	width: 27px;
}
.w_29{
	width: 29px;
    max-width: 29px;
    min-width: 29px;
}
.w_30{
	width: 30px;
    max-width: 30px;
    min-width: 30px;
}
.w_35{
	width: 35px;
}
.w_38{
	width: 38px;
    max-width: 38px;
    min-width: 38px;
}
.w_40{
	width: 40px;
    max-width: 40px;
    min-width: 40px;
}
.w_44{
	width: 44px;
}
.w_45{
	width: 45px;
}
.w_50{
	width: 50px;
    max-width: 50px;
    min-width: 50px;
}
.w_55{
	width: 55px;
}
.w_60{
	width: 60px;
    max-width: 60px;
    min-width: 60px;
}
.w_62{
	max-width: 62px;
}
.w_65{
	width: 65px;
    max-width: 65px;
    min-width: 65px;
}
.w_70{
	width: 70px;
    max-width: 70px;
    min-width: 70px;
}
.w_75{
	width: 75px;
    max-width: 75px;
    min-width: 75px;
}
.w_80{
	width: 80px;
    max-width: 80px;
    min-width: 80px;
}
.w_100{
	width: 100px;
    max-width: 100px;
    min-width: 100px;
}
.w_90{
	width: 90px;
    max-width: 90px;
    min-width: 90px;
}
.w_110{
	width: 110px;
    max-width: 110px;
    min-width: 110px;
}
.w_115{
	width: 115px;
    max-width: 115px;
    min-width: 115px;
}
.w_120{
	width: 120px;
    max-width: 120px;
    min-width: 120px;
}
.w_128{
	width: 128px;
    max-width: 128px;
    min-width: 128px;
}
.w_130{
	width: 130px;
    max-width: 130px;
    min-width: 130px;
}
.w_140{
	width: 140px;
	max-width: 140px;
    min-width: 140px;
}
.w_148{
	width: 148px;
	max-width: 148px;
    min-width: 148px;
}
.w_150{
	width: 150px;
    max-width: 150px;
    min-width: 150px;
}
.w_155{
	width: 155px;
    max-width: 155px;
    min-width: 155px;
}
.w_160{
	width: 160px;
    max-width: 160px;
    min-width: 160px;
}
.w_170{
	width: 170px;
    max-width: 170px;
    min-width: 170px;
}
.w_180{
	width: 180px;
    max-width: 180px;
    min-width: 180px;
}
.w_200{
	width: 200px;
    max-width: 200px;
    min-width: 200px;
}
.w_210{
	width: 210px;
    max-width: 210px;
    min-width: 210px;
}
.w_235{
	width: 235px;
    max-width: 235px;
    min-width: 235px;
}
.w_240{
	width: 240px;
    max-width: 240px;
    min-width: 240px;
}
.w_250{
	width: 250px;
    max-width: 250px;
    min-width: 250px;
}
.w_270{
	width: 270px;
    max-width: 270px;
    min-width: 270px;
}
.w_280{
	width: 280px;
    max-width: 280px;
    min-width: 280px;
}
.w_300{
	width: 300px;
    max-width: 300px;
    min-width: 300px;
}
.w_310{
	width: 310px;
    max-width: 310px;
    min-width: 310px;
}
.w_320{
	width: 320px;
    max-width: 320px;
    min-width: 320px;
}
.w_330{
	width: 330px;
    max-width: 330px;
    min-width: 330px;
}
.w_350{
	width: 350px;
    max-width: 350px;
    min-width: 350px;
}
.w_355{
	width: 355px;
    max-width: 355px;
    min-width: 355px;
}
.w_360{
	width: 360px;
    max-width: 360px;
    min-width: 360px;
}
.w_380{
	width: 380px;
    max-width: 380px;
    min-width: 380px;
}
.w_400{
	width: 400px;
    max-width: 400px;
    min-width: 400px;
}
.w_450{
	width: 450px;
    max-width: 450px;
    min-width: 450px;
}
.w_480{
	width: 480px;
    max-width: 480px;
    min-width: 480px;
}
.w_500{
	width: 500px;
    max-width: 500px;
    min-width: 500px;
}
.w_600{
	width: 600px;
    max-width: 600px;
    min-width: 600px;
}
.w_620{
	width: 620px;
    max-width: 620px;
    min-width: 620px;
}
.w_650{
	width: 650px;
    max-width: 650px;
    min-width: 650px;
}
.w_1000{
	width: 1000px;
}
.w_1030{
	width: 1030px;
}
.w1100{
	width: 1100px;
}

.wmx60{
	max-width: 60%;
}
.wmx70{
	max-width: 70%;
}
.wmx80{
	width: auto;
	max-width: 80%;
}
.wmx100{
	max-width: 100%;
}
.wmx1030{
	width: auto;
	max-width: 1030px;
	min-width: 300px;
}

.w200{
	max-width: 200px;
}
.w220{
	max-width: 220px;
}
.w245{
	max-width: 245px;
}
.w250{
	max-width: 250px;
}
.w280{
	max-width: 280px;
}
.w300{
	max-width: 300px;
}
.w320{
	max-width: 320px;
}
.w330{
	max-width: 330px;
}
.w350{
	max-width: 350px;
}
.w375{
	max-width: 375px;
}
.w400{
	max-width: 400px;
}
.w450{
	max-width: 450px;
}
.w480{
	max-width: 480px;
}
.w500{
	max-width: 500px;
}
.w560{
	max-width: 560px;
}
.w600{
	max-width: 600px;
}
.w640{
	max-width: 640px;
}
.w700{
	max-width: 700px;
}
.w760{
	max-width: 760px;
}
.w800{
	max-width: 800px;
}
.w960{
	max-width: 960px;
}
.w1000{
	max-width: 1000px;
}
.w1024{
	max-width: 1024px;
}
.w1200{
	max-width: 1200px;
}
.w1500{
	width: 1500px;
	max-width: 1500px;
}

.w100_10{
	width: calc(100% + 10px);
}
.w100_26{
	width: calc(100% + 26px);
}

.w50-10{
	width: calc(50% - 10px);
}
.w50-20{
	width: calc(50% - 20px);
}
.w50-30{
	width: calc(50% - 30px);
}
.w50_10{
	width: calc(50% + 10px);
}

.w100-20{
	width: calc(100% - 20px);
}
.w100-40{
	width: calc(100% - 40px);
}
.w100-45{
	width: calc(100% - 45px);
}
.w100-50{
	width: calc(100% - 50px);
}
.w100-55{
	width: calc(100% - 55px);
}
.w100-60{
	width: calc(100% - 60px);
}
.w100-70{
	width: calc(100% - 70px);
}
.w100-85{
	width: calc(100% - 85px);
}
.w100-90{
	width: calc(100% - 90px);
}
.w100-100{
	width: calc(100% - 100px);
}
.w100_100{
	width: calc(100% + 100px);
}
.w100-120{
	width: calc(100% - 120px);
}
.w100-128{
	width: calc(100% - 128px);
}
.w100-150{
	width: calc(100% - 150px);
}
.w100-200{
	width: calc(100% - 200px);
}
.w100-250{
	width: calc(100% - 250px);
}
.w100-300{
	width: calc(100% - 300px);
}
.w100-355{
	width: calc(100% - 355px);
}
.w100-360{
	width: calc(100% - 360px);
}
.w100-400{
	width: calc(100% - 400px);
}
.w100-410{
	width: calc(100% - 410px);
}
.w100-450{
	width: calc(100% - 450px);
}
.w100-480{
	width: calc(100% - 480px);
}
.w100-500{
	width: calc(100% - 500px);
}
.w100-530{
	width: calc(100% - 530px);
}
.w100-600{
	width: calc(100% - 600px);
}
.w100-650{
	width: calc(100% - 650px);
}
.w100-700{
	width: calc(100% - 700px);
}
.w100-850{
	width: calc(100% - 850px);
}
.w100-900{
	width: calc(100% - 900px);
}
.w100-1200{
	width: calc(100% - 1200px);
}

.wm20{
    min-width: 20px;
}
.wm200{
    min-width: 200px;
}
.wm200{
    min-width: 200px;
}
.wm250{
    min-width: 250px;
}
.wm280{
    min-width: 280px;
}
.wm320{
    min-width: 320px;
}
.wm300{
    min-width: 300px;
}
.wm375{
    min-width: 375px;
}
.wm700{
    min-width: 700px;
}
.wm750{
    min-width: 750px;
}
.wm1000{
	min-width: 1000px;
}

.h_auto{
	height: auto;
}
.h12{
	height: 12px;
}
.h14{
	height: 14px;
}
.h15{
	height: 15px;
}
.h18{
	height: 18px;
}
.h20{
	height: 20px;
}
.h25{
	height: 25px;
}
.h27{
	height: 27px;
}
.h28{
	height: 28px;
}
.h29{
	height: 29px;
}
.h30{
	height: 30px;
}
.h33{
	height: 33px;
}
.h35{
	height: 35px;
}
.h36{
	height: 36px;
}
.h38{
	height: 38px;
}
.h40{
	height: 40px;
}
.h44{
	height: 44px;
}
.h45{
	height: 45px;
}
.h50{
	height: 50px;
}
.h60{
	height: 60px;
}
.h62{
	height: 62px;
}
.h70{
	height: 70px;
}
.h80{
	height: 80px;
}
.h100{
	height: 100px;
}
.h150{
	height: 150px;
}
.h170{
	height: 170px;
}
.h200{
	height: 200px;
}
	.h200-10{
		height: calc(200px - 10px);
	}
.h300{
	height: 300px;
}
.h400{
	height: 400px;
}
.h434{
	height: 434px;
}
.h490{
	height: 490px;
}
.h600{
	height: 600px;
}
.h_50{
	height: 50%;
}
.h_75{
	height: 75%;
}
.h_100{
	height: 100%;
}

.hm0{
	min-height: unset;
}
.hm225{
	min-height: 225px;
}
.hm250{
	min-height: 250px;
}
.hm450{
	min-height: 450px;
}
.hm500{
	min-height: 500px;
}
.hm600{
	min-height: 600px;
}
.hm700{
	min-height: 700px;
}
.hm100{
	min-height: 100%;
}

.hmx200{
	max-height: 200px;
}
.hmx500{
	max-height: 500px;
}
.hmx800{
	max-height: 800px;
}



.bg_size_25{
	background-size: 25px;
}

.bg_green_lite{
	background-color: #caffcd;
}
.bg_green{
	background-color: #4cbf51;
}
.bg_red{
	background-color: #f44336;
}
	.hov-bg_red:hover{
		background-color: #ff5e52;
	}
.bg_orange{
	background-color: #ff9422;
}
.bg_yellow{
	background-color: #fff569;
}
.bg_blue{
	background-color: #2196f3;
}
.bg_000{
	background-color: #000;
}
.bg_white{
	background-color: #fff;
}
.bgfff{
	background-color: #fff;
}
	.hov-bg_fff:hover{
		background-color: #f7f7f7!important;
	}
.bg_gray{
	background-color: #f2f2f2;
}
	.hov-bg_gray:hover{
		background-color: #f2f2f2!important;
	}
.bg_def{
	background-color: #f9f9f9;
}
.bg_lay{
	background-color: rgba(0,0,0, 0.8);
}

.hov-bg_no:hover{
	background-color: unset;
}

.bg_3a3a3a{
	background-color: #3a3a3a;
}
.bg_273642{
	background-color: #273642;
}
.bg_1e2c37{
	background-color: #1e2c37;
}
	.bg_1e2c37:hover{
		background-color: #273642;
	}
.bg_c4c4c4{
	background-color: #c4c4c4;
}
.bg_d86a43{
	background-color: #d86a43;
}
.bg_942a2a{
	background-color: #942a2a;
}
.bg_18a11b{
	background-color: #18a11b;
}
.bg_181818{
	background-color: #181818;
}
.bg_f1f1f1{
	background-color: #f1f1f1;
}
.bg_f1f2f2{
	background-color: #f1f2f2;
}
.bg_fff{
	background-color: #fff;
}
.bg_f9f9f9{
	background-color: #f9f9f9;
}
.bg_edeef0{
    background-color: #edeef0;
}
.bg_dfe4e8{
    background-color: #dfe4e8;
}
.bg_effdde{
	background-color: #effdde;
}
.bg_eaeeff{
	background-color: #eaeeff;
}
.bg_5181b8{
	background-color: #5181b8;
}
	.bg_5181b8:hover{
		background-color: #6b96c7;
	}
	.hov-bg_6b96c7:hover{
		background-color: #6b96c7;
	}
.bg_f5f7fa{
	background-color: #f5f7fa;
}
.bg_f7f9fa{
	background-color: #f7f9fa;
}
.bg_363b4d{
	background-color: #363b4d;
}
.bg_383745{
	background-color: #383745;
}
.bg_5a5b70{
	background-color: #5a5b70;
}
.bg_212030{
	background-color: #212030;
}
.bg_22bb92{
	background-color: #22bb92;
}
.bg_c1ecf9{
	background-color: #c1ecf9;
}
.bg_79dab0{
	background-color: #79dab0;
}
.bg_272727{
	background-color: #272727;
}
	.hov-bg_272727:hover{
		background-color: #2d2d2d;
	}

.bg_02572_3{
	background-color: rgba(0,25,72, 0.3);
}
.bg_000_8{
	background-color: rgba(0,0,0, 0.8);
}

.pc_fff::-webkit-input-placeholder{
	color: #fff;
}
.pc_fff::-moz-placeholder{
	color: #fff;
}
.pc_fff:-moz-placeholder{
	color: #fff;
}
.pc_fff:-ms-input-placeholder{
	color: #fff;
}



.sh0{
	box-shadow: unset;
}
.shnew{
	box-shadow: 0 2px 5px 0 rgba(51,51,79,.07);
}
.sh1{
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.sh5{
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.sh10{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
	.sh10b{
		box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
	}
	.sh10r{
		box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
	}
.sh15{
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
	.sh15b{
		box-shadow: 0px 20px 15px rgba(0, 0, 0, 0.35);
	}
.sh20{
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
	.sh20b{
		box-shadow: 0px 4px 16px rgba(0,0,0,0.15);
	}
.sh20_1{
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.sh20_3{
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.sh50_2{
	box-shadow: 0 0 50px rgba(0,0,0,0.2);
}

.shb1{
	box-shadow: 0 5px 4px -4px rgba(165, 204, 124, 0.92);
}
.shb1_in_000{
	box-shadow: inset 0 5px 4px -4px rgba(216, 216, 216, 0.92);
}

.shb2{
    box-shadow: 0 5px 4px -4px rgba(0, 0, 0, 0.14);
}
.sh_vk
{
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,.08);
}
.sh_stickers, .sh5{
    box-shadow: 0 0 1px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
}

.t_sh{
	position: absolute;
	top: 0;
	height: 30px;
	box-shadow: inset 0 13px 18px 0 #fff
}
.r_sh{
	position: absolute;
	top: 0;
	height: 30px;
	box-shadow: inset 0 13px 18px 0 #fff
}
.b_sh{
	position: absolute;
	bottom: 0;
	height: 30px;
	box-shadow: inset 0 -13px 18px 0 #fff
}



.lh2{
	line-height: 2em;
}
.lh18{
	line-height: 18px;
}
.lh32{
	line-height: 32px;
}

.c_white{
	color: #fff!important;
}
	.hov-c_fff:hover{
		color: #fff!important;
	}
.c_f1{
	color: #f1f1f1!important;
}
.c_black{
	color: #333!important;
}
.c_green{
	color: #4CAF50!important;
}
.c_green2{
	color: #12c457;
}
.c_lgreen{
	color: #8BC34A!important;
}
.c_yellow{
	color: #ffc921!important;
}
.c_orange{
	color: #FF9800!important;
}
.c_red{
	color: #f44336!important;
}
	.hov-c_red:hover{
		color: #f44336!important;
	}
.c_blue{
	color: #03a9f4!important;
}
	.hov-c_blue:hover{
		color: #03a9f4!important;
	}
.c_blue2{
	color: #5b90e6;
}
.c_vk{
	color: #4680C2!important;
}
.c_fff{
	color: #fff!important;
}
.c_999{
	color: #999!important;
}
.c_6f7985
{
	color: #6f7985;
}
.c_939393
{
	color: #939393;
}
.c_696792{
	color: #696792;
}
.c_e0e0e0{
	color: #e0e0e0;
}

.tsh5{
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}



.nowrap{
	white-space: nowrap;
}
.break-word{
    word-wrap: break-word;
}
.break-all{
	word-break: break-all;
}
.cell{
	display: table-cell;
}
.row{
	display: table-row;
}


.hover_bg_f9:hover{
	background-color: #f9f9f9;
}

.underline:hover{
	text-decoration: underline;
}
.uline{
	text-decoration: underline;
}
	.uline:hover{
		color: #000;
	}



.pointer{
	cursor: pointer;
}
.crs_auto{
	cursor: auto;
}
.crs_def{
	cursor: default;
}



.block{
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.view{
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	padding: 20px 10px;
	background-color: rgba(0,0,0,0.8);
	cursor: pointer;
 	overflow-y: scroll;
	z-index: 10000;
}
.view_block{
	position: relative;
	float: none;
	text-align: left;
	border-radius: 5px;
	background-color: #fff;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.35);
	display: inline-block;
	cursor: initial;
}
.close_btn{
 	position: absolute;
 	top: 0;
 	right: 0;
	width: auto;
	padding: 5px 10px;
	font-size: 20px;
	color: #676767;
	cursor: pointer;
}
	.close_btn:hover{
		color: #03a9f4;
	}
.loading{
	width: 50px;
	height: 50px;
	background-image: url(loading.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.load_icon{
	background-image: url(loading.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}



/* PADDINGS */



.pa0{
	padding: 0;
}
.pt0{
	padding-top: 0;
}
.pr0{
	padding-right: 0;
}
.pb0{
	padding-bottom: 0;
}
.pl0{
	padding-left: 0;
}
.ptb0{
	padding-top: 0;
	padding-bottom: 0;
}
.prl0{
	padding-right: 0;
	padding-left: 0;
}

.pa1{
	padding: 1px;
}
.pa5{
	padding: 5px;
}
.pa10{
	padding: 10px;
}
.pa12{
	padding: 12px;
}
.pa14{
	padding: 14px;
}
.pa15{
	padding: 15px;
}
.pa16{
	padding: 16px;
}
.pa20{
	padding: 20px;
}
.pa21{
	padding: 21px;
}
.pa25{
	padding: 25px;
}
.pa30{
	padding: 30px;
}
.pa40{
	padding: 40px;
}

.pt1{
	padding-top: 1px;
}
.pr1{
	padding-right: 1px;
}
.pb1{
	padding-bottom: 1px;
}
.pl1{
	padding-left: 1px;
}
.ptb1{
	padding-top: 1px;
	padding-bottom: 1px;
}
.prl1{
	padding-right: 1px;
	padding-left: 1px;
}

.pt2{
	padding-top: 2px;
}
.pr2{
	padding-right: 2px;
}
.pb2{
	padding-bottom: 2px;
}
.pl2{
	padding-left: 2px;
}
.ptb2{
	padding-top: 2px;
	padding-bottom: 2px;
}
.prl2{
	padding-right: 2px;
	padding-left: 2px;
}

.pt3{
	padding-top: 3px;
}
.pr3{
	padding-right: 3px;
}
.pb3{
	padding-bottom: 3px;
}
.pl3{
	padding-left: 3px;
}
.ptb3{
	padding-top: 3px;
	padding-bottom: 3px;
}
.prl3{
	padding-right: 3px;
	padding-left: 3px;
}

.pt4{
	padding-top: 4px;
}
.pr4{
	padding-right: 4px;
}
.pb4{
	padding-bottom: 4px;
}
.pl4{
	padding-left: 4px;
}
.ptb4{
	padding-top: 4px;
	padding-bottom: 4px;
}
.prl4{
	padding-right: 4px;
	padding-left: 4px;
}

.pt5{
	padding-top: 5px;
}
.pr5{
	padding-right: 5px;
}
.pb5{
	padding-bottom: 5px;
}
.pl5{
	padding-left: 5px;
}
.ptb5{
	padding-top: 5px;
	padding-bottom: 5px;
}
.prl5{
	padding-right: 5px;
	padding-left: 5px;
}

.pt6{
	padding-top: 6px;
}
.pr6{
	padding-right: 6px;
}
.pb6{
	padding-bottom: 6px;
}
.pl6{
	padding-left: 6px;
}
.ptb6{
	padding-top: 6px;
	padding-bottom: 6px;
}
.prl6{
	padding-right: 6px;
	padding-left: 6px;
}

.pt7{
	padding-top: 7px;
}
.pr7{
	padding-right: 7px;
}
.pb7{
	padding-bottom: 7px;
}
.pl7{
	padding-left: 7px;
}
.ptb7{
	padding-top: 7px;
	padding-bottom: 7px;
}
.prl7{
	padding-right: 7px;
	padding-left: 7px;
}


.pt8{
	padding-top: 8px;
}
.pr8{
	padding-right: 8px;
}
.pb8{
	padding-bottom: 8px;
}
.pl8{
	padding-left: 8px;
}
.ptb8{
	padding-top: 8px;
	padding-bottom: 8px;
}
.prl8{
	padding-right: 8px;
	padding-left: 8px;
}

.pt9{
	padding-top: 9px;
}
.pr9{
	padding-right: 9px;
}
.pb9{
	padding-bottom: 9px;
}
.pl9{
	padding-left: 9px;
}
.ptb9{
	padding-top: 9px;
	padding-bottom: 9px;
}
.prl9{
	padding-right: 9px;
	padding-left: 9px;
}

.pt10{
	padding-top: 10px;
}
.pr10{
	padding-right: 10px;
}
.pb10{
	padding-bottom: 10px;
}
.pl10{
	padding-left: 10px;
}
.ptb10{
	padding-top: 10px;
	padding-bottom: 10px;
}
.prl10{
	padding-right: 10px;
	padding-left: 10px;
}

.pt11{
	padding-top: 11px;
}
.pr11{
	padding-right: 11px;
}
.pb11{
	padding-bottom: 11px;
}
.pl11{
	padding-left: 11px;
}
.ptb11{
	padding-top: 11px;
	padding-bottom: 11px;
}
.prl11{
	padding-right: 11px;
	padding-left: 11px;
}

.pt12{
	padding-top: 12px;
}
.pr12{
	padding-right: 12px;
}
.pb12{
	padding-bottom: 12px;
}
.pl12{
	padding-left: 12px;
}
.ptb12{
	padding-top: 12px;
	padding-bottom: 12px;
}
.prl12{
	padding-right: 12px;
	padding-left: 12px;
}

.pt13{
	padding-top: 13px;
}
.pr13{
	padding-right: 13px;
}
.pb13{
	padding-bottom: 13px;
}
.pl13{
	padding-left: 13px;
}
.ptb13{
	padding-top: 13px;
	padding-bottom: 13px;
}
.prl13{
	padding-right: 13px;
	padding-left: 13px;
}

.pt14{
	padding-top: 14px;
}
.pr14{
	padding-right: 14px;
}
.pb14{
	padding-bottom: 14px;
}
.pl14{
	padding-left: 14px;
}
.ptb14{
	padding-top: 14px;
	padding-bottom: 14px;
}
.prl14{
	padding-right: 14px;
	padding-left: 14px;
}

.pt15{
	padding-top: 15px;
}
.pr15{
	padding-right: 15px;
}
.pb15{
	padding-bottom: 15px;
}
.pl15{
	padding-left: 15px;
}
.ptb15{
	padding-top: 15px;
	padding-bottom: 15px;
}
.prl15{
	padding-right: 15px;
	padding-left: 15px;
}

.pt17{
	padding-top: 17px;
}
.pr17{
	padding-right: 17px;
}
.pb17{
	padding-bottom: 17px;
}
.pl17{
	padding-left: 17px;
}
.ptb17{
	padding-top: 17px;
	padding-bottom: 17px;
}
.prl17{
	padding-right: 17px;
	padding-left: 17px;
}

.pt20{
	padding-top: 20px;
}
.pr20{
	padding-right: 20px;
}
.pb20{
	padding-bottom: 20px;
}
.pl20{
	padding-left: 20px;
}
.ptb20{
	padding-top: 20px;
	padding-bottom: 20px;
}
.prl20{
	padding-right: 20px;
	padding-left: 20px;
}

.pt25{
	padding-top: 25px;
}
.pr25{
	padding-right: 25px;
}
.pb25{
	padding-bottom: 25px;
}
.pl25{
	padding-left: 25px;
}
.ptb25{
	padding-top: 25px;
	padding-bottom: 25px;
}
.prl25{
	padding-right: 25px;
	padding-left: 25px;
}

.pt30{
	padding-top: 30px;
}
.pr30{
	padding-right: 30px;
}
.pb30{
	padding-bottom: 30px;
}
.pl30{
	padding-left: 30px;
}
.ptb30{
	padding-top: 30px;
	padding-bottom: 30px;
}
.prl30{
	padding-right: 30px;
	padding-left: 30px;
}

.pt35{
	padding-top: 35px;
}
.pr35{
	padding-right: 35px;
}
.pb35{
	padding-bottom: 35px;
}
.pl35{
	padding-left: 35px;
}
.ptb35{
	padding-top: 35px;
	padding-bottom: 35px;
}
.prl35{
	padding-right: 35px;
	padding-left: 35px;
}

.pt40{
	padding-top: 40px;
}
.pr40{
	padding-right: 40px;
}
.pb40{
	padding-bottom: 40px;
}
.pl40{
	padding-left: 40px;
}
.ptb40{
	padding-top: 40px;
	padding-bottom: 40px;
}
.prl40{
	padding-right: 40px;
	padding-left: 40px;
}

.pt45{
	padding-top: 45px;
}
.pr45{
	padding-right: 45px;
}
.pb45{
	padding-bottom: 45px;
}
.pl45{
	padding-left: 45px;
}
.ptb45{
	padding-top: 45px;
	padding-bottom: 45px;
}
.prl45{
	padding-right: 45px;
	padding-left: 45px;
}

.pt50{
	padding-top: 50px;
}
.pr50{
	padding-right: 50px;
}
.pb50{
	padding-bottom: 50px;
}
.pl50{
	padding-left: 50px;
}
.ptb50{
	padding-top: 50px;
	padding-bottom: 50px;
}
.prl50{
	padding-right: 50px;
	padding-left: 50px;
}

.pt60{
	padding-top: 60px;
}
.pr60{
	padding-right: 60px;
}
.pb60{
	padding-bottom: 60px;
}
.pl60{
	padding-left: 60px;
}
.ptb60{
	padding-top: 60px;
	padding-bottom: 60px;
}
.prl60{
	padding-right: 60px;
	padding-left: 60px;
}

.pt80{
	padding-top: 80px;
}
.pr80{
	padding-right: 80px;
}
.pb80{
	padding-bottom: 80px;
}
.pl80{
	padding-left: 80px;
}
.ptb80{
	padding-top: 80px;
	padding-bottom: 80px;
}
.prl80{
	padding-right: 80px;
	padding-left: 80px;
}

/* PADDINGS */

.m0{
	margin: 0!important;
}

.ma2{
	margin: 2px;
}
.ma3{
	margin: 3px;
}
.ma5{
	margin: 5px;
}
.ma10{
	margin: 10px;
}
.ma15{
	margin: 15px;
}
.ma20{
	margin: 20px;
}

.mt1{
	margin-top: 1px;
}
.mr1{
	margin-right: 1px;
}
.mb1{
	margin-bottom: 1px;
}
.ml1{
	margin-left: 1px;
}
.mtb1{
	margin-top: 1px;
	margin-bottom: 1px;
}
.mrl1{
	margin-right: 1px;
	margin-left: 1px;
}

.mt2{
	margin-top: 2px;
}
.mr2{
	margin-right: 2px;
}
.mb2{
	margin-bottom: 2px;
}
.ml2{
	margin-left: 2px;
}
.mtb2{
	margin-top: 2px;
	margin-bottom: 2px;
}
.mrl2{
	margin-right: 2px;
	margin-left: 2px;
}

.mt3{
	margin-top: 3px;
}
.mr3{
	margin-right: 3px;
}
.mb3{
	margin-bottom: 3px;
}
.ml3{
	margin-left: 3px;
}
.mtb3{
	margin-top: 3px;
	margin-bottom: 3px;
}
.mrl3{
	margin-right: 3px;
	margin-left: 3px;
}

.mt4{
	margin-top: 4px;
}
.mr4{
	margin-right: 4px;
}
.mb4{
	margin-bottom: 4px;
}
.ml4{
	margin-left: 4px;
}
.mtb4{
	margin-top: 4px;
	margin-bottom: 4px;
}
.mrl4{
	margin-right: 4px;
	margin-left: 4px;
}

.mt5{
	margin-top: 5px;
}
.mr5{
	margin-right: 5px;
}
.mb5{
	margin-bottom: 5px;
}
.ml5{
	margin-left: 5px;
}
.mtb5{
	margin-top: 5px;
	margin-bottom: 5px;
}
.mrl5{
	margin-right: 5px;
	margin-left: 5px;
}

.mt6{
	margin-top: 6px;
}
.mr6{
	margin-right: 6px;
}
.mb6{
	margin-bottom: 6px;
}
.ml6{
	margin-left: 6px;
}
.mtb6{
	margin-top: 6px;
	margin-bottom: 6px;
}
.mrl6{
	margin-right: 6px;
	margin-left: 6px;
}

.mt7{
	margin-top: 7px;
}
.mr7{
	margin-right: 7px;
}
.mb7{
	margin-bottom: 7px;
}
.ml7{
	margin-left: 7px;
}
.mtb7{
	margin-top: 7px;
	margin-bottom: 7px;
}
.mrl7{
	margin-right: 7px;
	margin-left: 7px;
}

.mt8{
	margin-top: 8px;
}
.mr8{
	margin-right: 8px;
}
.mb8{
	margin-bottom: 8px;
}
.ml8{
	margin-left: 8px;
}
.mtb8{
	margin-top: 8px;
	margin-bottom: 8px;
}
.mrl8{
	margin-right: 8px;
	margin-left: 8px;
}

.mt9{
	margin-top: 9px;
}
.mr9{
	margin-right: 9px;
}
.mb9{
	margin-bottom: 9px;
}
.ml9{
	margin-left: 9px;
}
.mtb9{
	margin-top: 9px;
	margin-bottom: 9px;
}
.mrl9{
	margin-right: 9px;
	margin-left: 9px;
}

.mt10{
	margin-top: 10px;
}
.mr10{
	margin-right: 10px;
}
.mb10{
	margin-bottom: 10px;
}
.ml10{
	margin-left: 10px;
}
.mtb10{
	margin-top: 10px;
	margin-bottom: 10px;
}
.mrl10{
	margin-right: 10px;
	margin-left: 10px;
}

.mt13{
	margin-top: 13px;
}
.mr13{
	margin-right: 13px;
}
.mb13{
	margin-bottom: 13px;
}
.ml13{
	margin-left: 13px;
}
.mtb13{
	margin-top: 13px;
	margin-bottom: 13px;
}
.mrl13{
	margin-right: 13px;
	margin-left: 13px;
}

.mt14{
	margin-top: 14px;
}
.mr14{
	margin-right: 14px;
}
.mb14{
	margin-bottom: 14px;
}
.ml14{
	margin-left: 14px;
}
.mtb14{
	margin-top: 14px;
	margin-bottom: 14px;
}
.mrl14{
	margin-right: 14px;
	margin-left: 14px;
}

.mt15{
	margin-top: 15px;
}
.mr15{
	margin-right: 15px;
}
.mb15{
	margin-bottom: 15px;
}
.ml15{
	margin-left: 15px;
}
.mtb15{
	margin-top: 15px;
	margin-bottom: 15px;
}
.mrl15{
	margin-right: 15px;
	margin-left: 15px;
}

.mt20{
	margin-top: 20px;
}
.mr20{
	margin-right: 20px;
}
.mb20{
	margin-bottom: 20px;
}
.ml20{
	margin-left: 20px;
}
.mtb20{
	margin-top: 20px;
	margin-bottom: 20px;
}
.mrl20{
	margin-right: 20px;
	margin-left: 20px;
}

.mt23{
	margin-top: 23px;
}
.mr23{
	margin-right: 23px;
}
.mb23{
	margin-bottom: 23px;
}
.ml23{
	margin-left: 23px;
}
.mtb23{
	margin-top: 23px;
	margin-bottom: 23px;
}
.mrl23{
	margin-right: 23px;
	margin-left: 23px;
}

.mt25{
	margin-top: 25px;
}
.mr25{
	margin-right: 25px;
}
.mb25{
	margin-bottom: 25px;
}
.ml25{
	margin-left: 25px;
}
.mtb25{
	margin-top: 25px;
	margin-bottom: 25px;
}
.mrl25{
	margin-right: 25px;
	margin-left: 25px;
}

.mt30{
	margin-top: 30px;
}
.mr30{
	margin-right: 30px;
}
.mb30{
	margin-bottom: 30px;
}
.ml30{
	margin-left: 30px;
}
.mtb30{
	margin-top: 30px;
	margin-bottom: 30px;
}
.mrl30{
	margin-right: 30px;
	margin-left: 30px;
}

.mt45{
	margin-top: 45px;
}
.mr45{
	margin-right: 45px;
}
.mb45{
	margin-bottom: 45px;
}
.ml45{
	margin-left: 45px;
}
.mtb45{
	margin-top: 45px;
	margin-bottom: 45px;
}
.mrl45{
	margin-right: 45px;
	margin-left: 45px;
}



.mt-3{
	margin-top: -3px;
}
.mt-5{
	margin-top: -5px;
}
.mt-8{
	margin-top: -8px;
}
.mt-15{
	margin-top: -15px;
}
.mt-70{
	margin-top: -70px;
}


.ml-8{
	margin-left: -8px;
}
.ml-10{
	margin-left: -10px;
}
.ml-13{
	margin-left: -13px;
}
.mr-15{
	margin-right: -15px;
}
.ml-50{
	margin-left: -50px;
}