/*  
URL: http://www.etterstudio.com/
Author: Christian Etter, Switzerland, 2010, www.etterstudio.com
*/
	
body {
	margin:0;
	padding:0; 
	font-family: Serif;
	background:#000000;
	color:#CCCCCC;
	background-image:url(bg.gif);
}

div {
	font-size:24px;
	color:#efe70d;
}

info {
	font-size:16px;
	font-family: sans-serif;
}

info a {
	color:#ccc;
	text-decoration: none;
}

.image_fade {
	display:none;
}

a {
	color:#efe70d;
}

.button_blue  {
    padding:8px 10px;
    margin:0px 4px 8px 0px;
	background:#222;
    border: 3px solid #efe70d;
    cursor: pointer; 
    cursor: hand;
	transition: 0.6s;
	font-size:20px;
	font-family: sans-serif;
	display: inline-block;
    color: #efe70d;
}

.button_blue:hover  {
	border-color:#fff;
    color: #fff;
}

.floater {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translatey(20px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(20px);
	}
}