@charset "utf-8";
/* CSS  for www.hate.fi  */

/** Body element **/
body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-color: #fafafa; /* this is the 'end color' of the color slide starting from top of page, i.e. background-image */
	background-image: url(../images/graphics/background.jpg); /* backround 'color slide' from top */
	background-repeat: repeat-x;
	background-attachment: scroll;
}

/**  3 Column Fixed Header  **/
.thrColFixHdr #container {			/* Properties for DIV containing the whole page layout */
	width: 990px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/graphics/container-sidebar1.jpg); /* this makes sidebar1 background appear down to bottom of page independent of amount of content is sidebar 1 */
	background-repeat: repeat-y;
	border: 1px solid #b4c4d1;
	margin-top: 10px;
	margin-bottom: 30px;
	background-color: #FFFFFF; /* sets page background color to white */
} 
.thrColFixHdr #header {				/* Properties for DIV containing the page header */
	height: 179px;
}
.thrColFixHdr #topbar {				/* Properties for DIV containing the page wide bar under the header */
	height: 6px;
	background-image: url(../images/graphics/topbar.jpg);
	background-repeat: no-repeat;
}
.thrColFixHdr #sidebar1 {			/* Properties for DIV containing the left sidebar */
	float: left;
	width: 157px; /* since this element is floated, a width must be given */
	height: 750px;
	padding: 0px 0px 0px 13px; 
	background-image: url(../images/graphics/sidebar1.jpg); /* the container DIV has the same background-image */
	background-repeat: no-repeat;	
}
.thrColFixHdr #sidebar2 {			/* Properties for DIV containing the right sidebar */
	float: right; 
	width: 160px; /* since this element is floated, a width must be given */
	padding: 15px 20px 15px 15px;
}
.thrColFixHdr #mainContent {			/* Properties for DIV containing the middle column */
	margin: 0px 195px 0px 170px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. */
	padding: 0 15px;
	width: 593px;
}
.thrColFixHdr #footer {				/* Properties for DIV containing the page footer */
	height: 20px;
	text-align: center;
	background-image: url(../images/graphics/footer.jpg);
	background-repeat: no-repeat;
	padding-top: 5px;
	font-size: 9px;
	color: #336699;
} 

/**  2 Column Fixed Header **/
.twoColFixLtHdr #container {
	width: 990px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/graphics/container-sidebar1.jpg); /* this makes sidebar1 background  appear in whole page height independent of amount of content in sidebar1 */
	background-repeat: repeat-y;
	border: 1px solid #b4c4d1;
	margin-top: 10px;
	margin-bottom: 30px;
	background-color: #FFFFFF; /* sets page background color to white */
} 
.twoColFixLtHdr #header {
	height: 179px;
}
.twoColFixLtHdr #topbar {			
	height: 6px;
	background-image: url(../images/graphics/topbar.jpg);
	background-repeat: no-repeat;
}
.twoColFixLtHdr #sidebar1 {
	float: left;
	width: 157px; /* since this element is floated, a width must be given */
	height: 750px;
	padding: 0px 0px 0px 13px; 	
	background-image: url(../images/graphics/sidebar1.jpg); /* the container DIV has the same background-image */
	background-repeat: no-repeat;
}
.twoColFixLtHdr #mainContent {
	margin: 0px 0px 0px 170px; /* the left margin on this div element creates the column down the left side of the page */
	padding: 0 15px;
} 
.twoColFixLtHdr #footer {
	height: 20px;
	text-align: center;
	background-image: url(../images/graphics/footer.jpg);
	background-repeat: no-repeat;
	padding-top: 5px;
	font-size: 9px;
	color: #336699;
} 

/** Float settings **/
.fltrt { 		/* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page */
	margin-left: 8px;
}
.fltlft { 		/* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	background-repeat: no-repeat;
}
.clearfloat { 	/* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float  */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/** Page logo **/
#hatelogo {
	margin-top: 10px;
	margin-bottom: 10px;
	background-image: url(../images/graphics/hatelogo.png);
	background-repeat: no-repeat;
	height: 89px;
}

