#divFileProgressContainer{
	*height: 100px;
}

.progressWrapper {
	width: 100%;
	overflow: hidden;
}
.progressContainer {
	margin: 5px;
	padding: 4px;
	
	overflow: hidden;
}
.red /* Error */
{

}
.green /* Current */ 
{

}
.blue /* Complete */
{

}

.progressName {
	font-size: 10pt;
	font-weight: bold;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	margin: 10px 0px 10px 0px;
}

.progressBarContainer{
	width:100%;
	height: 7px;
	background-color: #dfdfdf;
	border: 1px solid #dfdfdf;
}

.progressBarInProgress,
.progressBarComplete,
.progressBarError {
	font-size: 0px;
	width: 0%;
	height: 7px;
	background-color: #f4400f;
	background-image: url(/images/pb_inprogress.gif);
	background-repeat: repeat-x;
	float:left;
}
.progressBarComplete {
	width: 100%;
	background-color: #48a936;
	background-image: url(/images/pb_complete.gif);
	background-repeat: repeat-x;
}
.progressBarError {
	width: 100%;
	background-color: red;
	visibility: hidden;
}
.progressBarStatus {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 8pt;
	height: 40px;
	color: #959593;
	text-align: center;
	white-space: nowrap;
	clear:both;
}
.progressSpinner
{
	font-size: 0px;
	display: block;
	height: 14px;
	width: 14px;
	float: right;
}
a.progressCancel:hover 
{
	background-position: 0px 0px;
}