html {
	font-family: Helvetica, Arial, sans-serif;
	background-color: #000000;
	font-size: 12px;
  }
/*--------------------------------------------------------------------------------------*/  
#Main {
	position: relative;
	width: 400px;
	height: 300px;
	}
#Mail {
	position: relative;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	}
#Content {
	position: relative;
	margin-top: 30px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 30px;
	}
#Info {
	position: relative;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	text-align:right;
	}
#Event {
	position: relative;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	}
/*--------------------------------------------------------------------------------------*/  		
a {
	color: #ffffff;
	outline: none;
	}

a:link {text-decoration: none;}

a:visited {text-decoration: none;}
		 
a:hover {
	color: #454545;
	text-decoration: none;
}
		
@keyframes rotate { 100% { transform:rotate(-360deg); } } */

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
 opacity:0;  /* make things invisible upon start */
 -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
 -moz-animation:fadeIn ease-in 1;
 animation:fadeIn ease-in 1;
 
 -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
 -moz-animation-fill-mode:forwards;
 animation-fill-mode:forwards;
 
 -webkit-animation-duration:1s;
 -moz-animation-duration:1s;
 animation-duration:1s;
}

.fade-in.Main {
-webkit-animation-delay: 0.6s;
-moz-animation-delay: 0.6s;
animation-delay: 0.6s;
}
