/*
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: url('images/background.gif'); 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 60%;
}

a {
color: #7F0000;
}
a:hover{
color: #7F0000;
text-decoration: none;
}

h1, h2, h3, h4, h5 {
font-weight: bold;
padding-bottom: 5px;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 1.8em;
}
h3 {
font-size: 1.3em;
}
.clear { clear: both; }
#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #3B3B3B;
xborder-left:1px solid #7F0000;
xborder-right:1px solid #7F0000;
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: url('images/bricks.jpg') white;
background-repeat: no-repeat;
background-position: 100% 85%;
padding: 10px;
color:gray;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 50px; /*** Make som space for our top menu ***/
padding-left: 165px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 595px; /*** 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 {
background:url('images/cubes.gif') #3B3B3B;
background-repeat: no-repeat;
background-position: bottom left;
float: left;
width: 760px;
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: 600px;
overflow:auto;
background: #fff;
}
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap {

}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
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: 150px;
background:url('images/backline_darkgray.gif') #4D4D4D; 
background-repeat: repeat-x;
background-position: bottom;
min-height: 250px;
padding: 5px;
color:#7F0000;
}
* html #left {
position: relative; /*** IE needs this  ***/
height: 250px;
}
#left ul {
list-style: square;
list-style-position:inside;
padding-bottom: 4px;
color: #FFB300;
}
#left ul li {
padding-bottom: 1px;
margin-bottom: 2px;
background-color:transparent;
border-bottom:1px dotted #3B3B3B;
font-family: arial;
color: #FFB300;
font-size: 11px;
font-weight: bold;
          
}

#left ul li li {
padding-bottom: 1px;
margin-top:3px;
margin-bottom: 2px;
padding-left:10px;
background-color:transparent;
border-bottom:none;
font-family: arial;
font-size:10px;
color: #FFB300;
}



#left li a {
color: #FFB300;
text-decoration:none;
}

#left li a:hover { color: yellow;}

/*************************
RIGHT COLUMN
**************************/
#right {
margin: -52px 0 0 -760px; /*** Move the right column so it takes the positon as a top menu ***/
float: left; 
width: 760px;
background: url('images/backline_darkred.gif') #7F0000;
background-repeat: repeat-x;
padding: 0px 0px 0px 0px;
color:#FFB300;
}
* html #right {
position: relative; /*** IE needs this  ***/
}

#lightred {
background: url('images/backline_lightred.gif') #C45F00;
background-repeat: repeat-x;
} 

#right ul {
list-style: none;
padding:5px;
Xborder-top:1px solid #D7161F;
Xborder-bottom:1px solid #D7161F;
}
#right li {
display: inline;
padding-right: 5px;
padding-left: 5px;
border-right:1px solid #7F0000;
}
#right li a {
color: black;
Xbackground-color:#B30000;
padding:4px;
font-weight:bold;
text-decoration:none;
font-size: 11px
}
#right li a:hover { 
color:#7F0000;
background-color: #F8A900;
}

/**************************
FOOTER
**************************/
#footer {
width: 760px;
margin: 0 auto;
text-align: center;
Xbackground: url('images/backline_darkred.gif') #7F0000;
background-color: #44403E;
background-position: -1px;
background-repeat: repeat-x;
color: #FFB300;
xborder:1px solid #7F0000;
border-top-width: 0px;
padding-top:5px;
padding-bottom:5px;
}
#tools a:link,
#tools a:visited {
	color:#FFB300;
	}
	
#tools ul {
list-style: none;
padding:1px;
}
#tools li {
display: inline;
padding-right: 2px;
padding-left: 2px;
border-right:1px dotted #FFB300;
}
#tools li a {
padding:2px;
font-weight:bold;
text-decoration:none;
}
#tools li a:hover { 
color:yellow;
background-color: transparent;
}
#currentpath {
	color: red;
	background-color: #7F0000;
	padding: 1px 0px 1px 0px;
	}
#currentpath a:link,
#currentpath a:visited {
	color:#FFB300;
	text-decoration: none;
	padding: 0px 5px 0px 5px;
}

#currentpath a:hover { 
color:yellow;
background-color: transparent;
}
