/* Reset CSS */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
	blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
	em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup,
	tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label,
	legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma,
		"Hiragino Sans GB", STHeiti, "Microsoft YaHei";
}

body {
	color: #000;
	font-size: 14px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
	color: #563D64;
}

small {
	font-size: 10px;
}

b, strong {
	font-weight: bold;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.left {
	float: left;
}

.right {
	float: right;
}

.alignleft {
	float: left;
	margin-right: 15px;
}

.alignright {
	float: right;
	margin-left: 15px;
}

.clearfix:after, form:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

ol, ul {
	list-style-type: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
	menu, nav, section {
	display: block;
}
/***************/
/* CSS Animations */
@
keyframes login { 0% {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity = 0);
	opacity: 0;
	margin-top: -170px;
}

100%
{
-ms-filter
:
 
"
progid
:DXImageTransform
.Microsoft
.Alpha
(Opacity=100)";

    
filter
:
 
alpha
(opacity=100);

    
opacity
:
 
1;
margin-top
:
 
-200
px
;

  
}
}
@
-moz-keyframes login { 0% {
	filter: alpha(opacity = 0);
	opacity: 0;
	margin-top: -170px;
}

100%
{
filter
:
 
alpha
(opacity=100);

    
opacity
:
 
1;
margin-top
:
 
-200
px
;

  
}
}
@
-webkit-keyframes login { 0% {
	filter: alpha(opacity = 0);
	opacity: 0;
	margin-top: -170px;
}

100%
{
filter
:
 
alpha
(opacity=100);

    
opacity
:
 
1;
margin-top
:
 
-200
px
;

  
}
}
@
-ms-keyframes login { 0% {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity = 0);
	opacity: 0;
	margin-top: -170px;
}

100%
{
-ms-filter
:
 
"
progid
:DXImageTransform
.Microsoft
.Alpha
(Opacity=100)";

    
filter
:
 
alpha
(opacity=100);

    
opacity
:
 
1;
margin-top
:
 
-200
px
;

  
}
}
@
-o-keyframes login { 0% {
	filter: alpha(opacity = 0);
	opacity: 0;
	margin-top: -170px;
}

100%
{
filter
:
 
alpha
(opacity=100);

    
opacity
:
 
1;
margin-top
:
 
-200
px
;

  
}
}
#bg {
	background: url("../../images/img_V1.0/bg1.jpg") no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 1080px;
}

#login {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -200px;
	margin-top: -200px;
	text-align: center;
	border: 1px solid #333;
	z-index: 10;
	width: 400px;
	height: 400px;
	overflow: hidden;
	background-color: #fff;
	border-radius: 20px;
	-webkit-animation: login 1s ease-in-out;
	-moz-animation: login 1s ease-in-out;
	-ms-animation: login 1s ease-in-out;
	-o-animation: login 1s ease-in-out;
	animation: login 1s ease-in-out;
}

#login_top {
	height: 182px;
	background: url("../../images/img_V1.0/bg-top_03.jpg");
	text-align: center;
}

#login span {
	position: absolute;
	bottom: -10px;
	right: 84px;
	font-size: 12px;
	color: #999;
}

#login>input {
	width: 30%;
	height: 35px;
	position: relative;
	margin: 20px 0 auto;
	font-size: 15px;
	color: #fff;
	outline: none;
	background-color: #FE7D27;
	font-weight: bold;
	font-family: "Microsoft YaHei";
	cursor: pointer;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	border-radius: 6px;
	background-image: -webkit-linear-gradient(top, #ff6400 0%, #fe7d27 100%);
	background-image: -moz-linear-gradient(top, #ff6400 0%, #fe7d27 100%);
	background-image: -o-linear-gradient(top, #ff6400 0%, #fe7d27 100%);
	background-image: -ms-linear-gradient(top, #ff6400 0%, #fe7d27 100%);
	background-image: linear-gradient(top, #ff6400 0%, #fe7d27 100%);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

#login>div {
	font-size: 16px;
	color: #333;
}

#login>div>input {
	width: 40%;
	height: 24px;
	position: relative;
	margin: 10px 0 auto;
	font-size: 14px;
	color: #444;
	outline: none;
	margin-left: 10px;
	padding-left: 10px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	border-radius: 6px;
	background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #f2f2f2 100%);
	background-image: -moz-linear-gradient(bottom, #ffffff 0%, #f2f2f2 100%);
	background-image: -o-linear-gradient(bottom, #ffffff 0%, #f2f2f2 100%);
	background-image: -ms-linear-gradient(bottom, #ffffff 0%, #f2f2f2 100%);
	background-image: linear-gradient(bottom, #ffffff 0%, #f2f2f2 100%);
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

#login>div>img {
	position: relative;
	top: 8px;
	left: -8px;
}