.login-bg {
	/*background: url("../../img/bgs/landscape.jpg") no-repeat center center fixed;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/bgs/landscape.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/bgs/landscape.jpg', sizingMethod='scale')";
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;*/
	background: #FFF;
}

.login-wrapper {
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	text-align: center;
}

.login-wrapper .logo {
	margin-bottom: 45px;
	position: relative;
	left: -2px;
}

.login-wrapper .box {
	margin: 0 auto;
	padding: 35px 0 30px;
	float: none;
	width: 400px;
	box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.65);
}

.login-wrapper .box .content-wrap {
	width: 82%;
	margin: 0 auto;
}

.login-wrapper .box h6 {
	text-transform: uppercase;
	margin: 0 0 30px 0;
	font-size: 18px;
	font-weight: 600;
}

.login-wrapper .box input[type="text"], .login-wrapper .box input[type="password"]
	{
	font-size: 15px;
	height: 40px;
	margin-bottom: 18px;
	border-color: #b2bfc7;
	padding-left: 12px;
}

.login-wrapper .box input[type="password"] {
	margin-bottom: 10px;
}

.login-wrapper .box input:-moz-placeholder {
	color: #9ba8b6;
	font-size: 15px;
	letter-spacing: 0px;
	font-style: italic;
}

.login-wrapper .box input:-ms-input-placeholder {
	color: #9ba8b6;
	font-style: italic;
	letter-spacing: 0px;
	font-size: 15px;
}

.login-wrapper .box input::-webkit-input-placeholder {
	color: #9ba8b6;
	font-style: italic;
	letter-spacing: 0px;
	font-size: 15px;
}

.login-wrapper .box a.forgot {
	display: block;
	text-align: right;
	font-style: italic;
	text-decoration: underline;
	color: #3d88ba;
	font-size: 13px;
	margin-bottom: 6px;
}

.login-wrapper .box .remember {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
}

.login-wrapper .box .remember input[type="checkbox"] {
	float: left;
	margin-right: 8px;
}

.login-wrapper .box .remember label {
	float: left;
	color: #4a576a;
	font-size: 13px;
	font-weight: 600;
}

.login-wrapper .box .login {
	text-transform: uppercase;
	font-size: 13px;
	padding: 8px 30px;
}

.login-wrapper .no-account {
	margin: 0 auto;
	float: none;
	text-align: center;
	font-size: 14px;
	margin-top: 25px;
}

.login-wrapper .no-account p {
	display: inline-block;
	color: #aaaaaa;
}

.login-wrapper .no-account a {
	color: #aaaaaa;
	margin-left: 7px;
	border-bottom: 1px solid;
	transition: all .1s linear;
	-moz-transition: all .1s linear;
	/* Firefox 4 */
	-webkit-transition: all .1s linear;
	/* Safari and Chrome */
	-o-transition: all .1s linear;
	/* Opera */
}

.login-wrapper .no-account a:hover {
	text-decoration: none;
	color: #fff;
	border-bottom-color: #fff;
}

/* background switcher */
.bg-switch {
	position: absolute;
	background: rgba(255, 255, 255, 0.8);
	top: 60px;
	border-radius: 0px 10px 10px 0px;
	padding: 10px 10px 0px 10px;
	z-index: 999;
}

.bg-switch .bgs .bg {
	text-align: center;
	margin-bottom: 13px;
	text-decoration: none;
	display: block;
}

.bg-switch .bgs .bg.active img {
	border-color: #000;
}

.bg-switch .bgs .bg img {
	width: 80px;
	height: 60px;
	border: 2px solid #9fcef1;
	cursor: pointer;
}

/* responsive */
@media ( max-width : 767px) {
	.login-wrapper .box {
		width: 350px;
	}
}

@media ( max-width : 480px) {
	.login-wrapper .box {
		width: 90%;
	}
}

.sweet-overlay {
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	z-index: 1000;
}

.sweet-alert {
	background-color: #ffffff;
	width: 478px;
	padding: 17px;
	border-radius: 5px;
	text-align: center;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -256px;
	margin-top: -200px;
	overflow: hidden;
	display: none;
	z-index: 20000;
}

@media all and (max-width: 767px) {
	.sweet-alert {
		width: auto;
		margin-left: 0;
		margin-right: 0;
		left: 15px;
		right: 15px;
	}
}

.sweet-alert .icon {
	width: 80px;
	height: 80px;
	border: 4px solid gray;
	border-radius: 50%;
	margin: 20px auto;
	position: relative;
	box-sizing: content-box;
}

.sweet-alert .icon.error {
	border-color: #d43f3a;
}

.sweet-alert .icon.error .x-mark {
	position: relative;
	display: block;
}

