﻿div.msgBox
{
	width: 85vw;
	max-width: 400px;
	min-height:150px;
	
	padding: 0px;
	
	position: fixed;
	z-index: 1000;
	font-family:Verdana;
	
	color: #FFFFFF ;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 0px 11px #000000;
	-webkit-box-shadow: 0px 0px 11px #000000;
	box-shadow: 0px 0px 5px #000000;
}
div.msgBox > div
{
	position:relative;
	padding: 4px 10px 4px 10px;
	
}
div.msgBox .msgBox_bg
{
	position:absolute;
	display:inline-block;
	width:100%;
	height:100%;
	
	background-color: #000000 ; 
	opacity:0.5 ;
	z-index:0;
}
div.msgBoxBackGround
{
    top:0;
    left:0;
    position:absolute;
    padding:0;
    margin:0;
    width:100%;
    height:100%;
	background-color: #FFF;
    opacity:0.9;
    z-index:999;
}
div.msgBoxTitle
{
	padding:5px 0 5px 0;
	font-variant:small-caps;
	font-size:20px;
	font-weight:lighter;
	
	width:100%;
}
div.msgBoxImage
{
	display:inline-block;
	width:100%;
	max-height:75px;
    text-align:center;
}
div.msgBoxImage .fa {
	font-size:50px;
}
div.msgBoxImage img
{
	width:100%;
	max-height:75px;
}
div.msgBoxContent
{
   display:inline-block;
	width:100%;
	height:90px;
	text-align:center;
}
div.msgBoxContent p
{
    padding:0;
    margin:0;
    display: table;
    height: 100%;
    width: 100%;
}

div.msgBoxContent span 
{
    display: table-cell;
    vertical-align: middle;
	
	font-size:18px
}

div.msgBoxButtons
{
    display:inline-block;
    width:100%;
    text-align:right;
}
div.msgBoxButtons input[type='button']
{
	cursor:pointer;
	margin:2px;
	height:35px;
	width:90px;
	background-color:#FFFFFF;
	
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
div.msgBoxButtons input[type='button']:hover
{
	
}
div.msgBoxButtons input[type='button']:active
{
	
}

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;
    
    width:180px;
}
div.msgInput text
{
    
    font-size:15px;
}