@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

*, *:before, *:after {
	outline: 			none;

	box-sizing: 		border-box;
	-moz-box-sizing: 	border-box;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: 	none;
	-ms-user-select: 	none;
	user-select: 		none;
}
html {
	font-size: 62.5%;
	height: 100%;
}
body {
	position:	relative;
	
	height: 100%;
	min-height: 52rem;
	
	margin:				0;
	padding:			0;

	font-size:			1.8rem;
	font-family: 		'Open Sans', Arial, sans-serif;

	background: #f5f5f5 url("./gfx/Background.jpg") fixed no-repeat center top;
}
/* stretch the body background image if window size is larger than image itself */
@media all and (min-width: 1921px), (min-height: 1081px) {
  body {
    background-size: cover;
  }
}

a {
	color: #474745;
	text-decoration: none;
	
	-moz-transition: color .5s;
	-webkit-transition: color .5s;
	-o-transition: color .5s;
	transition: color .5s;
	font-size: 1.6rem;
}

a:hover, a:focus {
	color: #252525;
}

em {
	font-weight: bold;
	font-style: italic;
}

input {
	font-family: inherit;
}

.LoginBox {
	width: 				400px;
	height: 			460px;
	
	margin-bottom:	45px;
	
	position: 			absolute;
	
	top: 				calc( 50% - (460px / 2) - (45px / 2) );
	left: 			calc( 50% - (400px / 2) );
	
	background-color: 	rgba(255, 255, 255, 0.52);

	padding: 			2rem 0 4.8rem;
	padding-top: 0;
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	animation-fill-mode:both;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
	
	border: 5px solid #a3a19d;
}

.LoginLogo {
	width: 				298px;
	height: 			175px;

	background-image: 	url("./gfx/LoginLogo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;

	margin: 			0 auto;
}

.LoginForm,
.LoginBrowserContent,
.LoginLostPasswordForm,
.LoginResetPasswordForm {
	padding: 			0 4.8rem;
}
.LoginRow {
	margin-top: 		1.2rem;
}

.LoginRow:first-child {
	margin-top: 0;
}

.LoginInput {
	display: 			inline-block;

	width: 				100%;
	height: 			40px;

	border-radius: 		0;
	border:				2px #969694 solid;

	background-color: #ffffff;
	padding-left: 		10px;
	padding-right: 		38px;

	-webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.7);
	box-shadow: 		0px 1px 0px 0px rgba(255, 255, 255, 0.7);

	font-size:			18px;
	font-weight: 		300;

	color: 				black;

	transition:			0.25s;
}
.LoginInput:focus {
	box-shadow: 0 0 7px 0px rgba(150,150,148,.8);
	border:				2px #575755 solid;
}

.LoginInput::-webkit-input-placeholder {
	color: #afafad;
	font-weight: bold;
	opacity: .5;
}

.LoginInput::-moz-placeholder {	 /* Firefox 19+ */
	color: #afafad;
	font-weight: bold;
	opacity: .5;
}


.InputStatus {
	display: none;
	
	width: 2rem;
	height: 2rem;
	margin: 1rem 0 0 -2rem;
	
	position: relative;
	right: 1rem;
	
	z-index: 5;
}
.InputStatus:before {
	content: "";
	
	display: block;
	
	font-family: wombatjuice;
	font-size: 2rem;
	line-height: 2rem;
	text-align: center;
}
.LoginInputError+.InputStatus {
	display: inline-block;
}

.LoginInputError+.InputStatus:before {
	content: "\e804";
	
	color: #e01414;
}

.LoginGo {
	display: 			block;

	width: 				100%;
	height: 			40px;
	line-height: 		36px;

	border-radius: 		5px;
	border:				1px #bc191d solid;
	background-color: #bc191d;
	text-align: 		center;

	font-size:			2rem;
	font-weight: 		700;

	color: 				white;

	/*text-shadow: 		0px 1px 2px rgba(0,0,0,.6);*/

	cursor: 			pointer;

	transition:			0.25s;
}

.LoginGo:hover, .LoginGo:focus {
	border:				1px #dc0a20 solid;
	background-color: #b9081b;
}
.LoginGo:focus {
	box-shadow: 0 0 7px 0px #dc0a20;
}

.LoginGo:active {
	line-height: 		40px;

	border:				1px #104e6b solid;
	background-color: #dc0a20;

	-moz-box-shadow:			inset 0px 2px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.5);
	box-shadow:					inset 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.LoginCheckbox {
	margin: 0;
	padding: 0;
	
	-webkit-appearance: none;
	appearance: none;
}
.LoginCheckbox+label {
	display: inline-block;
	padding-left: 2.2rem;
	position: relative;
	
	margin-left: 1.4rem;
	
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.6rem;
	color: #474745;
	font-weight: bold;
	cursor: pointer;
	
}
.LoginCheckbox+label:nth-child(2){
	margin-left: 0;
}
.LoginCheckbox+label:before {
	content: "";
	
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	
	border: 0.1rem solid #3d404b;
	border-radius: 100%;
	
/*	background: -moz-linear-gradient(top,	rgba(63,63,63,0.65) 0%, rgba(107,109,115,0) 100%);  FF3.6+ 
	background: -webkit-linear-gradient(top,	 rgba(63,63,63,0.65) 0%,rgba(107,109,115,0) 100%);  Chrome10+,Safari5.1+ 
	background: linear-gradient(to bottom,	 rgba(63,63,63,0.65) 0%,rgba(107,109,115,0) 100%);  W3C */
	
	transition: 0.25s;
}
.LoginCheckbox:focus+label:before {
	/*box-shadow: 0 0 7px 0px rgba(34,129,214,.8);*/
}

.LoginCheckbox+label:after {
	content: "";
	
	display: block;
	width: 1rem;
	height: 1rem;
	
	position: absolute;
	left: 0.3rem;
	top: 0.3rem;
	z-index: 11;
	
	border: 0.1rem solid #3d404b;
	border-radius: 100%;
	
	opacity: 0;
	
	-moz-transition: opacity .5s;
	-webkit-transition: opacity .5s;
	-o-transition: opacity .5s;
	transition: opacity .5s;
	
	background-color: #dd0a20;
}

.LoginCheckbox:checked+label:after {
	opacity: 1;
}

.Shake {
	-webkit-animation-name: shake;
	-moz-animation-name: 	shake;
	-o-animation-name: 		shake;
	animation-name: 		shake;
}

.LoginBox .Success {
	display: none;
	padding: 0 48px;
}

.LoginBrowserContent {
	text-align: center;
}

.LoginBoxFooter {
	width: 100%;
	height: 45px;
	
	position: absolute;
	
	top: 100%;
	left: 0;
	
	display: block;
	
	text-align: center;
	color: #FFF;
	line-height: 45px;
	font-weight: 300;
}
