/* Eric Meyer's CSS Reset */
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
@font-face {
	font-family: "NeoSansProRegular";
	src: url("fonts/NeoSansProRegular.eot");
	src: url("fonts/NeoSansProRegular.eot?#iefix")format("embedded-opentype"),
	url("fonts/NeoSansProRegular.woff") format("woff"),
	url("fonts/NeoSansProRegular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

html {
	height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	font: 12px/18px "NeoSansProRegular", sans-serif;
	width: 100%;
	height: 100%;
}
.wrapper {
	width: 1024px;
	margin: 0 auto;
}

.w-100{
	min-height: 100%;
	height: auto !important;
	height: 100%;
	background: url(imgs/bg.png) center bottom no-repeat;
	position: relative;
}

.btn{
	color: #fff;
	text-decoration: none;
	display: block;
	background: #5e88c6;
	font-size: 14px;
	line-height: 28px;
	height: 28px;
	-webkit-transition-property: color, background;
	-moz-transition-property: color, background;
	-o-transition-property: color, background;
	transition-property: color, background;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	cursor: pointer;
}
.btn:hover{
	background: #29518B;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
	height: 67px;
	padding-top: 28px;
}

.header .login{
	float: right;
}
.header .login a{

	padding: 0 10px;

}


/* Middle
-----------------------------------------------------------------------------*/
.content {
	padding: 0 0 120px;
}

#logo{
	position: absolute;
    background: url(imgs/logo.png) no-repeat;
    width: 273px;
    height: 100px;
    margin-left: -136px;
    left: 50%;
    margin-top: -100px;
    top: 50%;
    text-align: center;
    padding-top: 100px;
    font-size: 22px;
}


/* Footer
-----------------------------------------------------------------------------*/
.footer {
	width: 1024px;
	margin: -120px auto 0;
	height: 88px;
	position: relative;
	padding-top: 32px;
	color: #4d5152;
	font-size: 14px;
	line-height: 18px;
}

.footer #address{
	float: right;
	text-align: right;
}

#overlay{
	background: url(imgs/overlay-bg.png) transparent;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#overlay #modal{
	width: 298px;
	height: 202px;
	border: 1px solid #ccc;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -150px;
	margin-top: -102px;
	background-color: #fff;
	opacity: 1;
}
#overlay #modal #close{
	background: url(imgs/close.png);
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
#overlay #modal form{
	width: 213px;
	margin: 22px auto 0;
}
#overlay #modal form .form-bottom{}
#overlay #modal form .form-item input{
	display: inline-block;
	width: 133px;
	border: 1px solid #ccc;
	height: 22px;
	padding: 0 5px;
}
#overlay #modal form .form-item label{
	width: 65px;
	display: inline-block;
	font-size: 15px;
}
#overlay #modal form #title{
	color: #5e88c6;
	font-size: 16px;
	white-space: nowrap;
	margin-bottom: 30px;
}
#overlay #modal form .form-item{
	line-height: 24px;
	margin-bottom: 13px;
}

#overlay #modal form .form-bottom .mess{
	color: red;
	display: inline-block;
	width: 88px;
	text-align: right;
	margin-left: 34px;
	float: left;
}
#overlay #modal form .form-bottom .btn{
	float: right;
	margin: 4px 0px 0 0;
	padding: 0 11px;
}

#overlay #modal form .form-bottom .btn[disabled=disabled]{
	background-color: #ddd;
	cursor: default;
}