html{
	width:100%;
	height:100%;
}

body {
	padding:0px;
	margin:0px;
	width:100%;
	height:100%;
	text-align:center;
	background-color:#fff;
	font-family:sans-serif;
}

#main {
	font-family:sans-serif;
	margin:0px auto;
	width:100%;
	height:100%;
	min-height:620px;
	min-width:900px;
}
* html div#main { 
	width : expression( document.body.clientWidth > 900 ? "100%" : "900px"); /* sets min-width for IE */
	height: expression( document.body.clientHeight > 620 ? "100%" : "620px"); /* sets min-height for IE */
}

a {
	color:#15a;
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
a.home {
}