#sr_progress .ui-widget-content {
	height:8px;
	border: none;
	padding:0;
}

#sr_progress .ui-progressbar-value {
	margin: 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 0 6px 1px rgba(130,130,130,0.2);
	-moz-box-shadow: inset 0 0 6px 1px rgba(130,130,130,0.2);
	box-shadow: inset 0 0 6px 1px rgba(130,130,130,0.2);
	/* .ie & {
		border: 1px @color solid;
	} */
	background:
	-webkit-linear-gradient(45deg, transparent, transparent 33%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0.3) 66%, transparent 66%),
	-webkit-linear-gradient(top, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.12)),
	-webkit-linear-gradient(left, #f78c00, #f78c00);
	background:
	-moz-linear-gradient(45deg, transparent, transparent 33%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0.3) 66%, transparent 66%),
	-moz-linear-gradient(top, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.12)),
	-moz-linear-gradient(left, #f78c00, #f78c00);
	background:
	-webkit-linear-gradient(45deg, transparent, transparent 33%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0.3) 66%, transparent 66%),
	-o-linear-gradient(top, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.12)),
	-o-linear-gradient(left, #f78c00, #f78c00);
	background:
	-ms-linear-gradient(45deg, transparent, transparent 33%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0.3) 66%, transparent 66%),
	-ms-linear-gradient(top, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.12)),
	-ms-linear-gradient(left, #f78c00, #f78c00);
	background:
	linear-gradient(45deg, transparent, transparent 33%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0.3) 66%, transparent 66%),
	linear-gradient(top, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0.12)),
	linear-gradient(left, #f78c00, #f78c00);

	background-size: 25px 14px, 100% 100%, 100% 100%;

	-webkit-animation: candystripe 1s linear infinite;
	-moz-animation: candystripe 1s linear infinite;
	animation: candystripe 1s linear infinite;
}
@-webkit-keyframes candystripe {
	to {background-position: 25px 0;}
}
@-moz-keyframes candystripe {
	to {background-position: 25px 0;}
}
@keyframes candystripe {
	to {background-position: 25px 0;}
}