/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	 margin: 0;
	 padding: 0;
	 border: 0;
	 font-size: 100%;
	 font: inherit;
	 vertical-align: baseline;
}

/* GENERAL STYLES */	
*{
	position: relative;
	padding: 0;
	margin: 0;
	border: 0;
}
	
html, body{
	width: 100%;
	height: 100%;
	background-color: #000;
    color: #fff;
	overflow:hidden;
}	
	
a{
   color: #D60056;
   text-decoration: none;
}

a:hover, a:active{
	text-decoration: underline;
}
	
.emails{	
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:1;
}	
	
.email_icon{
	position:absolute;
}	
	
.email_speed_1{
	-webkit-animation: rotation 0.5s infinite linear;
	-moz-animation: rotation 0.5s infinite linear;
	animation: rotation 0.5s infinite linear;
}
	
.email_speed_2{
	-webkit-animation: rotation 0.7s infinite linear;
	-moz-animation: rotation 0.7s infinite linear;
	animation: rotation 0.7s infinite linear;
}
	
.email_speed_3{
	-webkit-animation: rotation 0.9s infinite linear;
	-moz-animation: rotation 0.9s infinite linear;
	animation: rotation 0.9s infinite linear;
}	
	
.email_speed_4{
	-webkit-animation: rotation 1s infinite linear;
	-moz-animation: rotation 1s infinite linear;
	animation: rotation 1s infinite linear;
}
	
.wrapper{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index:2;
}

.box_wrapper{
	display: block;
	max-width: 525px;
	width: 100%;
	margin: 0 auto;
	border-radius: 5px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	background:#333;
}
	
.box{
   padding: 20px 20px;
   margin: 0 auto;
}
	
p{
	margin: 0 auto;
	text-align: center;
	padding: 10px 20px;
}
	
p img{
   max-width: 200px;
   width: 100%;
   max-height: 50px;
   height: 100%;
}
	
#copy{
	font-family: sans-serif;
	font-size: 18px;
    color: #fff;
	line-height: normal;
	font-weight: 300;
}
	
@-webkit-keyframes rotation{
	from{
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to{
		-webkit-transform: rotate(359deg);
		-moz-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}	


