﻿/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
html, body, div, span, applet, object, page, article, aside, footer, h1, h2, h3, h4, h5, h6,#aktuellt,p {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}

a {
   outline: 0;
}

/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #339933;
	line-height: 1.2em;
	font-size: 1.2em;
	color: #004622;
	font-family: "Garamond", "Times New Roman", Times, serif;
	margin: 0px 0px 0px 0px;
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	width: auto; /* ie8 */
}

/* =====================================
Commonly used to style page titles. 
========================================*/
h1, h2 {
	color: #004622;
	margin: 2% 0px 4% 0%;
}
h1 {
	font-size: 1.9rem;
}
h2 {
	font-size: 1.7rem;
    font-style: italic;
}
h3 {
	font-size: 1.5rem;
	margin-top:1%;
}

audio {
	border-style: inset;
	border-width: 0.2em;
	border-radius: 25px;
	border-color: #339933;
	margin:2%;
	box-shadow: 2px 2px 5px grey;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #CC6600;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #666633;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #2170bd;
}
/* =============================================
 This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for 
 horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the 
 use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. 
 ===============================================*/
#page {
	/*background-color: #f2f2f2;*/
	width: 80%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 2% auto 2% auto;
	border: 1% #000000 solid;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-moz-box-shadow: 0 0 20px #453823;
	-webkit-box-shadow: 0 0 20px #453823;
	box-shadow: 0 0 20px #453823;
}
/*===================================
Common Styles
====================================*/

#page header {
	background: #004622 ;
	padding: 2% 2% 1% 2%;
	font-weight: bold;
	min-height: 170px;
	border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	color: #F2F2F2;
}
#page header .sitename {
	font-family: "Garamond", "Times New Roman", Times, serif;
	font-size: 2em;
	font-weight: bold;
	color: #F2F2F2;
	margin: 2% 0px 0% 0%;
	letter-spacing: .25em;
	line-height: 1em;
  text-align: center;
  font-variant: small-caps;
  color:#F2F2F2;
}
#page header #sitenamediv{
	padding-top: 0.8rem;
clear:both;
display: block;
}
.tagline {
	padding-top: 0;
	font-size: 1em;
	color: #F2F2F2;
	text-align: center;
}
figcaption, .caption, #breadcrumb a, #breadcrumb {
	font-size: smaller;
}
#breadcrumb{
    position: relative;
    top: 1px;
	font-size: smaller;
    clear: both;
    display:block;
}
#breadcrumb a{
    font-style: normal;
    text-decoration: underline;
}

.caption {
    font-style: normal;
    margin-top:1px;
    padding-top:0px;
   }
figcaption{
    font-style: italic;
    clear: both;
    display:block;
}

/*=======================================
Wrapper for the content columns
========================================*/
#contentWrapper {
	clear: both;
	background: #F2F2F2;
}

/*==================================
parts of page
===================================*/
#leftColumn1 {
	float: left;
	width: 18%;
	padding: 5%;	
}

aside{
margin-top:2em;
font-style:italic;
padding: 1% 1% 1% 1%;	
}

aside ul li{
	list-style-type: none;
	}

.centered{
	text-align:center;
}

section{
	clear:both;
	margin-bottom:3rem;
}

p.poem
{font-style:italic;
	margin:1rem;
}

.uplink {
	line-height: 2.5rem;
	font-size:1rem;
}
.italic {
	 font-style: italic;
}

.bold{
	font-weight: bold;
}
 /*============================================================
Left sidebar navigation menu - change to display block with media query
==============================================================*/
/*
#leftColumn1 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}

.heading {
	display: block;
	color: #F2F2F2;
	font-weight: bold;
	padding: 4px;
	background: #003E27;
	text-decoration: none;
	border: 1px solid #003E27;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
} */

/*===================================================
Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. 
=====================================================*/
article{
	float:left;
		}

#aktuellt
    {
        position:static;
        clear:both;
        display: block;
        padding-top: 0.1em;
        padding-bottom: 0.1em;
        text-align: center;
	}
/*==================================
Right sidebar
===================================*/
#rightColumn {
	float: right;
	width: 200px;
	padding: 10px 10px 10px 10px;
}

/*==================================
paragraph after
===================================*/
p {
margin-bottom:0.5rem;
}

/*==================================
Left sidebar
===================================*/
#leftColumn1 {
	float: left;
	width: 200px;
	padding: 10px 10px 10px 10px;
	
}

/*================================
Left sidebar navigation menu
==================================*/


#leftColumn1 ul {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
#leftColumn1 li {
	list-style: none;
	padding: 2px 0;
}
#leftColumn1 ul li a {
	display: block;
	color: #F2F2F2;
	padding: 4px;
	text-decoration: none;
	background-color: #1C140E;
	border: 1px solid #1C140E;
	margin-top: 3px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
#leftColumn1 a:hover {
	color: #000000;
	background-color: #CDBB99;
	border: 2px solid #1C140E;
}


/* ===============================================
Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being 
cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the 
close of the container with floated elements. 
==================================================*/
.clearFloat {
	display: block;
	clear: left;
}
.rightfloat
{
	float:right;
}
/*=================================================
Footer Styles 
==================================================*/
footer {
	background-color: #F2F2F2;
	padding: 0%;
	margin: 0%;
	color: #000;
	font-size:0.7rem;
}

footer a, footer a:link {
	color: #CC6600;
	text-decoration: none;
}
footer a:visited {
	color: #666633;
	text-decoration: none;
}
footer a:hover {
	color: #2170bd;
	text-decoration: underline;
}
footer a:focus {
	color: #2170bd;
}
footer a:active {
	color: #2170bd;
}


/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 1%;
	float: left;
}
.imgrgt {
	padding: 1%;
	float: right;
}
.imgctr {
	display: block;
	margin: 0% auto;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: smaller;
}

/*=============
form styles 
==============*/
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #5EC49D;
	background-color: #4A3527;
	color: #F2F2F2;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

input:focus {
	border: 2px solid #993300;
}




