/* 3 step widget */
.wizardWrap{
    display: inline-block;
    width: 100%;
}
.wizardWrap > .wizard{
    margin: 10px 0px; /*155px;*/
    /*background-color:red;*/
}

.wizardWrap > .wizard > .header{
    width: 100%;
    text-align: center;
    background-color: transparent;
    /*float: left;*/
}

.wizardWrap > .wizard > .header > .stepBegin,
.wizardWrap > .wizard > .header > .stepMiddle,
.wizardWrap > .wizard > .header > .stepEnd{
    position: relative;
    display: inline-block;
}

.wizardWrap > .wizard > .header > .stepBegin{
    z-index: 91;
    width: 214px;
    /*background-color: red;*/
}
.wizardWrap > .wizard > .header > .stepMiddle{
    z-index: 92;
    width: 235px;
    margin-left: -23px;
    /*background-color: #189DE1;*/
}
.wizardWrap > .wizard > .header > .stepEnd{
    z-index: 93;
    width: 212px;
    margin-left: -21px;
    /*background-color: lime;*/
}

.wizardWrap > .wizard > .header > .stepBegin > .on,
.wizardWrap > .wizard > .header > .stepMiddle > .on,
.wizardWrap > .wizard > .header > .stepEnd > .on{
    height: 66px;
    background-image: url('/img/wizard/portal-wizardh.png');
}
.wizardWrap > .wizard > .header > .stepBegin > .off,
.wizardWrap > .wizard > .header > .stepMiddle > .off,
.wizardWrap > .wizard > .header > .stepEnd > .off{
    height: 66px;
    background-image: url('/img/wizard/portal-wizardh.png');
}

.wizardWrap > .wizard > .header > .stepBegin > .on{
    background-position: 1320px 1px;
}
.wizardWrap > .wizard > .header > .stepBegin > .off{
    background-position: 1108px 0px;
    /*z-index: 998;*/
}
.wizardWrap > .wizard > .header > .stepMiddle > .on{
    background-position: 893px 1px;
}
.wizardWrap > .wizard > .header > .stepMiddle > .off{
    background-position: 661px 0px;
    /*z-index: 997;*/
}
.wizardWrap > .wizard > .header > .stepEnd > .on{
    background-position: 425px 1px;
}
.wizardWrap > .wizard > .header > .stepEnd > .off{
    background-position: 213px 0px;
}

.wizardWrap > .wizard > .header .title{
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    padding: 24px 0 0 20px;
    color: #b72123;
}
.wizardWrap > .wizard > .header > .stepMiddle .title{
    padding-left: 40px;
    padding-right: 20px;
}
.wizardWrap > .wizard > .header > .stepEnd .title{
    padding-left: 40px;
}

.wizardWrap > .wizard > .body{
    /*background-color: silver;*/
}

.wizardAction{
    display: none;
}

.wizardWrap table.clientInfoOrder{
    border-collapse: collapse;
    margin: 16px auto;
    width: 400px;
}

.wizardWrap table.clientInfoOrder td:first-child{
    font-weight: bold;
    text-align: right;
    width: 26%;
}
.wizardWrap table.clientInfoOrder td:nth-child(2){
    text-align: left;
    width: 66%;
}

.wizardWrap table.clientInfoOrder td{
    padding: 2%;
    background-color: #f2f2f2;
    border: 1px solid silver;
}

