﻿/**
 *  gobal全局样式
 * ----------------------
 *  时间：2014-03-21
 *  准则：NEC
 *********************************************************************************************/
@charset "utf-8";
/* =reset 网页样式重置
------------------------------------------------------------------------------------------------------------------------------*/
html { font-size:1em;-webkit-tap-highlight-color:rgba(0,0,0,0); -webkit-tap-highlight:rgba(0,0,0,0);-webkit-text-size-adjust:none;overflow:-moz-scrollbars-vertical;/*强制firefox出现滑动条*/}
body { font-size:0.75em;background:#333;}
label { cursor:pointer;}
a:link, a:visited { text-decoration:none;}
input:focus { outline: none; }
input,button,select,textarea{outline:none;/*-webkit-appearance:none;*//*强制去除表单自带的样式*/ }
textarea{resize:none;/*-webkit-appearance:none;*//*强制去除textarea自带的样式*/ }

input:-webkit-autofill { -webkit-box-shadow: 0 0 0px 1000px white inset; } /*利用阴影来填充掉input自动填充色*/

textarea,input,select { background: none; border:none; margin: 0; padding: 0; }

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav, menu, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, tdvideo, tt,
u, ul, var { margin:0; padding:0;}

article, aside, footer, header, hgroup, nav, section, figure, figcaption { display: block;} /*html5设置*/

h1, h2, h3, h4, h5, h6, th, td, table, input, button, select, textarea, sub{ font-size:1em;}
body, input, button, select, textarea, sub{ font-family:Arial, sans-serif;}
em, cite, address, optgroup { font-style:normal;}
kbd, samp, code { font-family:monospace;}

img, input, button, select, textarea { vertical-align:middle;outline:none;}
ul, ol { list-style:none;}
img, fieldset { border:0;}
abbr, acronym { cursor:help; border-bottom:1px dotted black;}
table {	width:100%; border-spacing:0; border:0;}
table th, table td { border:0;}
legend, hr { overflow:hidden; position:absolute; top:0; left:0;}
legend, hr, caption { visibility:hidden; font-size:0; width:0; height:0; line-height:0;}

/**
 * = global 统一样式
 *******************************************************************************************************/
/* 改变动画的效果方式*/
* {
  -webkit-transition-timing-function: ease-in-out;
     -moz-transition-timing-function: ease-in-out;
      -ms-transition-timing-function: ease-in-out;
       -o-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
html {height: 100%;}
body { position: relative; font-family:"微软雅黑"; width: 640px; max-width: 640px; min-width: 640px; height: 100%; margin: 0 auto; }
body h1,body h2,body h3,body h4,body h5,body h6,body strong,body em {font-weight:normal; } /*微软雅体 将原有的bold属性去掉*/

textarea:focus,input:focus { border: 1px solid #71b643; }

/*sprite图片合并*/
.css_sprite01 { background-image:url(../images/css_sprite01.png)!important;  background-repeat: no-repeat!important; } 

/**
 * = function 功能样式
 *******************************************************************************************************/
.f-ofh {overflow: hidden; height: 101%!important;} 		/*隐藏内容-overflow-hidden*/
.f-hide { display: none!important; } 						/*隐藏内容*/

.f-tc { text-align: center; }
.f-tr { text-align: right; }
.f-fl { float: left; }
.f-fr { float: right; }
.f-fixed { position: fixed; }
.f-cur { cursor: pointer; }

/*bg-background*/
.s-bg-ddd { background: #ddd; }

/**
 * = unit 统一元件样式
 *******************************************************************************************************/
/**
 * 模版提示的样式以及动画
 * -u-alert
 */
@-webkit-keyframes start {
	0%,30% {
	opacity:0;
	-webkit-transform:translate(0,100px)
}
60% {
	opacity:1;
	-webkit-transform:translate(0,0)
}
100% {
	opacity:0;

	-webkit-transform:translate(0,-8px)
}
}@-moz-keyframes start {
	0%,30% {
	opacity:0;
	-moz-transform:translate(0,10px)
}
60% {
	opacity:1;
	-moz-transform:translate(0,0)
}
100% {
	opacity:0;
	-moz-transform:translate(0,-8px)
}
}@keyframes start {
	0%,30% {
	opacity:0;
	transform:translate(0,10px)
}
60% {
	opacity:1;
	transform:translate(0,0)
}
100% {
	opacity:0;
	transform:translate(0,-8px)
}
}@-webkit-keyframes rotateplane {
	0% {
	-webkit-transform:perspective(120px)
}
50% {
	-webkit-transform:perspective(120px) rotateY(180deg)
}
100% {
	-webkit-transform:perspective(120px) rotateY(180deg) rotateX(180deg)
}
}@keyframes rotateplane {
	0% {
	transform:perspective(120px) rotateX(0deg) rotateY(0deg);
	-webkit-transform:perspective(120px) rotateX(0deg) rotateY(0deg)
}
50% {
	transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	-webkit-transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)
}
100% {
	transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	-webkit-transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
}
}
.u-alert { position: fixed; top: 50%; left: 50%; z-index: -3; width: 150px; height: 150px; margin: -75px 0 0 -75px; }
.alert-loading { position: absolute; top: 28px; left: 28px; z-index: -2; width: 94px; height: 85px; }
.loading-animate{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	width:60px;
	height:60px;
	background-color:#f60;
	-webkit-animation:rotateplane 1.2s infinite ease-in-out;animation:rotateplane 1.2s infinite ease-in-out
}
.alert-loading .cycleWrap,
.alert-loading .lineWrap { position: absolute; width: 94px; height: 85px; }
.alert-loading .cycle,
.alert-loading .line { display: block; position: absolute; background: #6eae44; }
.alert-loading .cycle { z-index: 10; width: 18px; height: 18px; border-radius:50%; 
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
}
.alert-loading .cycle-1 { right: 0; bottom: 0; }
.alert-loading .cycle-2 { left: 0; bottom: 0; }
.alert-loading .cycle-3 { left: 50%; top: 0; margin-left: -9px; }
.alert-loading .cycle-4 { right: 18px; top: 50%; margin-top: -8px; }
.alert-loading .line { z-index: 9; height: 5px; border-radius: 3px; }
.alert-loading .line-1 { right: 9px; bottom: 6px; width:78px; 
	-webkit-transform: scale(0,1);
	-moz-transform: scale(0,1);
	transform: scale(0,1);

	-webkit-transform-origin: 0;
	-moz-transform-origin: 0;
	transform-origin: 0;
}
.alert-loading .line-2 { left: 8px; bottom: 4px; width: 80px; 
	-webkit-transform:rotate(-60deg) scale(0,1);
	-moz-transform:rotate(-60deg) scale(0,1);
	transform:rotate(-60deg) scale(0,1);

	-webkit-transform-origin: 0;
	-moz-transform-origin: 0;
	transform-origin: 0;
}
.alert-loading .line-3 { left: 47px; top: 7px; width: 40px;
	-webkit-transform:rotate(60deg) scale(0,1);
	-moz-transform:rotate(60deg) scale(0,1);
	transform:rotate(60deg) scale(0,1);

	-webkit-transform-origin: 0;
	-moz-transform-origin: 0;
	transform-origin: 0;
}
/*动画*/
.alert-loading.z-move .cycle-1 {
	-webkit-animation: cycleChange 3s infinite ease-in-out;
	moz-animation: cycleChange 3s infinite ease-in-out;
	animation: cycleChange 3s infinite ease-in-out;
}
.alert-loading.z-move .cycle-2 {
	-webkit-animation: cycleChange 3s .525s infinite ease-in-out;
	moz-animation: cycleChange 3s .525s infinite ease-in-out;
	animation: cycleChange 3s .525s infinite ease-in-out;
}
.alert-loading.z-move .cycle-3 {
	-webkit-animation: cycleChange 3s 1.05s infinite ease-in-out;
	moz-animation: cycleChange 3s 1.05s infinite ease-in-out;
	animation: cycleChange 3s 1.05s infinite ease-in-out;
}
.alert-loading.z-move .cycle-4 {
	-webkit-animation: cycleChange 3s 1.575s infinite ease-in-out;
	moz-animation: cycleChange 3s 1.575s infinite ease-in-out;
	animation: cycleChange 3s 1.575s infinite ease-in-out;
}
.alert-loading.z-move .line-1 {
	-webkit-animation: lineChange01 3s infinite ease-in-out;
	moz-animation: lineChange01 3s infinite ease-in-out;
	animation: lineChange01 3s infinite ease-in-out;
}
.alert-loading.z-move .line-2 {
	-webkit-animation: lineChange02 3s .525s infinite ease-in-out;
	moz-animation: lineChange02 3s .525s infinite ease-in-out;
	animation: lineChange02 3s .525s infinite ease-in-out;
}
.alert-loading.z-move .line-3 {
	-webkit-animation: lineChange03 3s 1.05s infinite ease-in-out;
	moz-animation: lineChange03 3s 1.05s infinite ease-in-out;
	animation: lineChange03 3s 1.05s infinite ease-in-out;
}

/*动画代码处理*/
/*cycle*/
@-webkit-keyframes cycleChange {
	0% , 24% , 100% { -webkit-transform: scale(0.0); }
	9% { -webkit-transform: scale(1.2); }
}
@-moz-keyframes cycleChange {
	0% ,24% , 100% { -moz-transform: scale(0.0); }
	9% { -moz-transform: scale(1.2); }
}
@keyframes cycleChange {
	0% ,24% , 100% { transform: scale(0.0); }
	9% { transform: scale(1.2); }
}

/*line*/
@-webkit-keyframes lineChange01 {
	0% { -webkit-transform: translate(76px,0) scale(0,1); }
	18.75% { -webkit-transform: translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: translate(0,0) scale(0,1); }
}
@-moz-keyframes lineChange01 {
	0% { -webkit-transform: translate(76px,0) scale(0,1); }
	18.75% { -webkit-transform: translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: translate(,0) scale(0,1); }
}
@keyframes lineChange01 {
	0% { -webkit-transform: translate(76px,0) scale(0,1) scale(0,1); }
	18.75% { -webkit-transform: translate(0,0) scale(1,1) scale(1,1); }
	37.5% ,100% { -webkit-transform: translate(0,0) scale(0,1) scale(0,1); }
}

@-webkit-keyframes lineChange02 {
	0% { -webkit-transform: rotate(-60deg) translate(0,0) scale(0,1); }
	18.75% { -webkit-transform: rotate(-60deg) translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: rotate(-60deg) translate(78px,0) scale(0,1); }
}
@-moz-keyframes lineChange02 {
	0% { w-webkit-transform: rotate(-60deg) translate(0,0) scale(0,1); }
	18.75% { -webkit-transform: rotate(-60deg) translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: rotate(-60deg) translate(78px,0) scale(0,1); }
}
@keyframes lineChange02 {
	0% { -webkit-transform: rotate(-60deg) translate(0,0) scale(0,1); }
	18.75% { -webkit-transform: rotate(-60deg) translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: rotate(-60deg) translate(78px,0) scale(0,1); }
}

@-webkit-keyframes lineChange03 {
	0% { -webkit-transform: rotate(60deg) translate(0,0) scale(0,1); }
	18.75% { -webkit-transform: rotate(60deg) translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: rotate(60deg) translate(40px,0) scale(0,1); }
}
@-moz-keyframes lineChange03 {
	0% { -webkit-transform: rotate(60deg) translate(0,0) scale(0,1); }
	18.75% { -webkit-transform: rotate(60deg) translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: rotate(60deg) translate(40px,0) scale(0,1); }
}
@keyframes lineChange03 {
	0% { -webkit-transform: rotate(60deg) translate(0,0) scale(0,1); }
	18.75% { -webkit-transform: rotate(60deg) translate(0,0) scale(1,1); }
	37.5% ,100% { -webkit-transform: rotate(60deg) translate(40px,0) scale(0,1); }
}


/**
 * 箭头指示元件
 * -u-arrow
 */
.u-arrow { position: fixed;display:none; bottom: 20%; left:50%; z-index: 150; width: 80px; height: 80px; margin-left: -40px; /*background: rgba(160,160,160,0.6); border-radius: 50%;*/ }
.u-arrow p { position: absolute; top: 50%; left: 50%; margin: -14px 0 0 -25px; width: 50px; height: 28px; background-position: 0 -82px;
	-webkit-animation: start 1.5s infinite ease-in-out;
	   -moz-animation: start 1.5s infinite ease-in-out;
	        animation: start 1.5s infinite ease-in-out;
}

/**
 * 声音元件
 * -u-audio
 */
.u-audio { position: absolute; top: 40px; right: 0; width: 132px; height: 73px; z-index: 200; }
.u-audio .res_audio { position: absolute; top: 0; left: 0; opacity: 0; height: 0; width: 0; }
.u-audio .btn_audio { width: 100%; padding-top: 29px; height: 44px; }
.u-audio .btn_audio strong,
.u-audio .btn_audio .audio_open { display: inline-block; height: 44px; line-height: 44px; vertical-align: middle; }
.u-audio .btn_audio strong { width: 57px; font-size: 24px; color: #fff; opacity: 1; }
.u-audio .btn_audio .audio_open { position: absolute; bottom: 0; left: 56px; width: 44px; }
.u-audio .btn_audio strong.z-hide { opacity: 0; }
.u-audio .btn_audio strong.z-move { 
	-webkit-transition:opacity 0.5s;
  	   -moz-transition:opacity 0.5s;
	    -ms-transition:opacity 0.5s;
	     -o-transition:opacity 0.5s;
	        transition:opacity 0.5s;
}
.u-audio.z-low { z-index: 1; }
/**
 * loading
 * -u-pageLoading
 */
.u-pageLoading { display:none; position:fixed; top:0; left:0; z-index:99999; height:100%; width:100%; background:rgba(0,0,0,0.6); }
.u-pageLoading img { position:absolute; top:40%; left:50%; height:100px; width:100px; margin:-50px 0 0 -50px; }

/**
 * 提示小纸条
 * -u-note
 */
.u-note { position: fixed; left: 120px; top:50%; margin-top:-40px;  width: 400px; padding: 15px 0; text-align: center; font-size: 26px; border-radius: 8px; 
	 opacity: 0;
	 z-index: -1;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.u-note-error { background: #f48813; }
.u-note-sucess { background: #55e224; }
.u-note.on { opacity: 1; z-index: 99; }

/**
 * = Layout 布局样式
 *******************************************************************************************************/
.p-ct { position: relative; width: 640px; height: 100%; overflow: hidden; }
.p-ct.fixed { overflow: hidden; }

.translate-front { position: fixed; top: 0; left: 0; z-index: 100; height: 100%; width: 100%; opacity: 0; 
	-webkit-transition: opacity 1s;
	   -moz-transition: opacity 1s;
	    -ms-transition: opacity 1s;
	     -o-transition: opacity 1s;
	        transition: opacity 1s;
}
.translate-front .mengban-warn { position: absolute; }
.translate-front.z-show { opacity: 1; }

.translate-back { position: relative; width: 100%; height: 100%; }

/**
 * = modle 模块样式
 *******************************************************************************************************/
/**
 * 单页面page模块
 * -m-page
 */
.m-page { position: fixed; top:0; left: 0; width:100%; z-index: 9; background: #ddd; }
.m-page .page-con { position: relative; width: 100%; height: 100%; overflow: hidden; }
.m-page.active { z-index:40; }
.m-page.fixed { position: fixed; }
.m-page.move {
	-webkit-transition:all 0.3s;
  	   -moz-transition:all 0.3s;
	    -ms-transition:all 0.3s;
	     -o-transition:all 0.3s;
	        transition:all 0.3s;
}




.z-animate .book-bd .bd-tit { opacity: 1;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
}




.gettime1{
	-webkit-transition:all 0.5s;
  	   -moz-transition:all 0.5s;
	    -ms-transition:all 0.5s;
	     -o-transition:all 0.5s;
	        transition:all 0.5s;
}
.gettime2{
	-webkit-transition:all 0.7s ease 0.4s;
  	   -moz-transition:all 0.7s ease 0.4s;
	    -ms-transition:all 0.7s ease 0.4s;
	     -o-transition:all 0.7s ease 0.4s;
	        transition:all 0.7s ease 0.4s;
}
.gettime3{
	-webkit-transition:all 0.8s ease 0.5s;
  	   -moz-transition:all 0.8s ease 0.5s;
	    -ms-transition:all 0.8s ease 0.5s;
	     -o-transition:all 0.8s ease 0.5s;
	        transition:all 0.8s ease 0.5s;
}
.gettime4{
	-webkit-transition:all 0.9s ease 0.6s;
  	   -moz-transition:all 0.9s ease 0.6s;
	    -ms-transition:all 0.9s ease 0.6s;
	     -o-transition:all 0.9s ease 0.6s;
	        transition:all 0.9s ease 0.6s;
}
.gettime5{
	-webkit-transition:all 1.0s ease 0.7s;
  	   -moz-transition:all 1.0s ease 0.7s;
	    -ms-transition:all 1.0s ease 0.7s;
	     -o-transition:all 1.0s ease 0.7s;
	        transition:all 1.0s ease 0.7s;
}
.gettime6{
	-webkit-transition:all 1.2s ease 0.8s;
  	   -moz-transition:all 1.2s ease 0.8s;
	    -ms-transition:all 1.2s ease 0.8s;
	     -o-transition:all 1.2s ease 0.8s;
	        transition:all 1.2s ease 0.8s;
}
.gettime7{
	-webkit-transition:all 1.4s ease 0.9s;
  	   -moz-transition:all 1.4s ease 0.9s;
	    -ms-transition:all 1.4s ease 0.9s;
	     -o-transition:all 1.4s ease 0.9s;
	        transition:all 1.4s ease 0.9s;
}
.gettime8{
	-webkit-transition:all 1.6s ease 1.0s;
  	   -moz-transition:all 1.6s ease 1.0s;
	    -ms-transition:all 1.6s ease 1.0s;
	     -o-transition:all 1.6s ease 1.0s;
	        transition:all 1.6s ease 1.0s;
}
.flashtit1{opacity:0;
	-webkit-transform: translate(0px,-50px);
	   -moz-transform: translate(0px,-50px);
	    -ms-transform: translate(0px,-50px);
	     -o-transform: translate(0px,-50px);
	        transform: translate(0px,-50PX);
} 
.flashtit2{opacity:0;
	-webkit-transform: translate(0px,50px);
	   -moz-transform: translate(0px,50px);
	    -ms-transform: translate(0px,50px);
	     -o-transform: translate(0px,50px);
	        transform: translate(0px,50PX);
} 
.flashtit3{opacity:0;
	-webkit-transform: translate(50px,0);
	   -moz-transform: translate(50px,0);
	    -ms-transform: translate(50px,0);
	     -o-transform: translate(50px,0);
	        transform: translate(50px,0);

} 
.flashtit4{opacity:0;
	-webkit-transform: translate(-50px,0);
	   -moz-transform: translate(-50px,0);
	    -ms-transform: translate(-50px,0);
	     -o-transform: translate(-50px,0);
	        transform: translate(-50px,0);
} 
.flashbox1{opacity:0;
	-webkit-transform: translate(0px,-150px);
	   -moz-transform: translate(0px,-150px);
	    -ms-transform: translate(0px,-150px);
	     -o-transform: translate(0px,-150px);
	        transform: translate(0px,-150PX);
} 
.flashbox2{opacity:0;
	-webkit-transform: translate(0px,150px);
	   -moz-transform: translate(0px,150px);
	    -ms-transform: translate(0px,150px);
	     -o-transform: translate(0px,150px);
	        transform: translate(0px,150PX);
} 
.flashbox3{opacity:0;
	-webkit-transform: translate(250px,0);
	   -moz-transform: translate(250px,0);
	    -ms-transform: translate(250px,0);
	     -o-transform: translate(250px,0);
	        transform: translate(250px,0);

} 
.flashbox4{opacity:0;
	-webkit-transform: translate(-250px,0);
	   -moz-transform: translate(-250px,0);
	    -ms-transform: translate(-250px,0);
	     -o-transform: translate(-250px,0);
	        transform: translate(-250px,0);
} 
.getbig{opacity:0;

	-webkit-transform:translate(0px,350px) scale(0.1);
	   -moz-transform:translate(0px,350px) scale(0.1);
	    -ms-transform:translate(0px,350px) scale(0.1);
	     -o-transform:translate(0px,350px) scale(0.1);
	        transform:translate(0px,350px) scale(0.1);
} 
.getsmall{opacity:0;
	-webkit-transform:scale(7.1);
	   -moz-transform:scale(7.1);
	    -ms-transform:scale(7.1);
	     -o-transform:scale(7.1);
	        transform: scale(7.1);
}
.getringx{opacity:0;
	-webkit-transform: rotateX(360deg);
	   -moz-transform: rotateX(360deg);
	    -ms-transform: rotateX(360deg);
	     -o-transform: rotateX(360deg);
	        transform: rotateX(360deg);
}
.getringy{opacity:0;
	-webkit-transform: rotateY(360deg);
	   -moz-transform: rotateY(360deg);
	    -ms-transform: rotateY(360deg);
	     -o-transform: rotateY(360deg);
	        transform: rotateY(360deg);
}
.z-animate .flashtit1,
.z-animate .flashtit2,
.z-animate .flashtit3,
.z-animate .flashtit4,
.z-animate .flashbox1,
.z-animate .flashbox2,
.z-animate .flashbox3,
.z-animate .flashbox4,
.z-animate .getbig,
.z-animate .getsmall{ opacity: 1;
	-webkit-transform: translate(0,0) scale(1);
	   -moz-transform: translate(0,0) scale(1);
	    -ms-transform: translate(0,0) scale(1);
	     -o-transform: translate(0,0) scale(1);
	        transform: translate(0,0) scale(1);
}
.z-animate .getringx{opacity: 1;
	-webkit-transform: rotateX(0deg);
	   -moz-transform: rotateX(0deg);
	    -ms-transform: rotateX(0deg);
	     -o-transform: rotateX(0deg);
	        transform: rotateX(0deg);
}
.z-animate .getringy{opacity: 1;
	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
	    -ms-transform: rotateY(0deg);
	     -o-transform: rotateY(0deg);
	        transform: rotateY(0deg);
}
.z-animate .opacity8{opacity: 0.8;}
.z-animate .powerby2{opacity: 0.3;}
.z-animate .opacity5{opacity: 0.3;}
.z-animate .getxie{opacity: 1;
transform:rotate(-5deg);
-ms-transform:rotate(-5deg);
-moz-transform:rotate(-5deg);
-webkit-transform:rotate(-5deg);
-o-transform:rotate(-5deg);
}

@-moz-keyframes leftcloud{0%{-moz-transform:translateX(200px);}50%{-moz-transform:translateX(-150px);}90%{opacity:1;}100%{-moz-transform:translateX(-550px);opacity:0;}}
@-webkit-keyframes leftcloud{0%{-webkit-transform:translateX(200px);}50%{-webkit-transform:translateX(-150px);}90%{opacity:1;}100%{-webkit-transform:translateX(-550px);opacity:0;}}
@-o-keyframes leftcloud{0%{-o-transform:translateX(200px);}50%{-o-transform:translateX(-150px);}90%{opacity:1;}100%{-o-transform:translateX(-550px);opacity:0;}}
@keyframes leftcloud{0%{transform:translateX(200px);}50%{transform:translateX(-150px);}90%{opacity:1;}100%{transform:translateX(-550px);opacity:0;}}

@-moz-keyframes rotated{0%{-moz-transform:rotate(0deg);}30%{-moz-transform:rotate(360deg);}60%{-moz-transform:rotate(720deg);}100%{-moz-transform:rotate(720deg);}}
@-webkit-keyframes rotated{0%{-webkit-transform:rotate(0deg);}30%{-webkit-transform:rotate(360deg);}60%{-webkit-transform:rotate(720deg);}100%{-webkit-transform:rotate(720deg);}}
@-o-keyframes rotated{0%{-o-transform:rotate(0deg);}30%{-o-transform:rotate(360deg);}60%{-o-transform:rotate(720deg);}100%{-o-transform:rotate(720deg);}}
@keyframes rotated{0%{transform:rotate(0deg);}30%{transform:rotate(360deg);}60%{transform:rotate(720deg);}100%{transform:rotate(720deg);}}

@-moz-keyframes getscale{0%{-moz-transform:scale(1);}50%{-moz-transform:scale(1.2);}100%{-moz-transform:scale(1);}}
@-webkit-keyframes getscale{0%{-webkit-transform:scale(1);}50%{-webkit-transform:scale(1.2);}100%{-webkit-transform:scale(1);}}
@-o-keyframes getscale{0%{-o-transform:scale(1);}50%{-o-transform:scale(1.2);}100%{-o-transform:scale(1);}}
@keyframes getscale{0%{transform:scale(1);}50%{transform:scale(1.2);}100%{transform:scale(1);}}

@-moz-keyframes getscaleb{0%{-moz-transform:scale(1);}50%{-moz-transform:scale(0.8);}100%{-moz-transform:scale(1);}}
@-webkit-keyframes getscaleb{0%{-webkit-transform:scale(1);}50%{-webkit-transform:scale(0.8);}100%{-webkit-transform:scale(1);}}
@-o-keyframes getscaleb{0%{-o-transform:scale(1);}50%{-o-transform:scale(0.8);}100%{-o-transform:scale(1);}}
@keyframes getscaleb{0%{transform:scale(1);}50%{transform:scale(0.8);}100%{transform:scale(1);}}

@-moz-keyframes updown{0%{-moz-transform:translateY(-10px);}50%{-moz-transform:translateY(0px);}100%{-moz-transform:translateY(-10px);}}
@-webkit-keyframes updown{0%{-webkit-transform:translateY(-10px);}50%{-webkit-transform:translateY(0px);}100%{-webkit-transform:translateY(-10px);}}
@-o-keyframes updown{0%{-o-transform:translateY(-10px);}50%{-o-transform:translateY(0px);}100%{-o-transform:translateY(-10px);}}
@keyframes updown{0%{transform:translateY(-10px);}50%{transform:translateY(0px);}100%{transform:translateY(-10px);}}

@keyframes getscalec{0%{opacity:1;}50%{opacity:0.5;}100%{opacity:1;}}


.toleft1,.toleft7{-moz-animation:leftcloud 4s infinite linear;-webkit-animation:leftcloud 4s infinite linear;-o-animation:leftcloud 4s infinite linear;animation:leftcloud 4s infinite linear;}
.toleft2,.toleft8{-moz-animation:leftcloud 3.5s infinite linear;-webkit-animation:leftcloud 3.5s infinite linear;-o-animation:leftcloud 3.5s infinite linear;animation:leftcloud 3.5s infinite linear;}
.toleft3,.toleft9{-moz-animation:leftcloud 5s infinite linear;-webkit-animation:leftcloud 5s infinite linear;-o-animation:leftcloud 5s infinite linear;animation:leftcloud 5s infinite linear;}
.toleft4,.toleft10{-moz-animation:leftcloud 3s infinite linear;-webkit-animation:leftcloud 3s infinite linear;-o-animation:leftcloud 3s infinite linear;animation:leftcloud 3s infinite linear;}
.toleft5,.toleft11{-moz-animation:leftcloud 4.5s infinite linear;-webkit-animation:leftcloud 4.5s infinite linear;-o-animation:leftcloud 4.5s infinite linear;animation:leftcloud 4.5s infinite linear;}
.toleft6,.toleft12{-moz-animation:leftcloud 6s infinite linear;-webkit-animation:leftcloud 6s infinite linear;-o-animation:leftcloud 6s infinite linear;animation:leftcloud 6s infinite linear;}

.opacityget{-moz-animation:getscalec 1s infinite linear;-webkit-animation:getscalec 1s infinite linear;-o-animation:getscalec 1s infinite linear;animation:getscalec 1s infinite linear;}
.smalltobig{-moz-animation:getscale 1s infinite linear;-webkit-animation:getscale 1s infinite linear;-o-animation:getscale 1s infinite linear;animation:getscale 1s infinite linear;}
.bigtosmall{-moz-animation:getscaleb 1s infinite linear;-webkit-animation:getscaleb 1s infinite linear;-o-animation:getscaleb 1s infinite linear;animation:getscaleb 1s infinite linear;}
.ringstop{-moz-animation:rotated 2s infinite linear;-webkit-animation:rotated 2s infinite linear;-o-animation:rotated 2s infinite linear;animation:rotated 2s infinite linear;}
.opacity5{opacity:0.5;}
.updown{-moz-animation:updown 2s linear 0s infinite;-webkit-animation:updown 2s linear 0s infinite;-o-animation:updown 2s linear 0s infinite;animation:updown 2s linear 0s infinite;}