@CHARSET "UTF-8";

/**
 * Modal CSS
 */

.modalBox
{
	display:none;
	color:#333;
	background:#fff;
	box-shadow:0px 0px 10px 0px #999;
	padding:60px;
	overflow:auto;
	width:50%;
	min-width:600px;
	z-index:1000;
	position:absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: 100px;
}

.modalClose
{
	background:url(../images/closeBtn.png) no-repeat -3px -4px;
	display:block;
	height:21px;
	width:21px;
	float:right;
}

.modalClose:hover
{
	background-position-x: -33px;
}

#modalShadow
{
	display:none;
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:rgba(80,80,80,0.5);
}

.modalBox h3
{
	font-size: 27px;
	line-height: 1.5em;
	margin-bottom: 13px;
	font-weight: bold;
}
