Wizard Steps - CSS

http://www.emirplicanic.com/css/css-step-by-step-menu-wizard-style

by bizamajig

HTML

<div class="wizard-steps">
    <div class="completed-step step">
        <div class="a-before"></div>
        <a href="#step-one">
            <span>1</span> 
            Account Info
        </a>
        <div class="a-after"></div>
    </div>
    <div class="active-step step">
        <div class="a-before"></div>
        <a href="#step-two">
          <span>2</span> 
          Contact Info
        </a>
        <div class="a-after"></div>
    </div>
    <div class="step">
        <div class="a-before"></div>
        <a href="#">
            <span>3</span> 
            Security Question
        </a>
        <div class="a-after"></div>
    </div>
    <div class="step">
        <div class="a-before"></div>
        <a href="#">
            <span>4</span> 
            Confirmation
        </a>
        <div class="a-after"></div>
    </div>
</div>

CSS

/* = STEPS CONTAINER
----------------------------*/
.wizard-steps {
    margin:2 0px 10px 0px 10px;
    padding: 0px;
    position: relative;
    clear: both;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
}
.wizard-steps .step {
    position: relative;
}
.wizard-steps div {
    margin-left: -2px;        
    float: left; 
}
/* = STEP NUMBERS
----------------------------*/
.wizard-steps span {
    margin: 2px 5px 0px 0px;
    width: 15px;
    display: block;
    float: left;
    font-size: 10px;
    text-align: center;
    line-height: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #ccc;
    background: #FFF;

    border: 2px solid #ccc; /* #163038; */
    color: #ccc;
    text-shadow: none;
}
/* = DEFAULT STEPS
----------------------------*/
.wizard-steps a {
    padding: 0px 10px 0px 3px;
    position: relative;
    display: block;
    height: 24px;
    float: left;
    font-size: 11px;
    line-height: 24px;
    color: #ffffff;
    background: #6b6c6e; /* .color-2 */
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba( 0, 0, 0, 0.8 );
}
.wizard-steps .a-before {
    width: 0px;
    height: 0px;
    border-top: 12px solid #6b6c6e; /* .color-2 */
    border-bottom: 12px solid #6b6c6e; /* .color-2 */
    border-left: 12px solid transparent;
}
.wizard-steps .a-after {
    width: 0px;
    height: 0px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #6b6c6e; /* .color-2 */
    margin-left: 0;
}
/* = COMPLETED STEPS
----------------------------*/
.wizard-steps .completed-step a {
    color: #163038;
    background: #53bdec; /* .color-3 */
    text-shadow:1px 1px 1px rgba( 255,255,255, 0.8 );
}
.wizard-steps .completed-step .a-before {
    border-top: 12px solid #53bdec; /* .color-3 */
    border-bottom: 12px solid #53bdec; /* .color-3 */
}
.wizard-steps .completed-step .a-after {
    border-left:...