@charset "utf-8";

*{
	margin: 0;
	padding: 0;
	border: 0;
	list-style: circle;
}
p {
	font-size: 100%;
	margin: 1.5em 0;
	color: #000000;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;	
}
.list {
	float: left;
	background-color: #FFFF99;
	padding-top: 5px;
	padding-bottom: 0;
	overflow: hidden;
	width: 200px;
}
/* ~~ 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{
	padding-top: 0;
	padding-left: 0;
}
h1 /* grön huvudrubrik*/{
	font-size: 170%;
	color:#006600;
	font-style:italic;
	margin-bottom:0;
	padding-left: 2px;
}
h2 /* grön underrubrik*/{
	font-size: 130%;
	color:#006600;
	font-style:italic;
	margin-top: 5px;
	margin-bottom:0;
	padding-left: 5px;
}
h3 /* större länk i sidofält*/{
	font-size: 130%;
	color: #006600;
	font-style: italic;
	line-height: 200%;
	padding-left: 5px;
}
h4 /*extra grön text utan länk */{
	font-size: 110%;
	color: #006600;
	font-style: italic;
	padding-left: 10px;
}
h5/*Familjen*/{
	font-size: 150%;
	color:#006600;
	font-style:italic;
	margin-top: 0px;
	margin-bottom:0;
	padding-left: 3px;
}
h6 /*För radmellanrum*/{
	font-size: 90%;
	
}
em /* stor kursiv text*/{
	font-size: 130%;
}	
.bild1 /* platshållare gör bilder med röd kursiv undertext */ {
	position: relative;
	padding-bottom: 10px;
	padding-top: 5px;
	margin-top: 3px;
	margin-left: 3px;
}
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: #0033CC;
	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. */
	color: #0033FF;
	text-decoration: underline;
}
a h6 {
	color: #FF0000;
	text-decoration: underline;
}

li{
	margin-top: 3px;
	
}
ul{
	padding-left:18px;
	list-style-type:circle;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding:5px 5px 5px 15px;
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 140px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #ADB96E;
	color: #FFF;
}