/** Paragraphs **/
p {								/* General settings for <p> */
	font-family: Verdana, sans-serif;
	font-size: 11px;
	color: #000000; 
	line-height: 18px;
	padding-left: 5px;
}
p.signature {					/* Signature, i.e. who wrote the article or text above */
	text-indent: 40px;
}
p.createdate, p.modifydate {		/* Date indication */
font-size: 10px;
color: #006699;
}

/** Headings **/
h1 {
	font-size: 16px;
	font-weight: bold;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	letter-spacing: 2px;
	padding-left: 4px;
	margin-top: 3px;
	margin-right: 3px;
	margin-bottom: 3px;
	margin-left: 3px;
	color: #336699;
	padding-top: 20px;
	padding-bottom: 2px;
	font-variant: small-caps;
	border-bottom-style: solid;
	border-bottom-width: 1px;
} 
h2 {
	font-size: 14px;
	font-weight: bold;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	letter-spacing: 2px;
	padding-left: 4px;
	margin-top: 3px;
	margin-right: 3px;
	margin-bottom: 3px;
	margin-left: 3px;
	color: #336699;
	padding-top: 20px;
	padding-bottom: 2px;
	font-variant: small-caps;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}
h6 {
	font-size: 12px;
	font-weight: bold;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	letter-spacing: 2px;
	padding-left: 0px;
	margin-top: 3px;
	margin-right: 3px;
	margin-bottom: 3px;
	margin-left: 3px;
	color: #336699;
	padding-top: 5px;
	padding-bottom: 2px;
	font-variant: small-caps;
	text-indent: 5px;
}
.small_heading {
	text-decoration: underline;
	font-size: 12px;
	font-weight: bold;
	color: #336699;
}

/** Links  **/
a.ext_link {						/* Links that point to external URLs */
	font-weight: normal;
	font-family: Verdana,Tahoma,Geneva,Arial,Helvetica,sans-serif;
	color: #666666;
	font-size: 11px;
}
a.ext_link:hover {
	color: #336699;
	text-decoration: underline;
}
a.int_link {						/* Links that point to internal URLs */
	font-weight: normal;
	font-family: Verdana,Tahoma,Geneva,Arial,Helvetica,sans-serif;
	color: #666666;
	font-size: 11px;
}
a.int_link:hover {
	color: #336699;
	text-decoration: underline;
}
.pagelink a {					/* 'Link menu bar', i.e. linkX | linkY | .... */
	color: #336699;
	text-decoration: none;
	font-size: 12px;
}
.pagelink a:hover {
	color: #336699;
	text-decoration: underline;
}
.pagelinkcurrent a {
	color: #336699;
	text-decoration: underline;
	font-size: 12px;
}
.pagelinkcurrent a:hover {
	color: #336699;
	text-decoration: underline;
}
.pagelink-divider {
	color: #666666;
}
.next a{							/* Next page link */
	font-size: 9px;
	color: #336699;
	text-decoration: none;
	float: right;
	margin-bottom: 15px;
}
.next a:hover{
	font-size: 9px;
	text-decoration: none;
	text-decoration: underline;
}
.previous a{						/* Previous page link */
	font-size: 9px;
	color: #336699;
	text-decoration: none;
	float: left;
	margin-bottom: 15px;
}
.previous a:hover{
	font-size: 9px;
	text-decoration: none;
	text-decoration: underline;
}
.yloslink a{						/* Top of page link */
	font-size: 9px;
	color: #336699;
	text-decoration: none;
}
.yloslink a:hover{
	font-size: 9px;
	text-decoration: none;
	text-decoration: underline;
}
.picturelink {					/* Picture links */
	border-style: none;
}

