﻿.ProgressBar{
	font-size:10px;
	font-weight:bold;
	padding:0;
	background-color:rgba(255,255,255,0.40) ;
	border-radius:10px;
	overflow:hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	text-align:center;
	position:relative;
	min-height:1px;
	/*border:1px solid #999;*/
	margin-top: 20px;
}
.ProgressBar .Bar{
	width:0;
	border-radius:0px;/* メーターのハシ */
	overflow:hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	position:absolute;
	-moz-transition:width .5s;
	-o-transition:width .5s;
	-webkit-transition:width .5s;
	transition:width .5s;
	background: #fff;
}
/*.ProgressBar .Bar{
	width:0;
	border-radius:3px;
	overflow:hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	position:absolute;
	-moz-transition:width .5s;
	-o-transition:width .5s;
	-webkit-transition:width .5s;
	transition:width .5s;background:-moz-linear-gradient(left,#d91b5c 50%,#a21f63 100%);
	background:-webkit-gradient(linear,left,right,color-stop(50%,#d91b5c),color-stop(100%,#a21f63));background:-webkit-linear-gradient(left,#d91b5c 50%,#a21f63 100%);
	background:-o-linear-gradient(left,#d91b5c 50%,#a21f63 100%);
	background:-ms-linear-gradient(left,#d91b5c 50%,#a21f63 100%);
	background:linear-gradient(to right,#d91b5c 50%,#a21f63 100%)
}*/
.ProgressBar canvas{
	position:absolute;
	margin:0;
	top:0;
	left:0
}
.ProgressBar p{
	position:absolute;
	margin:0;
	padding:0 10px;
	top:0;left:0;
	font-size:10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}
.ProgressBar p.BackProgressBarPercent{
	color:#777
}
.ProgressBar p.ForeProgressBarPercent{
	color:#eee
}