/* 
body tag definintion and import of core css files.
Bryan Gullan
2005-03-30
NOTE: to be css valid, the @import has to be the very first css
*/

@import url(html.css);
@import url(formatting.css);
@import url(structure.css);
@import url(nav_primary.css);
@import url(nav_secondary.css);

body {
	text-align: center;
	padding:0px;
	margin:0px;
	font-family:Trebuchet MS, Verdana, Tahoma, sans-serif;
	line-height:1.4em;
	height: 100%;
	background: #f2f2f2;
	color: #333333;
}

