/************
RESET
************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul, dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object, a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span, strong, sub, sup, tt, var, legend, fieldset, footer, nav, main {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/*******************************
GENERAL 1em = 12pt = 16px = 100%
********************************/
html {
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	position: relative;
	height: 100%;
	width: 100%;
	font-size: 16px
	/*cursor: url(../images/arrow_left.png), auto;*/
}

body {
	font-family: 'Oxygen', Tahoma, Arial, Helvetica, "Microsoft YaHei New", "Microsoft Yahei", Heiti SC, sans-serif;
	font-size: 100%;
	color: #555;
	word-wrap: break-word;
	font-weight: 400;
	width: 100%;
	height: 100%;
	line-height: 1.5;
	/*background-color: #d9e6e8;*/
	/*background-color: #d7e2ed;*/
	/*background-color: #fff;*/
	/*background-color: lightgrey;*/
	/*background-color: darkslategray;*/
	/*background-color: #303444;*/
	/*background-color: darkred;*/

	/*google font fix on chrome*/
	-webkit-animation-duration: 0.1s;
	-webkit-animation-name: fontfix;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0.1s;
}

* {
	-webkit-backface-visibility: hidden;
}

/*520*/
@media (min-width: 520px) {
	body {
		font-size: 100%;
	}
}

@-webkit-keyframes fontfix {
	from { opacity: 1; }
	to { opacity: 1; }
}

@-ms-viewport {
	width: device-width;
	zoom: 1;
}

@-o-viewport {
	width: device-width;
	zoom: 1;
}

@viewport {
	width: device-width;
	zoom: 1;
}

a {
	text-decoration: none;
	color: orangered;
}

a:hover {
	color: red;
}

.ico {
	font-size: 1.2em;
	vertical-align: text-bottom;
}

img {
	width: auto;
	max-width: 100%;
	vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	padding: 3px 0;
}

h1 { font-size: 1.6em; }
h2 { font-size: 1.4em; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.1em; }
h5 { font-size: 1em; }
h6 { font-size: 0.9em; }

p {
	font-size: 1em;
	padding: 0 0 15px 0;
}

small, big {
	font-weight: 400;
}

small {
	font-size: 0.8em;
}

big {
	font-size: 1.4em;
}

b, strong {
	font-weight: 700;
}

/*ul, ol {
	margin-left: 1.4em;
}

li {
	margin-bottom: 0.2em;
}

dl {
	display: block;
}

dt {
	font-size: 1.3em;
	font-weight: 700;
}*/


pre {
	font-size: 70%;
}



/********
FORM
********/
input,
textarea,
select {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: transparent;
	border-radius: 0;
}

input[type='text'],
input[type='password'],
input[type='submit'],
textarea,
button {
	padding: 0.5em;
	font-family: 'Oxygen', Tahoma, Arial, Helvetica, "Microsoft YaHei New", "Microsoft Yahei", Heiti SC, sans-serif;
	font-size: 100%;
	width: 100%;
	border: 1px solid #ccc;
	color: #444;
	background-color: #fff;
}

input[type='checkbox'] {
	width: 2em;
	height: 2em;
	border: 1px solid #ccc;
	margin: 0 0.5em -0.3em 0;
	background-color: #fff;
}
input[type='checkbox']:checked::before {
	content: '\2713';
	position: absolute;
	top: 0;
	left: 2px;
	color: steelblue;
}

::-webkit-input-placeholder {
	color: #dccdc7;
}
:-moz-placeholder {
	color: #dccdc7;
}
::-moz-placeholder {
	color: #dccdc7;
}
:-ms-input-placeholder {
   color: #dccdc7;
}

input:focus,
textarea:focus,
select:focus {
	/*box-shadow: 0 0 1px rgba(67, 107, 152, 1);*/
	outline: 1px solid #aaa;
}

label {
	display: block;
	padding: 0.2em 0;
	margin: 0;
	position: relative;
	font-weight: bold;

	/*background-color: #888;*/
}
.invalid:after,
.required:after {
	position: absolute;
	right: 1em;
	font-size: 0.8rem;
	font-style: italic;
	/*padding-left: 3em;*/
	color: orangered;
}
.invalid:after {
	content: 'invalid!';
}
.required:after {
	content: '*required';
}

input[type='submit'],
button {
	padding: 0.65em 2em;
	cursor: pointer;
	border: 0;
	color: #fff;
	/*background-color: slategray;*/
	background-color: #555;
	border-radius: 4px;
}
input[type='submit']:hover,
button:hover {
	background: #666;
}
input[type='submit']:active,
button:hover {
	background: #444;
}

button:disabled {
	background: #aaa;
}

select {
	padding: 0.2em 0.7em;
	font-family: 'Oxygen', Tahoma, Arial, Helvetica, "Microsoft YaHei New", "Microsoft Yahei", Heiti SC, sans-serif;
	font-size: 85%;
	border: 1px solid #ccc;
	color: #555;
	border-radius: 0;
}

textarea {
	height: 8em;
	resize: none;
}

/*520*/
@media (min-width: 520px) {
	input[type='text'],
	input[type='password'],
	input[type='submit'],
	textarea,
	button,
	select {
		font-size: 100%;
	}
}



.win-status {
	position: fixed;
	top: 3em;
	left: 10px;
	z-index: 999999;
	background: #fff;
	font-size: 0.9em;
	opacity: .6;
}
