@charset "utf-8";

/* CSS Document */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote, /* structural elements 结构元素 */
	dl,dt,dd,ul,ol,li, /* list elements 列表元素 */ pre,
	/* text formatting elements 文本格式元素 */ fieldset,legend,button,input,textarea,
	/* form elements 表单元素 */ th,td, /* table elements 表格元素 */ img
	/* img elements 图片元素 */ {
	/* border: medium none; */
	margin: 0;
	padding: 0;
	letter-spacing: 2px !important;
}

form {
	border: medium none;
	margin: 0;
	padding: 0;
}

/** 设置默认字体 **/
body,button,input,select,textarea {
	-webkit-text-size-adjust: none;
	font-family: "\u5FAE\u8F6F\u96C5\u9ED1", "Microsoft Yahei",
		"Hiragino Sans GB", tahoma, arial, "\u5B8B\u4F53" !important;
	font-family: 'Microsoft YaHei';
	font-size: 13px;
	color: #444;
}

html,body {
	/*  background-image: url("../images/sky_bg.png"); */
	/* 	background-attachment: repeat fixed;  */
	width: 100%;
	height: 100%;
	min-height: 100%;
}

html {
	/* background: url("../images/sky_bg.png") repeat fixed; */
	filter:
		"progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale')";
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	-webkit-text-size-adjust: none;
}

em {
	font-style: normal;
}

font {
	font-size: 10px;
}

/** 重置列表元素 **/
ul,ol,li {
	list-style: none;
}

/** 重置超链接元素 **/
a {
	text-decoration: none;
	cursor: pointer;
	color: #4e5b70;
}

/** 重置图片元素 **/
img {
	border: 0px;
}

/** 重置表格元素 **/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

pre {
	white-space: pre-wrap;
}

* {
	word-wrap: break-word;
	word-break: break-all;
}

input[type='radio'],input[type='checkbox'] {
	display: none;
	cursor: pointer;
}

input[type='radio']:focus,input[type='radio']:active,input[type='checkbox']:focus,input[type='checkbox']:active
	{
	outline: none;
}

input[type='radio']+label,input[type='checkbox']+label {
	line-height: normal;
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding-left: 25px;
	margin-right: 10px;
	color: #0b4c6a;
}

input[type='radio']+label:before,input[type='radio']+label:after,input[type='checkbox']+label:before,input[type='checkbox']+label:after
	{
	content: '';
	font-family: helvetica;
	display: inline-block;
	width: 18px;
	height: 18px;
	left: 0;
	bottom: 0;
	text-align: center;
	position: absolute;
}

input[type='radio']+label:before,input[type='checkbox']+label:before {
	background-color: #EFEFEF;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

input[type='radio']+label:after,input[type='checkbox']+label:after {
	color: #fff;
}

input[type='radio']:checked+label:before,input[type='checkbox']:checked+label:before
	{
	-moz-box-shadow: inset 0 0 0 10px #3BB9C0;
	-webkit-box-shadow: inset 0 0 0 10px #3BB9C0;
	box-shadow: inset 0 0 0 10px #3BB9C0;
}

/*Radio Specific styles*/
input[type='radio']+label:before {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

input[type='radio']+label:hover:after,input[type='radio']:checked+label:after
	{
	content: '\2022';
	position: absolute;
	font-size: 23px;
	line-height: 18px;
}

input[type='radio']+label:hover:after {
	color: #c7c7c7;
}

input[type='radio']:checked+label:after,input[type='radio']:checked+label:hover:after
	{
	color: #fff;
}

/*Checkbox Specific styles*/
input[type='checkbox']+label:before {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

input[type='checkbox']+label:hover:after,input[type='checkbox']:checked+label:after
	{
	content: "\2713";
	line-height: 18px;
	font-size: 14px;
}

input[type='checkbox']+label:hover:after {
	color: #c7c7c7;
}

input[type='checkbox']:checked+label:after,input[type='checkbox']:checked+label:hover:after
	{
	color: #fff;
}