@charset "utf-8";
/* CSS Document */

.ProgressBar {
	font-size: 1px;
	font-weight: bold;
	padding: 0;
	background-color: #999;
	border-radius: 1px;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
	position: relative;
    z-index: 5;
	min-height: 1px;
/*	border: 1px solid #999*/
}
.ProgressBar .Bar {
	width: 0;
	border-radius: 1px;
	overflow: hidden;
	box-sizing: border-box;
	position: absolute;
	-webkit-transition: width .5s;
	transition: width .5s;
	background: #FFF;
    z-index: 5;
}
.ProgressBar canvas {
	position: absolute;
	margin: 0;
	top: 0;
	left: 0;
    display: none;
    z-index: 5;
}
.ProgressBar p {
	position: absolute;
	margin: 0;
	padding: 0 10px;
	top: 0;
	left: 0;
	font-size: 1px;
	box-sizing: border-box;
    line-height: 1px;
}
.ProgressBar p.BackProgressBarPercent {
	color: #777;
    display: none;
}
.ProgressBar p.ForeProgressBarPercent {
	color: #eee;
    display: none;
}
