@media screen and (max-height: 739px) {
	html, body {
		height: 100%;
	}
	body {
		position: relative;
		margin: 70px 0;
	}
}

.content-wrapper {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 600px;
	margin-top: -300px;
	background: #0e4aa2 url(../../images/admin_login_bg.jpg) no-repeat
		center;
	text-align: center;
}

.main-wrapper {
	width: 980px;
	height: 740px;
	margin: -70px auto -70px;
	overflow: hidden;
}

.page-header {
	height: 70px;
	overflow: hidden;
}

.page-body {
	height: 600px;
	overflow: hidden;
}

.page-footer {
	height: 70px;
	line-height: 50px;
	color: rgba(74, 74, 74, 1);
	overflow: hidden;
}

.logo-wrapper {
	margin: 10px 0;
	float: left;
}

.logo-wrapper img {
	height: 50px;
}

.link-wrapper {
	float: right;
	line-height: 30px;
	padding-top: 37px;
}

.login-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 460px;
	height: 330px;
	margin: -165px 0 0 -230px;
	background-color: #fff;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.50);
}

#welcome-info {
	margin-top: 30px;
	font-size: 20px;
	color: #4A4A4A;
	text-align: center;
	line-height: 28px;
}

ul.field-list {
	margin: 20px 60px 20px;
	text-align: left;
}

ul.field-list li {
	margin: 15px 0;
}

.textfield {
	display: block;
	width: 100%;
	height: 50px;
	padding: 6px 12px 6px 54px;
	font-size: 16px;
	line-height: 38px;
	color: #333;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow
		ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out
		.15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.textfield:focus {
	border-color: #59BD30;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(102, 175, 233, .6);
}

.textfield::-moz-placeholder {
	color: #999;
	opacity: 1;
}

.textfield:-ms-input-placeholder {
	color: #999;
}

.textfield::-webkit-input-placeholder {
	color: #999;
}

.textfield.user-name {
	background-image: url(../../images/input_user.png);
	background-repeat: no-repeat;
	background-position: 12px center;
}

.textfield.password {
	background-image: url(../../images/input_pwd.png);
	background-repeat: no-repeat;
	background-position: 12px center;
}

#lblRememberMe {
	display: inline-block;
	max-width: 100%;
	min-height: 20px;
	margin-left: 10px;
	font-weight: 400;
	cursor: pointer;
}