﻿div.msgBox
{
    padding:0;
    position: fixed;
    max-width: 430px;
    width: 90%;
    min-height:160px;
    color: #00335e;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background: #FFFFFF !important;
    z-index: 9999999999999999;
    overflow: hidden;
}
div.msgBoxBackGround
{
    top:0;
    left:0;
    position:absolute;
    padding:0;
    margin:0;
    width:100%;
    height:100%;
    background-color:#000000;
    opacity:0.9;
    z-index:9999999999999;
}
div.msgBoxTitle
{
    padding:20px;
    padding-bottom: 0;
    font-size:18px;
    font-weight:400;
    color:#FFFFFF;
    width:100%;
    border:none;
    text-align: center;
    background: #FFFFFF;
}

div.msgBoxImage
{
    margin:20px 5px 0 5px;
    display:inline-block;
    float:left;
    height:75px;
    width:75px;
    display: none;
}
div.msgBoxImage img
{
    height:75px;
    width:75px;
}
div.msgBoxContent
{
    font-size:14px;
    display:inline-block;
    float:left;
    height:auto;
    width:100%;
}
div.msgBoxContent p
{
    padding:0;
    margin:0;
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}

div.msgBoxContent span 
{
    display: table-cell;
    vertical-align: middle;
    color: #262626;
}

/* Content class for IE7*/

div.msgBoxContentIEOld
{
    font-size:11pt;
    margin:0 3px 6px 3px;
    display:inline-block;
    float:left;
    height:90px;
    width:319px;
	position: relative;
}
div.msgBoxContentIEOld p
{
    padding:0;
    margin:0;
    position: absolute;
	top: 50%;
}

div.msgBoxContentIEOld span 
{
    position: relative;
	top: -50%;
}

/* Content class for IE7*/

div.msgBoxButtons
{
    display:inline-block;
    width:100%;
    text-align:right;
    float: left;
    padding: 20px;
    padding-top: 0;
    text-align: center;
}
div.msgBoxButtons input[type='button']
{
    cursor:pointer;
    margin:2px 5px;
    height:35px;
    width:90px;
    border:1px solid #23AFE3;
    background-color:#23AFE3;
    color:#FFFFFF;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
}
div.msgBoxButtons input[type='button']:hover
{
    background-color:#1097C9;
    color:White;
}
div.msgBoxButtons input[type='button']:active
{
    background-color:#AAAAAA;
    color:White;
}

div.msgBoxButtons input[type='button']:focus
{
    outline: none; 
    border: solid 2px #FFCC66; /* replace outline by a border */
	-o-transform:rotate(0); /*remove opera outline*/
}

div.msgBoxButtons input[type='button']::-moz-focus-inner /*remove firefox inner outline*/
{ 
    outline: none; 
    border: none;
}

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;
}
.msgBoxContainer{ float: left; width: 100%; padding: 20px; }

/*Success*/
div.msgBox.success div.msgBoxTitle i{ background: rgba(35, 175, 227, 0.2); color: #23AFE3; height: 80px; width: 80px; line-height: 80px; font-size: 40px; border-radius: 50%; }
div.msgBox.success div.msgBoxButtons input[type='button']{ background: #23AFE3; color: #FFFFFF; border:1px solid #23AFE3; }
.msgButton.Cancel{ background: #f5f5f5 !important; color: #262626 !important; border:#e3e3e3 1px solid !important; }

/*finish*/
div.msgBox.finish div.msgBoxTitle i{ background: rgba(35, 175, 227, 0.2); color: #23AFE3; height: 80px; width: 80px; line-height: 80px; font-size: 40px; border-radius: 50%; }
div.msgBox.finish div.msgBoxButtons input[type='button']{ background: #23AFE3; color: #FFFFFF; border:1px solid #23AFE3; }
.msgButton.Finish{ background: #00B22D !important; color: #FFFFFF !important; border:#00B22D 1px solid !important; }

/*alert*/
div.msgBox.alert div.msgBoxTitle i{ background: rgba(255, 216, 0, 0.2); color: #FFD800; height: 80px; width: 80px; line-height: 80px; font-size: 40px; border-radius: 50%; }
div.msgBox.alert div.msgBoxButtons input[type='button']{ background: #23AFE3; color: #FFFFFF; border:1px solid #23AFE3; }

/*error*/
div.msgBox.error div.msgBoxTitle i{ background: rgba(254, 26, 26, 0.2); color: #FE1A1A; height: 80px; width: 80px; line-height: 80px; font-size: 40px; border-radius: 50%; }
div.msgBox.error div.msgBoxButtons input[type='button']{ background: #FE1A1A; color: #FFFFFF; border:1px solid #FE1A1A; }

/*confirmYesNo*/
div.msgBox.confirmYesNo div.msgBoxTitle i{ background: rgba(254, 26, 26, 0.2); color: #FE1A1A; height: 80px; width: 80px; line-height: 80px; font-size: 40px; border-radius: 50%; }
div.msgBox.Yes div.msgBoxButtons input[type='button']{ background: #23AFE3; color: #FFFFFF; border:1px solid #23AFE3; }
.msgButton.No{ background: #f5f5f5 !important; color: #262626 !important; border:#e3e3e3 1px solid !important; }
