@charset "UTF-8";
/*
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:#CCCCCC;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	letter-spacing: 1pt;
}
body {
	font-size: 90%;
}
p {
	padding: 0px 0 8px 0;
}

p.small {
	font-size:10px;
}

a {
	color: #fff;
	text-decoration: none;
}
a:hover{
	color: #fff;
	text-decoration: underline;
}

h1, h2, h3 {
	font-weight: bold;
	padding-bottom: 0px;
	color: #FFFFFF;
}
h1 {
	font-size: 1.4em;
	letter-spacing: 1px;
}
h2 {
	font-size: 1em;
}
h3 {
	font-size: 1.2em;
}
h1 a, #header h2{
color: #fff;
}
.clear { clear: both; }
#mainContainer {
	width: 760px;
	margin: 20px auto 0 auto; /*** Centers the design ***/
	/*min-height: 300px;*/
	border:1px solid #212121;
  background: #636363;
	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: #636363;
	padding: 0px;
	height:100px;
}

#headerimage {
	background: #fff;
	padding: 1px 0px 1px 0px;
	height:224px;
}
#mainContainer #headerimage img {
	border:0;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
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 {
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: 570px;
	background: #636363;
	min-height:280px;
	/*border-left: 1px solid #999;*/
}
* html #content {
position: relative;  /*** IE needs this  ***/
height:280px;
}
.contentWrap {
	padding: 10px 5px 5px 10px;
}

.contentWrap img.otsikko {
	padding: 0 0 6px 0;
}

/*.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: 160px;
	background: #636363;
	min-height: 250px;
	padding: 10px 0 0 8px;
	/*border:1px solid blue;*/
}

* html #left {
position: relative;  /*** IE needs this  ***/
height: 250px;
}

#left img {
	/*border: 1px solid red;*/
	padding-top: 3px;
}

#left .sivulogo {
	text-align: center;
	margin-top: 80px;
	font-size: 9px;
	margin-bottom: 10px;
}
#left .sivulogo a img{
	border: 0;
	padding:2px;
}

#left .sivulogo a img:hover{
	text-decoration:none;
	border:0;
}
/*#left img.current {
	border-bottom: 1px solid #fff;
	padding-top: 3px;
}

#left img:hover {
	border-bottom: 1px solid #999;
}*/


/**************************
FOOTER
**************************/
#footer {
	width: 760px;
	height:30px;
	margin: 0 auto;
	text-align: center;
	background-color: #212121;
	color: #CCCCCC;
	font-size: 9px;
	border-top: 1px solid #fff;
	border-left:1px solid #212121;
	border-right:1px solid #212121;
	border-bottom:1px solid #212121;

}
