/* ----- main styles ----- */
@import url("content.css");
@import url("footer.css");

* { margin: 0px; padding: 0px; }
html { width: 100%; height: 100%; }
body { font-family: tahoma; font-size: 9pt; color: #000000; height: 100%; width: 100%; }

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; }
a { color: #000; text-decoration: underline; }
a:hover { text-decoration: none; }

img { border: none; border-width: 0px; }
h1, h2, h3, h4, h5, h6 { color: #272727; font-family: Arial; font-size: 12pt; padding: 0px 0px 10px 0px; }
p { padding: 0px 0px 15px 0px; }
ul { margin: 0px 0px 10px 10px; }
li { margin: 5px 0px 10px 15px; }
table { border-collapse: collapse; }
input, select, textarea { font-family: tahoma; font-size: 8pt; color: #000000; }
.clear { clear: both; font-size: 0pt; line-height: 0px; height: 0px; }

/* ----- special classes styles ----- */

.main { position: relative; width: 100%; min-height: 100%; min-width: 1000px; background: url("../images/main-top-background.gif") repeat-x; padding: 39px 0px 0px 0px; }
.main td { background: none; min-width: 100%;}
.bottom { left: 0px; bottom: 51px; position: absolute; background: url("../images/content-bottom.gif") repeat-x; }

*html .main
               {
                    width:expression(
                         (document.compatMode && document.compatMode == 'CSS1Compat')
                         ?
                         (
                              document.documentElement.clientWidth < 1000
                              ?
                              "1000px"
                              :
                              "100%"
                         )
                         :
                         (
                              document.body.clientWidth < 1000
                              ?
                              "1000px"
                              :
                              "100%"
                         )
                    );
               }
