html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#overlay {
	width: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: url('../img/overlay.png') repeat 0 0;
	display: none;
	text-align: center;
	
}

#overlay-panel {
    margin: 10% auto 0 auto;
    width: 780px;
    background: #666666;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;

}
#overlay-panel a{
	color:#ffffff;
	text-decoration:none;
	font-weight: bold;
}

/** ie6 and below only **/
* html #overlay {
    background-image: url('../img/overlay-ie6.png');
    height: 100%;
    position: absolute;

}