body, html, ul, li {
	margin: 0;
	padding: 0
}

ul, li {
	list-style-type: none;
}

.survey {
	width: 920px;
	margin: 20px auto;
}
.survey_title {
	font-size:24px;
	padding:20px 0;
	text-align: center;
	font-weight: bold;
}
.survey .problem {
	border: 1px #eaeaea solid;
	width: 100%;
	margin: 10px 0;
	border-radius: 4px;
	background: #fafafa;
}

.survey .problem .content {
	padding: 15px 15px 5px 15px;
}

.survey .problem .content .title {
	padding: 0px 0;
	font-size: 16px;
}

.survey .problem .content .options {
	padding: 10px 0;
}

.survey .problem .content .options ul li {
	padding: 5px 0;
	font-size: 14px;
	position: relative;
}
.survey .active{
	border:1px red solid;
}
.survey .submit {
	text-align: center;
	width:100%;
	float:left;
	margin-top:10px;
}
.survey .submit input{
	padding:10px 20px;
	background:#6788de;
	cursor: pointer;
	border:none;
	color:#fff;
	border-radius: 4px;
	outline: none;
}
.survey .submit input:active{
	background: #ff509e;
}
.survey .submit input:disabled{
	background: #ccc;
}
.radio input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio input[type="radio"]+.radio-label:before {
	content: '';
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 1px;
	margin-right: 8px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

.radio input[type="radio"]:checked+.radio-label:before {
	background-color: #3197EE;
	box-shadow: inset 0 0 0 4px #f4f4f4;
}

.radio input[type="radio"]:focus+.radio-label:before {
	outline: none;
	border-color: #3197EE;
}

.radio input[type="radio"]:disabled+.radio-label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}

.radio input[type="radio"]+.radio-label:empty:before {
	margin-right: 0;
}


.checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
}

.checkbox input[type="checkbox"]+.checkbox-label:before {
	content: '';
	background: #f4f4f4;
	border-radius: 2px;
	border: 1px solid #b4b4b4;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 1px;
	margin-right: 8px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 250ms ease;
	transition: all 250ms ease;
}

.checkbox input[type="checkbox"]:checked+.checkbox-label:before {
	background-color: #3197EE;
	box-shadow: inset 0 0 0 4px #f4f4f4;
}

.checkbox input[type="checkbox"]:focus+.checkbox-label:before {
	outline: none;
	border-color: #3197EE;
}

.checkbox input[type="checkbox"]:disabled+.checkbox-label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}

.checkbox input[type="checkbox"]+.checkbox-label:empty:before {
	margin-right: 0;
}
.survey .input{
	width:360px;
	line-height:22px;
	border:1px #ddd solid;
	margin-top:10px;
	margin-bottom:10px;
	outline: none;
	padding:2px;
	text-indent: 5px;
	box-shadow: 0px 0px 2px rgba(0,0,0,0.05) inset;
}
.survey .textarea{
	width:100%;
	line-height:22px;
	border:1px #ddd solid;
	margin-top:10px;
	margin-bottom:10px;
	outline: none;
	padding:2px;
	text-indent: 5px;
	box-shadow: 0px 0px 2px rgba(0,0,0,0.05) inset;
}
.error{
	width:694px;
	height:305px;
	margin: 140px auto 100px auto;
}
.error .text{
	font-size:24px;
	text-align: center;
	color:#595959;
	margin:30px;
}
.error .text a{
	color:#0689b4;
	text-decoration: none;
}
.errorMsg{
	color:red;
width:80%;
margin:auto auto;
padding:10px;
margin-bottom:50px;
border:1px #ddd solid;
background:#fff;
	font-size:14px;
	line-height:20px;
}