@charset "UTF-8";
html 
{ min-height: 100.1%;
overflow-y: scroll;
}
* { 
padding : 0; 
margin : 0; 
} 
body, html {
font: .85em arial,sans-serif;
color: #666;
font-weight: bold;
background-color: #000000;
text-align: justify; 
}
p {
color: 	#8b8682;
padding: 5px 0 5px 0;
font-weight: bold;
}
a {
color: 	#8b8682;
text-decoration: none;
outline:none;
}
a:hover{
color: #40748a;
text-decoration: none;
}
a:active
{
text-decoration: none;
outline: none;
}
a:focus
{
-moz-outline-style: none;
outline: none;
}
img { 
border: none;
}
h1 {
font: 400 5.5em arial,sans-serif;
color: #FFF;
margin-top: 48px;
margin-bottom: 0px;
padding-bottom: 0px;
letter-spacing: -0.1em;
}
h2 {
font: 400 2.5em arial,sans-serif;
color:  #40748a;
margin-bottom: 10px;
padding-top: 10px;
letter-spacing: -0.1em;
}
h3 {
font-size: 1.1em;
color: 	#8b8682;
}
h4 {
font-size: 1.4em;
color: #813519;
margin-top: 5px;
margin-bottom: 5px;
}
h5 {
font: 400 1.8em arial,sans-serif;
color: #799ead;
margin-top: 0px;
padding: 0;
margin-bottom: 5px;
letter-spacing: -0.1em;
}
h6 {
font-size: 1.1em;
color: #8b8682;
padding: 0 10px 0 6px;
margin-right: 25px;
}
h7 {
font-size: 1em arial,sans-serif;
color: #799ead;
}
h8 {
font-size: 1em arial,sans-serif;
font-style:italic;
color: #799ead;
}
span {
display: none;
}
.clear { clear: both; }
#mainContainer {
width: 1200px;
margin: 0 auto; /*** Centers the design ***/
min-height: 500px;
background: #000000;
text-align: justify; 
}
* html #mainContainer {
height: 600px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
margin-top: 16px; /*** Make some space for the header menu ***/
background: #000000;
padding: 10px 0 0 0;
height: 100px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 500px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width.
***/
.float-wrap {
float: left;
width: 1200px;
margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 300px;
background-color: #000000;
}
#content p {
float: right;
width: 300px;
background-color: #000000;
} 
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap{
padding: 5px;
text-align: right;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 25px;
list-style: none;
}
.contentWrap li {
padding-bottom: 2px;
}
form {
font-size: 400 1.1em arial,sans-serif;
font-weight: bold;
color: #8b8682;
letter-spacing: -0.1em;
}

/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
float: left;
width: 863px;
background-color: #000000; 
min-height: 500px;
padding: 5px;
}
*html #left {
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
height: 500px;
}
#left p {
width: 853px;
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
margin: -130px 0 0 -450px; /*** Moves the right column to the top of the page. This is now our top menu above the header ***/
float: left; 
width: 750px;
background: #000000;
padding: 5px;
height: 40px;
}
* html #right {
position: relative; /*** IE needs this. ***/
margin-top: -125px; /***Since IE is threating padding different than other browsers we need to move it a little bit more ***/
}
#right ul {
float: right;
list-style: none;
}
#right li {
display: inline; /*** Making the links horisontal aligned ***/
padding-right: 10px;
text-align: right;
}
/*************************
NAV
**************************/
#nav {
margin: 0.5em 0;	
}	
#nav ul {
padding: 5px;
margin: 0;
}
#nav li a {
margin-left: 50px;
padding-top: 20px;
text-decoration: none;
font: 1.2em arial,sans-serif;
font-weight: bold;
color: #8b8682;   
letter-spacing: -1px;
}
#nav li a:hover {
color: #40748a;
background: #000000 url('images/blue.gif') no-repeat top center;
}
