@CHARSET "UTF-8";

.content {
	width: 800px;
	margin: 0 auto;
}

.content .head {
	margin-top: 100px;
	text-align: left;
}

.content .head ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0;
}

.content .head li {
	display: inline-block;
}

.content .head li a {
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	width: 190px;
	text-decoration: none;
	color: rgb(221, 221, 221);
	font-size: 20px;
	font-weight: bold;
	border-bottom: 3px solid rgb(207, 207, 207);
	margin-left: 5px;
	margin-right: 5px;
	padding-bottom: 10px;
	cursor: pointer;
}

.content .head li.selected a {
	color: rgb(50, 101, 128);
	font-size: 20px;
	font-weight: bold;
	border-bottom: 3px solid rgb(20, 161, 223);
}

.content .title h1 {
	margin: 40px 0;
	padding: 0;
	font-weight: normal;
	font-size: 12px;
}

.content .right {
	float: right;
	width: 330px;
}

.content .form {
	margin-right: 340px;
}

.content .form .block_input {
	margin-bottom: 20px;
}

.content .form .block_input .input {
	background: #f5f5f5;
	outline: none;
	border: none;
	text-shadow: none;
	padding: 5px 10px;
}

.content .form .block_input .input:focus {
	outline: 3px solid rgb(131, 191, 252);
}

.content .form .block_input input[type=text] {
	box-sizing: border-box;
	width: 100%;
	height: 40px;
}

.content .form .block_input input[type=button] {
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	background: rgb(75, 75, 75);
	color: white;
	font-size: 18px;
	outline: none;
}

.content .form .block_input input[type=button]:hover {
	color: rgb(131, 191, 252);
}

.content .form .block_input textarea {
	box-sizing: border-box;
	width: 100%;
	height: 170px;
}