.sweet-alert .icon.error .line {
	position: absolute;
	height: 5px;
	width: 47px;
	background-color: #d9534f;
	display: block;
	top: 37px;
	border-radius: 2px;
}

.sweet-alert .icon.error .line.left {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 17px;
}

.sweet-alert .icon.error .line.right {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 16px;
}

.sweet-alert .icon.warning {
	border-color: #eea236;
}

.sweet-alert .icon.warning .body {
	position: absolute;
	width: 5px;
	height: 47px;
	left: 50%;
	top: 10px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #f0ad4e;
}

.sweet-alert .icon.warning .dot {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3px;
	left: 50%;
	bottom: 10px;
	background-color: #f0ad4e;
}

.sweet-alert .icon.info {
	border-color: #46b8da;
}

.sweet-alert .icon.info::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 29px;
	left: 50%;
	bottom: 17px;
	border-radius: 2px;
	margin-left: -2px;
	background-color: #5bc0de;
}

.sweet-alert .icon.info::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-left: -3px;
	top: 19px;
	background-color: #5bc0de;
}

.sweet-alert .icon.success {
	border-color: #4cae4c;
}

.sweet-alert .icon.success::before, .sweet-alert .icon.success::after {
	content: '';
	border-radius: 50%;
	position: absolute;
	width: 60px;
	height: 120px;
	background: white;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .icon.success::before {
	border-radius: 120px 0 0 120px;
	top: -7px;
	left: -33px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 60px 60px;
	transform-origin: 60px 60px;
}

.sweet-alert .icon.success::after {
	border-radius: 0 120px 120px 0;
	top: -11px;
	left: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 0px 60px;
	transform-origin: 0px 60px;
}

.sweet-alert .icon.success .placeholder {
	width: 80px;
	height: 80px;
	border: 4px solid rgba(92, 184, 92, 0.2);
	border-radius: 50%;
	box-sizing: content-box;
	position: absolute;
	left: -4px;
	top: -4px;
	z-index: 2;
}

.sweet-alert .icon.success .fix {
	width: 5px;
	height: 90px;
	background-color: #ffffff;
	position: absolute;
	left: 28px;
	top: 8px;
	z-index: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .icon.success .line {
	height: 5px;
	background-color: #5cb85c;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 2;
}

.sweet-alert .icon.success .line.tip {
	width: 25px;
	left: 14px;
	top: 46px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sweet-alert .icon.success .line.long {
	width: 47px;
	right: 8px;
	top: 38px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.sweet-alert .icon.custom {
	background-size: contain;
	border-radius: 0;
	border: none;
	background-position: center center;
	background-repeat: no-repeat;
}

.sweet-alert .btn-default:focus {
	border-color: #cccccc;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(204, 204, 204, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(204, 204, 204, 0.6);
}

.sweet-alert .btn-success:focus {
	border-color: #4cae4c;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(76, 174, 76, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(76, 174, 76, 0.6);
}

.sweet-alert .btn-info:focus {
	border-color: #46b8da;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(70, 184, 218, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(70, 184, 218, 0.6);
}

.sweet-alert .btn-danger:focus {
	border-color: #d43f3a;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(212, 63, 58, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(212, 63, 58, 0.6);
}

.sweet-alert .btn-warning:focus {
	border-color: #eea236;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(238, 162, 54, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(238, 162, 54, 0.6);
}

.sweet-alert button::-moz-focus-inner {
	border: 0;
}

.htabs {
	padding: 0px 0px 0px 0px;
	height: 30px;
	line-height: 16px;
	border-bottom: 1px solid #DDDDDD;
	margin-bottom: 15px;
}

.htabs a {
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	background: #FFFFFF url('../image/tab.png') repeat-x;
	padding: 7px 15px 6px 15px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #000000;
	margin-right: 2px;
	display: none;
}

.htabs a.selected {
	padding-bottom: 7px;
	background: #FFFFFF;
}

.vtabs {
	width: 190px;
	padding: 10px 0px;
	min-height: 300px;
	float: left;
	display: block;
	border-right: 1px solid #DDDDDD;
}

.vtabs a {
	display: none;
}

.vtabs a, .vtabs span {
	display: block;
	float: left;
	width: 160px;
	margin-bottom: 5px;
	clear: both;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	border-bottom: 1px solid #DDDDDD;
	background: #F7F7F7;
	padding: 6px 14px 7px 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: right;
	text-decoration: none;
	color: #000000;
}

.vtabs a.selected {
	padding-right: 15px;
	background: #FFFFFF;
}

.vtabs a img, .vtabs span img {
	position: relative;
	top: 3px;
	cursor: pointer;
}

.vtabs-content {
	margin-left: 205px;
}