/* CSS reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img {
	border: 0;
}

address, caption, cite, code, dfn, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before, q:after {
	content: '';
}

abbr, acronym {
	border: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
/* General Style */
body {
	font-family: Cambria, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
	/*  background:  #fff no-repeat top left; */
	background-repeat: no-repeat;
	font-weight: 400;
	font-size: 15px;
	color: #1d3c41;
	/* overflow-y: scroll; */
}

a {
	color: #333;
	text-decoration: none;
}

header {
	width: 100%;
	background-color: rgb(84, 84, 84);
}

footer {
	background-color: rgb(84, 84, 84);
	width: 100%;
	bottom: 0;
	position: fixed;
}

.container {
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
	background: url(/Images/loginbackground.jpg);
	background-repeat: repeat-x;
}

.clr {
	clear: both;
}

/*.container > header{
	padding: 20px 30px 10px 30px;
	margin: 0px 20px 10px 20px;
	position: relative;
	display: block;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-align: center;
}
.container > header h1{
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 35px;
	line-height: 35px;
	position: relative;
	font-weight: 400;
	color: rgba(26,89,120,0.9);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    padding: 0px 0px 5px 0px;
}
.container > header h1 span{
	color: #7cbcd6;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.8);
}
.container > header h2{
	font-size: 16px;
	font-style: italic;
	color: #2d6277;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.8);
}*/



a.hiddenanchor {
	display: none;
}
/** The wrapper for forms **/
#wrapper {
	width: 60%;
	right: 0px;
	min-height: 560px;
	margin: auto;
	width: 500px;
	position: relative;
}
	/**** Styling the form elements **/

	/**** general text styling ****/
	#wrapper a {
		color: rgb(95, 155, 198);
		text-decoration: underline;
	}

#logo {
	padding: 5px 0 5px 0;
	padding-bottom: 10px;
}

/** For the moment only webkit supports the background-clip:text; */
#wrapper h1:after {
	content: ' ';
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 10px;
	background: white
}

#wrapper p {
	margin-bottom: 15px;
}

	#wrapper p:first-child {
		margin: 0px;
	}

#wrapper label {
	color: rgb(64, 92, 96);
	position: relative;
}

/**** advanced input styling ****/
/* placeholder */
::-webkit-input-placeholder {
	color: rgb(190, 188, 188);
	font-style: italic;
	font-size: 28px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: rgb(190, 188, 188);
	font-style: italic;
	font-size: 28px;
}

input {
	outline: none;
	font-size: 28px;
}

/* all the input except submit and checkbox */
#wrapper input:not([type="checkbox"]) {
	width: 62%;
	margin-top: 4px;
	padding: 10px 5px 10px 32px;
	border: 1px solid rgb(178, 178, 178);
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
	-moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
	box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

	#wrapper input:not([type="checkbox"]):active,
	#wrapper input:not([type="checkbox"]):focus {
		border: 1px solid rgba(91, 90, 90, 0.7);
		background: rgba(238, 236, 240, 0.2);
		-webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;
		-moz-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;
		box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.9) inset;
	}

/*styling both submit buttons */
#wrapper p.button input {
	width: 30%;
	cursor: pointer;
	background: rgb(21, 131, 191);
	padding: 8px 5px;
	font-family: Arial,sans-serif;
	color: #fff;
	font-size: 20px;
	border: 1px solid rgb(28, 108, 122);
	margin-bottom: 0px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

	#wrapper p.button input:hover {
		background: rgb(74, 179, 198);
	}

	#wrapper p.button input:active,
	#wrapper p.button input:focus {
		background: rgb(21, 131, 191);
		position: relative;
		top: 1px;
		border: 1px solid rgb(12, 76, 87);
		-webkit-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;
		-moz-box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;
		box-shadow: 0px 1px 6px 4px rgba(0, 0, 0, 0.2) inset;
	}

p.login.button {
	text-align: center;
	margin: 5px 0;
}


/* styling the checkbox "keep me logged in"*/
.keeplogin {
	margin-top: 5px;
	padding: 10px;
}

	.keeplogin input,
	.keeplogin label {
		display: inline-block;
		font-size: 20px;
	}

		.keeplogin input#loginkeeping {
			margin-right: 5px;
		}

	.keeplogin label {
		text-align: left
	}


/** Styling both forms margin: 0 0 35px 0; padding: 18px 6% 60px 6%; **/

