﻿/* screen.css stylesheet contains styles specific to viewing onscreen only.  They will screw up printing the webpage if specified for print! */
@media screen  
{
html,body,form {
	margin:0;
	padding:0;
	height:100%;  /*needed for container min-height */
	min-height: 100%;
}

div#container {
	margin:0 auto; /* center, not in IE5 */
	padding:0;
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}
} /* end media screen */