/*shadow box*/

#overlay{
	position:absolute;
	background: #000;
	width: 800px;
	height: 600px;
	left: 0;
	top: 0;
	z-index: 98;
	-moz-opacity: 0.7;
	filter:alpha(opacity=70);
	opacity: 0.7;
	display:none;
}

#shadowbox
{
	position:absolute;
	background: #ffffff;
	width: 900px;
	height: 500px;
	z-index: 99;
	top: 40px;
	display:none;
	overflow:hidden;
	padding: 20px;
}

#shadowbox-content
{
	overflow:auto;
	height: 510px;
}

#shadowbox #closeButton
{
	position:absolute;
	right:0;
	top:0;
	width: 20px;
	height: 20px;
	background: #444;
	cursor: pointer;
	z-index: 100;
	background: url('close.png');
}