

/*nav CSS
-------------------------------*/


/* Pop */
@-webkit-keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
}

@keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pop {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  cursor:default;
}
.pop:hover, .pop:focus, .pop:active {
  -webkit-animation-name: pop;
  animation-name: pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}



/* Buzz */
@-webkit-keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

.buzz {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz:hover, .buzz:focus, .buzz:active {
  -webkit-animation-name: buzz;
  animation-name: buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}






/* Wobble Vertical */
@-webkit-keyframes wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }

  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }

  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }

  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }

  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.wobble-vertical {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.wobble-vertical:hover, .wobble-vertical:focus, .wobble-vertical:active {
  -webkit-animation-name: wobble-vertical;
  animation-name: wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}






/* Push */
@-webkit-keyframes push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.push {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.push:hover, .push:focus, .push:active {
  -webkit-animation-name: push;
  animation-name: push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}






#nav-example {
    background:url("../img/drip_social_sprite.svg") no-repeat;
    height: 96px;
    margin: 0;
    padding: 0;
}

#nav-example li, #nav-example a {
    height: 96px;
    display: block;
}

#nav-example li {
    float: left;
    list-style: none;
    display: inline;
    text-indent: -9999em;
}

#instagram { width: 75px; }
#linkedin { width: 70px; }
#twitter { width: 55px; }
#soundcloud { width: 63px; }

#instagram a:hover { background:url("../img/drip_social_sprite.svg") 0px -96px no-repeat; }
#linkedin a:hover { background:url("../img/drip_social_sprite.svg") -75px -96px no-repeat; }
#twitter a:hover { background:url("../img/drip_social_sprite.svg") -145px -96px no-repeat; }
#soundcloud a:hover { background:url("../img/drip_social_sprite.svg") -200px -96px no-repeat; }


.drips ul {
	float:right;

}

/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Globals
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */





h1 {
	font-family:'pixChicago';
	font-size:16px;
	line-height: 64px;
	letter-spacing:1px;
}

button {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

a {
	font-family: 'Roboto';
	font-weight:300;
	color:#e8744d;
	text-decoration:none;
}

p {
	line-height:32px;
}

html, body {
  
	color: #000000;
	font-family: 'Roboto', sans-serif;
	font-weight:300;
	line-height:24px;
	font-size: 15px;
	background: url(../img/...) repeat-x 0px 0px;
	background-color: #fbeae2;

}


body {

	margin:15px 0 0 0;
	overflow-x: hidden;
}

.page {
	max-width: 992px;
	margin: 0px auto 0px auto;
	position: relative;
	background-position: center;
}

.blankbox {
	background-color: #fbeae2;
	width: 992px;
	height: 15px;
	z-index: 50;
	position: fixed;
	top:0;
}

.resumeh1 {
	font-family:'pixChicago';
	line-height:72px;
	font-size:16px;
	margin-top:0;
	display:block;
}

.resume {
	line-height:24px;
}

.resumecontent1 {
	width:100%;
	float:left;
	
}

/*.resumecontent2 {
	padding-left:4%;
	padding-right:1%;
	width:35%;
	float:left;
}*/

.pollcaster {
	
	padding-top:24px;
	padding-bottom:24px;
	background:#FFF;
	margin-bottom:124px;
	height:
}
	


.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Header
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */


.rightbun {
	width: 50px;
	height:94px;
	position:fixed;
	background: #f4c26e;
	z-index:-1;
}

.leftbun {
	width: 330px;
	height:109px;
	position:absolute;
	background: #fbeae2 url(../img/bunright.svg);
	top:0px;
	right:0px;
	z-index:-1;
	/*border-left-width:35px;
	border-left-style:solid;
	border-left-color:#f4c26e;*/
}

.leftbuneyes {
	width: 330px;
	height:109px;
	position:absolute;
	background:url(../img/bunrighteyes.svg);
	top:0px;
	right:0px;
	z-index:-1;
	/*border-left-width:35px;
	border-left-style:solid;
	border-left-color:#f4c26e;*/
}

#buntop {
	background-color: #f4c26e;
	background: url('../img/buntop.svg') center top no-repeat;
	width: 992px;
	height: 110px;
	z-index: 6;
	position: fixed;
	top:15px;
}

/*secondary nav links*/
.extralinks {
	font-family:'pixChicago';
	font-size:12px;
	color:#e8744d;
}


/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Footer
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */

#mobilesocial {
	    display:none;
		margin-top:0px;
		margin-bottom:0px;
		padding-bottom:10px;
		list-style: none;
		background:#f4c26e;
		text-align: center;

}


.footertxt {
	font-family:'pixChicago';
	font-size:20px;
	letter-spacing:1px;
	line-height:145px;
	/*background: #E5D5CD;*/
}


footer {
	position: relative;
	background-color: #125656;
	max-width: 992px;
	height: 120px;
	z-index: 6;
}

.sauce {
	height: 43px;
	background: #fbeae2 url(../img/bottomsauce.svg);
}

#bunbottom {
	position: relative;
	background:#f4c26e;
	max-width:992px;
	height:80px;
}

.bunbottoml {
	position:absolute;
	left:0;
	bottom:0px;
	background:#fbeae2;
	width:50px;
	height:50px;
}

.bunbottomr {
	position: absolute;
	right:0;
	top:0;
	background:url(../img/driptop.svg);
	width:134px;
	height:84px;
}

.drips {
	position:relative;
	top:0px;
	height: 68px;
	background: #fbeae2;
	text-align: center;
	padding-left:22%;
	line-height: 68px;
	font-family:Tahoma, Geneva, sans-serif;
}

.social {
	display:none;
	height: 96px;
	width:262px;
	/*float:right;*/
	/*background:#e5d5cd url(../img/drip_social_sprite.svg) no-repeat;*/
	padding-bottom:;
	cursor:pointer;
}






/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Portfolio
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */

.centerdiv {
  margin: auto;
}

.testingflex {
	background-color: white;
	width:100%;
	height:300px;
	margin-left:12px;
	margin-right:12px;
	
}


.discription {
	padding-top:8px;
	background: #fbeae2;
	z-index: 100;
	padding-bottom:32px;
}

.slidedisctxt {
	font-family:'pixChicago';
	font-size:10px;
	line-height:32px;
	margin-top:-119px;
	margin-bottom:32px;
	z-index:30;
}


.longdisctxt {
	font-family:'pixChicago';
	font-size:10px;
	line-height:24px;
	background-color:#fbeae2;
	z-index:30;
}




.disctxt {
	font-family:'pixChicago';
	font-size:10px;
	line-height:32px;	
	margin-bottom:32px;
	background-color:#fbeae2;
	z-index:30;
	
}

.bottombunspace {
	height:1px;
	background-color:#fbeae2;
}

.scopetxt {
	font-family:'pixChicago';
	font-size:10px;
	letter-spacing:1px;
}

.contentspecial {
	background:;
	width: 992px;
	height: 600px;
	z-index: 0;
	position: relative;
	padding-top:;
	clear:both;
	overflow-x: hidden;
}

.bgcolor {
	background-color:#fbeae2;
	z-index:10;
}

.content {
	z-index: 4;
	position: relative;
	padding-top:0px;
	clear:both;	
}

.contentfix {
	width: 992px;
	height:600px;
	left: 50%;
	margin-top:80px;
	margin-left: -496px;

	z-index: -10;
	position: fixed;
	top:51px;
	clear:both;
	overflow-x: hidden;
}

#wrapper {
    position: relative;
	background:#fbeae2;
	max-width: 992px;
    z-index: 0;
	top: 117px;
    -webkit-transition: all 2.1s;
    -moz-transition: all 2.1s;
    -ms-transition: all 2.1s;
    -o-transition: all 2.1s;
    transition: all 2.1s;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
}


#info {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;				
	background:#fcf8e3;
	border:1px solid  #fbeed5;
	width:95%;
	max-width:900px;
	margin:0 auto 40px auto;
	font-family:arial;
	font-size:12px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}

#info .info-wrapper {
	padding:10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}
	
#info a {
	color:#c09853;
	text-decoration:none;
}
	
#info p {
	margin:0px 0 0 0;
}
	
.fixedcover {
	padding-top:8px;
	background: #fbeae2;
	z-index: 100;
}

#portfoliolist a {
	font-family:pixChicago;
	font-size:10px;
	color:#e8744d;
}

#portfoliolist .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	width:25%;
	display:none;
	float:left;
	overflow:hidden;
	z-index:10;
}

.portfolio-wrapper {
	overflow:hidden;
	position: relative !important;
	background: #FFF;
	cursor:pointer;
	}

.portfolio img {
	max-width:100%;
	position: relative;
	border-bottom:#ffe252 solid 25px;	
}
	
.portfolio .label {
	position: absolute;
	width: 100%;
	height:57px;
	bottom:-70px;
}

.portfolio .label-bg {
	background: #ffe252;
	width: 100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
}
	
.portfolio .label-text {
	color:#e8744d;
	position: relative;
	z-index:500;
	padding:3px 8px;
}
			
.portfolio .text-category {
	display:block;
	font-size:12px;
	margin-top:px;
}
	
.coverdiv {
	background:#af6128;
	width:100%;
	height:300px;
	float:left;
}
	
.covermobile {
	display:none;
}


/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Image Sliders
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */

#slides, #slides2, #slides3, #slides4, #slides5, #slides6, #slides7, #slides8, #slides9, #slides10 {
	display: none
}

.slidesjs-navigation {
    margin-top:3px;
    }
	
.slidesjs-previous {
	margin-right: 24px;
    float: left;
	position: absolute;
	bottom:20px;
	width: 49.41px;
	height: 54.25px;
	background:#03C;
	z-index:10;
	background:url(../img/leftarrow.svg);
	background-position: 100% 0; 
	left:10;
}
	
.slidesjs-next {
 	margin-right: 24px;
    float: left;
	position: absolute;
	bottom:20.0px;
	width: 49.41px;
	height: 54.25px;
	background:#03C;
	z-index:10;
	background:url(../img/rightarrow.svg);
	background-position: 100% 0; 
	left:49px;
}
	
.slidesjs-pagination {
    margin: 6px 0 0;
    float: right;
    list-style: none;
}

.slidesjs-pagination li {
    float: left;
    margin: 0 1px;
}

.slidesjs-pagination li a {
	margin-right: 8px;
	float: left;
	position: absolute;
	bottom:35px;
	height: 30px;
	z-index:10;
	background-position: 100% 0; 
	left:0px;
	  
	display: block;
	width: 14.79px;
	height: 0;
	padding-top: 14.79px;
	background-image: url(../img/pagination3.png);
	background-position: 0 0;
	position: relative;
	overflow: hidden;
}

.slidesjs-pagination li a.active,
.slidesjs-pagination li a:hover.active {
    background-position: 0 -19px
}

.slidesjs-pagination li a:hover {
    background-position: 0 -26px
}

