body{
	font-family: 'Flamenco', cursive;
	font-weight: lighter;
	margin: 0px;
	background-color: black;

}

.coverDiv{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 99;
}

.coverImage{
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	z-index: 1;

	

}


.blur{
	position: fixed;
	z-index: 9999;
	top: 0px;
	left: 0px;
	/*background-color: red;*/
	height: 100px;
	width: 100px;
}

.clock{
	opacity: 0;
	color: white;
	font-size: 40px;
	z-index: 999;
	position: fixed;
	bottom: 0px;
	left: 0px;
	margin-bottom: 20px;
	margin-left: 20px;
}

.message{
	opacity: 0;
	color: white;
	font-size: 40px;
	z-index: 999;
	position: fixed;
	top: 50px;
	left: 40px;
}

.cornerClick{
	opacity: 0;
	color: white;
	font-size: 40px;
	z-index: 100000;
	position: fixed;
	bottom: 40px;
	right: 40px;
	text-align: right;
	margin-right: 10px;
	cursor: pointer;

}
.cornerArrow{
	width: 20px;
	height: 20px;
}

.imgLock{
	width: 30px;
	height: 30px;
	position: relative;
	top: 5px;
}

.links{
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 999;
	margin-top: 10px;
	margin-right: 10px;
}

.imgLink{
	/*opacity: 0px;*/
	border: none;
	width: 30px;
	height: 30px;
}

.linkMessage{
	opacity: 0;
	color: white;
	position: fixed;
	font-size: 50px;
	top: 40%;
	width: 99%;
	text-align: center;
	z-index: 999;
	background-color: transparent !important;
}

.linkMessage img{
	position: relative;
	top: 10px;
}

.LoginWindow{
	opacity: 0;
	position: fixed;
	right: 40px;
	bottom: 50px;
	z-index: 990;
}



.divForgot{
	z-index: 999;
	position: fixed;
	top: 40%;
	width: 100%;
	text-align: center;
}

.divContainer{
	padding: 10px;
	display: block;
	background-color: rgba(0,0,0,0.3);
	-webkit-border-radius: 5px;
    border-radius: 5px;
}

.no-opacity .divContainer{
	background: url(../img/iebg.png);
}

.divForgot span{
	color: white;
	font-family: 'Flamenco', cursive;
	font-size: 25px;
	display: block;
}

.divContainer input{
	margin-top: 10px;
	display: block;
	padding: 5px;
	width: 300px;

}

.SendEmail{
	margin-top: 5px;
	cursor: pointer;
	text-decoration: underline;
}


#message{
	display: none;
}
#date{
	display: none;
}

#clock{
	display: none;
}

#cornerText{
	display: none;
}

#links{
	display: none;
}



@media screen and (max-width: 450px) and (max-width: 767px) {

	.clock{
		font-size: 22px;
	}

	.message{
		font-size: 26px;
		left: 10px;
	}

	.cornerClick{
		width: 100px;
		font-size: 24px;
		right: 10px;
	}

	.imgLock{
		width: 25px;
		height: 25px;
	}

	.LoginWindow{
		right: 50px;
	}

	.divForgot{
		top: 30%;
	}

	.divContainer input{
		width: 200px;
	}

}

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
    /* CSS here */
    body{
    	height: 800px;
    }

    .clock{
		font-size: 22px;
	}

	.message{
		font-size: 26px;
		left: 10px;
	}

	.cornerClick{
		width: 100px;
		font-size: 24px;
		right: 10px;
	}

	.imgLock{
		width: 25px;
		height: 25px;
	}

	.LoginWindow{
		right: 50px;
	}

	.divForgot{
		top: 30%;
	}

	.divContainer input{
		width: 200px;
	}
}


/* Animate */

.animated {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.animated.fast {
	-webkit-animation-duration: 0.4s;
		-moz-animation-duration: 0.4s;
		-ms-animation-duration: 0.4s;
		-o-animation-duration: 0.4s;
		animation-duration: 0.4s;
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

@-o-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

@keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@-o-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	-moz-animation-name: fadeOut;
	-o-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-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);}
}

.shake {
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}

@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}
