/*
-----------------------------------------------------
SN styles for screen media
FileName:    snScreen.css
-----------------------------------------------------
*/

/* basic elements */
body {
	font: .8em Trebuchet MS, Verdana, Arial;
	margin:0px 20px 0px 20px;
	padding:0px;
	background:#FFFFFF;
	background: transparent url(../images/liittologo.gif) no-repeat top right; */
	background-attachment: fixed;
	}
	
body.indexPage {
    background: #FFF;
}

a:link {
    color:#000;
    border-bottom: 1px solid #000;
    font-size:100%;
    font-weight:bold;
    color:#2F2F2F;
	text-decoration: none;
	}
a:visited {
    color:#606060;
    border-bottom: 1px solid #4E4E4E;
    font-size:100%;
    font-weight:bold;
	text-decoration: none;
	}
a:hover, a:active {
    border-bottom: 2px solid #CC0000;
    font-size:100%;
    font-weight:bold;
	text-decoration:none;
    color:#000;
	}




h1, h2, h3, h4, h5, h6 {
    color: Black;
    background-color: transparent;
    font-family: Trebuchet MS, Verdana, Lucida, Helvetica, Arial, sans-serif;
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding-top: 0.5em;
}

h1 {
    font-size: 160%;
                            /* mid-grey */
    border-bottom: 1px solid #ACACAC;

}
.documentFirstHeading {
                            /* dark-grey */
    border-bottom: 1px solid #585858;
    padding:0;
}

h2 {
    font-size: 130%;
                            /* mid-grey */
    /* border-bottom: 1px solid #ACACAC; */
}

.documentSecondHeading {
    font-size:110%;
    font-weight:bold;
    border-bottom:none;
}

h3 {
    font-size: 110%;
    font-weight:bold;
                            /* light-grey */
    border-bottom: 1px solid #EBEBEB;
}

h4 {
    font-size: 100%;
    border-bottom: none;
    font-weight: bold;
}

h5 {
    font-size: 95%;
    border-bottom: none;
    font-weight: bold;
}

h6 {
    font-size: 85%;
    border-bottom: none;
    font-weight: bold;
}
	


.skiplinks {
  display:none;
  }
  
.NewsPageTimestamp {
	float:right;
	text-align: right;
	margin: -1.8em 0 0 0;
	font-size:85%;
}

div.portletHeading {
    background: transparent url(../images/portletHeadingBg.gif) no-repeat top left;
    width:140px;
    height:29px;
    display:block;
    float:left;
    margin:0em 0em 0em 0em;
}
div.portletMenuHeading {
    background: transparent url(../images/portletMenuHeadingBg.gif) no-repeat top left;
    width:74px;
    height:29px;
    display:block;
    float:left;
    margin:0em 0em 0em 0em;
}
div.portletHeading h2, div.portletMenuHeading h2  {
    color:#585858;
    display:block;
    font: 12px Trebuchet MS, Verdana, Arial;
    font-weight:bold;
    letter-spacing:3px;
    margin:5px 0px 0px 0px;
    padding:0px 0px 0px 1em;
    border:0;
}

div.formElement {
    
}
div.formElement input {
    font-size:100%;
    /* border:2px solid #FFcc22; */
    border:1px solid #00833B;
}
div.formElement textarea {
    display:block;
    font-size:110%;
    border:1px solid #00833B;
    width:350px;
    height:350px;
}



/* Left Cols */
/* ----------------------------------------------------- */

#leftContent {
	position: absolute;
	left:20px;
	top:120px;
	width:210px;
	/* background: transparent url(../images/vasentausta.gif) repeat-y; */
    border-top:1px solid #D8D8D8;
	border-right:1px solid #D8D8D8;
	border-bottom:1px solid #D8D8D8;
	border-left:2px solid #D8D8D8;
	/* border-top:1px solid #00833B; */
	}
	
.snNavigation {
    padding: .8em .5em 1em 1em;
    padding-bottom:24px;
    }
    
.navTopLabel {
    color:#00833B;
    font-weight:bold;
    display:inline;
}
.snNavigation div {
    border:0px solid #CCFF22;
    clear:left;
    margin-bottom:2px;
}
.snNavigation span {
    border:0px solid #3322EE;
    display:block;
    clear:right;
}

.snNavigation a:link {
    color:#000;
    border-bottom:none;
    font-size:100%;
    font-weight:normal;
	text-decoration: none;
	cursor:hand;
	}
	
.snNavigation a:visited {
    color:#000;
    border-bottom:none;
    font-size:100%;
    font-weight:normal;
	text-decoration: none;
	}
	
.snNavigation a:hover, li a:active {
    font-size:100%;
    font-weight:normal;
    /* border-bottom:1px solid #00833B; */
	text-decoration:underline;
	color:#00833B;
	}
	
img.listBullet {
    margin:0;
    border:0;
    float:left;
    margin-right:1px;
}