#slides a:link,
#slides a:visited {
	color: #333
}

#slides a:hover,
#slides a:active {
    color: #9e2020
}

.navbar {
    overflow: hidden
}
 
#slides, #slides2, #slides3, #slides4, #slides5, #slides6, #slides7, #slides8, #slides9, #slides10 {
	display: none;
	
	margin-bottom:100px;  
}

.slidecontainer {
	zoom: 1; 
	position: relative; 
	max-width:992px;
	margin:0px
	z-index:9;
	/*border:1px solid #FFFFFF;*/
	text-align:left; /* reset align=center */
	
}

/* For tablets & smart phones */
@media (max-width: 992px) {
    

	
	
	.pollcaster {

margin-left:12px;
margin-right:12px;

}
	
	.resume {
	line-height:24px;
	margin-left:12px;
	margin-right:12px;
}
	
.slidecontainer {
	margin-left:12px;
	margin-right:12px;
}
	  
.discription {
	margin-left:12px;
	margin-right:12px;
}

.slidedisctxt {
	margin-left:12px;
	margin-right:12px;
}

.imgpad {
	margin-right:12px;
	margin-left:12px;
}

.leftbun {
	position:fixed;
	top:15px;
	right:0px;
	z-index:-1;
	/*border-left-width:35px;
	border-left-style:solid;
	border-left-color:#f4c26e;*/
}


.leftbuneyes {
	width: 330px;
	height:109px;
	position:fixed;
	background:url(../img/bunrighteyes.svg);
	top:15px;
	right:0px;
	z-index:-1;
	/*border-left-width:35px;
	border-left-style:solid;
	border-left-color:#f4c26e;*/
}


}

/* For smartphones */
@media (max-width: 480px) {
.slidecontainer {
	width: auto
}


}

/* For smaller displays like laptops */
@media (min-width: 768px) and (max-width: 979px) {
.slidecontainer {
	margin-left:12px;
	margin-right:12px;
}
}

/* For larger displays */
@media (min-width: 1200px) {
.slidecontainer {
	width: 1170px
}
}
</style>
<!-- SlidesJS Required: -->


/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Menu
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */

.buttons {
    margin-bottom: 30px;

}
.buttons button {
    display: inline-block;
    margin: 0px 0 4px 0;
    padding: 25px 25px;
    color: #f4c26e;
    background-color: #67b5d1;
	background: url('../img/burger_btn.svg') left top no-repeat; 
}
.buttons button:hover,
.buttons button.active {
    background-color: #3184a1;
	
}
.buttons button:focus {
    outline: none
}

nav.menu {
	position:fixed; 
    z-index: 2;
	background-image:url('../img/lrg_nav_bg4.svg');
	background-repeat:no-repeat;
	background-position:center; 
    background-color:#;
    overflow: hidden;
    -webkit-transition: all 1.1s;
    -moz-transition: all 1.1s;
    -ms-transition: all 1.1s;
    -o-transition: all 1.1s;
    transition: all 1.1s;
}


.menubg {
	position:relative;
	width:992px;
	height:1px;
	
	margin: 0 auto 0 auto;
}

nav.menu ul {
    list-style-type: none;
    margin: 0px;
    padding: 0;
}

.todaysspecial {
	font-family:'pixChicago';
	text-transform:;
	font-size:45px;
	margin-top:74px;
	margin-bottom:40px;
	text-align:center;
	cursor:;
	
}

.protitle {
	font-family:'pixChicago';
	text-transform:;
	font-size:15px;
	margin-top:30px;
	margin-bottom:10px;
	text-align:center;
	cursor:;
	
}


.textalign {
	display: inherit;
	background:#;
	font-family:'pixChicago';
	font-size:12px;
	color:#FFF;
	max-width:100%;
	text-align: center;
	margin-bottom:0px;
}




.jchar1 {
	font-family:'pixChicago';
	padding-top:16px;
	font-size:45px;
	color:#e8744d;
	cursor:auto;
	margin-left:8px;
	text-shadow: 
	
	
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000,
	5px 5px 0px #000,6px 6px 0px #000,
	7px 7px 0px #000,8px 8px 0px #000;
	
	

/*animation-name*/
-webkit-animation-name:closeeyefadein;
   -moz-animation-name:closeeyefadein;
    -ms-animation-name:closeeyefadein;
     -o-animation-name:closeeyefadein;
        animation-name:closeeyefadein;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.85s;
   -moz-animation-delay:1.85s;
    -ms-animation-delay:1.85s;
     -o-animation-delay:1.85s;
        animation-delay:1.85s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
-webkit-animation-fill-mode:forward;



}


.jtitle {
	display:inherit;
	position:absolute;
	font-family:'pixChicago';
	padding-top:16px;
	font-size:45px;
	color:#e8744d;
	text-align:center;
	width:100%;
	height:279.05px;
	left:0px;
	top:75px;
	z-index:4;
	opacity:1;
	letter-spacing:10px;
	text-shadow: 
	
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000,
	5px 5px 0px #000,6px 6px 0px #000,
	7px 7px 0px #000,8px 8px 0px #000;
	
		
	
/*animation-name*/
-webkit-animation-name:closeeyefadein2;
   -moz-animation-name:closeeyefadein2;
    -ms-animation-name:closeeyefadein2;
     -o-animation-name:closeeyefadein2;
        animation-name:closeeyefadein2;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.85s;
   -moz-animation-delay:1.85s;
    -ms-animation-delay:1.85s;
     -o-animation-delay:1.85s;
        animation-delay:1.85s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

	
}

.jtitle2 {
	display:inherit;
	position:absolute;
	font-family:'pixChicago';
	padding-top:16px;
	font-size:45px;
	color:#e8744d;
	text-align:center;
	width:100%;
	height:279.05px;
	left:0px;
	top:75px;
	z-index:4;
	opacity:0;
	letter-spacing:10px;
	text-shadow: 
	
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000,
	5px 5px 0px #000,6px 6px 0px #000,
	7px 7px 0px #000,8px 8px 0px #000;
	
		

/*animation-name*/
-webkit-animation-name:shake;
   -moz-animation-name:shake;
    -ms-animation-name:shake;
     -o-animation-name:shake;
        animation-name:shake;
/*animation-duration*/
-webkit-animation-duration:.8s;
   -moz-animation-duration:.8s;
    -ms-animation-duration:.8s;
     -o-animation-duration:.8s;
        animation-duration:.8s;
/*animation-timing-function*/
-webkit-animation-timing-function:ease-out;
   -moz-animation-timing-function:ease-out;
    -ms-animation-timing-function:ease-out;
     -o-animation-timing-function:ease-out;
        animation-timing-function:ease-out;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:16.48s;
   -moz-animation-delay:16.48s;
    -ms-animation-delay:16.48s;
     -o-animation-delay:16.48s;
        animation-delay:16.48s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


	
}


.jtitle3 {
	display:inherit;
	position:absolute;
	font-family:'pixChicago';
	padding-top:16px;
	font-size:45px;
	color:#e8744d;
	text-align:center;
	width:100%;
	height:279.05px;
	left:0px;
	top:75px;
	z-index:4;
	opacity:0;
	letter-spacing:10px;
	text-shadow: 
	
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000,
	5px 5px 0px #000,6px 6px 0px #000,
	7px 7px 0px #000,8px 8px 0px #000;
	
		

/*animation-name*/
-webkit-animation-name:titleon;
   -moz-animation-name:titleon;
    -ms-animation-name:titleon;
     -o-animation-name:titleon;
        animation-name:titleon;
/*animation-duration*/
-webkit-animation-duration:12.338s;
   -moz-animation-duration:12.338s;
    -ms-animation-duration:12.338s;
     -o-animation-duration:12.338s;
        animation-duration:12.338s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:4.2s;
   -moz-animation-delay:4.2s;
    -ms-animation-delay:4.2s;
     -o-animation-delay:4.2s;
        animation-delay:4.2s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


	
}



.tchar1 {
	color:#fd8f9e;
	margin-left:8px;
	text-shadow: 
	
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar2 {
	color:#feac2c;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar3 {
	color:#20c7b6;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar4 {
	color:#ffe353;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar5 {
	color:#e8744d;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar6 {
	color:#fd8f9e;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar7 {
}

.tchar8 {
	color:#feac2c;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar9 {
	color:#20c7b6;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar10 {
	color:#ffe353;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar11 {
	color:#e8744d;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar12 {
	color:#fd8f9e;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar13 {
	color:#feac2c;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}

.tchar14 {
	color:#20c7b6;
	margin-left:8px;
	text-shadow: 
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000;
}	
}

.closeplace {
	position:relative;
	margin-top:30px;
	margin-left:1px;
}

.closebtn {
	background:url(../img/close2.svg) no-repeat;
	width:50px;
	height:50px;
}

.extrabtns {
	font-family:'pixChicago';
	font-size:12px;
	color:#e8744d;
	display:inline-block;
	text-transform:;
	height:50px;
	z-index:20;
	margin-left:20px;
	margin-top:6px;
	margin-right:12px;
	letter-spacing:1px;
	
		text-shadow: 
	
	
	
	1px 1px 0px #fff;
	
	
}

button.close-menu {
    background-color: #3184a1;
	background:url(../img/tomato.svg);
	width:159px;
	height:69px;
	font-family:'pixChicago';
	letter-spacing:2px;
	font-size:12px;
    color: #fff;
}

button.close-menu:focus {
    outline: none
}

/* slide menu top and bottom */
nav.slide-menu-top,
nav.slide-menu-bottom,
nav.push-menu-top,
nav.push-menu-bottom {
    left: 0;
    width: 100%;
    height: 329px;
}

nav.slide-menu-top ul,
nav.slide-menu-bottom ul,
nav.push-menu-top ul,
nav.push-menu-bottom ul {
    text-align: center;
    padding: 0px 0 0 0;

/*hight of buttons*/
}

nav.slide-menu-top li,
nav.slide-menu-bottom li,
nav.push-menu-top li,
nav.push-menu-bottom li {
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

nav.slide-menu-top a,
nav.slide-menu-bottom a,
nav.push-menu-top a,
nav.push-menu-bottom a {
    display: block;
 
/*    padding: 0 30px;*/
}

nav.slide-menu-top button.close-menu,
nav.slide-menu-bottom button.close-menu,
nav.push-menu-top button.close-menu,
nav.push-menu-bottom button.close-menu {
    display: block;
    line-height: 50px;
    margin: 0;
    padding: 0 10px;
}

/*adjusts the position of slid nav*/

nav.slide-menu-top,
nav.push-menu-top {
    top: -174px;
}

nav.slide-menu-bottom,
nav.push-menu-bottom {
    bottom: 100px;
}

/*adjusts slide limit*/

body.smt-open nav.slide-menu-top,
body.pmt-open nav.push-menu-top {
    top: 115px;
}

body.smb-open nav.slide-menu-bottom,
body.pmb-open nav.push-menu-bottom {
    bottom: 0;
}

/*pushdown
body.pmt-open #wrapper {
    top: 366px;
}
body.pmb-open #wrapper {
    top: -100px;
}

*/


/*nav css end*/

.navlinks {
	font-family:'pixChicago';
	font-size:12px;
	letter-spacing:1px;
}


 
#filters {
	margin:1%;
	padding:0;
	list-style:none;
}

#filters li {
}
	