/** Navigation Menu:  menu.php **/
table#menubox td#menubox_top {		/* Properties for TABLE containing the navigation menu (top part) */
	background-image: url(../images/graphics/menubox_top1.png);
}
table#menubox td#menubox_middle {
	background-image: url(../images/graphics/menubox_middle.png);
}
table#menubox td#menubox_bottom {
	background-image: url(../images/graphics/menubox_bottom1.png);
}
#menu {							/* Properties for DIV containing the navigation menu */
	width: 141px;
}
#menu ul.menu_item_public {		/* Properties for UL menu_item_public containing public menu links */ 
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#menu ul.menu_item_guest {		/* Properties for UL menu_item_guest */ 
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#menu ul.menu_item_member {		/* Properties for UL menu_item_member */ 
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#menu li.navi_link_current {		/* Properties for LI containing the 'active' menu link */
	background-image: url(../images/graphics/menu_current_link.png);
	background-repeat: no-repeat;
	font-weight: bold;
}
#menu li.navi_link {				/* Properties for LI containing a 'non-active' menu link */ 	
}
#menu a {						/* Common properties for ALL links in navigation menu */
	font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 11px;
	text-decoration: none;
	display: block;
	padding-top: 0px;
	padding-right: 0pt;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-bottom: 0px;
	height: 31px;
	text-align: center;
	line-height: 31px;
}
#menu a:hover {					/* Common properties for ALL links in navigation menu when mouse over */
	background-repeat: no-repeat;
	font-weight: normal;
	color: #FFFFFF;
	background-image: url(../images/graphics/menu_link_hover.png);
}

/** Login Section: login.php **/
#login {							/* Properties for DIV containing the whole login section (elements below) */
	width: 141px;
	padding-top: 20px;
	padding-left: 5px;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	color: #000000;
}
#login_button {					/* Properties for login BUTTON */
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: transparent;
	width: 65px;
	margin-left: 15%;
	margin-top: 5px;
}
#login_success {					/* Properties for DIV containing 'successful login' message */
	font-size: 10px;
	color: #000000;
	padding: 5px;
	background-color: transparent;
	width: 120px;
	margin-bottom: 10px;
	text-align:center;
}
#login_failed {					/* Properties for DIV containing 'unsuccessful login' message  */
	font-size: 10px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	color: #000000;
	border:solid #FF0033 1px;
	padding: 5px;
	background-color: #A9C9D8;
	width: 120px;
	margin-bottom: 10px;
}
#logout_button {					/* Properties for logout BUTTON */
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: transparent;
	width: 65px;
	margin-top: 5px;
	margin-bottom: 5px;
}
#remember {						/* Sets the display of the remember CHECKBOX to none */
	display: none;
}

/** 'Uutta Sivuilla' box **/
table.newsbox {
	margin-bottom: 20px;
}
table.newsbox td#newsbox_top {
	background-image: url(../images/graphics/box155_top.png);
}
table.newsbox td#newsbox_middle {
	background-image: url(../images/graphics/box155_middle.png);
}
table.newsbox td#newsbox_bottom {
	background-image: url(../images/graphics/box155_bottom.png);
}
table.newsbox p.news_header {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	color: #666666;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 12px;
	padding-right: 2px;
	padding-bottom: 0px;
}
table.newsbox p.news {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	color: #666666;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 12px;
	padding-right: 2px;
} 
table.newsbox p.news_header_members {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	/*color: #333333;*/
	color: #666666;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 12px;
	padding-right: 2px;
	padding-bottom: 0px;
}
table.newsbox p.news_members {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	/*color: #333333;*/
	color: #666666;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 12px;
	padding-right: 2px;
} 

table.newsbox a {
	font-weight: normal;
	font-family: Arial,Helvetica,sans-serif;
	color: #666666;
	font-size: 11px;

}

table.newsbox a:hover {
	color: #336699;
	text-decoration: underline;
}





