﻿#wizHeader
{
    display: inline-block;
    background: #eee;
    border-width: 1px;
    border-style: solid;
    border-color: #f5f5f5 #e5e5e5 #ccc;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,.2);
    overflow: hidden;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    #wizHeader li
    {
        float: left;
    }

        #wizHeader li a
        {
            padding: .7em 1em .7em 2em;
            float: left;
            text-decoration: none;
            color: #444;
            position: relative;
            text-shadow: 0 1px 0 rgba(255,255,255,.5);
            background-color: #ddd;
            background-image: linear-gradient(to right, #f5f5f5, #ddd);
        }

        /*since the first link does not have a triangle before it, we can reduce the left padding to make it look consistent with other links*/
        #wizHeader li:first-child a
        {
            padding-left: 1em;
            border-radius: 5px 0 0 5px;
        }

    /*hover styles*/
    #wizHeader a:hover
    {
        background: #fff;
    }

        #wizHeader a:hover::after
        {
            border-left-color: #fff;
        }

    #wizHeader li .prevStep
    {
        color: white;
        font-weight: 500;
        background-color: rgb(77, 148, 206);
        background-image: linear-gradient(to right, #4d94ce, #4d94ce);
        border-left-color: #4d94ce;
    }

        #wizHeader li .prevStep:after
        {
            font-weight: 500;
            color: white !important;
            background-color: rgb(77, 148, 206) !important;
            background-image: linear-gradient(to right, #4d94ce, #4d94ce);
            border-left-color: #4d94ce !important;
        }

        #wizHeader li .prevStep:before
        {
            font-weight: 500;
            color: white !important;
            background-color: rgb(77, 148, 206) !important;
            background-image: linear-gradient(to right, #4d94ce, #4d94ce);
            border-left-color: #4d94ce !important;
        }

    #wizHeader li .currentStep
    {
        font-weight: bold;
        color: black;
    }

        #wizHeader li .currentStep:after
        {
            font-weight: bold;
            color: black !important;
        }

    #wizHeader li .nextStep
    {
        color: gray;
    }

        #wizHeader li .nextStep:after
        {
            color: gray !important;
        }

    #wizHeader a::after,
    #wizHeader a::before
    {
        content: "";
        position: absolute;
        top: 50%;
        right: -1em;
        margin-top: -1.5em;
        border-top: 1.5em solid transparent;
        border-bottom: 1.5em solid transparent;
        border-left: 1em solid;
    }

    #wizHeader a::after
    {
        z-index: 2;
        border-left-color: #ddd;
    }

    #wizHeader a::before
    {
        border-left-color: #ccc;
        right: -1.1em;
        z-index: 1;
    }

    #wizHeader .current::after,
    #wizHeader .current::before
    {
        content: normal;
    }



/* Radio buttons */
.welcome input
{
    display: none;
}

.welcome label
{
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #b3b3b3;
    display: inline-block;
    padding: 4px 12px;
    margin: -2px;
    margin-bottom: 0;
    font-size: x-large;
    line-height: 100px;
    width: 300px;
    color: gray;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-repeat: repeat-x;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
    margin-left: -2px;
    margin-right: +2px;
    margin-top: -2px;
}

.welcome :checked + label
{
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    background: #4d94ce;
    background-repeat: no-repeat;
    background-position: left;
    font-size: xx-large;
    color: white;
}

.welcomeRadioLabel
{
    float: left;
    width: 310px;
    padding: 5px;
    margin-right: 10px;
    font-style: italic;
}

.summary
{
    color: #606060;
    padding-top: 4px;
    padding-left: 4px;
    padding-right: 4px;
    line-height: 30px;
    font-size: 18px;
}

.summary-value
{
    font-weight: bold;
    color: #606060;
    padding-top: 4px;
    padding-left: 4px;
    padding-right: 4px;
    line-height: 30px;
    font-size: 18px;
}
