/*
	css for the Space Survey home page - settings for elements in spaceSurvey.master
*/
body#home {
	margin: 1px 0px 0px 1px; /* top right bottom left */
	font-size: 10pt; /* 8pt */
	font-family: Arial;
	background-image: url('images/bodybkg.gif');
}

/*
	used in master page: div#page width is 10px more then table#header width 

	minimum screen width as of 11/2024 is 1280
*/
div#page
{
	width: 1260px; /* 990/2 = 495 */
	/*height: 800px;*/
	margin-left: auto;
	margin-right: auto;
	border-style: solid;
	border-width: 0px;
	background-color:White;
}

table#header
{
	width: 1250px;
	font-size: 11pt;
}

/* 145 + 5 + 400 + 150 + 550 = 1250 -> table#header width 
   145 + 5 + 350 + 120 + 630 = 1250
	width of first 2 cells are fixed, width of cells 3 to 5 are variable
*/
td#cell1
{
	width: 145px;
	height: 50px;
}

td#cell2
{
	width: 5px;
	height: 50px;
}

td#cell3
{
	width: 350px;
	height: 50px;
}

td#cell4
{
	width: 120px;
	height: 50px;
}

td#cell5
{
	width: 630px;
	height: 50px;
}

table#error
{
	width: 1250px;
	font-size: 11pt;
}