/* Main Cols */
/* ----------------------------------------------------- */
#centerContent {
    padding:0.7em 1em 1em 1em;
	background:#fff;
	margin-left: 229px;
	margin-right:209px;
	border-top:1px solid #D8D8D8;
	border-right:1px solid #D8D8D8;
	border-bottom:0px;
	border-left:2px solid #D8D8D8;
	/*
	IE5x PC mis-implements the box model. Because of that we sometimes have
	to perform a little CSS trickery to get pixel-perfect display across browsers.
	The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
	parsing bug in IE5x PC that will prematurly close a style rule when it runs
	into the string "\"}\"". After that string appears in a rule, then, we can override
	previously set attribute values and only browsers without the parse bug will
	recognize the new values. So any of the name-value pairs above this comment
	that we need to override for browsers with correct box-model implementations
	will be listed below.

	We use the voice-family property because it is likely to be used very infrequently,
	and where it is used it will be set on the body tag. So the second voice-family value
	of "inherit" will override our bogus "\"}\"" value and allow the proper value to
	cascade down from the body tag.

	The style rule immediately following this rule offers another chance for CSS2
	aware browsers to pick up the values meant for correct box-model implementations.
	It uses a CSS2 selector that will be ignored by IE5x PC.

	Read more at http://www.glish.com/css/hacks.asp
	*/

	voice-family: "\"}\"";
	voice-family: inherit;
	margin-left: 231px;
	margin-right:211px;
	}
html>body #centerContent {
	margin-left: 231px;
	margin-right:211px;
	}
	
#workBody {
    list-style-position:inside;
    line-height:1.8em;
    border:1px dotted #FFFFFF;
    background:#fff;
    padding:0;
	}
#workBody p {
    margin-top:10px;
}

#workBody img {
    margin-top:.6em;
    margin-bottom:.6em;
}

#workBody .workImage {
    border:1px solid #000;
    display:block;
    float:left;
    margin:1em 1em .5em 0em;
}

#rayLogo {
	margin:0em 1em 1em 0em;
	}
p.LastModified {
	font-size:90%;
	margin-bottom:0;
	margin-top:1em;
	color:#6B6B6B;
}
	
/* bottom bar */
/* ----------------------------------------------------- */
#bottomBar {
    float:right;
    padding:0em 10px 0em 10px;
	background: #FAFAFA url(../images/bottomBar.gif) repeat-x;
	/* margin-left: 229px; */
	/* margin-right:209px; */
	height:36px;
	border:1px solid #D8D8D8;
	border-top:0px;
    margin:0;
	voice-family: "\"}\"";
	voice-family: inherit;
	margin-left: 231px;
	margin-right:211px;
	}
html>body #bottomBar {
    margin-left:100px;
	margin-left: 231px;
	margin-right:211px;
	}
	
#bottomBar span.bottomCopyText {
    font-family: Verdana, Arial;
    float:left;
    margin:5px 0px 0px 10px;
    padding:0;
    color:#B6B6B6;
    font-size:10px;
    }
.bottomCopyText a {
    color:#B6B6B6;
    border-bottom: none;
    font-size:10px;
    font-weight:normal;
	text-decoration: none;
	}
.bottomCopyText a:visited {
    color:#B6B6B6;
    border-bottom:none;
    font-size:10px;
    font-weight:normal;
	text-decoration: none;
	}
.bottomCopyText a:hover, a:active {
    border-bottom: 2px solid #CC0000;;
    font-size:10px;
    font-weight:bold;
	text-decoration:none;
    color:#000;
	}
	
#bottomBar span.bottomSetlementtiliittoLogo {
    background: transparent url(../images/bottomSetlementtiliittoLogo.gif) no-repeat top left;
    width:24px;
    height:24px;
    float:right;
    margin:6px 35px 0px 0px;
    padding:0;
    line-height:0;
    }
    
#bottomBar span.bottomNaapuriLogo {
    background: transparent url(../images/bottomNaapuriLogo.gif) no-repeat top left;
    width:63px;
    height:24px;
    float:right;
    margin:7px 0px 0px 0px;
    padding:0;
    line-height:0;
    }
    
/* INDEX bottom bar (on the front page*/
/* ----------------------------------------------------- */
#indexBottomBar {
 	width:428px;
    padding:0em 10px 0em 10px;
	background: #FAFAFA url(../images/bottomBar.gif) repeat-x;
	height:36px;
	border:1px solid #D8D8D8;
	border-top:0px;
    margin:0;
	}


#indexBottomBar span.bottomCopyText {
    font-family: Verdana, Arial;
    float:left;
    margin:5px 0px 0px 10px;
    padding:0;
    color:#B6B6B6;
    font-size:10px;
    }
.bottomCopyText a {
    color:#B6B6B6;
    border-bottom: none;
    font-size:10px;
    font-weight:normal;
	text-decoration: none;
	}
.bottomCopyText a:visited {
    color:#B6B6B6;
    border-bottom:none;
    font-size:10px;
    font-weight:normal;
	text-decoration: none;
	}
.bottomCopyText a:hover, a:active {
    border-bottom: 2px solid #CC0000;;
    font-size:10px;
    font-weight:bold;
	text-decoration:none;
    color:#000;
	}