.navtxt {
	margin-top:17px;
	color:#FFF;
}

.container { 
	position: relative; 
	width: 100%;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;	
}
	
nav.slide-menu-top ul,
nav.slide-menu-bottom ul,
nav.push-menu-top ul,
nav.push-menu-bottom ul {
    text-align: center;
    padding: 0px 0 0 0;

/*hight of buttons*/

}
	
	
/*space between buttons*/
	
#filters li span {
		
	display: block;
	padding:5px 10px;		
	text-decoration:none;
	color:#FFF;
	cursor: pointer;
}
	
#filters li span.active {
	background:url(../img/tomato_on.svg);
	color:#fff;
	z-index:20;
}
 
 
 
 
 .smartprofiletext {
	display:none;
	float:left;
}
 
 
 
 .smartprofile {
	display:none;
	
	
}
 
.scopespace {
	margin-bottom:24px;
}

 

/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Media Queries
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */


/* #Tablet (Portrait) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
.container {
	width: 100%; 
}

.disctxt {
	margin-bottom:16px;
	margin-left:12px;
}

.longdiscmargin {
	margin-left:12px;
	margin-right:12px;
}

}


/*  #Mobile (Portrait) - Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {

.portfolio img {
	max-width:100%;
	position: relative;
	border-bottom:#ffe252 solid 20px;	
}


.longdiscmargin {
	margin-left:12px;
	margin-right:12px;
}


.pollcaster {

margin-left:12px;
margin-right:12px;

}

#wrapper {
    position: relative;
	background:#af6128;
	max-width: 992px;
    z-index: 0;
	top: 37px;
    -webkit-transition: all 2.1s;
    -moz-transition: all 2.1s;
    -ms-transition: all 2.1s;
    -o-transition: all 2.1s;
    transition: all 2.1s;
}



.smartjtitle {

	position:relative;
	display:block;
	font-family:'pixChicago';
	font-size:30px;
	color:#e8744d;
	text-align:center;
	width:100%;
	left:0px;
	top:30px;
	line-height:38px;
	letter-spacing:5px;
	z-index: 1;
	text-shadow: 
	
	-1px 0px 0px #000,-2px -0px 0px #000,
	0px -1px 0px #000,0px -2px 0px #000,
	1px 0px 0px #000,2px -0px 0px #000,
	0px 1px 0px #000,0px 2px 0px #000,
	1px 1px 0px #000,2px 2px 0px #000,
	3px 3px 0px #000,4px 4px 0px #000,
	5px 5px 0px #000,6px 6px 0px #000,
	7px 7px 0px #000,8px 8px 0px #000;

	
}


.smartprofilepic {
	position:relative;
	display:block;
	color:#e8744d;
	height:300px;
	background:url(../img/jsmart_profile2.svg) center no-repeat;
	text-align:center;
	width:100%;
	left:0px;
	margin-top:-40px;
	z-index: 0;
	
}


.smartprofile {
	position:relative;
	display:block;
	background:#e8744d;
	width:100%;
	height:100%;
	z-index: 0;
	
}
 


.smartprofiletext {
	display:block;
	background: #e8744d;
	font-family:'pixChicago';
	font-size:12px;
	color:#FFF;
	width:100%;
	line-height:64px;
	text-align: center;
	margin-bottom:24px;
}


.jtitle {
	display:none;
}

.jtitle2 {
	display:none;
}

.jtitle3 {
	display:none;
}

#pixelman {
	display:none;
}


.pixelmancontainer {
	display:none;
}


.leftbuneyes {
	display:none;
}

#mobilesocial {
	    display:inherit;
		margin-top:0px;
		margin-bottom:0px;
		padding-bottom:10px;
		list-style: none;
		background:#f4c26e;
		text-align: center;
		
}

#mobilesocial li {
	display:inline-block;
	


}

.socialicon {
	display:inherit;
	margin-right:25px;

}


.drips {
	display:none;
}

/*.drips ul {
	display:none;

}*/

.portfolio .label-text {
	color:#e8744d;
	position: relative;
	z-index:500;
	padding:7px 8px;
}


.portfolio .text-category {
	display:block;
	font-size:12px;
	margin-top:2px;
}

.todaysspecial {
	display:none;
	font-family:'pixChicago';
	text-transform:uppercase;
	font-size:15px;
	margin-top:46px;
	margin-bottom:32px;
	text-align:center;
}

.covermobile {
	display:block;
	margin-top:12px;
	
}

.contentspecial {
	display:none;
	background:;
	width: 992px;
	height: 520px;
	z-index: 0;
	position: relative;
	padding-top:;
	clear:both;
}

.contentfix {
	display:none;
	width: 100%;
	position: absolute;
	top:0px;
	clear:both;
	overflow-x: hidden;
}

.sauce {
	display:none;
}

#bunbottom {
	position: relative;
	background: url(../img/smart_bun_bottom.svg) center;
	max-width:992px;
	height:55px;
}

.bunbottoml {
	display:none;
}

.bunbottomr {
	display:none;
}


.footertxt {
	display:none;
	font-family:'pixChicago';
	font-size:20px;
	letter-spacing:1px;
	line-height:145px;
	background: #f4c26e;
	cursor:auto;
}




.social {
	display:;
	height:44px;
	width:100%;
	background: #f4c26e;
	float:;
	/*background:#f4c26e url(../img/smart_social.svg) center no-repeat;*/
	padding-bottom:15px;
}




footer {
	position: relative;
	background-color: #f4c26e;
	max-width: 992px;
	height: 55px;
	z-index: 6;
}


.drips {
	position:relative;
	top:0px;
	height: 55px;
	background:;
	text-align: center;
	padding-left:0;
	line-height: 68px;
	font-family:;
}

.blankbox {
	display:none;
}

/*height of tomatoes*/

nav.menu ul {
    list-style-type: none;
    padding: 0;
	margin-top:8px;
}
	
#filters li span.active {
	background:url(../img/smart_tomato_on.svg);
	color:#fff;
	z-index:10;	
}
	
button.close-menu {    
	background:url(../img/smart_tomato.svg);
	width:153px;
	height:31px;
	z-index:100;
}
	
.closeplace {
	position:relative;
	margin-top:35px;
	margin-left:12px;
}
	
.closebtn {
	background:url(../img/smartclose.svg) no-repeat;

	height:25px;
}
	
.sspecial {
	display:none;
}
	
nav.menu {
	background-image:url('../img/smart_nav_bg.svg');

}

.extralinks {
	font-family:'pixChicago';
	font-size:12px;
	color:#e8744d;

	
}

.navtxt {
	margin-top:-19px;
	color:#FFF;
	font-size:10px;
}


.btntopmargin {
	margin-top:100;
	
}
/*space between buttons*/
	
#filters li span {
	display: block;
	padding:9px 5px;
	
	text-decoration:none;
	color:#FFF;
	cursor: pointer;
}


/*adjusts slide limit*/

body.smt-open nav.slide-menu-top,
body.pmt-open nav.push-menu-top {
    top: 22px;
}


/*adjusts the position of slid nav*/

nav.slide-menu-top,
nav.push-menu-top {
    top: -240px;
}
	

.extrabtns {
	font-family:'pixChicago';
	font-size:12px;
	color:#e8744d;
	display:inline-block;
	text-transform:;
	height:50px;
	z-index:20;
	margin-left:20px;
	margin-top:14px;
	margin-right:6px;
	letter-spacing:1px;
}

#buntop {
	background-color: #f4c26e;
	background: url('../img/smart_bun.svg') left top no-repeat;
	width: 992px;
	height: 44px;
	z-index: 6;
	position: fixed;
	top:0px;
}
	
.rightbun {
	width: 0px;
	height:44px;
	position:fixed;
	background: #f4c26e;
	z-index:-1;
}



.leftbun {
	width:10px;
	position:fixed;
	background: #f4c26e;
	height:44px;
	top:0px;
	right:0px;
	z-index:-1;
	border-left-width:5px;
	border-left-style:solid;
	border-left-color:#f4c26e;
}
.container { 
		width: 100%; 
	}
	
#portfoliolist .portfolio {
	width:50%;
	margin:;
}		

#ads {
	display:none;
}
	
h1 {
	
	font-size:10px;
	line-height: 24px;
	letter-spacing:1px;
}
	
html, body {    
	font-weight:300;
	line-height:24px;
	font-size: 14px;
	background-color: fbeae2;
}

.scopespace {
	margin-bottom:24px;
}

.disctxt {
	margin-bottom:16px;
	margin-left:12px;
}

.slidedisctxt {
	margin-bottom:16px;
}

.slidesjs-previous {
	display:none;
}
	
.slidesjs-next {
 	display:none;
}
	
	
.buttons button {
    display: inline-block;
    margin: 0px 0 0px 0;
    padding: 22px 23px;
    color: #f4c26e;
    background-color: #67b5d1;
	background: url('../img/smart_burger.svg') left top no-repeat; 
}
	
}


/* #Mobile - for slightly oversized screens found on Samsung devices*/
@media only screen and (min-width: 321px) and (max-width: 401px) {

nav.menu {
	background-image:url('../img/smart_nav_bg.svg');

}

/*space between buttons*/
	
#filters li span {	
	display: block;
	padding:9px 25px;		
	text-decoration:none;
	color:#FFF;
	cursor: pointer;
}


#filters li span.active {	
	background:url(../img/smart_landscape_tomato_on2.svg);
	color:#fff;
	z-index:10;
}
}



/* #Mobile (Landscape) - Note: Design for a width of 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	
#filters {
	margin:91px 0 0 0;
	padding:0;
	list-style:none;
}

ul .extrabtns {

	font-family:'pixChicago';
	font-size:12px;
	color:#e8744d;
	display:block;
	text-transform:uppercase;
	height:50px;
	z-index:20;
	margin-top:-13px;
	margin-right:6px;
	letter-spacing:1px;
	text-decoration:none;
}
	
.extralinks {
	font-family:'pixChicago';
	font-size:12px;
	color:#e8744d;
}

.closeplace {
	position:absolute;
	margin-top:75px;
	margin-left:14px;
}
	
nav.menu {
	background-image:url('../img/smart_landscape_nav_bg.svg');
}
	
.navtxt {
	margin-top:-19px;
	color:#FFF;
	font-size:10px;
}
	
		/*space between buttons*/
		
#filters li span {
	display: block;
	padding:9px 18px;		
	text-decoration:none;
	color:#FFF;
	cursor: pointer;
}
	
	
#filters li span.active {	
	background:url(../img/smart_landscape_tomato_on.svg);
	color:#fff;
	z-index:10;	
}
	
	
/*adjusts slide limit*/
	
