﻿/*
div.msgBox
{
    padding: 4px 10px 4px 10px;
    position: fixed;
    z-index: 1000;
    font-family:Verdana;
    width: 430px;
    min-height:160px;
    color: #00335e;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow: 0px 0px 11px #000000;
    -webkit-box-shadow: 0px 0px 11px #000000;
    box-shadow: 0px 0px 11px #000000;
}
div.msgBoxBackGround
{
    top:0;
    left:0;
    position:absolute;
    padding:0;
    margin:0;
    width:100%;
    height:100%;
    background-color:#000000;
    opacity:0.9;
    z-index:999;
}
div.msgBoxTitle
{
    padding:5px 0 5px 0;
    font-variant:small-caps;
    font-size:16pt;
    font-weight:lighter;
    color:#00335e;
    width:100%;
    border-bottom : 1px solid #002c5f;
}
div.msgBoxImage
{
    margin:20px 5px 0 5px;
    display:inline-block;
    float:left;
    height:75px;
    width:75px;
}
div.msgBoxImage img
{
    height:75px;
    width:75px;
}
div.msgBoxContent
{
    font-size:11pt;
    margin:0 3px 6px 3px;
    display:inline-block;
    float:left;
    height:90px;
    width:319px;
}
div.msgBoxContent p
{
    padding:0;
    margin:0;
    display: table;
    height: 100%;
    width: 100%;
}

div.msgBoxContent span 
{
    display: table-cell;
    vertical-align: middle;
    color: #00335e;
}

div.msgBoxButtons
{
    display:inline-block;
    width:100%;
    text-align:right;
}
div.msgBoxButtons input[type='button']
{
    cursor:pointer;
    margin:2px;
    height:35px;
    width:90px;
    border:1px solid #AFAFAF;
    background-color:#004076;
    color:#FFFFFF;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
div.msgBoxButtons input[type='button']:hover
{
    background-color:#00549c;
    color:White;
}
div.msgBoxButtons input[type='button']:active
{
    background-color:#AAAAAA;
    color:White;
}

div.msgBoxInputs
{
    margin:0 auto;
    padding-top:2px;
    padding-bottom:2px;
    margin-top:5px;
    width:195px;
}
div.msgInput input[type='text'],div.msgInput input[type='password']
{
    padding:4px;
    border:1px solid #DFDFDF;
    color:#2f2f2f;
    width:180px;
}
div.msgInput text
{
    color:#2f2f2f;
    font-size:10pt;
}*/
div.msgBox {
    /* new */
    padding: 0px;
    border: 2px solid #4d6195;
    /* new end */
    position: fixed;
    z-index: 1000;
    font-family: Verdana;
    /*width: 430px;
    min-height:160px;*/
    color: #00335e;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow: 0px 0px 11px #000000;
    -webkit-box-shadow: 0px 0px 11px #000000;
    box-shadow: 0px 0px 11px #000000;
}

div.msgBoxBackGround {
    top: 0;
    left: 0;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.9;
    z-index: 999;
}

div.msgBoxTitle {
    font-weight: lighter;
    width: 100%;
    /*    border-bottom : 1px solid #002c5f;
	font-variant:small-caps;*/
    /*New*/
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    color: #fff;
    background: #596faa;
    font-size: 15px;
    padding: 3px 0px;
    text-indent: 7px;
}

div.msgBoxImage {
    margin: 0px 15px;
    display: inline-block;
    float: left;
    height: 32px;
    width: 32px;
}

    div.msgBoxImage img {
        height: 32px;
        width: 32px;
    }

div.msgBoxContainer {
    padding: 15px 0;
    display: table;
}

div.msgBoxContent {
    font-size: 11pt;
    padding: 0px 05px;
    border-left: 1px solid #eeeeee;
    float: left;
    min-height: 32px;
    max-width: 450px;
    /*width:319px;*/
}

    div.msgBoxContent p {
        padding: 5px 0 0 0;
        margin: 0;
        display: table;
        height: 100%;
        width: 100%;
    }

    div.msgBoxContent span {
        display: table-cell;
        vertical-align: middle;
        color: #3b3e46;
    }

div.msgBoxButtons {
    display: inline-block;
    width: 100%;
    text-align: right;
    /* New */
    border-top: 1px solid #eeeeee;
}

    div.msgBoxButtons input[type='button'], .msgButton {
        /*cursor:pointer;
    margin:2px;
    height:35px;
    width:90px;
    border:1px solid #AFAFAF;
    background-color:#004076;
    color:#FFFFFF;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;*/
        background-clip: padding-box;
        -moz-user-select: none;
        border-radius: 3px;
        cursor: pointer;
        display: inline-block;
        font-size: 12px;
        font-weight: bold;
        line-height: 12px;
        padding: 5px 10px;
        text-align: center;
        color: #fff;
        vertical-align: middle;
        white-space: nowrap;
        border: none;
        margin: 5px 5px 5px 0;
        background: #5074d4;
        min-width: 90px;
        font-family: Arial, Helvetica, sans-serif;
    }

        div.msgBoxButtons input[type='button']:hover, .msgButton:hover {
            background-color: #4663af;
            color: #fff;
        }

        div.msgBoxButtons input[type='button']:active, .msgButton:active {
            background-color: #4663af;
            color: #fff;
        }

div.msgBoxInputs {
    margin: 0 auto;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 30px;
    margin-top: 5px;
    width: 195px;
}

div.msgInput input[type='text'], div.msgInput input[type='password'] {
    padding: 4px;
    border: 1px solid #DFDFDF;
    color: #2f2f2f;
    width: 180px;
}

div.msgInput text {
    color: #2f2f2f;
    font-size: 10pt;
}

.msgIconAlert, .msgIconConfirm, .msgIconError, .msgIconInfo, .msgIconSuccess {
    float: left;
    width: 32px;
    height: 32px;
    background: url(../images/sprites.png) no-repeat;
}
.msgIconWarning{
    float: left;
    background: url(../images/Warning.png) no-repeat;
    width: 64px !important;
    height: 64px !important;
    
}

.msgIconConfirm {
    background-position: 0px -130px;
}

.msgIconAlert {
    background-position: -32px -130px;
}

.msgIconError {
    background-position: -64px -130px;
}

.msgIconInfo {
    background-position: -96px -130px;
}

.msgIconSuccess {
    background-position: -128px -130px;
}

.rowHeaderError {
    float: right;
    width: 17px;
    height: 17px;
    background: url(../images/sprites.png) no-repeat;
    background-position: -184px -129px;
}

.rowHeaderInfo {
    float: right;
    width: 17px;
    height: 17px;
    background: url(../images/sprites.png) no-repeat;
    background-position: -167px -146px;
}

.rowHeaderWarning {
    float: right;
    width: 17px;
    height: 17px;
    background: url(../images/sprites.png) no-repeat;
    background-position: -184px -146px;
}

.rowHeaderQuestion {
    float: right;
    width: 17px;
    height: 17px;
    background: url(../images/sprites.png) no-repeat;
    background-position: -167px -129px;
}
