.progressWrapper {
	width: 500px;
	overflow: hidden;
}
.progressContainer {
	margin: 5px;
	padding: 4px;

	border: solid 2px #0077D1;
	background-color: #ffffff;

	overflow: hidden;
}
.progressName {
	font-size: 11px;
	font-weight: bold;
	color: #0077D1;

	width: 450px;
	height: 14px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
}
.progressBarInProgress,
.progressBarComplete,
.progressBarError {
	font-size: 0px;
	width: 0%;
	height: 2px;
	background-color: #b15613;
	margin-top: 2px;
}
.progressBarComplete {
	width: 100%;
	background-color: #b15613;
	visibility: hidden;
}
.progressBarError {
	width: 100%;
	background-color: red;
	visibility: hidden;
}
.progressBarStatus {
	margin-top: 2px;
	width: 450px;
	font-size: 7pt;
	font-family: Verdana;
	text-align: left;
	white-space: nowrap;
}
a.progressCancel,
a.progressCancel:link,
a.progressCancel:active,
a.progressCancel:visited,
a.progressCancel:hover
{
	font-size: 0px;
	display: block;
	height: 14px;
	width: 14px;

	background-image: url(../images/cancelbutton.gif);
	background-repeat: no-repeat;
	background-position: -14px 0px;
	float: right;
}
a.progressCancel:hover
{
	background-position: 0px 0px;
}
