/* ----- import styles ----- */
@import url("header.css"); 
@import url("content.css"); 
@import url("footer.css"); 

/* ----- all default ----- */
* { margin: 0px; padding: 0px; }


/* ----- html & body styles ----- */
html, body { width: 100%; height: 100%; padding: 0px; margin: 0px; border: 0px; border-width: 0px; outline: 0px; text-align: left; }
body { font-family: 'tahoma', 'arial'; font-size: 10pt; line-height: 14px; color: #000; }

/* ----- headers style ----- */
h1 { font-size: 10pt; line-height: 14px; text-transform: uppercase; text-decoration: underline; color: #b34000; }
h2 { font-size: 10pt; line-height: 14px; text-transform: uppercase; text-decoration: underline; color: #b34000; }
h3 { font-size: 10pt; line-height: 14px; color: #b34000; }
h4 { font-size: 20pt; line-height: 24px; }
h5 { font-size: 12pt; line-height: 16px; }
h6 { font-size: 9pt; line-height: 14px; }

/* ----- table default ----- */
table { border-collapse: collapse; border-spacing: 0px; border-width: 0px; }
td, th { vertical-align: top; }

/* ----- list style ----- */
ul, ol { margin: 0 0 0 15px; }
li { margin: 0 0 0 15px; padding-left: 16px; background: url("../images/c-list-bg.gif") left 8px no-repeat; list-style-type: none; }

/* ----- other default ----- */
p { margin: 0 0 14px 0; padding: 0; color: #000; background-color: transparent; }
a { color: #000; background-color: transparent; text-decoration: underline; }
a:link { outline: none; -moz-outline: 0px; }
a:visited { outline: none; -moz-outline: 0px; }
a:hover { text-decoration: none; outline: none; -moz-outline: 0px; }
a:active { outline: none; -moz-outline: 0px; }
:focus { outline: 0px; -moz-outline: 0px; }
strong { font-weight:bold; }
span { color: #b34000; font-weight: bold; }
em { font-style: italic; }
img { border: none; border-width: 0px; }

/* ----- clear ----- */
.clear { clear: both; font-size: 0pt; line-height: 0px; height: 0px; }

/* ----- MAIN ----- */
#main { width: 100%; min-width: 1000px; min-height: 100%; position: relative; z-index: 0; }

/* ----- top background ----- */
.topbg { left: 0; top: 0; position: absolute; width: 100%; height: 4px; font-size: 0pt; line-height: 0px; background-color: #d44c00; z-index: 10; }

/* ----- IE Hacks ----- */
/* ----- IE6 ----- */
* html #main { height: 100%; width: expression((document.compatMode && document.compatMode == 'CSS1Compat') ? (document.documentElement.clientWidth < 1000 ? "1000px" : "auto") : (document.body.clientWidth < 1000 ? "1000px" : "auto"))}
* html img { vertical-align: top; z-index: 1; }
/* ----- IE7 ----- */
*:first-child+html img { vertical-align: top; }