﻿#stepsDiv
{
    min-height: 75px;
}

.circleDiv
{
    position: relative;
    height: 30px;
    width: 100%;
}

.stepNumberDiv
{
    margin-top: 3px;
    text-align: center;
}

.stepNumberDiv span
{
    font-size: 10pt;
    font-weight: bold;
}

.circle
{
    width: 30px;
    height: 30px;
    moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    z-index: 10;
}

.active .circle, .stepCurrent .circle
{
    border: solid 3px #e6e6e6;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.active .stepHeader span, .stepCurrent .stepHeader span
{
    font-weight: bold;
}


.stepHeader
{
    min-height: 46px;
    text-align: center;
}

.stepHeader span
{
    font-size: 11pt;
}

.stepsLine
{
    position: absolute;
    height: 10px;
}

.stepsLinePassed, .passed .circle
{
    background-color: #1A6AA9;
}

.stepsLineNotPassed, .notPassed .circle
{
    background-color: #86d0f0; /*background-color: #009de0;*/
}
