@charset "utf-8";
/* CSS Document */
/*
CSS-file for three column layout 2006

Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
color: #454545; 
font-family: Verdana, Arial, Tahoma, sans-serif;
background-color: #FFF; 
text-align: center; /*** Centers the design in old IE versions ***/
height: 100%;
}
body {
font-size: 90%;
}
p {padding: 7px 0 7px 0;}

a {
color: #000099;
}
a:hover{
color: #0000FF;
text-decoration: none;
}

h1, h2, h3 {
font-weight: normal;
color:#545195;
text-transform:uppercase;

}
.clear { clear: both; }

#mainContainer {
width: 760px;
margin: 0 auto; /*** Centers the design ***/
background: #bcd476 url(../images/grad-footer.png) bottom left repeat-x; /*** This is our faux columns ***/
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
border-bottom:#9bba65 solid 1px;
}


/**************************
HEADER
**************************/
#header {
background: #FFF;
padding: 0px;
height:83px;
border-bottom:#545195 solid 2px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 165px;  
}
* html .outer {
padding-right: 120px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.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 ***/
padding-bottom: 30px;
}
* 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: 630px;
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: 470px;
background: #fff url(../images/bg-top.png) top right no-repeat; /*** This is our faux columns ***/
}
* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
padding: 25px;
font-size:0.9em;
}
.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;
padding: 0px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
float: right; 
width: 120px;
padding: 5px;
color:#FFF;
font-size:.85em
}
* html #right {
position: relative;  /*** IE needs this  ***/
margin-right: -120px; /*** IE gets this margin. ***/
}
#right ul {
list-style: none;
padding-bottom: 4px;
}
#right li {
padding-bottom: 2px;
}
/**************************
FOOTER
**************************/
#footer {
width: 760px;
height: 76px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin: 0 auto;
text-align: right;
background-color: #b8d470;
border-bottom:#9bba65 solid 15px;
}

ul#sliding-navigation {
	list-style: none;
	font-size: .70em;
	margin: 10px 0;
	text-transform:uppercase;
	font-weight:bold;
}
ul#sliding-navigation li.sliding-element h3,  ul#sliding-navigation li.sliding-element a {
	display: block;
	width: 130px;
	padding: 5px 10px;
	margin: 0;
	margin-bottom: 5px;
}
ul#sliding-navigation li.sliding-element h3 {
	color: #fff;
	background: #545195;
	font-weight: normal;
}
ul#sliding-navigation li.sliding-element a {
	color: #FFF;
	background:#9bba65;
		text-decoration: none;
}
ul#sliding-navigation li.sliding-element a:hover {
	color: #FFF;
	background: #545195;
}