#login {
	position: absolute;
	top: 0px;
	width: 100%;
	left: -5%;
	padding: 18px 5% 10px 5%;
	/* margin: 0 0 35px 0; */

	background: white;
	border-top: 20px solid #1583bf;
	-webkit-box-shadow: 0pt 2px 5px rgba(105, 108, 109, 0.7), 0px 0px 8px 5px rgba(208, 223, 226, 0.4) inset;
	-moz-box-shadow: 0pt 2px 5px rgba(105, 108, 109, 0.7), 0px 0px 8px 5px rgba(208, 223, 226, 0.4) inset;
	box-shadow: 0pt 2px 5px rgba(105, 108, 109, 0.7), 0px 0px 8px 5px rgba(208, 223, 226, 0.4) inset;
	-webkit-box-shadow: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#login {
	z-index: 10;
}

#tologin:target ~ #wrapper #login {
	z-index: 22;
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-ms-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
	-webkit-animation-delay: .1s;
	-moz-animation-delay: .1s;
	-o-animation-delay: .1s;
	-ms-animation-delay: .1s;
	animation-delay: .1s;
}

#tologin:target ~ #wrapper #register {
	-webkit-animation-name: fadeOutLeft;
	-moz-animation-name: fadeOutLeft;
	-ms-animation-name: fadeOutLeft;
	-o-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

.homepage-info__container {
	display: block;
}

.homepage-info__row {
	width: 750px;
	margin: auto;
}

.homepage-info__link {
	width: 46%;
	float: left;
	padding: 10px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

	.homepage-info__link > img {
		width: 100%;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

.homepage-info__box {
	width: 27%;
	border: 1px solid rgb(73, 72, 72);
	float: left;
	padding: 10px;
	margin: 10px;
	border-radius: 5px;
	background-color: rgba(73, 72, 72, 0.8);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

	.homepage-info__box > img {
		height: 100px;
		width: 200px;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	.homepage-info__box > a {
		width: 100px;
		font-family: 'Karla', sans-serif;
		color: #FFF;
		text-transform: uppercase;
		background: #5AA4F5;
		border: 0;
		outline: 0;
		cursor: pointer;
		height: 32px;
		font-size: 18px;
		line-height: 1.72em;
		text-align: center;
		margin-top: 10px;
		display: inline-block;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		box-shadow: 1px 1px 1px rgb(73, 72, 67);
		-moz-box-shadow: 1px 1px 1px rgb(73, 72, 67);
		-webkit-box-shadow: 1px 1px 1px rgb(73, 72, 67);
	}

		.homepage-info__box > a:hover {
			color: #FFF;
			background: rgb(47, 131, 223);
			border-radius: 5px;
			-moz-border-radius: 5px;
			-webkit-border-radius: 5px;
		}

.homepage-infobox__text1 {
	display: block;
	color: darkgrey;
	text-align: left;
	font-size: 14px;
	font-family: sans-serif;
}

.homepage-infobox__text2 {
	display: block;
	color: whitesmoke;
	text-align: left;
	margin-top: 10px;
	font-size: 12px;
	font-family: sans-serif;
}

/** the actual animation, credit where due : http://daneden.me/animate/ ***/
.animate {
	-webkit-animation-duration: 0.5s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: 0.5s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-o-animation-duration: 0.5s;
	-o-animation-timing-function: ease;
	-o-animation-fill-mode: both;
	-ms-animation-duration: 0.5s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	animation-fill-mode: both;
}

/** yerk some ugly IE fixes 'cause I know someone will ask "why does it look ugly in IE?", no matter how many warnings I will put in the article */

.lt8 #wrapper input {
	padding: 10px 5px 10px 32px;
	width: 92%;
}

	.lt8 #wrapper input[type=checkbox] {
		width: 10px;
		padding: 0;
	}

.lt8 #wrapper h1 {
	color: #1583bf;
}

.lt8 #register {
	display: none;
}

.lt8 p.change_link,
.ie9 p.change_link {
	position: absolute;
	height: 90px;
	background: transparent;
}

/* do not group these rules */
*::-webkit-input-placeholder {
	opacity: 0.8;
	color: black;
}

*:-moz-placeholder {
	/* FF 4-18 */
	color: black;
	opacity: 0.8;
}

*::-moz-placeholder {
	/* FF 19+ */
	color: black;
	opacity: 0.8;
}

*:-ms-input-placeholder {
	/* IE 10+ */
	color: black;
	opacity: 0.8;
}
