/* -- Table Styles ------------------------------- */
div#flashUI div.progressWrapper {
	width: 345px;
	overflow: hidden;
}

div#flashUI div.progressContainer {
	margin: 0;
	padding: 14px;
	border: 4px #dcdcdc solid;
	background-color: #eeeeee;
	overflow: hidden;
}
/* Message */
div#flashUI div.message {
	margin: 1em 0;
	padding: 10px 20px;
	border: solid 1px #FFDD99;
	background-color: #FFFFCC;
	overflow: hidden;
}
/* Error */
div#flashUI div.red {
	margin-top: 10px;
	border: 4px #dcdcdc solid;
	background-color: #eeeeee;
}

/* Current */
div#flashUI div.green {
	margin-top: 10px;
	border: 4px #dcdcdc solid;
	background-color: #eeeeee;
}

/* Complete */
div#flashUI div.blue {
	margin-top: 10px;
	border: 4px #dcdcdc solid;
	background-color: #eeeeee;
}

div#flashUI div.progressName {
	font-size: 8pt;
	font-weight: 700;
	color: #555;
	width: 323px;
	height: 14px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
}

div#flashUI div.progressBarInProgress,
div#flashUI div.progressBarComplete,
div#flashUI div.progressBarError {
	font-size: 0;
	width: 0%;
	height: 2px;
	background-color: blue;
	margin-top: 2px;
}

div#flashUI div.progressBarComplete {
	width: 100%;
	background-color: green;
	visibility: hidden;
}

div#flashUI div.progressBarError {
	width: 100%;
	background-color: red;
	visibility: hidden;
}

div#flashUI div.progressBarStatus {
	margin-top: 2px;
	width: 337px;
	font-size: 7pt;
	font-family: Arial;
	text-align: left;
	white-space: nowrap;
}

a.progressCancel {
	font-size: 0;
	display: block;
	height: 14px;
	width: 14px;
	background-image: url(/public/images/cancelbutton.gif);
	background-repeat: no-repeat;
	background-position: -14px 0px;
	float: right;
}

a.progressCancel:hover {
	background-position: 0px 0px;
}
