﻿/* Modal Box - fixed Size */
.modalBox
{
    background-image: url(Images/modalBox.png);
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
    padding-right: 5px;
    padding-bottom: 5px;
    color: #333333;
}

.modalBar
{
    width: 100%;
    cursor: move;
    padding-bottom: 10px;
    padding-top: 3px;
}

.modalContent
{
    border-width: 0px;
    border-style: none;
    width: 100%;
    overflow: auto;
    position: relative;
    height: 134px;
}

.modalContentFull /* Without footer */
{
    border-width: 0px;
    border-style: none;
    width: 100%;
    overflow: auto;
    position: relative;
    height: 175px;
}

.modalFooter
{
    border-style: none;
    width: 100%;
    height: 28px;
    overflow: hidden;
    position: relative;
    text-align: right;
    padding-bottom: 10px;
}

/* 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;
    width: 400px;
}

.modalContentImage
{
    padding: 5px;
    border-width: 0px;
    border-style: none;
    width: 100%;
    height: 200px;
    text-align: center;
}

/* Modal Background */
.modalBackground
{
    background-color:Black;
    filter:alpha(opacity=50);
    opacity:0.5;
}

/* Modal Close button */
.modalCloseButton
{
    cursor: auto;
    right: 2px;
    float: right;
    position: relative;
    top: 1px;
}

/* Modal Header text */
.modalHeader
{
    font-size: 14px;
    color: #999999;
    font-family: Verdana, Arial;
    font-weight: bold;
    position: relative;
    float: left;
    top: 2px;
    left: 9px;
    margin-right: 40px;
}

/* Fade backgrund */
#fadeBackground
{
    visibility: hidden;
    position: absolute;
    background-color: Black;
    filter: alpha(opacity=50);
    opacity: 0.5;
    width: 100%;
    height: 100%;
    z-index: 1000000000000;
    top: 0px;
    right: 0px;
    color: #FFFFFF;
    font-size: 11px;
}

/* Frame */
.modalFrameCenter
{
    border-width: 0px;
    background-color: #FFFFFF;
    vertical-align: middle;
}

.modalFrameTop
{
    border-width: 0px;
    background-image: url(Images/ModalFrameTop.png);
    background-repeat: repeat-x;
    height: 12px;
}

.modalFrameCorner
{
    width: 12px;
    height: 12px;
}

.modalFrameLeft
{
    background-image: url(Images/ModalFrameLeft.png);
    background-repeat: repeat-y;
}

.modalFrameRight
{
    background-image: url(Images/ModalFrameRight.png);
    background-repeat: repeat-y;
}

.modalFrameBottom
{
    background-image: url(Images/ModalFrameBottom.png);
    background-repeat: repeat-x;
    height: 12px;
}