﻿.dialog 
{
    font-family: Tahoma;
    font-size: 11pt; /*color: #222222; background-color:#fff;*/
    margin: 0px;
    padding: 0px;
}

/* header styles */
.dialog .header
{
    position: relative;
    cursor: move;
    background-color: Transparent;
    /*     color: #fff; So the user knows they can drag the panel */
}
.dialog .header .outer
{
    background-color: Transparent;
    background-repeat: no-repeat;
    background-position: right;
    background-image: url(img/top-right5.png);
    /*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/top-right2.png', sizingMethod='scale');*/ 
    padding-right: 9px;
}
.dialog .header .inner
{
    background-color: Transparent;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(img/top-left5.png);
    padding-left: 9px;
}
.dialog .header .content
{
    background-image: url(img/top-mid5.png);
    height: 35px;
    background-color: Transparent;
    background-repeat: repeat-x;
    font-size: 16pt;
    font-weight: bold; /*color: #fff;*/
}
.dialog .header .content H2
{
    font-size: 10pt;
    font-weight:bolder;
    color:navy;
    padding-top: 10px;
    margin: 0;
}
.dialog .header .close
{
    /* the image is 35x35 pixels wide */
    height: 25px;
    width: 35px; /* position the image */
    position: absolute;
    top: 4px;
    right: 7px;
    background: url(img/close.png) no-repeat;
    cursor: pointer;
}
.dialog .header .close:hover
{
    /* set the hover image */
    background: url(img/close-hover.png) no-repeat;
}

/* dialog body styles */
.dialog .body
{
}
.dialog .body .outer
{
    background: url(img/right5.png) right repeat-y;
    padding-right: 7px;
}
.dialog .body .inner
{
    background: url(img/left5.png) left repeat-y;
    padding-left: 7px;
}
.dialog .body .content
{
    background-color: #FFFF99;
}
.dialog .body .content H2
{
    padding: 10px;
    margin: 0px;
    text-align: center;
    font-size: 11pt;
    color: #222222;
    font-weight: normal;
}
.dialog .body .content .footer
{
    /* footer image is 41 pixels tall */
    background: url(img/footer.gif) repeat-x bottom;
    height: 20px;
}
.dialog .body .content .footer .commands
{
    text-align: right;
    padding: 8px;
}
.dialog .body .content .footer .commands INPUT
{
    /* keep the buttons a consistent size */
    width: 75px;
}

/* dialog footer styles */
.dialog .footer
{
}
.dialog .footer .outer
{
    background: url(img/bottom-right5.png) no-repeat right top;
    padding-right: 9px;
}
.dialog .footer .inner
{
    background: url(img/bottom-left5.png) no-repeat left top;
    padding-left: 9px;
}
.dialog .footer .content
{
    height: 7px;
    background: url(img/bottom-mid5.png) repeat-x center top;
    padding-top: 0px;
}

.dialog .updating
{
    color: #808080;
    background: url(img/activity.gif) no-repeat center;
}
