	@charset "UTF-8";
	#spacer {
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #AFEEEE;
		background-size: 100% 100%;
		left: 0;
		top: 0;
	}
	#loginform {
		display: block;
		position: absolute;
		width: 490px;
		height: 100px;
		left: 50%;
		margin-left: -245px;
		top: 50%;
		margin-top: -45px;
		font-family: arial;
	}
	#loginform table tr td {
		color: white;
	}
	#loginform table tr td a {
		text-decoration: none;
		color: rgba(66,58,58,0.5);
	}
	#loginform table tr td a:hover {
		color: rgba(66,58,58, 1);
	}
	#loginform input[type=text], #login input[type=password] {
		width: 200px;
		height: 35px;
		border: solid 1px #999999;
		border-radius: 5px;
		background-color: rgba(255,255,255,1);
	}
	#loginform input[type=text]:hover, #login input[type=password]:hover {
		border: solid 1px black;
	}
	button {
		display: block;
		width: 75px;
		height: 35px;
		background-color: rgba(175, 238, 238,0.7);
		border: solid 1px rgba(0, 0, 0,0.7);
	}
	button:hover {
		background-color: rgba(175, 238, 238,1);
		border: solid 1px rgba(0, 0, 0,1);
	}
	#login {
		background-color: rgba(175, 238, 238,0.7);
		display: block;
		border: solid 1px rgba(255,255,255,0.7);
		position: absolute;
		width: 750px;
		height: 100px;
		left: 50%;
		margin-left: -375px;
		top: 50%;
		margin-top: -15px;
		border-radius: 10px;
	}
	#loginheader {
		display: block;
		position: absolute;
		width: 750px;
		height: 70px;
		left: 50%;
		margin-left: -375px;
		top: 50%;
		margin-top: -90px;
		text-align: center;
		color: white;
		font-size: 50px;
		padding-top: 5px;
		font-family: arial;
	}
	#line {
		position: absolute;
		display: block;
		height: 3px;
		width: 260px;
		background-color: white;
		margin: 10px;
		top: 50%;
		margin-top: -2px;
	}
	#line.right {
		right: 50%;
		margin-right: -365px;
	}
	#inloggenwarning {
		left: 50%;
		margin-left: -250px;
		top: 50%;
		margin-top: 90px;
		width: 500px;
		position: absolute;
		background-color: rgba(255,0,0,0.7);
		font-size: 18px;
		-webkit-animation: bounce 0.3s;
		-moz-animation: bounce 0.3s;
		-ms-animation: bounce 0.3s;
		-o-animation: bounce 0.3s; 
		color: white;
		height: 60px;
		line-height: 58px;
		text-align: center;
		padding: 10px 0 10px 0;
		border-radius: 5px;
	}
	@keyframes bounce {
		0%, 25%, 75%       { margin-top: 96px; }
		50%, 100%      { margin-top: 90px; }
	}