@charset "utf-8";

div.qProgress {
    position: absolute;
    z-index: 999;
}
html > div.qProgress{
    position: fixed;
}

div.qProgress div.mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #26b;
    opacity: 0.88;
}

div.qProgress div.content{
    top: 40%;
    position: absolute;
    width: 100%;
    text-align: center;
}

html > div.qProgress div.content{
    position: fixed;
}

div.qProgress div.text{
    color: #fff;
    margin-top: 1em;
}

div.qProgress div.busy{
    text-align: center;
}
/* busyimage */
div.qProgress div.busy{
    width: 47px;
    height: 47px;
    margin: auto;
    background-image: url("busy2.gif");
    background-position: center center;
    background-repeat: no-repeat;
}

/* BUSY TOGGLE start */
/* comment this section out to have both progressbar and busy indicator */
/*div.qProgress.progressActive div.busy{
    display: none;
}
div.qProgress div.bar span{
    background-image: url("bar.gif");
}
/* BUSY TOGGLE end */

div.qProgress div.bar{
    display: none;
}
div.qProgress.progressActive div.bar{
    display: block;
}

div.qProgress div.bar{
    width: 100%;
    max-width: 10em;
    height: 8px;
    background-color: #000;
    margin: auto;
    margin-top: 0.3em;
}
div.qProgress div.bar span{
    display: block;
    width: 50%;
    height: 100%;
    background-color: #5af;
    background-position: 0 0;
    background-repeat: repeat;
    box-shadow: 0 -5px 5px rgba(255, 255, 255, 0.2) inset;
}

div.qProgress a.timeout{
    display: none;
    background-color: #bdf;
    text-decoration: none;
    color: #26b;
    margin-bottom: 0.7em;
}
div.qProgress a.timeout:hover{
    background-color: #fff;
    text-decoration: none;
}
div.qProgress.timeout a.timeout{
    display: block;
}