/** Progressbar class css*/
.progressbar {
    width: 100%;
	/*
	margin-top: 5px;
	margin-bottom: 35px;
	*/
	
	margin-top: 4px;
	position: relative;
	background-color: #EEEEEE;
	box-shadow: inset 0px 1px 1px rgba(0,0,0,.1);
	display: block;
}

.progressbar_proggress{
	height: 8px;
	width: 10px;
	background-color: #3498db;
}


.progressbar_tag{
	width: 100%;
	margin-top: 8px;
	clear: both;
	
	
	position: relative;
}

.progressbar_tagText{
	float:left;
	margin-left: 1px;
	
	font-weight: 300;
	font-size: 14px;
	color: #666666;
}


.progressbar_percentCount{
	float:right;
	
	font-weight: 600;
	font-size: 14px;
	color: #666666;
}


