﻿/* Modal Box - fixed Size */

.modal
{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999999;
}

.modalBox
{
    background-position: 0px 20px;
    background-image: url(Images/modalBox.jpg);
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
}

.modalBar
{
    width: 100%;
    background-image: url(Images/modalHeader.jpg);
    background-repeat: repeat;
    cursor: move;
    padding-top: 2px;
    padding-bottom: 3px;
    position: relative;
}

.modalContent
{
    border-width: 0px;
    border-style: none;
    width: 100%;
    overflow: auto;
    position: relative;
    height: 144px;
}

.modalContentFull /* Without footer */
{
    border-width: 0px;
    border-style: none;
    width: 100%;
    overflow: auto;
    position: relative;
    height: 175px;
}

.modalFooter
{
    border-style: none;
    width: 100%;
    height: 32px;
    overflow: hidden;
    position: relative;
    text-align: right;
}

/* Modal Box Large - size not fixed */
.modalBoxLarge
{
    position: relative;
    width: 500px;
    height: 300px;
    background-color: #FFFFFF;
}

.modalContentLarge
{
    border-width: 0px;
    border-style: none;
    width: 100%;
    overflow: scroll;
    position: relative;
    height: 251px;
}

/* Modal Box for Image */
.modalBoxImage
{
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    width: 300px;
    height: 300px;
}

.modalContentImage
{
    padding: 5px;
    border-width: 0px;
    border-style: none;
    width: 100%;
    position: relative;
    height: 100%;
}

/* Modal Background */
.modalBackground
{
    background-color:Black;
    filter:alpha(opacity=50);
    opacity:0.5;
}

/* Modal Close button */
.modalCloseButton
{
    cursor: auto;
    right: 2px;
    float: right;
    top: 1px;
}

/* Modal Header text */
.modalHeader
{
    font-size: 12px;
    color: #ffffff;
    font-family: Verdana, Arial;
    font-weight: bold;
    left: 4px;
    margin-right: 40px;
    position: relative;
}

/* Fade backgrund */
#fadeBackground
{
    visibility: hidden;
    position: absolute;
    background-color: Black;
    filter: alpha(opacity=50);
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 100000;
    top: 0px;
    right: 0px;
    color: #FFFFFF;
    font-size: 11px;
}