@import url("header.css");
@import url("content.css");
@import url("footer.css");


* { margin: 0; padding: 0; }

html, body { 
	width: 100%; height: 100%; 
	color: #606615;
	font-family: verdana, arial, helvetica;
	font-size: 8pt;
}

a { 
	outline: none; -moz-outline: 0; 
	border: none; border-width: 0;
	color: #606615;
	font-family: verdana, arial, helvetica;
}
a:active { outline: none; -moz-outline: 0; }
a:focus { outline: none; -moz-outline: 0; }
a:hover { text-decoration: none; }

img { border: none; border-width: 0; vertical-align: top;}

table { border-collapse: collapse; }


h1, h2, h3, h4, h5, h6 { 
	font-family: verdana, arial, helvetica; font-size: 12pt; color: black;
	font-weight: bold; 
	text-align: left; 
}


.cl { clear: both; height: 0; font-size: 0; line-height: 0; }



#main { 
	width: 100%; 
	min-width: 1000px;
	min-height: 100%;
	position: relative; 
	background: url("../images/3.gif") 0 0 repeat-y;
}

*html #main { height: 100%; }

*html #main
               {
                    width:expression(
                         (document.compatMode && document.compatMode == 'CSS1Compat')
                         ?
                         (
                              document.documentElement.clientWidth < 1000
                              ?
                              "1000px"
                              :
                              "100%"
                         )
                         :
                         (
                              document.body.clientWidth < 1000
                              ?
                              "1000px"
                              :
                              "100%"
                         )
                    );
               }