#indexBottomBar span.bottomSetlementtiliittoLogo {
    background: transparent url(../images/bottomSetlementtiliittoLogo.gif) no-repeat top left;
    width:24px;
    height:24px;
    float:right;
    margin:6px 35px 0px 0px;
    padding:0;
    line-height:0;
    }

#indexBottomBar span.bottomNaapuriLogo {
    background: transparent url(../images/bottomNaapuriLogo.gif) no-repeat top left;
    width:63px;
    height:24px;
    float:right;
    margin:7px 0px 0px 0px;
    padding:0;
    line-height:0;
    }
    
p.IndexLastModified {
	font-size:90%;
	margin-bottom:0;
	margin-top:1.2em;
	color:#6B6B6B;
}
	
/* Right Cols */
/* ----------------------------------------------------- */


#rightContent {
	position: absolute;
	right:20px;
	top:120px;
	width:190px;
	border-top:1px solid #D8D8D8;
	border-right:1px solid #D8D8D8;
	border-bottom:1px solid #D8D8D8;
	border-left:2px solid #D8D8D8;
	background-color:#FFF;
	}
#rightContent div.snContacts {
    padding: .7em .4em 1em 1em;
    }
    
.snContacts a:link {
    border-bottom:1px solid #dddddd;
	text-decoration: none;
	font-weight:normal;
	}
	
.snContacts a:visited {
    border-bottom:none;
    font-size:100%;
    font-weight:normal;
	text-decoration: none;
	}

.snContacts a:hover, li a:active {
    border-bottom: 2px solid #CC0000;
    font-size:100%;
    font-weight:normal;
	text-decoration:none;
    color:#000;
	}


#rightContent p {
    overflow: hidden;
    display:block;
    width:95%;
    border-bottom:1px solid #000;
    padding-bottom:.5em;
}

/* Header */
/* ----------------------------------------------------- */
#snHeader {
	/* background:#fff; */
	height:118px;
	border-top:0px solid #000;
	border-right:0px solid #000;
	border-left:0px solid #000;
	voice-family: "\"}\"";
	voice-family: inherit;
	height:120px;
	}
html>body #snHeader {
	height:120px;
	}

#snHeader #snLogo {
    background: transparent url(../images/snHeader1.gif) no-repeat top left;
    width:263px;
    height:120px;
    float:left;
    /*    top  right bot left*/
    margin:0px 0px 0px 0px;
    line-height:0;
	}
	
#snHeader #snLogo h1{
        display:none;
	}

pre {
    font-size: 100%;
	}
/* index page */
/* ----------------------------------------------------- */

#indexFrame {
    width:698px;
	margin-right:auto;
	margin-left:auto;
	/* margin-top:10px; */
	padding:0px;
	text-align:left;
	}

#indexLeft {
    margin-right:20px;
    margin-bottom:20px;
    border:1px solid #D8D8D8;
	width:220px;
	padding:0px;
	float:left;
	background:#fff;
	}

#indexNews {
	width:440px;
	padding-top:0px;
    padding-right:0px;
    padding-bottom:10px;
    padding-left:0px;
	float:left;
	background:#FFF;
	border:0px solid #D8D8D8;
	margin-bottom:3px;
	}

#indexCenter {
/*	border: 1px solid black;*/
	width:440px;
	padding:0px;
	float:left;
	margin-bottom:20px;
	}
	
#indexNews p {
	margin:0 0 6px; 0;
	padding:0;

}

#indexNews p.heading {
	font-weight:bold;
    color:#00833B;
	margin:0 0 6px 0;
	padding:0;
	
}
#indexNews p.indexNewsTitle {
    margin:0 0 2px 0;
	font-weight:bold;
	padding:0;
}

#indexNews p.indexNewsContent {
	margin:0px 0 0 0;
}

#indexHeader {
    margin-bottom:0px;
    height:120px;
    border:0px solid #D8D8D8;
    border-top:0px;
    border-bottom:0px;
	/* background:#00833B; */
	}
#indexHeader h1 {
    display:none;
	}
	
#indexHeader div {
    background: transparent url(../images/indexNaapuriLogo.gif) no-repeat top left;
    width:690px;
    height:120px;
    float:left;
    margin:0px 0px 0px 0px;
    line-height:0;
	}
	
/* Generic */
/* ----------------------------------------------------- */
.spacer {height:1em;}
.none, .standardsNote, .skiplinks {display:none;}
.hide {visibility:hidden;}
.nowrap {white-space:nowrap;}
ul.tight li {margin-bottom:0;}
.block {display:block;}
.clear {clear:both;}
.clearR {clear:right;}
.rule {display:block; border-width:0; border-style:none; border-bottom:1px dashed #999; height:1px; margin-top:5px;}
.buffer {font-size:0; height:1px; width:1px;}
.imgLeft {float:left; margin:2px 10px 5px 0;}
.imgRight {float:right; margin:0 0 5px 10px;}
.end {float:none; display:inline;}
