﻿div.msgBox
{
    padding: 20px 20px 20px 20px;
    position: fixed;
    z-index: 1050;
    font-family:Verdana;
    width: 400px;
    min-height:70px;
    color: #00335e;
    line-height: 200%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0px 0px 21px #333333;
    -webkit-box-shadow: 0px 0px 21px #333333;
    box-shadow: 0px 0px 21px #333333;
}
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:10px 0 10px 0;
    font-size:16pt;
    color:#000000;
    width:100%;
    font-weight: bold;
}
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:center;
    height:100px;
    width:400px;
}
div.msgBoxContent p
{
    padding:0;
    margin:0;
    display: table;
    height: 100%;
    width: 100%;
}

div.msgBoxContent span 
{
    display: table-cell;
    vertical-align: middle;
    color: #7F7F7F;
}

/* Content class for IE7*/

div.msgBoxContentIEOld
{
    font-size:11pt;
    margin:0 3px 6px 3px;
    display:inline-block;
    float:center;
    height:70px;
    width:400px;
	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;
}
div.msgBoxButtons input[type='button']
{
    cursor:pointer;
    margin:2px;
    height:40px;
    width:120px;
    border:1px solid #E74C3C;
    background-color:#E74C3C;
    color:#FFFFFF;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    outline: none;
}
div.msgBoxButtons input[type='button']:hover
{
    background-color:#EA5E50;
    color:White;
}
div.msgBoxButtons input[type='button']:active
{
    background-color:#EA5E50;
    color:White;
}

div.msgBoxButtons input[type='button']:focus
{
    outline: none;
	-o-transform:rotate(0); /*remove opera outline*/
}

div.msgBoxButtons input[type='button']::-moz-focus-inner /*remove firefox inner outline*/
{
    outline: none;
    border: none;
}


div.msgBoxButtons input[name='CANCELAR']
{
    cursor:pointer;
    margin:2px;
    height:40px;
    width:120px;
    border:1px solid #F8F8F8;
    background-color:#F8F8F8;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color:#000000;
    outline: none;
}
div.msgBoxButtons input[name='CANCELAR']:hover
{
    background-color:#F8F8F8;
    color:#000000;
}
div.msgBoxButtons input[name='CANCELAR']:active
{
    background-color:#F8F8F8;
    color:#000000;
}

div.msgBoxButtons input[name='CANCELAR']:focus
{
    outline: none; 
	-o-transform:rotate(0); /*remove opera outline*/
}

div.msgBoxButtons input[name='CANCELAR']::-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:400px;
}
div.msgInput input[type='text'],div.msgInput input[type='password']
{
    padding:4px;
    border:1px solid #DFDFDF;
    color:#2f2f2f;
    width:300px;
}
div.msgInput text
{
    color:#2f2f2f;
    font-size:10pt;
}