/* scrollable root element */
#wizard {
    font-size: 12px;
    height: 490px;
    width: 800px;
    overflow: hidden;
    position: relative;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0 8px #BBBBBB;
    margin: 60px auto 20px;
    min-height: 20px;
}

/* scrollable items */
#wizard .items {
    width: 20000em;
    clear: both;
    position: absolute;
}

/* single item */
#wizard .page {
    margin-left: 25px;
    margin-right: 25px;
    width: 750px;
    float: left;
}

/* title */
#wizard h2 {
    font-size: 15px;
    font-weight: normal;
    margin: 5px 0 0 0;
    line-height: 22px;
}

/* title */
#wizard h2 strong {
    color: #777;
}

#wizard h2 em {
    display: block;
    font-size: 12px;
    color: #666;
    font-style: normal;
}

/* input fields */
#wizard ul {
    padding: 0 !important;
    margin: 0 !important;
}

#wizard li {
    list-style-type: none;
    list-style-image: none;
    margin-bottom: 25px;
}

#wizard label {
    font-size: 12px;
    display: block;
}

#wizard label strong {
    color: #789;
    position: relative;
    top: -1px;
}

#wizard label em {
    font-size: 11px;
    color: #666;
    font-style: normal;
}

#wizard .text {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    color: #456;
    letter-spacing: 1px;
}

#wizard select {
    border: 1px solid #ccc;
    width: 94%;
    padding: 4px;
}

#wizard .clearfix {
    clear: left;
    padding-top: 10px;
}

#wizard .right {
    float: right;
}

/* validation error message bar */
#drawer {
    background: #fff repeat-x scroll 0 0;
    _background-color: #fff;
    overflow: visible;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    border-bottom: 2px solid #789;
    width: 100%;
    display: none;
    z-index: 2;
}

#wizard .error {
    border: 1px solid red;
}

#wizard #status {
    margin: 0 !important;
    height: 35px;
    background: #123 repeat-x;
    padding-left: 25px !important;
}

#wizard ul#nav {
    position: absolute;
    bottom: -40px;
    width: 750px
}

#status li {
    list-style-type: none;
    list-style-image: none;
    float: left;
    color: #fff;
    padding: 10px 10px 10px;
}

#status li.active {
    background-color: #11A2A4;
    font-weight: normal;
    font-size: 13px;
}

#status li.disabled {
    color: #999999;
}
