@charset "utf-8";
/* CSS Document */

.overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	
	color: #585858;
	font-family: Verdana, Helvetica, Sans-Serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	line-height: 14px;
	border: none;
	letter-spacing: 0.02em;
	z-index:999999;
	display:none;
}

.overlay .bg {
	background:#000;
	opacity:0.4;
	width:100%;
	height:100%;
	display:none;
}

.overlay .content {
	position:fixed;
	top:50%;
	left:50%;
	width:420px;
	height:200px;
	margin-left:-220px;
	margin-top:-220px;
	background:#fff;
	padding:10px;
	-moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
	/* For IE 8 */
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#cccccc')";*/
	/* For IE 5.5 - 7 */
	/*filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#cccccc');*/
	border:#ddd 1px solid;
}

.overlay .content .close {
	width:15px;
	height:15px;
	position:absolute;
	right:10px;
	top:10px;
	z-index:999;
	cursor:pointer;
}

.overlay .content .close a {
	display:block;
	width:15px;
	height:15px;
	background:url(img/close_invert_x.jpg) no-repeat;
}

.overlay .content .close a:hover {
	background:url(img/close_invert_x_hover.jpg) no-repeat;
}

.overlay .content h1 {
	font-weight:bold;
	font-size:12px;
	line-height:0px;
	margin:0;
	margin-bottom:20px;
	
}

.overlay .content .footer {
	position:absolute;
	bottom:2px;
	font-size:9px;
}

.overlay .content .button {
	position:absolute;
	bottom:20px;
}

.overlay .content .button .button_middle a {
	margin-right:5px;
}

.overlay .content .button_go {
	right:10px;
	
}

.overlay .content .button_abort {
	left:10px;
}