﻿.modalDialogOverlay
{
    position: fixed;
    z-index: 900;
    top: 0px;
    left: 0px;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    filter: Alpha(Opacity=0);
    opacity: 0;
    -moz-opacity: 0;
}

* html .modalDialogOverlay
{
    position: fixed;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
    width: expression(document.body.scrollWidth > document.body.offsetWidth ? document.body.scrollWidth : document.body.offsetWidth + 'px');
}

.modalDialogContainer {
    width:400px;
    z-index: 901;
    font-family:Arial;     
    position:absolute;
}

.modalDialog {    
    background-color:#fff; 
    position:relative;  
}

.modalDialogContent {
    position:relative;     
}

.modalDialogHeader {
    height:25px;
    padding: 0px 10px;
    color: #000;
    font-size: 9pt;
    font-weight: bold;
    line-height: 25px;  
    text-align:left;
    position:relative;
    z-index: 902;
}

.modalDialogHeader a.closeButton {
    width:60px;
    height:30px;
    position:absolute;
    top:-6px;
    right:1px;
    float:right;
    background:url('/includes/jQuery/modalDialog/images/close.png') no-repeat;
}

.modalDialogHeader a.closeButton:hover {
    background:url('/includes/jQuery/modalDialog/images/closeHover.png') no-repeat;
}

.modalDialog .modalDialogBody {
    position:relative;
    margin:0 7px 7px;
    min-height:165px;
    background:#ffffff;    
    z-index: 903;    
}

.modalDialog .modalDialogMessage{ height:90px; padding:15px; font-family:Arial; font-size:12px; overflow:auto;}

.modalDialog .modalDialogFooter
{
    position:absolute;
    bottom:0px;
    width:95%;    
    padding:10px;
    text-align:right;
    z-index: 904;
}

.modalDialogContainer .shadow
{
    -webkit-box-shadow: #323232 0px 1px 10px;
    -moz-box-shadow: #323232 0px 1px 10px;
    box-shadow: #323232 0px 1px 10px;
}

/* Error Dialog */
.modalDialog.error {
    border:solid 1px #c49595; 
}

.modalDialog.error.linearGradient {
    background: #d3abab;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#ecd9d9), to(#d2abab));
    background: -moz-linear-gradient(#ecd9d9, #d2abab);
    background: linear-gradient(#ecd9d9, #d2abab);
    -pie-background: linear-gradient(#ecd9d9, #d2abab);
}

.modalDialog .modalDialogHeader.error { 
    color:#723c3c; 
}

.modalDialog .modalDialogBody.error {
    border-top:solid 1px #c49595; 
    border-left:solid 1px #c49595; 
    border-right:solid 1px #ebebeb; 
    border-bottom:solid 1px #ebebeb; 
    background:#ffffff url('/includes/jQuery/modalDialog/images/e_bg.jpg') no-repeat right bottom; 
}

.modalDialog .modalDialogFooter.error
{
    background:url('/includes/jQuery/modalDialog/images/e_ft.png');
}

/* Info Dialog */
.modalDialog.info {
    border:solid 1px #809aaf; 
}

.modalDialog.info.linearGradient {
    background: #dfe6ec;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dfe6ec), to(#dfe6ec));
    background: -moz-linear-gradient(#dfe6ec, #dfe6ec);
    background: linear-gradient(#dfe6ec, #dfe6ec);
    -pie-background: linear-gradient(#dfe6ec, #dfe6ec);
}

.modalDialog .modalDialogHeader.info { 
    color:#254666; 
}

.modalDialog .modalDialogBody.info {
    border-top:solid 1px #809aaf; 
    border-left:solid 1px #809aaf; 
    border-right:solid 1px #ebebeb; 
    border-bottom:solid 1px #ebebeb; 
    background:#ffffff url('/includes/jQuery/modalDialog/images/i_bg.jpg') no-repeat right bottom; 
}

.modalDialog .modalDialogFooter.info
{
    background:url('/includes/jQuery/modalDialog/images/i_ft.png');
}

/* Help Dialog */
.modalDialog.help {
    border:solid 1px #809aaf; 
}

.modalDialog.help.linearGradient {
    background: #dfe6ec;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dfe6ec), to(#dfe6ec));
    background: -moz-linear-gradient(#dfe6ec, #dfe6ec);
    background: linear-gradient(#dfe6ec, #dfe6ec);
    -pie-background: linear-gradient(#dfe6ec, #dfe6ec);
}

.modalDialog .modalDialogHeader.help { 
    color:#254666; 
}

.modalDialog .modalDialogBody.help {
    border-top:solid 1px #809aaf; 
    border-left:solid 1px #809aaf; 
    border-right:solid 1px #ebebeb; 
    border-bottom:solid 1px #ebebeb; 
    background:#ffffff url('/includes/jQuery/modalDialog/images/h_bg.jpg') no-repeat right bottom; 
}

.modalDialog .modalDialogFooter.help
{
    background:url('/includes/jQuery/modalDialog/images/h_ft.png');
}

/* Warning Dialog */
.modalDialog.warning {
    border:solid 1px #fee377; 
}

.modalDialog.warning.linearGradient {
    background: #fffac3;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fffac3), to(#fffcd9));
    background: -moz-linear-gradient(#fffac3, #fffcd9);
    background: linear-gradient(#fffac3, #fffcd9);
    -pie-background: linear-gradient(#fffac3, #fffcd9);
}

.modalDialog .modalDialogHeader.warning { 
    color:#967c16; 
}

.modalDialog .modalDialogBody.warning {
    border-top:solid 1px #fee377; 
    border-left:solid 1px #fee377; 
    border-right:solid 1px #ebebeb; 
    border-bottom:solid 1px #ebebeb; 
    background:#ffffff url('/includes/jQuery/modalDialog/images/w_bg.jpg') no-repeat right bottom; 
}

.modalDialog .modalDialogFooter.warning
{
    background:url('/includes/jQuery/modalDialog/images/w_ft.png');
}

/* Success Dialog */
.modalDialog.success {
    border:solid 1px #95b8a1; 
}

.modalDialog.success.linearGradient {
    background: #d1e3d7;
    background: -webkit-gradient(linear, 0 0, 0 bottom, from(#d1e3d7), to(#e4f1e8));
    background: -moz-linear-gradient(#d1e3d7, #e4f1e8);
    background: linear-gradient(#d1e3d7, #e4f1e8);
    -pie-background: linear-gradient(#d1e3d7, #e4f1e8);
}

.modalDialog .modalDialogHeader.success { 
    color:#46634f; 
}

.modalDialog .modalDialogBody.success {
    border-top:solid 1px #95b8a1; 
    border-left:solid 1px #95b8a1; 
    border-right:solid 1px #ebebeb; 
    border-bottom:solid 1px #ebebeb; 
    background:#ffffff url('/includes/jQuery/modalDialog/images/s_bg.jpg') no-repeat right bottom; 
}

.modalDialog .modalDialogFooter.success
{
    background:url('/includes/jQuery/modalDialog/images/s_ft.png');
}

#modalDialogOK 
{
    width:90px;
    display:block;
    margin:0 7px 0 0;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;    
    font-size:100%;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px;
}






