/* Fonts */
#popup_underlay
{
	display:none;
	position: fixed; 
	top: 0%; 
	left: 0%;
	z-index: 1000000; 
	height: 100%;
	width: 100%;
	background: #333333 50% 50%; 
	/*CSS3*/
	opacity: 0.5; 
	/*MSIE-7 compatibility - Doesn't validate, can't fix :(*/
	filter: alpha(opacity=50);
	overflow:auto;
}

#popup_wrapper
{
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	min-width: 300px;
	min-height: 100px;
	max-height: 90%;
	margin: auto;
	z-index: 1000005;
	border-radius: 10px;
	border: 2px solid #B8ABA0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4);
	background-color: black;
	padding: 10px;
}

#popup_wrapper h1
{
	font-family: Unispace;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 14px;
	margin-top:0px;
}

#popup_body
{
	font-family: Unispace;
	color: #66c438;
	font-weight: normal;
	font-size: 14px;
	top:0px;
	height:90%;
	overflow:auto;
}

#popup_wrapper_close
{
	float: right;
	margin-right: 0px;
	color:orange;
	text-decoration:none;
}