html{
	display: flex;
	background: #ecececb3;
}
body, html{
	min-height: 100%;
	display: flex;
}
body{
	margin: 0 auto;
	padding: 0;
	width: 1200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: sans-serif;
	font-size: 14px;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
a{
	color: #A65910;
}
a:hover{
	text-decoration: none;
	opacity: 0.9;
}
.header{
	background-image: url("../img/bg1.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    background-color: #f3f8f9;
    height: 173px;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0 30px;
}
.header__logo img{
	max-width: 100px;
}
.title-block{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	padding: 20px 5px;
	min-width: 1140px;
	background: #fff;
}
.search{
	display: flex;
	flex-direction: row;
}
.search input[type="submit"]{
	background: url("../img/s1.png") center center no-repeat #48A0B0;
	width: 30px;
	height: 30px;
	border: 0;
	background-size: 60%;
}
.search input[type="submit"]:hover{
	opacity: 0.7;
	cursor: pointer;
}
.search input[type="text"]{
	height: 24px;
	padding: 2px 10px;
	width: 192px;
	border: 1px solid #b6b6b6;
	color: #747272;
}
.title{
	font-size: 24px;
	font-weight: bold;
	color: #108399;
}
.container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	flex: 1;

}
.left-menu{
	list-style-type: none;
	color: #fff;
	background: #108399;
	margin: 0;
	padding: 20px 0;
	min-width: 250px;
}
.left-menu a{
	color: #fff;
	text-decoration: none;
	padding: 15px 30px;
	display: block;
}
.left-menu a:hover{
	background: #48A0B0;
}
.content{
	border-top: 4px solid #108399;
	width: 100%;
	padding: 30px;
	background: #fff;
}
.footer{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	color: #006c81;
	background: #E0E0E0;
	flex: 0;
}

section.video {
	display: flex;
	justify-content: center;
	align-items: center;
}

table.main {
	margin: 0 auto;
}

table.feedback_tab td.title1 {
	text-align: right;
}

table.feedback_tab input, table.feedback_tab textarea, table.feedback_tab select {
	box-sizing: border-box;
	width: 100%;
	padding: 4px;
	border: 1px solid #999;
	border-radius: 4px;
	margin: 0 0 0 8px;
	font-size: 14px;
}

table.feedback_tab input.fb_button {
	width: unset;
	margin: 14px 4px 0;
	padding: 7px 14px;
	border: none;
	user-select: none;
	cursor: pointer;
	color: #FFFFFF;
	font-weight: 600;
}

table.feedback_tab input.fb_button[type="submit"] {
	background: #108399;
}

table.feedback_tab input.fb_button[type="reset"] {
	background: #48A0B0;
}

table.feedback_tab input.fb_button:hover {
	opacity: 0.85;
}

table.feedback_tab input.fb_button:active {
	opacity: 0.7;
}