/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #000; 
font-family: Arial, Tahoma, sans-serif;
background-color: #000; 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 0.8em;
}
p {padding: 7px 0 7px 0;}

a {
color: #ffffff;
}
a:hover{
color: #ffffFF;
text-decoration: none;
}

h1, h2, h3 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
width: 1004px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #6a0000;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
background: #6a0000;
padding-left: 30px
}
#header #banner{
position:relative;
top:-25px;
left: 120px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 188px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 816px; /*** 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 as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 1004px;
margin-left: -188px; /*** 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: 806px;
background: #550707;
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap {
padding: 20px;
color: #fff;
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
#intro h2{
text-decoration:underline;
}
#adbar img{
padding-left:30px;
}
#mainlist{
padding-top:20px;
}
#mainlist a{
color: #f5fa27;
font-weight:bold;
}
#mainlist ul{
width:500px;
list-style-type:none;

margin:0 auto;
}
#mainlist li{
float:left;
padding:10px;
}
#mainlist h2{
text-decoration:underline;
}
.listings{
	padding:10px;
	height:100px;
	
}

.listings img{
float:left;
padding-right:20px;

}
.yellowlink{
color: #ffea00;
font-size: 14px;
}
#types{
margin:20px auto;
width:450px;
text-align:center;
}
#types ul{
list-style-type:none;
}
#types li{
display:inline;
padding-left:20px;
}
/**************************
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: 188px;
background: #6a0000; 
min-height: 250px;
padding: 0px;
position: relative; 
}
* html #left {
position: relative;  /*** IE needs this  ***/
height: 250px;
}
#left ul {
font-size:12px;
padding-top:10px;
padding-bottom: 4px;
padding-left:20px;
list-style-type:none;
}
#left li {
padding-bottom: 4px;
color: #fff;
}


/*************************
RIGHT COLUMN
**************************/
#right {
float: right;
width: 796px;
background: #550707;
padding: 5px;
margin-left: -178px; /*** Same length as .outer padding-left but with negative value ***/
}
* html #right {
position: relative;  /*** IE needs this  ***/
}
#hardlinks{
background-color: #6a0000;
margin-right:20px;
margin-left:20px;
height:140px;
margin-bottom:20px;
}
#hardlinks ul {
list-style: none;
padding-left:40px;
padding-bottom: 15px;
color: #fff;
}
#hardlinks li {

background-color: #6a0000;
width:10em;
float:left;
}
/**************************
FOOTER
**************************/
#footer {
width: 1004px;
margin: 0 auto;
text-align: center;
background-color: #000;
color: #fff;
}