/*  CSS Document */
@charset "UTF-8";

/* Global Styles */
body 
{
    background: none repeat scroll 0 0 #f9f9f9;
	font-family: "Adobe Clean", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #777;
	margin: 0; 
	padding: 0; 
	height: 100%; 
	
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.loadspinner
{
   margin-top: 30%;
   margin-left: 42%;
}
.welcome_title_anim
{
    font-size: 128px;
	font-weight:500;
    text-shadow: -2px 2px #777;
    text-align: center;
  	color: #FFF;
    margin-top: 28%;

	-webkit-animation: flash linear 3s infinite;
}

@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .4; } 
	100% { opacity: 1; }
}
