﻿/* = STEPS CONTAINER
----------------------------*/
.wizard-steps {
    margin:0px 10px 0px 15px;
    padding:0px;
    position: relative;
    clear:both;
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
}
.wizard-steps div {
    position:relative;
}
/* = STEP NUMBERS
----------------------------*/
.wizard-steps span {
    display: block;
    float: left;
    font-size: 12px;
    text-align:center;
    width:23px;
    margin: 2px 5px 0px 0px;
    line-height:23px;
    color: #ccc;
    background: #FFF;
    border: 2px solid #CCC;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
/* = DEFAULT STEPS
----------------------------*/
.wizard-steps a {
    position:relative;
    display:block;
    width:auto;
    height:32px;
    margin-right: 24px;
    padding:0px 10px 0px 3px;
    float: left;
    font-size:13px;
    line-height:32px;
    color:#666;
    background: #F0EEE3;
    text-decoration:none;
    text-shadow:1px 1px 1px rgba(255,255,255, 0.8);
}
.wizard-steps a:before {
    width:0px;
    height:0px;
    border-top: 16px solid #F0EEE3;
    border-bottom: 16px solid #F0EEE3;
    border-left:16px solid transparent;
    position: absolute;
    content: "";
    top: 0px;
    left: -16px;
}
.wizard-steps a:after {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left:16px solid #F0EEE3;
    position: absolute;
    content: "";
    top: 0px;
    right: -16px;
}
 
/* = COMPLETED STEPS
----------------------------*/
 
.wizard-steps .completed-step a {
    color:#003366;
    background: #e6ebf8;
}
.wizard-steps .completed-step a:before {
    border-top: 16px solid #e6ebf8;
    border-bottom: 16px solid #e6ebf8;
}
.wizard-steps .completed-step a:after {
    border-left: 16px solid #e6ebf8;
}
.wizard-steps .completed-step span {
    border: 2px solid #003366;
    color: #003366;
    text-shadow:none;
}
/* = ACTIVE STEPS
----------------------------*/
.wizard-steps .active-step a {
    color:#e6ebf8;
    background: #003366;
    text-shadow:1px 1px 1px rgba(0,0,0, 0.8);
}
.wizard-steps .active-step a:before {
    border-top: 16px solid #003366;
    border-bottom: 16px solid #003366;
}
.wizard-steps .active-step a:after {
    border-left: 16px solid #003366;
}
.wizard-steps .active-step span {
    color: #003366;
    -webkit-box-shadow:0px 0px 2px rgba(0,0,0, 0.8);
    -moz-box-shadow:0px 0px 2px rgba(0,0,0, 0.8);
    box-shadow:0px 0px 2px rgba(0,0,0, 0.8);
    text-shadow:none;
    border: 2px solid #e6ebf8;
}
/* = HOVER STATES
----------------------------*/
.wizard-steps .completed-step:hover a, .wizard-steps .active-step:hover a {
    color:#fff;
    background: #8F061E;
    text-shadow:1px 1px 1px rgba(0,0,0, 0.8);
}
.wizard-steps .completed-step:hover span, .wizard-steps .active-step:hover span {
    color:#8F061E;
}
.wizard-steps .completed-step:hover a:before, .wizard-steps .active-step:hover a:before {
    border-top: 16px solid #8F061E;
    border-bottom: 16px solid #8F061E;
}
.wizard-steps .completed-step:hover a:after, .wizard-steps .active-step:hover a:after {
    border-left: 16px solid #8F061E;
}