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


* { margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; }
body { background-color: #fff; }

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; }




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

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


.clear { font-size: 0pt; line-height: 0px; height: 0px; clear: both; }





