@import url("header.css");
@import url("content.css");
@import url("footer.css");

* { margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; }
body,td { padding: 0; margin: 0; }
body,p,td { font-family: arial,helvetica; font-size: 8pt; }

a { outline: none; -moz-outline: 0; border: none; border-width: 0px; }
a:active { outline: none; -moz-outline: 0; }
a:focus { outline: none; -moz-outline: 0; }

img { border: none; border-width: 0px; }
form { margin: 0px; padding: 0px; }

input     { height: 21px; font-size: 8pt; }
input.fld { width:100%; }
input.sub { height:24px; }

select   { height:21px; font-size: 8pt; }
textarea { font-size: 8pt; width: 100%; }

a {color:#0066cc; text-decoration: none;}
a:hover {color:#005599; text-decoration: none;}

/* main */
#main { width: 100%; min-width: 1000px; min-height: 100%; position: relative; margin: 0px auto; background-color: #fff; }
*html #main { height: 100%; }

* html #main {
	width:expression(
		(document.compatMode && document.compatMode == 'CSS1Compat')
		?
		(
			document.documentElement.clientWidth < 1000
			?
			"1000px"
			:
			"auto"
		)
		:
		(
			document.body.clientWidth < 1000
			?
			"1000px"
			:
			"auto"
		)
	);
}

