











@charset "utf-8";


.iScrollPlusPullDown, .iScrollPlusPullUp {
	background:#fff;
	height:40px;
	line-height:40px;
	padding:5px 10px;
	border-bottom:1px solid #ccc;
	font-weight:bold;
	font-size:14px;
	color:#888;
}
.iScrollPlusPullDown .pullDownIcon, .iScrollPlusPullUp .pullUpIcon  {
	display:inline-block;
	width:40px; height:40px;
	background:url(../images/pull-icon.png) 0 0 no-repeat;
	-webkit-background-size:40px 80px; background-size:40px 80px;
	-webkit-transition-property:-webkit-transform;
	-webkit-transition-duration:250ms;	
}
.iScrollPlusPullDown .pullDownIcon {
	-webkit-transform:rotate(0deg) translateZ(0);
}
.iScrollPlusPullUp .pullUpIcon  {
	-webkit-transform:rotate(-180deg) translateZ(0);
}

.iScrollPlusPullDown.flip .pullDownIcon {
	-webkit-transform:rotate(-180deg) translateZ(0);
}

.iScrollPlusPullUp.flip .pullUpIcon {
	-webkit-transform:rotate(0deg) translateZ(0);
}

.iScrollPlusPullDown.loading .pullDownIcon, .iScrollPlusPullUp.loading .pullUpIcon {
	background-position:0 100%;
	-webkit-transform:rotate(0deg) translateZ(0);
	-webkit-transition-duration:0ms;

	-webkit-animation-name:loading;
	-webkit-animation-duration:2s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:linear;
}

@-webkit-keyframes loading {
	from { -webkit-transform:rotate(0deg) translateZ(0); }
	to { -webkit-transform:rotate(360deg) translateZ(0); }
}