/* design elements for the grey area behind the overlay*/
#outer-border 
{
	background-color: #222222;
	position: absolute; 
	top: 0;	
	left: 0;
	width: 100%;
	height: 500px;
	filter:alpha(opacity=70);
	opacity: 0.7;
	z-index:1;
}
/*design elements for the data container - the div that has the table as his child*/
#outer-data
{
	position:absolute;
	z-index:2;
	top:0;
	position: absolute;
	background-color: #FFFFFF;
	padding: 0px;
	padding-top: 0px;
	height: 100px;
	width: 100px;
	font-family: verdana,arial,sans;
	font-size: 12px;
	color: navy;
}
/*design elements for the loading div*/
#loading
{
	position: absolute;
	top: 30%;
	left: 33%;
	height: 200px;
	text-align: center;
	line-height: 0;
	filter:alpha(opacity=100);
	opacity: 1;
	z-index:10;
}
/*design elements for the data row - the middle row of the table*/
#data-box
{
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}
/*design elements for the top area of the table*/
#top
{

}
/*design elements for the bottom area of the table*/
#bottom
{

}