
body{

	color: #3E436A;
}


/* static-bg */

	@-moz-keyframes static-bg {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-webkit-keyframes static-bg {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@-ms-keyframes static-bg {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	@keyframes static-bg {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

#static-bg{


	-moz-animation: static-bg 3s forwards;
	-webkit-animation: static-bg 3s forwards;
	-ms-animation: static-bg 3s forwards;
	animation: static-bg 3s forwards;

	position: fixed;
	top: 0;
	left: 0;
	background-image: url("images/bg.jpg");
	background-position: 0% 0%;
	background-size: auto 130%;
	width: 100%;
	height: 100%;
}


#bg {

	-moz-animation: bg 90s linear infinite;
	-webkit-animation: bg 90s linear infinite;
	-ms-animation: bg 90s linear infinite;
	animation: bg 90s linear infinite;

	background: transparent  url("images/bg.png") 0% 0%;
	background-size: auto 130%;

}

.copyright{

	color: #ddd;
}
