html, body {
	margin: 0;
	padding: 0;
}

body {
	background: #f1f3f2;
	__font-family: 'Merriweather Sans', sans-serif;
	font-family: 'Arial';
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	color: #4e4e4e;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

* {
	outline: none;
}

.sec {
	display: block;
	width: 100%;
	float: left;
}

.container {
	display: inline-block;
	width: 1100px;
	text-align: left;
}

.container a {
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	text-decoration: underline;
	color: #1092ff;
}

	.container a:hover {
		text-decoration: none;
	}

.row {
	display: block;
	float: left;
	width: 100%;
}

.header {
	background: #6bb9f0;
	min-height: 143px;
}

.header.second {
	background: #6bb9f0 url(img/bg_header_2.jpg) no-repeat top center;
	min-height: 510px;
}

.header.second .container_head_bg,
.header.second .container_head_bg2,
.header.second .container_head_bg3 {
	display: none;
}

.container_head_bg {
	position: absolute;
	z-index: 10;
	background: url(img/bg_header_paralax.jpg) repeat-x top center;
	width: 100%;
	min-height: 143px;
}

.container_head_bg2 {
	position: absolute;
	z-index: 20;
	background: url(img/bg_header_paralax2.jpg) repeat-x top center;
	width: 100%;
	min-height: 143px;
	opacity: 0;
	animation: headerT 7s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.container_head_bg3 {
	position: absolute;
	z-index: 20;
	background: url(img/bg_header_paralax3.jpg) repeat-x top center;
	width: 100%;
	min-height: 143px;
	opacity: 0;
	animation: headerF 7s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

@keyframes headerT {
	0% { opacity: 0; }
	33% { opacity: 1; }
	66% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes headerF {
	0% { opacity: 0; }
	33% { opacity: 0.5; }
	66% { opacity: 1; }
	100% { opacity: 0; }
}





.header .header_content {
	position: relative;
	z-index: 50;
	background: url(img/topbar.png) repeat-x top center;
}

.topbar {
	display: block;
	float: left;
	width: 100%;
	height: 40px;
	text-align: right;
}

.topbar a {
	display: inline-block;
	height: 26px;
	line-height: 26px;
	padding-left: 25px;
	padding-right: 25px;
	margin-top: 6px;
	font-size: 11px;
	color: #fff;
	letter-spacing: 1px;
	background: #484848;
	box-shadow: -1px 0px 0px #1b6aae;
	text-decoration: none;
}

a.tb_login {
	background: #484848 url(img/i_logout.png) no-repeat 15px center;
	padding-left: 37px;
}

	.topbar a:hover {
		background-color: #5d5d5d;
	}

	.topbar a:focus {
		background-color: #2f2f2f;
	}

.logo {
	display: block;
	float: left;
	width: 161px;
	margin-left: 20px;
	margin-top: -12px;
}

.logo img {
	width: 100%;
}

.slogan {
	display: inline-block;
	float: left;
	margin-left: 100px;
	margin-top: 45px;
	font-size: 22px;
	font-weight: 400;
	font-family: 'Merriweather Sans', sans-serif;
	text-transform: uppercase;
	letter-spacing: -1px;
	color: #333;
}

.sec_topmenu {
	height: 49px;
	background: #ececec;
	border-top: 1px solid #e2e2e2;
	border-bottom: 2px solid #dadada;
}

.topmenu {
	margin-left: -22px;
}

.topmenu li {
	position: relative;
	display: inline-block;
}

.topmenu li a {
	position: relative;
	display: inline-block;
	height: 49px;
	line-height: 49px;
	padding-left: 22px;
	padding-right: 22px;
	font-family: 'Tahoma';
	font-size: 16px;
	color: #505050;
	text-decoration: none;
}

.topmenu li a:hover {
	color: #1092ff;
}

.topmenu li.current a {
	color: #1092ff;
}

.topmenu li a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	height: 49px;
	width: 2px;
	background: #dadada;
	transition: all 0.2s ease-out;
	transform: rotate(-90deg) translateX(-25px) translateY(-20px);
}

.topmenu li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-block;
	height: 49px;
	width: 2px;
	background: #dadada;
	transition: all 0.2s ease-out;
	transform: rotate(90deg) translateX(25px) translateY(-20px);
}

	.topmenu li a:hover::before,
	.topmenu li a:hover::after {
		transform: rotate(0deg) translateX(0px) translateY(0px);
	}


/* SUBMENU */
.tb_submenu {
	display: none;
}

.topmenu li:hover .tb_submenu {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	min-width: 320px;
	background: none;
	z-index: 100;
}

.tb_submenu li {
	display: block;
}

.tb_submenu li a {
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	line-height: 37px !important;
	height: 37px !important;
	padding: 0px 10px;
	border-bottom: 1px solid #f5f5f5;
	background: #fff;
}

.tb_submenu li:hover a {
	background: #f5f5f5;
}

.tb_submenu li a::before,
.tb_submenu li a::after {
	display: none !important;
}


/* CONTENT */

.sec.main {
	padding-top: 11px;
}

.container p:first-child {
	margin-top: 0 !important;
}

.whitebox {
	display: block;
	min-height: 300px;
	background: #fff;
	border: 1px solid #eaeaea;
	box-shadow: 0px -1px 2px #dadcdb;
	color: #4e4e4e;
}

.whitebox_inner {
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
	padding: 30px 20px 30px 20px;
}
.whitebox_inner h1, h3{
	color:#606060;
}
.whitebox.left {
	width: 65%;
	max-width: 720px;
	float: left;
}

.whitebox.right {
	width: 34%;
	max-width: 370px;
	float: right;
}

.whitebox.right .whitebox_inner {
	margin-top: 20px;
}

h1 {
	display: block;
	margin-top: 0;
	padding-bottom: 25px;
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 30px;
	letter-spacing: -1px;
	font-family: 'Merriweather Sans', sans-serif;
	color: #333;
	background: url(img/h1_line.gif) no-repeat bottom left;
	line-height: 40px;
}

.title_blue {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 35px;
	margin: 0;
	font-size: 20px;
	color: #fff;
	font-family: 'Merriweather Sans', sans-serif;
	background: #1092ff;
}

.fleft {
	float: left !important;
}

.fright {
	float: right !important;
}

.tleft {
	text-align: left !important;
}

.tright {
	text-align: right !important;
}


.input_text {
	border: 1px solid #5c5c5c;
	min-width: 200px;
	height: 22px;
	text-indent: 9px;
	box-shadow: 1px -1px 0px #e8e8e8 inset;
	margin-bottom: 10px;
}

.input_text.error {
	border: 1px solid red;
	background: #FFBDBD;
}

.label {
	display: inline-block;
	height: 18px;
	padding-top: 6px;
	min-width: 90px;
	margin-right: 5px;
	font-size: 16px;
}

.submit {
	min-height: 26px;
	border: none;
	background: #1092ff;
	color: #fff;
	font-size: 11px;
	letter-spacing: 1px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 10px;
	transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}

	.submit:hover {
		background: #084c86;
	}
	.submit:focus {
		background: #398bd0;
	}

.submit.login {
	background-image: url(img/i_login.png);
	background-position: 10px 8px;
	background-repeat: no-repeat;
	padding-left: 27px;
}


/* FOOTER */

.footer {
	background: #ececec;
	box-shadow: 0px -2px 2px #dcdcdc;
	padding-top: 18px;
	padding-bottom: 30px;
	margin-top: 30px;
	color: #333;
	font-size: 12px;
	line-height: 14px;
}

.fcol {
	display: block;
	float: left;
	margin-right: 35px;
}

.footer h4 {
	text-transform: uppercase;
	font-size: 12px;
	font-family: 'Merriweather Sans', sans-serif;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 8px;
}

.i_mail {
	display: block;
	min-height: 12px;
	background: url(img/i_mail.png) no-repeat left top;
	padding-left: 18px;
	margin-bottom: 2px;
}

.i_phone {
	display: block;
	min-height: 12px;
	background: url(img/i_phone.png) no-repeat left top;
	padding-left: 18px;
	margin-bottom: 2px;
}


.debug {
	background: #0d75cd;
	color: #65a3d8;
	padding-top: 10px;
	padding-bottom: 10px;
}

.debug .container {
	text-align: right;
}

.debug .container a {
	display: inline-block;
	margin-left: 20px;
	margin-right: 15px;
}

.debug .container a:last-child {
	margin-right: 0px;
}

.debug .container span {
	display: inline-block;
	margin-top: 3px;
	position: absolute;
}

.button {
	display: inline-block;
	padding: 7px 20px;
	background: #484848;
	color: #fff !important;
	font-size: 11px;
	letter-spacing: 1px;
	text-decoration: none !important;
	text-align: center;
	border: none;
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}

	.button:hover,
	.button:focus {
		background: #737373;
	}

.button.login {
	background-image: url(img/i_logout.png);
	background-repeat: no-repeat;
	background-position: 10px 8px;
	padding-left: 27px;
}

.img_right {
	float: right;
	clear: both;
	width: 40%;
	max-width: 400px;
	margin-bottom: 10px;
	margin-left: 40px;
}

.whitebox hr {
	width: 100%;
	height: 1px;
	background: #cfcfcf; 
	border: none;
	margin-top: 30px;
	margin-bottom: 30px;
}



/* HORIZONTAL LINKS */

ul.hor_links {
	width: 100%;
	margin-top: 20px;
	list-style: none !important;
	padding-left: 0 !important;
}

ul.hor_links li {
	display: inline-block;
	min-width: 22%;
	margin-right: 2%;
	padding-left: 0 !important;
	background: none !important;
}

ul.hor_links li a {
	display: inline-block;
	width: 100%;
	background: #484848;
	color: #fff;
	text-align: center;
	padding: 7px 0px;
	margin-bottom: 10px;
	text-decoration: none;
}

ul.hor_links li a:hover {
	background: #787878;
}




/* VERTICAL LINKS */

ul.ver_links {
	width: 22.5%;
	margin-right: 2%;
	float: left;
	list-style: none;
	padding-left: 0;
}

ul.ver_links li {
	display: block;
	min-width: 22%;
	margin-right: 2%;
	padding-left: 0 !important;
	background: #FFF none repeat scroll 0% 0% !important;
}

ul.ver_links li a {
	display: inline-block;
	width: 100%;
	background: #484848;
	color: #fff;
	text-align: center;
	padding: 7px 0px;
	margin-bottom: 10px;
	text-decoration: none;
}

ul.ver_links li a:hover {
	background: #787878;
}


.clr {
	display: block;
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
	clear: both;
}

.w50 {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

.w90 {
	width: 90%;
}

.w100 {
	width: 100%;
}

.w50.inner {
	max-width: 340px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.box_border .title_blue,
.w50.inner .title_blue {
	font-size: 16px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 400;
	text-shadow: 0px 0px 0px #fff;
	line-height: 18px;
	text-align: center;
}

.box_border.quest .title_blue {
	text-indent: 20px;
	text-align: left;
}

.box_border.answer .title_blue {
	text-indent: 20px;
	text-align: left;
	background: #78ad3f;
	text-transform: uppercase;
}

.button.w100 {
	padding-left: 0;
	padding-right: 0;
}

.box_border {
	display: inline-block;
	border: 1px solid #d9d9d9;
	margin-bottom: 15px;
}
/*
.box_border .whitebox_inner {
	margin: 15px 10px 15px 30px;
}
*/ 

.box_border.quest,
.box_border.answer {
	width: 58%;
	margin-top: 7px;
}

.whitebox ul li {
	padding-left: 15px;
	padding-bottom: 3px;
	background: url(img/dot.png) no-repeat 0px 8px;
}

.f14 {
	font-size: 14px;
}

.uppercase {
	text-transform: uppercase;
}



/* CHECKBOX & RADIOBOX STYLISH */

.sbb_ch {
	position: absolute;
	left: -9999px;
}

.sbb_ch + label {
	display: inline-block;
	background: url(img/checkbox.png) 0px 0px no-repeat;
	padding-left: 30px;
	padding-top: 2px;
	margin-bottom: 4px;
	height: 17px;
	cursor: pointer;
}

.sbb_ch:checked + label {
	background: url(img/checkbox_active.png) 0px 0px no-repeat;
	font-weight: 700;
}

.sbb_ch + label {
	color: #484848;
}

.sbb_ch.green + label {
	color: #78ad3f;
	text-shadow: 0px 0px 0px #78ad3f;
}




.sbb_rd {
	position: absolute;
	left: -9999px;
}

.sbb_rd + label {
	display: inline-block;
	background: url(img/radio.png) 0px 0px no-repeat;
	padding-left: 30px;
	padding-top: 2px;
	margin-bottom: 4px;
	height: 17px;
	cursor: pointer;
}

.sbb_rd:checked + label {
	background: url(img/radio_active.png) 0px 0px no-repeat;
	font-weight: 700;
}

.sbb_rd + label {
	color: #484848;
}

.sbb_rd.green + label {
	color: #78ad3f;
	text-shadow: 0px 0px 0px #78ad3f;
}




.prog_col {
	display: block;
	float: left;
	width: 29%;
	margin-right: 3%;
	margin-bottom: 40px;
}

.prog_img_box {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
}

.prog_img_box img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	width: 100%;
	height: auto !important;
}

.prog_img_blank {
	position: relative !important;
	z-index: 10 !important;
}

.noimage {
	min-height: 100%;
}

.prog_desc {
	display: block;
	margin-bottom: 10px;
	min-height: 100px;
}

.prog_col b {
	display: block;
	width: 100%;
	height: 40px;
	overflow: hidden;
}

.prog_col p {
	display: block;
	width: 100%;
	height: 76px;
	overflow: hidden;
}

.box_border.yellow {
	float: right;
	width: 42%;
	max-width: 400px;
	margin-left: 3%;
}
/*
.box_border.yellow .whitebox_inner {
	margin: 15px 30px 15px 30px;
}
*/
.title_yellow {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 35px;
	margin: 0;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	font-family: 'Arial';
	background: #f4d00a;
}

.title_yellow.voskl {
	background: #f4d00a url(img/i_voskl.png) 22px 15px no-repeat;
	padding-left: 65px;
}




.search_res_title {
	display: block;
	margin-top: 10px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	background: url(img/h1_line.gif) no-repeat bottom left;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

.box_border.searcher {
	width: 100%;
	max-width: 650px;
}

.box_border.searcher .title_blue {
	text-align: left;
	padding-left: 30px;
	text-transform: uppercase;
}



.form_register .label {
	min-width: 120px;
}

.reg_info_block {
	display: block;
	padding-left: 30px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f3f3f3;
}

.reg_info_block big {
	display: block;
	margin-bottom: 10px;
}

ul.dot {
	list-style: disc;
	padding-left: 15px;
	margin-bottom: 10px;
}













/*        RESPONSINVE          */
/* ============================*/


@media (max-width: 1024px) {

	.container {
		width: 100%;
		max-width: 1024px;
	}

	.topbar a:last-child {
		margin-right: 2%;
	}

	.topmenu {
		margin-left: 2%;
	}

	.header .header_content {
		background: url(img/topbar.png) no-repeat 44% 0%;
	}

	.fcol {
		margin-left: 2%;
		margin-right: 10px;
	}

	.debug .container a:last-child {
		margin-right: 2%;
	}

	.box_border.quest, .box_border.answer {
		width: 55%;
	}

	.topmenu li a::before,
	.topmenu li a::after {
		display: none;
	}

	.whitebox {
		min-height: 0;
	}

}










@media (max-width: 768px) {

	.label {
		font-size: 14px;
		min-width: 100px;
	}

	.input_text {
		min-width: 70px;
		width: 50%;
	}

	h1 {
		font-size: 26px;
		line-height: 35px;
	}

	.title_blue {
		font-size: 18px;
		line-height: 22px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.header .header_content {
	  background: url(img/topbar.png) no-repeat 32% 0%;
	}

	.img_right {
		margin-left: 4%;
	}

	.prog_col {
		width: 23%;
		margin-right: 2%;
	}

	.button {
		padding: 7px 10px;s
	}

}






@media (max-width: 568px) {

	.slogan {
		font-size: 16px;
		float: right;
		margin-left: 0;
		margin-right: 2%;
	}

	.header .header_content {
	  background: url(img/topbar.png) no-repeat 27% 0%;
	}

	.topmenu li a {
		padding-left: 12px;
		padding-right: 12px;
	}

	h1 {
		font-size: 21px;
		margin-top: 0px;
		line-height: 26px;
		padding-bottom: 10px;
	}

	.label {
		min-width: 50px;
		font-size: 12px;
	}

	.submit {
		letter-spacing: 0;
	}

	.title_blue {
		font-size: 16px;
		padding-left: 20px;
	}

	ul.hor_links li {
		display: inline-block;
		min-width: 30%;
		margin-right: 2%;
	}


	ul.hor_links li a {
		display: inline-block;
		vertical-align: top;
		width: 96%;
		background: #484848;
		color: #fff;
		text-align: center;
		padding: 7px 2%;
		margin-bottom: 10px;
		text-decoration: none;
	}

	.box_border .title_blue, .w50.inner .title_blue {
		text-align: left;
	}

	.w50.inner {
		width: 48%;
		margin-right: 1%;
	}

	.header.second {
		min-height: 147px;
	}

	.box_border.quest .title_blue {
		text-indent: 0px;
	}

	.prog_desc {
		min-height: 100px;
	}

	.prog_col .button {
		width: 85%;
		float: left !important;
		margin-bottom: 10px;
	}

	.whitebox_inner .submit.login {
		margin-top: 10px;
		float: left;
	}

	.whitebox.right .label {
		width: 100%;
		text-align: left;
	}

	.whitebox.right .input_text {
		width: 100%;
	}

	.topmenu li a {
		padding-left: 8px;
		padding-right: 8px;
	}

	.prog_col {
		width: 47%;
	}

	.prog_col .button {
		width: auto;
		float: none !important;
		padding-left: 10px;
		padding-right: 10px;
	}

}






@media (max-width: 480px) {

	.slogan {
		width: 50%;
		line-height: 20px;
		margin-top: 33px;
	}

	.topbar a {
		padding-left: 7px;
		padding-right: 7px;
		margin-top: 6px;
		font-size: 11px;
	}

	a.tb_login {
		background: #484848 url(img/i_logout.png) no-repeat 15px center;
		padding-left: 35px;
	}

	.submit {
		min-height: 26px;
		border: none;
		background: #1092ff;
		color: #fff;
		font-size: 11px;
		letter-spacing: 0px;
		padding-left: 7px;
		padding-right: 7px;
		margin-bottom: 10px;
		transition: all 0.2s ease;
		-webkit-transition: all 0.2s ease;
	}

	.box_border.quest .title_blue {
		line-height: 25px;
	}


}





@media (max-width: 320px) {

	.whitebox.left {
		width: 100%;
	}

	.whitebox.right {
		width: 100%;
	}

	.header .header_content {
		background: url(img/topbar.png) no-repeat right top;
	}

	.logo {
		margin-top: 20px;
		width: 100px;
	}

	.slogan {
		font-size: 14px;
	}

	.topmenu {
		max-width: 100%;
		overflow: hidden;
	}

	.topmenu li a {
		padding-left: 4px;
		padding-right: 4px;
		font-size: 12px;
	}

	.whitebox.right .label {
		width: 45%;
	}

	.whitebox.right .input_text {
		width: 50%;
	}

	ul.hor_links li {
		width: 47%;
	}

	ul.ver_links {
		width: 40%;
		list-style: none;
		padding-left: 0;
	}

	.w50.inner {
		width: 100%;
	}

	.box_border.quest {
		width: 100%;
	}

	.img_right.quest {
		width: 100%;
	}

	.box_border.answer {
		width: 100%;
	}

	.box_border.yellow {
		float: left !important;
		width: 100%;
		margin-left: 0;
	}

	.prog_col {
		width: 100%;
		margin-right: 0;;
	}

	.prog_desc {
		min-height: 0px;
	}

	.whitebox_inner .submit.login {
		float: right;
		margin-top: 0;
	}

}

