
.modal
{
    top: 0px;
    left: 0px;
    color: #fff;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    position: absolute;
}

.modalBackground
{
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: 500;
    position: fixed;
    background: #000000;
    filter: alpha(opacity=90);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.modalContainer
{
    top: 30%;
    left: 30%;
    height: 100%;
    z-index: 750;
    position: absolute;
}

.modalContent
{
    padding: 0px;
    width: 500px;
    z-index: 1000;
    overflow: hidden;
    min-height: 200px;
    position: relative;
    border-radius: 4px;
    border-top: 1px solid #000;
    border-bottom: 2px solid #000;
    background: url("../images/grey-trans-1.png") repeat;
}

.modalTop
{
    font-size: 12px;
    text-align: left;
    padding: 15px 20px;
    position: relative;
    text-transform: uppercase;
}

.modalClose
{
    margin: 0;
    top: -4px;
    right: 6px;
    width: 21px;
    height: 21px;
    color: #FFFFFF;
    display: block;
    font-size: 8px;
    cursor: pointer;
    padding-top: 9px;
    position: absolute;
    text-align: center;
    background: url("../images/grey-small-circle.png") no-repeat scroll center center rgba(0, 0, 0, 0);
}

.modalClose:hover
{
    color: #AE191B;
    text-decoration: none;
}

.modalBody
{
    width: auto;
    font-size: 13px;
    padding: 0 20px;
    text-align: left;
}

.modalContent fieldset
{
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.modalBody a:hover
{
    color: #5BBAE1;
    outline : none;
}

.modalBody form
{
    
}

.btns
{
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    padding: 10px 0;
    position: absolute;
    border-top: 1px solid #877241;
}