﻿body {
	background-image: url('bilder/bakgrund.jpg');
	/*background-repeat: repeat-x;
	background-attachment: scroll;*/
	background-color: #560606;
}

#container {
	width: 900px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-top: 2px solid #484848;
	border-right: 2px solid #484848;
	border-bottom: 2px solid #484848;
	border-left: 2px solid #484848;
	background-color: #fff;
}

#logga {
	height: 181px;
	width: 900px;
	background-image: url('bilder/logga.jpg');
	background-position: 50% top;
	background-repeat: no-repeat;
}

#meny {
	width: 900px;
	border-top: 1px solid #808080;
	border-bottom: 1px solid #808080;
	background-color: #fea;
}

html>body #meny {
	overflow: hidden;
}

#meny ul {
	list-style-type: none;
	width: 100%;
	margin: 0px;
	padding: 0;
}
#meny li {
	float: left;
}
#meny a {
	font-weight: bold;
	text-decoration: none;
	color: #008000;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #fea;
	background-color: #fea;
}
#meny a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #f90;
	border: 1px solid #008000;
	background-color: #008000;
}

#sida {
	width: 860px;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
	background-color: #fff;
}

#sidfot {
	text-align: center;
	padding-bottom: 0px;
	padding-top: 10px;
}

#sidfot p {
	font-size: x-small;
	color: #000;
}

a {
	color: #008000;
	text-decoration: none;
}

ul {
	list-style-type: none;
	width: 100%;
	margin: 20px;
	padding: 0;
}


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

h1 {
	font-family: Harrington;
	font-weight: bold;
	font-size: xx-large;
	text-align: center;
}

h2 {
	margin-top: 15px;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: medium;
	
}

/* Galleri */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer {
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img {
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover {
background-color: transparent;
}

.thumbnail:hover img {
border: 1px solid #008000;
}

.thumbnail span { /*CSS for enlarged image*/
position: absolute;
background-color: #fea;
padding: 5px;
left: -1000px;
border: 1px solid #808080;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img { /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span { /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 230px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