body.smt-open nav.slide-menu-top,
body.pmt-open nav.push-menu-top {
	top: -29px;
}
	
/*adjusts the position of slid nav*/
	
nav.slide-menu-top,
nav.push-menu-top {
	top: -189px;
}

nav.menu ul {
	list-style-type: none;
	margin: 0px;
	padding: 0;
	margin-top:35px;
}
	
.blankbox {
	display:none;
}
	
.container {
	width: 100%;
}
	
#ads {
	display:none;
}
}


.inlineblock {
	display:inline-block;
	margin-left:25px;
}





/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Pixelman
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */



.pixelmancontainer {
	position:relative;
	height:300px;
	max-width:992px;
	background:#e8744d;
	margin-right:0px;
	overflow:hidden;
	padding-top:150px;

	
/*animation-name*/
-webkit-animation-name:shakecolor;
   -moz-animation-name:shakecolor;
    -ms-animation-name:shakecolor;
     -o-animation-name:shakecolor;
        animation-name:shakecolor;
/*animation-duration*/
-webkit-animation-duration:.8s;
   -moz-animation-duration:.8s;
    -ms-animation-duration:.8s;
     -o-animation-duration:.8s;
        animation-duration:.8s;
/*animation-timing-function*/
-webkit-animation-timing-function:ease-out;
   -moz-animation-timing-function:ease-out;
    -ms-animation-timing-function:ease-out;
     -o-animation-timing-function:ease-out;
        animation-timing-function:ease-out;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:16.48s;
   -moz-animation-delay:16.48s;
    -ms-animation-delay:16.48s;
     -o-animation-delay:16.48s;
        animation-delay:16.48s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}




#pixelman {
	position:relative;
	height:300px;
	max-width:992px;
	background:#;
	margin-right:0px;
	overflow:hidden;

	/*animation-name*/
-webkit-animation-name:shake;
   -moz-animation-name:shake;
    -ms-animation-name:shake;
     -o-animation-name:shake;
        animation-name:shake;
/*animation-duration*/
-webkit-animation-duration:.8s;
   -moz-animation-duration:.8s;
    -ms-animation-duration:.8s;
     -o-animation-duration:.8s;
        animation-duration:.8s;
/*animation-timing-function*/
-webkit-animation-timing-function:ease-out;
   -moz-animation-timing-function:ease-out;
    -ms-animation-timing-function:ease-out;
     -o-animation-timing-function:ease-out;
        animation-timing-function:ease-out;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:16.48s;
   -moz-animation-delay:16.48s;
    -ms-animation-delay:16.48s;
     -o-animation-delay:16.48s;
        animation-delay:16.48s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}


		
		


