@charset "utf-8";
body {
	font: 1em Arial, Helvetica, sans-serif;
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 15px 0px 0px;
}
h1 {
	font-size: 22px;
	font-weight: bold;
}
h2 {
	font-size: 20px;
	font-weight: bold;
}
h3 {
	font-size: 18px;
	font-weight: bold;
}
h4 {
	font-size: 16px;
	font-weight: bold;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.linkdiv { 
  position:absolute; 
  width:100%;
  height:100%;
  top:0;
  left: 0;
  z-index: 1;

  /* edit: fixes overlap error in IE7/8, 
     make sure you have an empty gif */
  background-image: url('images/empty.gif');
}


.wrap_all {
	margin: 50px auto;
	width: 672px;
}
.header {
	height: 90px;
	text-align: center;
	font: bold 88px/60px "Times New Roman", Times, serif;
	color: #1b6627;
}
.navidiv {
	padding-bottom: 10px;
}
.btn_nav {
	background: url(images/button_pohja.png) no-repeat center center;
	float: left;
	height: 26px;
	width: 134px;
	text-align: center;
	padding-top: 7px;
    position:relative;
}
.btn_nav_on {
	background: url(images/button_pohja_active.png) no-repeat center center;
	float: left;
	height: 26px;
	width: 134px;
	text-align: center;
	padding-top: 7px;
    position:relative;
}
.btn_nav a, .btn_nav_on a {
	font: bold 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #FFF;
	text-decoration: none;
}
.btn_nav:hover {
    background: url(images/button_pohja_active.png) no-repeat center center;
}

.sisalto {
}



.fltrt {  
    float: right;
	margin-left: 8px;
}
.fltlft { 
    float: left;
	margin-right: 8px;
}
.clearfloat { 
    clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.clf {
    clear: both;
}