/** 'Pikalinkit' box **/  
table.shortcutbox td#shortcutbox_top {
	background-image: url(../images/graphics/box155_top.png);
}
table.shortcutbox td#shortcutbox_middle {
	background-image: url(../images/graphics/box155_middle.png);
}
table.shortcutbox td#shortcutbox_bottom {
	background-image: url(../images/graphics/box155_bottom.png);
}
table.shortcutbox ul.shortcutlist {		/* Properties for UL containing a list of shortcut links */
	list-style-type: none;
	margin-left: 25px;
	padding-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
table.shortcutbox p.shortcut_header {		/* Properties for a P containing heading for a shortcutlist */
	color: #999999;
	font-size: 11px;
	text-indent: 13px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 0px;
}
table.shortcutbox a {						/* Common properties for ALL links in shortcut box */
	font-weight: normal;
	font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
	color: #666666;
	font-size: 11px;
	text-decoration: none;
	display: block;
	padding-top: 0px;
	padding-right: 0pt;
	padding-bottom: 5px;
	padding-left: 0px;
	margin-bottom: 0px;
}
table.shortcutbox a:hover {				/* Common properties for ALL links in shortcut box when mouse over */
	color: #336699;
	text-decoration: underline;
}

/** Link page links (categories done with tables and lists) **/
p.linkheader {
	color: #FFFFFF;
	font-size: 11px;
	text-indent: 13px;
	font-weight: bold;
	margin-bottom: 0px;
	margin-top: 0px;
	background-image: url(../kalajutut/lyngen2008/img/topbar.gif);
}
ul.linklist {
	list-style-type: none;
	margin-left: 25px;
	padding-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
ul.linklist a {
	font-weight: normal;
	font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
	color: #666666;
	font-size: 11px;
	text-decoration: none;
	display: block;
	padding-top: 0px;
	padding-right: 0pt;
	padding-bottom: 5px;
	padding-left: 0px;
	margin-bottom: 0px;
}
ul.linklist a:hover {
	color: #336699;
	text-decoration: underline;
}
table.linktable{
	margin-top: 5px;
	float: left;
	margin-right: 20px;
}
.linkbox {
	margin-left:auto;
	margin-right:auto;
	margin-top: 0px;
}
.linkboxheader_saatila{
	background-image: url(../images/graphics/linkbox-top-saatila.jpg);
}
.linkboxheader_kalajuttuja{
	background-image: url(../images/graphics/linkbox-top-kalajuttuja.jpg);
}
.linkboxheader_kauppoja{
	background-image: url(../images/graphics/linkbox-top-kauppoja.jpg);
}
.linkboxheader_uistimet{
	background-image: url(../images/graphics/linkbox-top-uistimet.jpg);
}
.linkboxheader_valineet{
	background-image: url(../images/graphics/linkbox-top-valineet.jpg);

}
.linkboxheader_kalaveneet{
	background-image: url(../images/graphics/linkbox-top-kalaveneet.jpg);

}
.linktablerowtd{
	padding-left: 30px;
	background-image: url(../images/graphics/linkbox-middle.jpg);
}
.linkboxbottom {
	background-image: url(../images/graphics/linkbox-bottom2.jpg);
}

/** Images **/
img.basic_img {
	margin: 10px;
}
.cover_img {
	margin-top: 20px;
}
.pic_caption {
	text-align: left;
	font-style:italic;
	margin-left: 175px;
	margin-right: 140px;
}

/** Settings for 'Kalajuttuja' (twocolumn articles) **/
.col_right {
	margin-left: 25px;
}
.addspace_bottom {
	margin-bottom: 20px;
}
.addspace_top_and_bottom {
	margin-bottom: 20px;
	margin-top: 20px;
}
.addspace_top {
	margin-top: 20px;
}

/** Settings for 'Kalastuskilpailu2009' **/

.rules {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	margin-left: 30px;
}
.rules td {
	padding-bottom: 15px;
}

.fish {
	margin-bottom: 30px;
	float: left;

}

.fish-header {
	font-size: 12px;
	font-weight: bold;
	color: #666666;

}

.calc {
	margin-left: 50px;

}

.fish2 {
	margin-bottom: 30px;
	float: right;
	
}

#results {
	padding-left: 50px;
	padding-top: 25px;

}


.article_1 {
	margin-left: 40px;
	margin-top: 20px;

}

.login_kuva {
	padding-top: 1px;
	padding-left: 1px;
	padding-bottom: 1px;
	padding-right: 1px;
	border: 1px solid #969696;
}

