/*white box stuff below*/
.whiteHeader {
	height:128px;
	width:565px;
	position:static;
	background-image:url(header.png);
	background-repeat:no-repeat;
}
/* certain IE versions will use this*/
* html .whiteHeader {
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="style/whitebox/header.png", sizingMethod="crop");
}
.whiteHeader *{
	position:relative;
}
.whiteBody {
	width:565px;
	position:static;
	text-align:center;
	background-image:url(body.png);
	background-repeat:repeat-y;
}
/* certain IE versions will use this*/
* html .whiteBody {
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="style/whitebox/body.png", sizingMethod="scale");
}
.whiteFooter {
	position:static;
	height:128px;
	width:565px;
	background-image:url(footer.png);
	background-repeat:no-repeat;
}
/* certain IE versions will use this*/
* html .whiteFooter {
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="style/whitebox/footer.png", sizingMethod="crop");
}

.whiteTitle {
	position:absolute;
	top:60px;
	left:65px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:bold;
	color:#ff0000;
}

.whiteCloseButton{
	background:url(close.gif) no-repeat;
	height:20px;
	width:21px;
	cursor:pointer;
	position:absolute;
	left:480px;
	top:55px;
}
.whiteCloseButton:hover{
	background:url(close_over.gif) no-repeat;
}
.whiteCloseButton:down{
	background:url(close_down.gif) no-repeat;
}
.whiteFrame{
	position:absolute;
	top:100px;
	left:60px;
	height:70%;
	margin:0px auto;
	width:452px;
	
	/* IE hacks*/
	*top:auto;
	*left:auto;
	*position:relative;
  	*margin:0px auto;
	*height:100%;
	*padding-left:15px;
}