progress,          /* All HTML5 progress enabled browsers */
progress[role]     /* polyfill */
{
 /* Turns off styling - not usually needed, but good to know. */
 appearance: none;
 -moz-appearance: none;
 -webkit-appearance: none;

 /* gets rid of default border in Firefox and Opera. */ 
 border: none;
 border-radius: 9px;

 /* Needs to be in here for Safari polyfill so background images work as expected. */
 background-size: auto;
	
 /* Dimensions */
 width: 200px;
 height: 10px;
}

/*  #############################################  Background-Color  */

/* Polyfill */
progress[role]:after {
	background-image: none; /* removes default background from polyfill */
	border: 1px solid #b2b2b2;
    border-radius: 9px;
}

/* Ensure fallback text doesn't appear in polyfill */
progress[role] strong {
	display: none;
	border: 1px solid #b2b2b2;
    border-radius: 9px;
}

progress,                          /* Firefox  */ 
progress[role][aria-valuenow] {    /* Polyfill */
   background: #efefef !important; /* !important is needed by the polyfill */
	border: 1px solid #b2b2b2;
    border-radius: 9px;
}

/* Chrome */
progress::-webkit-progress-bar {
    background: #efefef;
	border: 1px solid #b2b2b2;
    border-radius: 9px;
}


/*  #############################################  Bar-Color  */

/* IE10 */
progress {
    color: #0077ff;
	border: none;
    border-radius: 9px;}

/* Firefox */
progress::-moz-progress-bar { 
    background: #0077ff;	
	border: none;
    border-radius: 9px;
 }

/* Chrome */
progress::-webkit-progress-value {
    background: #0077ff;
	border: none;
    border-radius: 9px;
}

/* Polyfill */
progress[aria-valuenow]:before  {
    background: #0077ff;
	border: none;
    border-radius: 9px;
}

