﻿/* 
    Progressbar styles 
    See include/InitializeProgressbar.js for the Progressbar functions.     
*/
div.econ-progressbar-small {
    display: none;
    width: auto;
    overflow: hidden;
    margin: 5px;
    height: 16px; /* for jQuery progressbar in <=IE9 */
}
div.econ-progressbar-large {
    width: 100%;
    position: absolute;
    z-index: 101;
    display: none;
    top: 50%;	
	height: 50px; /* for jQuery progressbar in <=IE9 */
}
div#econ-progressbar-overlay {
    display: none;
    opacity: 0.2;
    filter: Alpha(Opacity=20);
}

div.econ-progressbar-block {
    position: relative;
    -webkit-animation: 4.4s linear infinite;    /* The specific animation is calculated and set in InitializeProgressbar.js */
    animation: 4.4s linear infinite;
	
    display: inline-block;
	opacity: 0;
	position: absolute;
}
div.econ-progressbar-block {
    width: 16px;
    height: 16px;    
}
div.econ-progressbar-large div.econ-progressbar-block {
    width: 50px;
    height: 50px;    
}

#block1 {
    background: #DB902D;         
    -webkit-animation-delay: 1.8s !important;
    animation-delay: 1.8s !important;    
}
#block2 {
    background: #9A9A9A;        
    -webkit-animation-delay: 1.2s !important;
    animation-delay: 1.2s !important;
}
#block3 {
    background: #004996;        
    -webkit-animation-delay: .6s !important;
    animation-delay: .6s !important;
}
#block4 {
    background: #011F53;
}