/* ==================================================================== 
GENERAL STYLING 
-------------------------------------------------------------------- */ 
/* border:nones are for NN4 */ 
html { margin: 0px; padding: 0px; } 
body 
    { 
    margin: 0px; 
    padding: 0px; 
    background-color: black; 
    font:10pt Arial, sans-serif;
    color: black;
    } 

img.padright {
   margin-right: 10px;
   margin-top: 5px;
   margin-bottom: 5px;
 }

img.padleft {
   margin-left: 10px;
   margin-top: 5px;
   margin-bottom: 5px;
 }
p {padding: 0px; margin: 0px;} 
.clear { clear: both;} /* CSS HACK: only for NN4, so now use Caio hack to cleanse palette */ 
/*/*/ .clear { display: none; } /* */ 
/* box-wrap is only needed if you want to set a background color for the columns, put a border round the content block or fix the content width */ 
.box-wrap 
    { 
    color : black; 
    background: transparent; 
    margin: 0 auto;
    margin-top: 10px; 
    width: 1152px;
    border: thin solid maroon;
    } 
.headerblock 
    { 
    color: black; 
    background: DarkKhaki; 
    margin: 0px; 
    padding: 7px; 
    padding-right: 5px; 
    border: none; 
    height: 110px;
    text-align: left;
    }
 
.footerblock { 
    width: 1152px;
    background: cornsilk; 
    clear: both; 
    height: 90px;
    padding: .5em;
    text-align: left;
    border: none;
    border-top: thin solid maroon;
    display: table-cell;
   }
 
/* ==================================================================== 
COLUMNS LAYOUT 
-------------------------------------------------------------------- */ 
.columns-float 
    { 
    float: left; 
    width: 480px; 
    } 

.sidebar 
    { 
    float: left; 
    width: 100px; 
    height: 664px;
    } 

/* CSS HACK: Caio hide from NN4 since NN4's float model is all wrong */ 
/*/*/ 
.navblock {
  margin-left: 100px;
} 

.infoblock {
   margin-left: 480px;
   background: white;
} 

/* */ 
.sidebar-content, .navblock-content, #infoblock-content 
    { 
    border: none; 
    color: black; 
    padding-bottom: 5px;
    height: 675px;    } 

.sidebar-content {
  background: DarkKhaki;
  padding-right: 10px; 
  padding-left: 10px; }
 
.navblock-content {
   padding-left: 6px;
   padding-right: 6px;
   text-align: left;
   float: left;
   overflow: auto;
   background: cornsilk;
  } 

#infoblock-content {
   text-align: left;
   overflow: auto;
   padding-left: 5px;
   padding-right: 5px;
  } 

.caps { font-variant: small-caps; }

h1 {color: maroon; text-align: center; font: small-caps 700 1.8em arial;}
h2 {color: maroon; text-align: center; font: 700 1.6em arial;}
h3 {color: maroon; text-align: center; font: 700 1.4em arial;}
h4 {color: darkolivegreen ; text-align: left; font: 700 1.2em arial;}
h5 {color: darkolivegreen ; text-align: center; font: 700 1.0em arial;}

.h6 {color: darkolivegreen ; text-align: left; font: 700 1.3em arial;}

hr {
   color: maroon;
   margin-left: auto;
   margin-right: auto;
}
p.tiny {
    font: normal 8pt Arial, sans-serif;
    text-indent: 0em;
}

p.tiny:first-line {
  font-variant:small-caps;
}

/* Link Styles */

a:link { color: maroon; background-color: cornsilk; border-style: none; }
a:hover { color: white; background-color: maroon; border-style: none; }
a:visited { color: darkolivegreen; background-color: cornsilk; border-style: none; }

/* CSS HACK: position:relative needed by IE6 otherwise the header and col 2 don't show up on initial rendering - they're there but you have to minimise the window or switch to another app and back to see the full effect. But IE5(pc) doesn't like it. And nor does NN4. 
NB. the use of pos:rel has to go way beyond skin-deep - any nested element that needs a background colour appears to require to be be relatively positioned */ 
/*/*/ 
.box-wrap, .columns-float, .sidebar, .navblock, .infoblock, h2 
    { p\osition: relative; } /* */ 