/*
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: "Lucida Sans Unicode", Verdana, sans-serif;
background-color: #eee; 
text-align: center; /*** Centers the design in old IE versions ***/
}
body {
font-size: 70%;
}
p {padding: 7px 0 7px 0;}

a {
	text-decoration: none;
}

a:link,  a:visited {
	color: #333;
}

a:hover {
	color: #bda105;
	}

h1, h2, h3 {
font-weight: normal;
padding-bottom: 5px;
color: #bda105;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.3em;
}
h1 a, #header h2{
color: #bda105;
}
.clear { clear: both; 
}
#mainContainer { 
background: navy; 
width: 760px; margin: 0 auto; /*** Centers the design ***/
min-height: 527px;/***seledynek/
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 450px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header { background: white; 
margin-top: 5px; /*** Make some space for the header menu ***/
height: 120px; 

}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 0px;  
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
width: 760px; /*** 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: 760px; 
margin-left: 0px; /*** 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: 750px; background: #fff; padding-left: 10px; border-top: 3px solid #a2aa9a; }
* html #content {
position: relative; /*** IE needs this  ***/
}
.contentWrap{ padding: 116px 10px 60px; }
.contentWrap ol, .contentWrap ul { margin: 10px 0 5px 35px; }
.contentWrap li { margin-top: 12px; padding-bottom: 2px; }


