/* CSS Document */
body {
font-family: 'Raleway', sans-serif;	
background:#D2F7FF;
}
.main-wrapper {
	margin: 0 auto;	
}
header {
	position: relative;
	z-index: 5;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);	
	background: #fff;
}
/**** TYPOGRAPHY ****/
h1, h2, h3, h4, h5, h6 {
	margin: 0;	
}
h1 {
	text-transform: uppercase;
	padding: 1em;
	color: #333;
}
h1 span {
	color: #B7B7B7;	
	font-weight: 400;
}
p{}
/**** CONTENT ****/
@-webkit-keyframes play {
   from { background-position:    0px; }
     to { background-position: -3000px; }
}

@-moz-keyframes play {
   from { background-position:    0px; }
     to { background-position: -3000px; }
}
#sprite {
	margin: 0 auto;
	margin-top: 20px;
	width: 600px;
	height: 200px;
	background-image: url(../_IMAGES/spriteword.png);
	background-repeat: no-repeat;
	
	-webkit-animation-name: play;
	animation-name: play;
	
	-webkit-animation-direction: normal;
	
	-webkit-animation: play 2.8s steps(5) infinite forwards;
       -moz-animation: play .8s steps(6) infinite;
        -ms-animation: play .8s steps(6) infinite;
         -o-animation: play .8s steps(6) infinite;
            animation: play .8s steps(6); /*infinite;*/
			
	-webkit-animation-play-state: paused;
	
}