.star1_cl {
	
	position:absolute;
	background:url(../img/pixelman/star1.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:137px;
	top:129px;
	z-index:3;
	opacity:0;
	
	/*animation-name*/
-webkit-animation-name:star1;
   -moz-animation-name:star1;
    -ms-animation-name:star1;
     -o-animation-name:star1;
        animation-name:star1;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.65s;
   -moz-animation-delay:1.65s;
    -ms-animation-delay:1.65s;
     -o-animation-delay:1.65s;
        animation-delay:1.65s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}

.star2_cl {
	
	position:absolute;
	background:url(../img/pixelman/star2.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:137px;
	top:129px;
	z-index:3;
	opacity:0;
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.75s;
   -moz-animation-delay:1.75s;
    -ms-animation-delay:1.75s;
     -o-animation-delay:1.75s;
        animation-delay:1.75s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}

.star3_cl {
	
	position:absolute;
	background:url(../img/pixelman/star3.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:137px;
	top:129px;
	z-index:3;
	opacity:0;
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.85s;
   -moz-animation-delay:1.85s;
    -ms-animation-delay:1.85s;
     -o-animation-delay:1.85s;
        animation-delay:1.85s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}

.star4_cl {
	
	position:absolute;
	background:url(../img/pixelman/star4.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:137px;
	top:129px;
	z-index:3;
	opacity:0;

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.95s;
   -moz-animation-delay:1.95s;
    -ms-animation-delay:1.95s;
     -o-animation-delay:1.95s;
        animation-delay:1.95s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}

.star5_cl {
	
	position:absolute;
	background:url(../img/pixelman/star5.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:137px;
	top:129px;
	z-index:3;
	opacity:0;
	
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:2.05s;
   -moz-animation-delay:2.05s;
    -ms-animation-delay:2.05s;
     -o-animation-delay:2.05s;
        animation-delay:2.05s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}

.star6_cl {
	
	position:absolute;
	background:url(../img/pixelman/star6.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:137px;
	top:129px;
	z-index:;
	opacity:0;
	
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:2.15s;
   -moz-animation-delay:2.15s;
    -ms-animation-delay:2.15s;
     -o-animation-delay:2.15s;
        animation-delay:2.15s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}




.star1_cr {
	
	position:absolute;
	background:url(../img/pixelman/star1.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:250px;
	top:110px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star1;
   -moz-animation-name:star1;
    -ms-animation-name:star1;
     -o-animation-name:star1;
        animation-name:star1;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.65s;
   -moz-animation-delay:1.65s;
    -ms-animation-delay:1.65s;
     -o-animation-delay:1.65s;
        animation-delay:1.65s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star2_cr {
	
	position:absolute;
	background:url(../img/pixelman/star2.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:250px;
	top:110px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.75s;
   -moz-animation-delay:1.75s;
    -ms-animation-delay:1.75s;
     -o-animation-delay:1.75s;
        animation-delay:1.75s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star3_cr {
	
	position:absolute;
	background:url(../img/pixelman/star3.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:250px;
	top:110px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.85s;
   -moz-animation-delay:1.85s;
    -ms-animation-delay:1.85s;
     -o-animation-delay:1.85s;
        animation-delay:1.85s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star4_cr {
	
	position:absolute;
	background:url(../img/pixelman/star4.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:250px;
	top:110px;
	z-index:3;
	opacity:0;


/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.95s;
   -moz-animation-delay:1.95s;
    -ms-animation-delay:1.95s;
     -o-animation-delay:1.95s;
        animation-delay:1.95s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star5_cr {
	
	position:absolute;
	background:url(../img/pixelman/star5.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:250px;
	top:110px;
	z-index:3;
	opacity:0;
	
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:2.05s;
   -moz-animation-delay:2.05s;
    -ms-animation-delay:2.05s;
     -o-animation-delay:2.05s;
        animation-delay:2.05s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star6_cr {
	
	position:absolute;
	background:url(../img/pixelman/star6.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:250px;
	top:110px;
	z-index:;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:2.15s;
   -moz-animation-delay:2.15s;
    -ms-animation-delay:2.15s;
     -o-animation-delay:2.15s;
        animation-delay:2.15s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}



.star1_tr {
	
	position:absolute;
	background:url(../img/pixelman/star1.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:225px;
	top:20px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star1;
   -moz-animation-name:star1;
    -ms-animation-name:star1;
     -o-animation-name:star1;
        animation-name:star1;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.55s;
   -moz-animation-delay:.55s;
    -ms-animation-delay:.55s;
     -o-animation-delay:.55s;
        animation-delay:.55s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star2_tr {
	
	position:absolute;
	background:url(../img/pixelman/star2.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:225px;
	top:20px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.65s;
   -moz-animation-delay:.65s;
    -ms-animation-delay:.65s;
     -o-animation-delay:.65s;
        animation-delay:.65s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.star3_tr {
	
	position:absolute;
	background:url(../img/pixelman/star3.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:225px;
	top:20px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.75s;
   -moz-animation-delay:.75s;
    -ms-animation-delay:.75s;
     -o-animation-delay:.75s;
        animation-delay:.75s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star4_tr {
	
	position:absolute;
	background:url(../img/pixelman/star4.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:225px;
	top:20px;
	z-index:3;
	opacity:0;


/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.85s;
   -moz-animation-delay:.85s;
    -ms-animation-delay:.85s;
     -o-animation-delay:.85s;
        animation-delay:.85s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star5_tr {
	
	position:absolute;
	background:url(../img/pixelman/star5.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:225px;
	top:20px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.95s;
   -moz-animation-delay:.95s;
    -ms-animation-delay:.95s;
     -o-animation-delay:.95s;
        animation-delay:.95s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star6_tr {
	
	position:absolute;
	background:url(../img/pixelman/star6.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:225px;
	top:20px;
	z-index:;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.05s;
   -moz-animation-delay:1.05s;
    -ms-animation-delay:1.05s;
     -o-animation-delay:1.05s;
        animation-delay:1.05s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}


.star1_tl {
	
	position:absolute;
	background:url(../img/pixelman/star1.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:140px;
	top:40px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star1;
   -moz-animation-name:star1;
    -ms-animation-name:star1;
     -o-animation-name:star1;
        animation-name:star1;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.10s;
   -moz-animation-delay:1.10s;
    -ms-animation-delay:1.10s;
     -o-animation-delay:1.10s;
        animation-delay:1.10s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star2_tl {
	
	position:absolute;
	background:url(../img/pixelman/star2.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:140px;
	top:40px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.20s;
   -moz-animation-delay:1.20s;
    -ms-animation-delay:1.20s;
     -o-animation-delay:1.20s;
        animation-delay:1.20s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star3_tl {
	
	position:absolute;
	background:url(../img/pixelman/star3.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:140px;
	top:40px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.30s;
   -moz-animation-delay:1.30s;
    -ms-animation-delay:1.30s;
     -o-animation-delay:1.30s;
        animation-delay:1.30s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.star4_tl {
	
	position:absolute;
	background:url(../img/pixelman/star4.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:140px;
	top:40px;
	z-index:3;
	opacity:0;


/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.40s;
   -moz-animation-delay:1.40s;
    -ms-animation-delay:1.40s;
     -o-animation-delay:1.40s;
        animation-delay:1.40s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.star5_tl {
	
	position:absolute;
	background:url(../img/pixelman/star5.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:140px;
	top:40px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.50s;
   -moz-animation-delay:1.50s;
    -ms-animation-delay:1.50s;
     -o-animation-delay:1.50s;
        animation-delay:1.50s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star6_tl {
	
	position:absolute;
	background:url(../img/pixelman/star6.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:140px;
	top:40px;
	z-index:;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.60s;
   -moz-animation-delay:1.60s;
    -ms-animation-delay:1.60s;
     -o-animation-delay:1.60s;
        animation-delay:1.60s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}



.star1_br {
	
	position:absolute;
	background:url(../img/pixelman/star1.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:319px;
	top:232px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star1;
   -moz-animation-name:star1;
    -ms-animation-name:star1;
     -o-animation-name:star1;
        animation-name:star1;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.10s;
   -moz-animation-delay:1.10s;
    -ms-animation-delay:1.10s;
     -o-animation-delay:1.10s;
        animation-delay:1.10s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star2_br {
	
	position:absolute;
	background:url(../img/pixelman/star2.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:319px;
	top:232px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.20s;
   -moz-animation-delay:1.20s;
    -ms-animation-delay:1.20s;
     -o-animation-delay:1.20s;
        animation-delay:1.20s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.star3_br {
	
	position:absolute;
	background:url(../img/pixelman/star3.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:319px;
	top:232px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.30s;
   -moz-animation-delay:1.30s;
    -ms-animation-delay:1.30s;
     -o-animation-delay:1.30s;
        animation-delay:1.30s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star4_br {
	
	position:absolute;
	background:url(../img/pixelman/star4.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:319px;
	top:232px;
	z-index:3;
	opacity:0;


/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.40s;
   -moz-animation-delay:1.40s;
    -ms-animation-delay:1.40s;
     -o-animation-delay:1.40s;
        animation-delay:1.40s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star5_br {
	
	position:absolute;
	background:url(../img/pixelman/star5.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:319px;
	top:232px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.50s;
   -moz-animation-delay:1.50s;
    -ms-animation-delay:1.50s;
     -o-animation-delay:1.50s;
        animation-delay:1.50s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star6_br{
position:absolute;
background:url(../img/pixelman/star6.svg)  no-repeat;
width:390.45px;
height:279.05px;
left:319px;
top:232px;
z-index:;
opacity:0;
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.60s;
   -moz-animation-delay:1.60s;
    -ms-animation-delay:1.60s;
     -o-animation-delay:1.60s;
        animation-delay:1.60s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}





.star1_bl {
	
	position:absolute;
	background:url(../img/pixelman/star1.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:8px;
	top:238px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star1;
   -moz-animation-name:star1;
    -ms-animation-name:star1;
     -o-animation-name:star1;
        animation-name:star1;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.55s;
   -moz-animation-delay:.55s;
    -ms-animation-delay:.55s;
     -o-animation-delay:.55s;
        animation-delay:.55s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star2_bl {
	
	position:absolute;
	background:url(../img/pixelman/star2.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:8px;
	top:238px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.65s;
   -moz-animation-delay:.65s;
    -ms-animation-delay:.65s;
     -o-animation-delay:.65s;
        animation-delay:.65s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.star3_bl {
	
	position:absolute;
	background:url(../img/pixelman/star3.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:8px;
	top:238px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.75s;
   -moz-animation-delay:.75s;
    -ms-animation-delay:.75s;
     -o-animation-delay:.75s;
        animation-delay:.75s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star4_bl {
	
	position:absolute;
	background:url(../img/pixelman/star4.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:8px;
	top:238px;
	z-index:3;
	opacity:0;

	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.85s;
   -moz-animation-delay:.85s;
    -ms-animation-delay:.85s;
     -o-animation-delay:.85s;
        animation-delay:.85s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.star5_bl {
	
	position:absolute;
	background:url(../img/pixelman/star5.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:8px;
	top:238px;
	z-index:3;
	opacity:0;
	
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:.95s;
   -moz-animation-delay:.95s;
    -ms-animation-delay:.95s;
     -o-animation-delay:.95s;
        animation-delay:.95s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.star6_bl {
	
	position:absolute;
	background:url(../img/pixelman/star6.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:8px;
	top:238px;
	z-index:;
	opacity:0;
	
/*animation-name*/
-webkit-animation-name:star2;
   -moz-animation-name:star2;
    -ms-animation-name:star2;
     -o-animation-name:star2;
        animation-name:star2;
/*animation-duration*/
-webkit-animation-duration:.2s;
   -moz-animation-duration:.2s;
    -ms-animation-duration:.2s;
     -o-animation-duration:.2s;
        animation-duration:.2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.05s;
   -moz-animation-delay:1.05s;
    -ms-animation-delay:1.05s;
     -o-animation-delay:1.05s;
        animation-delay:1.05s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}


.jdrink {
	
	position:absolute;
	background:url(../img/pixelman/jdrink.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:;
	opacity:0;
}

.jburgerbite {
	
	position:absolute;
	background:url(../img/pixelman/jburgerbite.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:1;
	

/*animation-name*/
-webkit-animation-name:jburgerbite;
   -moz-animation-name:jburgerbite;
    -ms-animation-name:jburgerbite;
     -o-animation-name:jburgerbite;
        animation-name:jburgerbite;
/*animation-duration*/
-webkit-animation-duration:10s;
   -moz-animation-duration:10s;
    -ms-animation-duration:10s;
     -o-animation-duration:10s;
        animation-duration:10s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:16.4s;
   -moz-animation-delay:16.4s;
    -ms-animation-delay:16.4s;
     -o-animation-delay:16.4s;
        animation-delay:16.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


	
	
}






		
		
		
.jburgerbitelower {
	
	position:absolute;
	background:url(../img/pixelman/jburgerbite.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:5;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jburgerbitelower;
   -moz-animation-name:jburgerbitelower;
    -ms-animation-name:jburgerbitelower;
     -o-animation-name:jburgerbitelower;
        animation-name:jburgerbitelower;
/*animation-duration*/
-webkit-animation-duration:2s;
   -moz-animation-duration:2s;
    -ms-animation-duration:2s;
     -o-animation-duration:2s;
        animation-duration:2s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:18.2s;
   -moz-animation-delay:18.2s;
    -ms-animation-delay:18.2s;
     -o-animation-delay:18.2s;
        animation-delay:18.2s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


	
	
}





.jburger {
	
	position:absolute;
	background:url(../img/pixelman/jburger.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;


/*animation-name*/
-webkit-animation-name:jburger;
   -moz-animation-name:jburger;
    -ms-animation-name:jburger;
     -o-animation-name:jburger;
        animation-name:jburger;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:13.5s;
   -moz-animation-delay:13.5s;
    -ms-animation-delay:13.5s;
     -o-animation-delay:13.5s;
        animation-delay:13.5s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;




}


/*raise arm*/





.jbite {
	position:absolute;
	background:url(../img/pixelman/jbite.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jbite;
   -moz-animation-name:jbite;
    -ms-animation-name:jbite;
     -o-animation-name:jbite;
        animation-name:jbite;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:15s;
   -moz-animation-delay:15s;
    -ms-animation-delay:15s;
     -o-animation-delay:15s;
        animation-delay:15s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}







.jdowneyes {
	position:absolute;
	background:url(../img/pixelman/jdowneyes.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jbite;
   -moz-animation-name:jbite;
    -ms-animation-name:jbite;
     -o-animation-name:jbite;
        animation-name:jbite;
/*animation-duration*/
-webkit-animation-duration:25s;
   -moz-animation-duration:25s;
    -ms-animation-duration:25s;
     -o-animation-duration:25s;
        animation-duration:25s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:15.6s;
   -moz-animation-delay:15.6s;
    -ms-animation-delay:15.6s;
     -o-animation-delay:15.6s;
        animation-delay:15.6s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}


	




.jwideeyestalk {
	
	position:absolute;
	background:url(../img/pixelman/jwideeyeseat.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jwideeyestalk;
   -moz-animation-name:jwideeyestalk;
    -ms-animation-name:jwideeyestalk;
     -o-animation-name:jwideeyestalk;
        animation-name:jwideeyestalk;
/*animation-duration*/
-webkit-animation-duration:.38s;
   -moz-animation-duration:.38s;
    -ms-animation-duration:.38s;
     -o-animation-duration:.38s;
        animation-duration:.38s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:7;
   -moz-animation-iteration-count:7;
    -ms-animation-iteration-count:7;
     -o-animation-iteration-count:7;
        animation-iteration-count:7;
/*animation-delay*/
-webkit-animation-delay:21s;
   -moz-animation-delay:21s;
    -ms-animation-delay:21s;
     -o-animation-delay:21s;
        animation-delay:21s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}


	





.jwideeyes {
	
	position:absolute;
	background:url(../img/pixelman/jwideeyes.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:3;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jwideeyes;
   -moz-animation-name:jwideeyes;
    -ms-animation-name:jwideeyes;
     -o-animation-name:jwideeyes;
        animation-name:jwideeyes;
/*animation-duration*/
-webkit-animation-duration:10s;
   -moz-animation-duration:10s;
    -ms-animation-duration:10s;
     -o-animation-duration:10s;
        animation-duration:10s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:15.6s;
   -moz-animation-delay:15.6s;
    -ms-animation-delay:15.6s;
     -o-animation-delay:15.6s;
        animation-delay:15.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}


	




.jblinkbitetwo {
	position:absolute;
	background:url(../img/pixelman/jblink.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jblinkbitetwo;
   -moz-animation-name:jblinkbitetwo;
    -ms-animation-name:jblinkbitetwo;
     -o-animation-name:jblinkbitetwo;
        animation-name:jblinkbitetwo;
/*animation-duration*/
-webkit-animation-duration:1s;
   -moz-animation-duration:1s;
    -ms-animation-duration:1s;
     -o-animation-duration:1s;
        animation-duration:1s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:2;
   -moz-animation-iteration-count:2;
    -ms-animation-iteration-count:2;
     -o-animation-iteration-count:2;
        animation-iteration-count:2;
/*animation-delay*/
-webkit-animation-delay:19.0s;
   -moz-animation-delay:19.0s;
    -ms-animation-delay:19.0s;
     -o-animation-delay:19.0s;
        animation-delay:19.0s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}




.jblinkinfinite {
	position:absolute;
	background:url(../img/pixelman/jblink.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jblinkinfinite;
   -moz-animation-name:jblinkinfinite;
    -ms-animation-name:jblinkinfinite;
     -o-animation-name:jblinkinfinite;
        animation-name:jblinkinfinite;
/*animation-duration*/
-webkit-animation-duration:7s;
   -moz-animation-duration:7s;
    -ms-animation-duration:7s;
     -o-animation-duration:7s;
        animation-duration:7s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:infinite;
   -moz-animation-iteration-count:infinite;
    -ms-animation-iteration-count:infinite;
     -o-animation-iteration-count:infinite;
        animation-iteration-count:infinite;
/*animation-delay*/
-webkit-animation-delay:18.75s;
   -moz-animation-delay:18.75s;
    -ms-animation-delay:18.75s;
     -o-animation-delay:18.75s;
        animation-delay:18.75s;
-webkit-animation-fill-mode:forward;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}





.firstbite {
	position:absolute;
	background:url(../img/pixelman/jlookdowneat.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:firstbite;
   -moz-animation-name:firstbite;
    -ms-animation-name:firstbite;
     -o-animation-name:firstbite;
        animation-name:firstbite;
/*animation-duration*/
-webkit-animation-duration:3.32s;
   -moz-animation-duration:3.32s;
    -ms-animation-duration:3.32s;
     -o-animation-duration:3.32s;
        animation-duration:3.32s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:13.5s;
   -moz-animation-delay:13.5s;
    -ms-animation-delay:13.5s;
     -o-animation-delay:13.5s;
        animation-delay:13.5s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

/*.secondbite {
	position:absolute;
	background:url(../img/pixelman/jlookdowneat.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;
	
	-webkit-animation-name:secondbite;
	-webkit-animation-duration:.5s;
	-webkit-animation-timing-function:linear;
	-webkit-animation-iteration-count:1;
	-webkit-animation-delay:16.7s;
	-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards; ;
	-webkit-animation-direction:normal;
}*/





.jblink {
	position:absolute;
	background:url(../img/pixelman/jblink.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:;
	opacity:1;
	

/*animation-name*/
-webkit-animation-name:closeeyefadein;
   -moz-animation-name:closeeyefadein;
    -ms-animation-name:closeeyefadein;
     -o-animation-name:closeeyefadein;
        animation-name:closeeyefadein;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:1.85s;
   -moz-animation-delay:1.85s;
    -ms-animation-delay:1.85s;
     -o-animation-delay:1.85s;
        animation-delay:1.85s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


	
	


}

.jblinkbite {
	position:absolute;
	background:url(../img/pixelman/jblink.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:4;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:jblinkbite;
   -moz-animation-name:jblinkbite;
    -ms-animation-name:jblinkbite;
     -o-animation-name:jblinkbite;
        animation-name:jblinkbite;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:13.5s;
   -moz-animation-delay:13.5s;
    -ms-animation-delay:13.5s;
     -o-animation-delay:13.5s;
        animation-delay:13.5s;
-webkit-animation-fill-mode:forwards; -moz-animation-fill-mode:forwards;;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;



}




.jtalk1 {
	position:absolute;
	background:url(../img/pixelman/jtalk.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:2;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:talk1;
   -moz-animation-name:talk1;
    -ms-animation-name:talk1;
     -o-animation-name:talk1;
        animation-name:talk1;
/*animation-duration*/
-webkit-animation-duration:.38s;
   -moz-animation-duration:.38s;
    -ms-animation-duration:.38s;
     -o-animation-duration:.38s;
        animation-duration:.38s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:3;
   -moz-animation-iteration-count:3;
    -ms-animation-iteration-count:3;
     -o-animation-iteration-count:3;
        animation-iteration-count:3;
/*animation-delay*/
-webkit-animation-delay:5s;
   -moz-animation-delay:5s;
    -ms-animation-delay:5s;
     -o-animation-delay:5s;
        animation-delay:5s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.jtalk2 {
	position:absolute;
	background:url(../img/pixelman/jtalk.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:2;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:talk2;
   -moz-animation-name:talk2;
    -ms-animation-name:talk2;
     -o-animation-name:talk2;
        animation-name:talk2;
/*animation-duration*/
-webkit-animation-duration:.38s;
   -moz-animation-duration:.38s;
    -ms-animation-duration:.38s;
     -o-animation-duration:.38s;
        animation-duration:.38s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:3;
   -moz-animation-iteration-count:3;
    -ms-animation-iteration-count:3;
     -o-animation-iteration-count:3;
        animation-iteration-count:3;
/*animation-delay*/
-webkit-animation-delay:7s;
   -moz-animation-delay:7s;
    -ms-animation-delay:7s;
     -o-animation-delay:7s;
        animation-delay:7s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.jtalk3 {
	position:absolute;
	background:url(../img/pixelman/jtalk.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:2;
	opacity:0;

/*animation-name*/
-webkit-animation-name:talk3, burger;
   -moz-animation-name:talk3, burger;
    -ms-animation-name:talk3, burger;
     -o-animation-name:talk3, burger;
        animation-name:talk3, burger;
/*animation-duration*/
-webkit-animation-duration:.38s;
   -moz-animation-duration:.38s;
    -ms-animation-duration:.38s;
     -o-animation-duration:.38s;
        animation-duration:.38s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:3;
   -moz-animation-iteration-count:3;
    -ms-animation-iteration-count:3;
     -o-animation-iteration-count:3;
        animation-iteration-count:3;
/*animation-delay*/
-webkit-animation-delay:9s;
   -moz-animation-delay:9s;
    -ms-animation-delay:9s;
     -o-animation-delay:9s;
        animation-delay:9s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;



}

.jtalk4 {
	position:absolute;
	background:url(../img/pixelman/jtalk.svg)  no-repeat;
	width:390.45px;
	height:279.05px;
	left:0px;
	top:21px;
	z-index:2;
	opacity:0;
	

/*animation-name*/
-webkit-animation-name:burger;
   -moz-animation-name:burger;
    -ms-animation-name:burger;
     -o-animation-name:burger;
        animation-name:burger;
/*animation-duration*/
-webkit-animation-duration:.38s;
   -moz-animation-duration:.38s;
    -ms-animation-duration:.38s;
     -o-animation-duration:.38s;
        animation-duration:.38s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:3;
   -moz-animation-iteration-count:3;
    -ms-animation-iteration-count:3;
     -o-animation-iteration-count:3;
        animation-iteration-count:3;
/*animation-delay*/
-webkit-animation-delay:11s;
   -moz-animation-delay:11s;
    -ms-animation-delay:11s;
     -o-animation-delay:11s;
        animation-delay:11s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;

}

.jstandard {
	position:absolute;
	background:url(../img/pixelman/jstandard.svg)  no-repeat;
	width:100%;
	height:100%;
	left:0px;
	top:21px;
	opacity:1;
	z-index:1;
	

/*animation-name*/
-webkit-animation-name:jopeneye;
   -moz-animation-name:jopeneye;
    -ms-animation-name:jopeneye;
     -o-animation-name:jopeneye;
        animation-name:jopeneye;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:4.0s;
   -moz-animation-delay:4.0s;
    -ms-animation-delay:4.0s;
     -o-animation-delay:4.0s;
        animation-delay:4.0s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}




#pixelman li {
	margin-left:45px;
	list-style-type:none;
}



/*add .62s after mouths move... 1 second for scentences. .6 seconds for commas*/
.word2 {
	
	opacity:1;
	

/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:6s;
   -moz-animation-delay:6s;
    -ms-animation-delay:6s;
     -o-animation-delay:6s;
        animation-delay:6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.word3 {
	
	opacity:1;
	

/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:6.2s;
   -moz-animation-delay:6.2s;
    -ms-animation-delay:6.2s;
     -o-animation-delay:6.2s;
        animation-delay:6.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;


}

.word4{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:6.8s;
   -moz-animation-delay:6.8s;
    -ms-animation-delay:6.8s;
     -o-animation-delay:6.8s;
        animation-delay:6.8s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word5{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:7s;
   -moz-animation-delay:7s;
    -ms-animation-delay:7s;
     -o-animation-delay:7s;
        animation-delay:7s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word6{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:7.2s;
   -moz-animation-delay:7.2s;
    -ms-animation-delay:7.2s;
     -o-animation-delay:7.2s;
        animation-delay:7.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word7{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:7.4s;
   -moz-animation-delay:7.4s;
    -ms-animation-delay:7.4s;
     -o-animation-delay:7.4s;
        animation-delay:7.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word8{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:8.4s;
   -moz-animation-delay:8.4s;
    -ms-animation-delay:8.4s;
     -o-animation-delay:8.4s;
        animation-delay:8.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word9{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:8.6s;
   -moz-animation-delay:8.6s;
    -ms-animation-delay:8.6s;
     -o-animation-delay:8.6s;
        animation-delay:8.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word10{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:8.6s;
   -moz-animation-delay:8.6s;
    -ms-animation-delay:8.6s;
     -o-animation-delay:8.6s;
        animation-delay:8.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word11{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:9.2s;
   -moz-animation-delay:9.2s;
    -ms-animation-delay:9.2s;
     -o-animation-delay:9.2s;
        animation-delay:9.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word12{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:9.4s;
   -moz-animation-delay:9.4s;
    -ms-animation-delay:9.4s;
     -o-animation-delay:9.4s;
        animation-delay:9.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word13{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:9.6s;
   -moz-animation-delay:9.6s;
    -ms-animation-delay:9.6s;
     -o-animation-delay:9.6s;
        animation-delay:9.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word14{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:10.2s;
   -moz-animation-delay:10.2s;
    -ms-animation-delay:10.2s;
     -o-animation-delay:10.2s;
        animation-delay:10.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word15{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:10.4s;
   -moz-animation-delay:10.4s;
    -ms-animation-delay:10.4s;
     -o-animation-delay:10.4s;
        animation-delay:10.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word16{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:10.6s;
   -moz-animation-delay:10.6s;
    -ms-animation-delay:10.6s;
     -o-animation-delay:10.6s;
        animation-delay:10.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word17{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:11.6s;
   -moz-animation-delay:11.6s;
    -ms-animation-delay:11.6s;
     -o-animation-delay:11.6s;
        animation-delay:11.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
-moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word18{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:11.8s;
   -moz-animation-delay:11.8s;
    -ms-animation-delay:11.8s;
     -o-animation-delay:11.8s;
        animation-delay:11.8s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word19{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:12s;
   -moz-animation-delay:12s;
    -ms-animation-delay:12s;
     -o-animation-delay:12s;
        animation-delay:12s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word20{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:12.2s;
   -moz-animation-delay:12.2s;
    -ms-animation-delay:12.2s;
     -o-animation-delay:12.2s;
        animation-delay:12.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word21{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:12.4s;
   -moz-animation-delay:12.4s;
    -ms-animation-delay:12.4s;
     -o-animation-delay:12.4s;
        animation-delay:12.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word22{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:12.6s;
   -moz-animation-delay:12.6s;
    -ms-animation-delay:12.6s;
     -o-animation-delay:12.6s;
        animation-delay:12.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
/*paues*/

.word23{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:21.6s;
   -moz-animation-delay:21.6s;
    -ms-animation-delay:21.6s;
     -o-animation-delay:21.6s;
        animation-delay:21.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word24{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:21.8s;
   -moz-animation-delay:21.8s;
    -ms-animation-delay:21.8s;
     -o-animation-delay:21.8s;
        animation-delay:21.8s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word25{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:22s;
   -moz-animation-delay:22s;
    -ms-animation-delay:22s;
     -o-animation-delay:22s;
        animation-delay:22s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word26{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:22.2s;
   -moz-animation-delay:22.2s;
    -ms-animation-delay:22.2s;
     -o-animation-delay:22.2s;
        animation-delay:22.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word27{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:22.4s;
   -moz-animation-delay:22.4s;
    -ms-animation-delay:22.4s;
     -o-animation-delay:22.4s;
        animation-delay:22.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word28{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:22.6s;
   -moz-animation-delay:22.6s;
    -ms-animation-delay:22.6s;
     -o-animation-delay:22.6s;
        animation-delay:22.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word29{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:22.8s;
   -moz-animation-delay:22.8s;
    -ms-animation-delay:22.8s;
     -o-animation-delay:22.8s;
        animation-delay:22.8s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word30{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:23s;
   -moz-animation-delay:23s;
    -ms-animation-delay:23s;
     -o-animation-delay:23s;
        animation-delay:23s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word31{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:23.2s;
   -moz-animation-delay:23.2s;
    -ms-animation-delay:23.2s;
     -o-animation-delay:23.2s;
        animation-delay:23.2s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word32{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:23.4s;
   -moz-animation-delay:23.4s;
    -ms-animation-delay:23.4s;
     -o-animation-delay:23.4s;
        animation-delay:23.4s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}
.word33{
opacity:1;
/*animation-name*/
-webkit-animation-name:words;
   -moz-animation-name:words;
    -ms-animation-name:words;
     -o-animation-name:words;
        animation-name:words;
/*animation-duration*/
-webkit-animation-duration:5s;
   -moz-animation-duration:5s;
    -ms-animation-duration:5s;
     -o-animation-duration:5s;
        animation-duration:5s;
/*animation-timing-function*/
-webkit-animation-timing-function:linear;
   -moz-animation-timing-function:linear;
    -ms-animation-timing-function:linear;
     -o-animation-timing-function:linear;
        animation-timing-function:linear;
/*animation-iteration-count*/
-webkit-animation-iteration-count:1;
   -moz-animation-iteration-count:1;
    -ms-animation-iteration-count:1;
     -o-animation-iteration-count:1;
        animation-iteration-count:1;
/*animation-delay*/
-webkit-animation-delay:23.6s;
   -moz-animation-delay:23.6s;
    -ms-animation-delay:23.6s;
     -o-animation-delay:23.6s;
        animation-delay:23.6s;
-webkit-animation-fill-mode:both; -moz-animation-fill-mode:both;
/*animation-direction*/
-webkit-animation-direction:normal;
   -moz-animation-direction:normal;
    -ms-animation-direction:normal;
     -o-animation-direction:normal;
        animation-direction:normal;
}







.jtextboxtwo {
	position:absolute;
	top:190px;
	left:340px;
	max-width:800px;
	height:260px;
	right:3px;
}


.jtextboxone {
	position:absolute;
	top:25%;
	left:354px;
	max-width:700px;
	height:260px;
	right:50px;
	padding-bottom:30px;
	
	/*tablet
	left:328px;
	
	top:20%;
	*/
}


.jtext {
	
	font-family:'pixChicago';
	font-size:14px;
	color:#FFF;
	letter-spacing:1px;
	line-height:32px;
	-webkit-font-smoothing: none;
	
	/*tablet
	font-family:'pixChicago';
	font-size:12px;
	color:#FFF;
	letter-spacing:.25px;
	line-height:32px;*/
	
	
	/*text-shadow:#000 1px 1px;*/
}


/*FOR TABLET VERSION */

.jtextboxonetablet {
	display:none;
	position:absolute;
	max-width:700px;
	height:260px;
	right:50px;
	padding-bottom:30px;
	left:328px;
	top:20%;
}


.jtexttablet {
	display:none;
	-webkit-font-smoothing: none;
	font-family:'pixChicago';
	font-size:12px;
	color:#FFF;
	letter-spacing:.25px;
	line-height:32px;*/
}

















/*Animations*/





/*words*/
@-webkit-keyframes words {
		0%{-webkit-transform: translateX(0px); opacity:0;}
		1%{-webkit-transform: translateX(0px); opacity:0;}
		2%{-webkit-transform: translateX(0px); opacity:1;}
		}
		
@-moz-keyframes words {
		0%{-moz-transform: translateX(0px); opacity:0;}
		1%{-moz-transform: translateX(0px); opacity:0;}
		2%{-moz-transform: translateX(0px); opacity:1;}
		}
		
		


/*Jstandard fade iin*/

@-webkit-keyframes jopeneye {
		0%{-webkit-transform: translateX(0px); opacity:0;}
		1%{-webkit-transform: translateX(0px); opacity:0;}
		2%{-webkit-transform: translateX(0px); opacity:1;}
		}

@-moz-keyframes jopeneye {
		0%{-moz-transform: translateX(0px); opacity:0;}
		1%{-moz-transform: translateX(0px); opacity:0;}
		2%{-moz-transform: translateX(0px); opacity:1;}
		}

	@-webkit-keyframes closeeyefadein {
		0%{-webkit-transform: translateX(0px); opacity:0;}
		10%{-webkit-transform: translateX(0px); opacity:0;}
		11%{-webkit-transform: translateX(0px); opacity:.33;}
		20%{-webkit-transform: translateX(0px); opacity:.33;}
		21%{-webkit-transform: translateX(0px); opacity:.66;}
		30%{-webkit-transform: translateX(0px); opacity:.66;}
		31%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes closeeyefadein {
		0%{-moz-transform: translateX(0px); opacity:0;}
		10%{-moz-transform: translateX(0px); opacity:0;}
		11%{-moz-transform: translateX(0px); opacity:.33;}
		20%{-moz-transform: translateX(0px); opacity:.33;}
		21%{-moz-transform: translateX(0px); opacity:.66;}
		30%{-moz-transform: translateX(0px); opacity:.66;}
		31%{-moz-transform: translateX(0px); opacity:1;}
	}
	
/*fade in j title*/

	@-webkit-keyframes closeeyefadein2 {
		0%{-webkit-transform: translateX(0px); opacity:0;}
		10%{-webkit-transform: translateX(0px); opacity:0;}
		11%{-webkit-transform: translateX(0px); opacity:.33;}
		20%{-webkit-transform: translateX(0px); opacity:.33;}
		21%{-webkit-transform: translateX(0px); opacity:.66;}
		30%{-webkit-transform: translateX(0px); opacity:.66;}
		31%{-webkit-transform: translateX(0px); opacity:1;}
		99%{-webkit-transform: translateX(0px); opacity:1;}
		100%{-webkit-transform: translateX(0px); opacity:0;}
		
	}
	
	@-moz-keyframes closeeyefadein2 {
		0%{-moz-transform: translateX(0px); opacity:0;}
		10%{-moz-transform: translateX(0px); opacity:0;}
		11%{-moz-transform: translateX(0px); opacity:.33;}
		20%{-moz-transform: translateX(0px); opacity:.33;}
		21%{-moz-transform: translateX(0px); opacity:.66;}
		30%{-moz-transform: translateX(0px); opacity:.66;}
		31%{-moz-transform: translateX(0px); opacity:1;}
		99%{-moz-transform: translateX(0px); opacity:1;}
		100%{-moz-transform: translateX(0px); opacity:0;}
		
	}
	
	
	/*title on*/

	@-webkit-keyframes titleon {
		0%{-webkit-transform: translateX(0px); opacity:0;}
		10%{-webkit-transform: translateX(0px); opacity:1;}
		11%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		21%{-webkit-transform: translateX(0px); opacity:1;}
		30%{-webkit-transform: translateX(0px); opacity:1;}
		31%{-webkit-transform: translateX(0px); opacity:1;}
		99%{-webkit-transform: translateX(0px); opacity:1;}
		100%{-webkit-transform: translateX(0px); opacity:0;}
		
	}
	
	@-moz-keyframes titleon {
		0%{-moz-transform: translateX(0px); opacity:0;}
		10%{-moz-transform: translateX(0px); opacity:1;}
		11%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		21%{-moz-transform: translateX(0px); opacity:1;}
		30%{-moz-transform: translateX(0px); opacity:1;}
		31%{-moz-transform: translateX(0px); opacity:1;}
		99%{-moz-transform: translateX(0px); opacity:1;}
		100%{-moz-transform: translateX(0px); opacity:0;}
		
	}


/*STAR MAGIC ANIMATION*/
	
	@-webkit-keyframes star1 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		21%{-webkit-transform: translateX(0px); opacity:0;}
	}
	
	@-webkit-keyframes star2 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		21%{-webkit-transform: translateX(0px); opacity:0;}
	}
	
	@-webkit-keyframes star3 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-webkit-keyframes star4 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-webkit-keyframes star5 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-webkit-keyframes star6 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star1 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		21%{-moz-transform: translateX(0px); opacity:0;}
	}
	
	@-moz-keyframes star2 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		21%{-moz-transform: translateX(0px); opacity:0;}
	}
	
	@-moz-keyframes star3 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star4 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star5 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star6 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}



/*star - top right*/

	@-webkit-keyframes star1 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		21%{-webkit-transform: translateX(0px); opacity:0;}
	}
	
	@-webkit-keyframes star2 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		21%{-webkit-transform: translateX(0px); opacity:0;}
	}
	
	@-webkit-keyframes star3 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-webkit-keyframes star4 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-webkit-keyframes star5 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-webkit-keyframes star6 {
		0%{-webkit-transform: translateX(0px); opacity:1;}
		1%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
		20%{-webkit-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star1 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		21%{-moz-transform: translateX(0px); opacity:0;}
	}
	
	@-moz-keyframes star2 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		21%{-moz-transform: translateX(0px); opacity:0;}
	}
	
	@-moz-keyframes star3 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star4 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star5 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}
	
	@-moz-keyframes star6 {
		0%{-moz-transform: translateX(0px); opacity:1;}
		1%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
		20%{-moz-transform: translateX(0px); opacity:1;}
	}


/*talk animation*/
@-webkit-keyframes talk1 {
	51%{-webkit-transform: translateX(0px); opacity:0;}
	52%{-webkit-transform: translateX(0px); opacity:1;}
	88%{-webkit-transform: translateX(0px); opacity:1;}
}

@-webkit-keyframes talk2 {
	51%{-webkit-transform: translateX(0px);opacity:0;}
	52%{-webkit-transform: translateX(0px);opacity:1;}
	88%{-webkit-transform: translateX(0px);opacity:1;}
}

@-webkit-keyframes talk3 {
	51%{-webkit-transform: translateX(0px);opacity:0;}
	52%{-webkit-transform: translateX(0px);opacity:1;}
	88%{-webkit-transform: translateX(0px);opacity:1;}
}

@-webkit-keyframes burger {
	51%{-webkit-transform: translateX(0px); opacity:0;}
	52%{-webkit-transform: translateX(0px); opacity:1;}
	88%{-webkit-transform: translateX(0px); opacity:1;}
}

@-moz-keyframes talk1 {
	51%{-moz-transform: translateX(0px); opacity:0;}
	52%{-moz-transform: translateX(0px); opacity:1;}
	88%{-moz-transform: translateX(0px); opacity:1;}
}

@-moz-keyframes talk2 {
	51%{-moz-transform: translateX(0px);opacity:0;}
	52%{-moz-transform: translateX(0px);opacity:1;}
	88%{-moz-transform: translateX(0px);opacity:1;}
}

@-moz-keyframes talk3 {
	51%{-moz-transform: translateX(0px);opacity:0;}
	52%{-moz-transform: translateX(0px);opacity:1;}
	88%{-moz-transform: translateX(0px);opacity:1;}
}

@-moz-keyframes burger {
	51%{-moz-transform: translateX(0px); opacity:0;}
	52%{-moz-transform: translateX(0px); opacity:1;}
	88%{-moz-transform: translateX(0px); opacity:1;}
}




/* shake color*/

@-webkit-keyframes shakecolor {
		0%{-webkit-transform: translateY(0px); opacity:1;}
		1%{-webkit-transform: translateY(0px); background:#bf513e;}
		14%{-webkit-transform: translateY(0px); background:#bf513e;}
		15%{-webkit-transform: translateY(0px); background:#e8744d;}
		100%{-webkit-transform: translateY(0px); opacity:1;}
		
		
		}
		
		
		@-webkit-keyframes shake {
		0%{-webkit-transform: translateY(13px); opacity:1;}
		1%{-webkit-transform: translateY(13px);}
		14%{-webkit-transform: translateY(13px);}
		15%{-webkit-transform: translateY(13px);}
		100%{-webkit-transform: translateY(0px); opacity:1;}
		
		
		}
		
		@-moz-keyframes shakecolor {
		0%{-moz-transform: translateY(0px); opacity:1;}
		1%{-moz-transform: translateY(0px); background:#bf513e;}
		14%{-moz-transform: translateY(0px); background:#bf513e;}
		15%{-moz-transform: translateY(0px); background:#e8744d;}
		100%{-moz-transform: translateY(0px); opacity:1;}
		
		
		}
		
		
		@-moz-keyframes shake {
		0%{-moz-transform: translateY(13px); opacity:1;}
		1%{-moz-transform: translateY(13px);}
		14%{-moz-transform: translateY(13px);}
		15%{-moz-transform: translateY(13px);}
		100%{-moz-transform: translateY(0px); opacity:1;}
		
		
		}
		
		/*burger bite*/

@-webkit-keyframes jburgerbite {
		0%{-webkit-transform: translateY(0px); opacity:0;}
		1%{-webkit-transform: translateY(0px); opacity:1;}
		2%{-webkit-transform: translateY(0px); opacity:1;}
		18.75%{-webkit-transform: translateY(0px); opacity:1;}
		18.76%{-webkit-transform: translateY(0px); opacity:0;}
		100%{-webkit-transform: translateY(0px); opacity:0;}
		}
		
		@-moz-keyframes jburgerbite {
		0%{-moz-transform: translateY(0px); opacity:0;}
		1%{-moz-transform: translateY(0px); opacity:1;}
		2%{-moz-transform: translateY(0px); opacity:1;}
		18.75%{-moz-transform: translateY(0px); opacity:1;}
		18.76%{-moz-transform: translateY(0px); opacity:0;}
		100%{-moz-transform: translateY(0px); opacity:0;}
		}
		
		
		
		
		/*burger bite lower arm*/

@-webkit-keyframes jburgerbitelower {
		0%{-webkit-transform: translateY(0px); opacity:1;}
		100%{-webkit-transform: translateY(23px); opacity:1;}
		
		}
		
		@-moz-keyframes jburgerbitelower {
		0%{-moz-transform: translateY(0px); opacity:1;}
		100%{-moz-transform: translateY(23px); opacity:1;}
		
		}
		
		
		@-webkit-keyframes jburger {
		0%{-webkit-transform: translateY(120px); opacity:1;}
		50%{-webkit-transform: translateY(0px); opacity:1;}
		59.75%{-webkit-transform: translateY(0px); opacity:1;}
		59.76%{-webkit-transform: translateY(0px); opacity:0;}
		}
		
		@-moz-keyframes jburgerbitelower {
		0%{-moz-transform: translateY(0px); opacity:1;}
		100%{-moz-transform: translateY(23px); opacity:1;}
		
		}
		
		
		@-moz-keyframes jburger {
		0%{-moz-transform: translateY(120px); opacity:1;}
		50%{-moz-transform: translateY(0px); opacity:1;}
		59.75%{-moz-transform: translateY(0px); opacity:1;}
		59.76%{-moz-transform: translateY(0px); opacity:0;}
		}
		
		
		
/*bite mouth*/

@-webkit-keyframes jbite {
		0%{-webkit-transform: translateY(0px); opacity:0;}
		1%{-webkit-transform: translateY(0px); opacity:0;}
		2%{-webkit-transform: translateY(0px); opacity:1;}
		25%{-webkit-transform: translateY(0px); opacity:1;}
		26%{-webkit-transform: translateY(0px); opacity:0;}
		
		
		}
		
		@-moz-keyframes jbite {
		0%{-moz-transform: translateY(0px); opacity:0;}
		1%{-moz-transform: translateY(0px); opacity:0;}
		2%{-moz-transform: translateY(0px); opacity:1;}
		25%{-moz-transform: translateY(0px); opacity:1;}
		26%{-moz-transform: translateY(0px); opacity:0;}
		
		
		}
		
		
		/*look down*/

@-webkit-keyframes jdowneyes {
		0%{-webkit-transform: translateY(0px); opacity:0;}
		1%{-webkit-transform: translateY(0px); opacity:1;}
		99.99%{-webkit-transform: translateY(0px); opacity:1;}
		100%{-webkit-transform: translateY(0px); opacity:0;}
		
		
		}
		
		@-moz-keyframes jdowneyes {
		0%{-moz-transform: translateY(0px); opacity:0;}
		1%{-moz-transform: translateY(0px); opacity:1;}
		99.99%{-moz-transform: translateY(0px); opacity:1;}
		100%{-moz-transform: translateY(0px); opacity:0;}
		
		
		}

		
		
		/*open eyes wide and talk*/

@-webkit-keyframes jwideeyestalk {
	51%{-webkit-transform: translateX(0px); opacity:0;}
	52%{-webkit-transform: translateX(0px); opacity:1;}
	99.99%{-webkit-transform: translateX(0px); opacity:1;}
}
		
		@-moz-keyframes jwideeyestalk {
	51%{-moz-transform: translateX(0px); opacity:0;}
	52%{-moz-transform: translateX(0px); opacity:1;}
	99.99%{-moz-transform: translateX(0px); opacity:1;}
}
		
		/*open eyes wide*/

@-webkit-keyframes jwideeyes {
		0%{-webkit-transform: translateY(0px); opacity:0;}
		1%{-webkit-transform: translateY(0px); opacity:1;}
		
		99.9%{-webkit-transform: translateY(0px); opacity:1;}
		100%{-webkit-transform: translateY(0px); opacity:0;}
		
		
		}
		
		@-moz-keyframes jwideeyes {
		0%{-moz-transform: translateY(0px); opacity:0;}
		1%{-moz-transform: translateY(0px); opacity:1;}
		
		99.9%{-moz-transform: translateY(0px); opacity:1;}
		100%{-moz-transform: translateY(0px); opacity:0;}
		
		
		}



@-webkit-keyframes jblinkbitetwo {
		
		0%{-webkit-transform: translateY(0px); opacity:1;}
		30%{-webkit-transform: translateY(0px); opacity:1;}
		31%{-webkit-transform: translateY(0px); opacity:0;}
		
		
}

@-moz-keyframes jblinkbitetwo {
		
		0%{-moz-transform: translateY(0px); opacity:1;}
		30%{-moz-transform: translateY(0px); opacity:1;}
		31%{-moz-transform: translateY(0px); opacity:0;}
		
		
}


@-webkit-keyframes jblinkinfinite {
		
		0%{-webkit-transform: translateY(0px); opacity:0;}
		95.9%{-webkit-transform: translateY(0px); opacity:0;}
		96%{-webkit-transform: translateY(0px); opacity:1;}
		97%{-webkit-transform: translateY(0px); opacity:1;}
		100%{-webkit-transform: translateY(0px); opacity:1;}
		
		
		
}

@-moz-keyframes jblinkinfinite {
		
		0%{-moz-transform: translateY(0px); opacity:0;}
		95.9%{-moz-transform: translateY(0px); opacity:0;}
		96%{-moz-transform: translateY(0px); opacity:1;}
		97%{-moz-transform: translateY(0px); opacity:1;}
		100%{-moz-transform: translateY(0px); opacity:1;}
		
		
		
}

@-webkit-keyframes firstbite {
		
		0%{-webkit-transform: translateY(0px); opacity:1;}
		
		7%{-webkit-transform: translateY(0px); opacity:1;}
		89%{-webkit-transform: translateY(0px); opacity:1;}
		89.25%{-webkit-transform: translateY(0px); opacity:0;}
		
		
}

@-moz-keyframes firstbite {
		
		0%{-moz-transform: translateY(0px); opacity:1;}
		
		7%{-moz-transform: translateY(0px); opacity:1;}
		89%{-moz-transform: translateY(0px); opacity:1;}
		89.25%{-moz-transform: translateY(0px); opacity:0;}
		
		
}

@-webkit-keyframes secondbite {
		
		0%{-webkit-transform: translateY(0px); opacity:1;}
		99%{-webkit-transform: translateY(0px); opacity:1;}
		100%{-webkit-transform: translateY(0px); opacity:0;}
		
		
}

@-moz-keyframes secondbite {
		
		0%{-moz-transform: translateY(0px); opacity:1;}
		99%{-moz-transform: translateY(0px); opacity:1;}
		100%{-moz-transform: translateY(0px); opacity:0;}
		
		
}



@-webkit-keyframes jblinkbite {
		
		0%{-webkit-transform: translateY(0px); opacity:1;}
		
		7%{-webkit-transform: translateY(0px); opacity:1;}
		7.25%{-webkit-transform: translateY(0px); opacity:0;}
		
		
}


@-moz-keyframes jblinkbite {
		
		0%{-moz-transform: translateY(0px); opacity:1;}
		
		7%{-moz-transform: translateY(0px); opacity:1;}
		7.25%{-moz-transform: translateY(0px); opacity:0;}
		
		
}


/*words*/
@-webkit-keyframes words {
		0%{-webkit-transform: translateX(0px); opacity:0;}
		1%{-webkit-transform: translateX(0px); opacity:0;}
		2%{-webkit-transform: translateX(0px); opacity:1;}
		}
		
		@-moz-keyframes words {
		0%{-moz-transform: translateX(0px); opacity:0;}
		1%{-moz-transform: translateX(0px); opacity:0;}
		2%{-moz-transform: translateX(0px); opacity:1;}
		}
		
		@keyframes type{
    from { width: 0; }
}

@-webkit-keyframes type{
    from { width: 0; }
}

		







/*notes*/

/* animation syntax shorthand order: name duration timing-function delay iteration-count direction fill-mode 
	*animate using steps and large image sprite sequences (may not be the best solution because it will be the same amount of work in CSS)
	1. make a class for each sprite element
	2. create animation time line for each
	3. create specific animation syntax for each... animation delay, opacity, and infinate loop for sprites  will be essentail
	4. review creating multiple animations for one element.
	
	*/








































/* #Clearing */

/* Self Clearing Goodness */
.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden;}

.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }
.row:after,
.clearfix:after {
  clear: both; }
.row,
.clearfix {
  zoom: 1; }

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
























