/*------------------POPUPS------------------------*/

#fade {
    display: none;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .80;
    filter: 'alpha(opacity=80)';
    z-index: 9999;
}

#popup1 {
    display: none;
    background: #fff;
    padding: 15px;
    border: 12px solid #ddd;
    float: left;
    position: fixed;
    top: 10%;
    left: 50%;
    z-index: 99999;
    -webkit-box-shadow: 0px 0px 20px #000;
    -moz-box-shadow: 0px 0px 20px #000;
    box-shadow: 0px 0px 20px #000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

img.btn_close {
    float: right;
    margin: -55px -55px 0 0;
}

.popup p {
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 12px;
}

/*--Making IE6 Understand Fixed Positioning--*/

*html #fade {
    position: absolute;
}

*html #popup1 {
    position: absolute;
}

.missingfield {}

.missingfield .fieldlabel {
    font-size: 12px;
    font-weight: bold;
    width: 400px;
}

.missingfield span {
    float: left;
    display: block;
}

.hide {
    display: none;
}

.clear {
    clear: both;
    line-height: 0px;
}

.redlabel {
    color: Red;
    font-size: smaller;
}