/* Default stylesheet */
body {
	background-color: #E6E7E4;
	color: #666666;
	font-family: Tahoma, "Helvetica Neue", FreeSans, "Liberation Sans", Helvetica, Arial, Sans-serif;
/*	font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", "Lucida Sans Unicode", Geneva, sans-serif;*/
	/*font-family: Georgia, "DejaVu Serif", "Bitstream Vera Serif", "Times New Roman", "Liberation Serif", Times, Serif;*/
	font-size: 80%; /* 12px*/
	margin: 0px;
	padding: 0px;
}
table,caption,th,td {
	font-size: 1.0em;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin: 4px 0px;
	padding: 0px;
}

h1 {
	font-size: 1.8em;
       color: #000;
}
h2 {
	font-size: 1.4em;
        color: #333;
}
h3 {
	font-size: 1.2em;
        color: #000;
}
h4 {
	font-size: 1.1em;
}
h5 {
	font-size: 1.0em;
}
h6 {
	font-size: 1.0em;
}
p {
	padding: 0px;
	margin: 4px 0px 16px 0px;
}

div.body {
	line-height: 1.4em;
        
}

pre {
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
strong, b {
	color: #000000;
	font-weight: normal;
}
/* End General elements*/


a img {
	border: none;
}
.body img {
	margin: 3px 10px 5px;
}
.body img[align="left"] {
	margin-left: 0;
}
.body img[align="right"] {
	margin-right: 0;
}

div.forum {
	clear: both;
}

/* Use class layout on images and tables used for layout */
img.layout, a img.layout {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

table.layout {
	margin: 0px;
	padding: 0px;
}
td.layout {
	padding: 0px;
	text-align: left;
	vertical-align: top;
}
/* General links */
a:link { color: #9C8C67; text-decoration: none;}
a:visited { color: #9C8C67; text-decoration: none;}
a:hover {color: #514935; text-decoration: underline;}

/* read more.. links */
.linkcontainer .link:after {

}
.link { }
a.link:link { }
a.link:visited { }
a.link:hover { }

/* Standard navigation links */
.menu a:link {text-decoration: none;}
.menu a:visited {text-decoration: none;}
.menu a:hover {color: #000000; text-decoration: none;}

.menu a.itemselected:link {color: #000000;}
.menu a.itemselected:visited {color: #000000;}
.menu a.itemselected:hover {color: #000000;}

/* Printable/tell a friend links	*/
.toollink { }
a.toollink:link { }
a.toollink:visited { }
a.toollink:hover { }

/* Copyright, CustomPublish powered link etc.	 */
.cp { font-size: 0.9em; color: #666666;}
.cp .cp {font-size: 1.0em;}
a.cp:link {  color: #666666; text-decoration: none;}
a.cp:visited {  color: #666666; text-decoration: none;}
a.cp:hover {  color: #666666; text-decoration: underline;}


/* Linked headlines (normally inside LIST-sections) */ 
.headlinelink { }
.headlinelink:link { }
.headlinelink:visited { }
.headlinelink:hover { }

/* Linked headlines on listing pages */
.headline .headlinelink { }
.headline .headlinelink:link { }
.headline .headlinelink:visited { }
.headline .headlinelink:hover { }

/* Navigation path links */
.path	{	}
a.path:link { }
a.path:visited { }
a.path:hover { }

/* Sitemap links */
.tree { font-weight: normal; }
a.tree:link { text-decoration: none; color: #000000; }
a.tree:visited { text-decoration: none; color: #000000; }
a.tree:hover { text-decoration: underline; color: #000000; }

.sitetree { font-weight: normal; }
a.sitetree:link { text-decoration: none; color: #000000; }
a.sitetree:visited { text-decoration: none; color: #000000; }
a.sitetree:hover { text-decoration: underline; color: #000000; }


/* SECTION: Standard CP classes*/
div.date, span.date { color: #999999; font-size: 0.9em; }
.author { color: #333333; font-size: 0.9em; }
.feedback { }
.copyright { }


/* CSS code for (rounded) corners. Remember position: relative; on container element */
span.corner { 
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	/* Set width/height to size of corner images */
	width: 10px;
	height: 10px;
}
span.corner.tl { 
	background-position: top left;
	left: -1px;
	top: -1px;
}
span.corner.tr { 
	background-position: top right;
	right: -1px;
	top: -1px;
}
span.corner.br { 
	background-position: bottom right;
	bottom: -1px;
	right: -1px;
}
span.corner.bl { 
	background-position: bottom left;
	bottom: -1px;
	left: -1px;
} 


/* midtskygge */
div.s1 { 
	background-position: top left;
	background-repeat: repeat-y;
}
/* toppskygge */
div.s2 { 
	background-position: top left;
	background-repeat: no-repeat;
}
/* bunnskygge */
div.s3 { 
	background-position: bottom left;
	background-repeat: no-repeat;
}

/* Fully flexible shadows */
/* Use in combination with corners for a rounded box with almost any type of shadow */
/* Flexibility limited by image size due to combination of two shadows top+bottom/left+right in each image. */
/* HTML Skeleton: 
<div class="container"><!-- must have position: relative; -->
<div class="side h b"><div class="side h t"><div class="side v l"><div class="side v r">

Content here...

<span class="corner tl"></span>
<span class="corner tr"></span>
<span class="corner br"></span>
<span class="corner bl"></span>

</div></div></div></div><!-- end sides -->

</div><!-- end container -->
*/

div.side, span.side {
	 display: block;
}
/* v = vertical, h = horizontal, l = left, r = right */ 
div.side.v, span.side.v {
	 background-position: top left;
	 background-repeat: repeat-y;
}
div.side.v.r, span.side.v.r {
	 background-position: top right;
}
div.side.h, span.side.h {
	 background-position: top left;
	 background-repeat: repeat-x;
}
div.side.h.b, span.side.h.b {
	 background-position: bottom left;
}


 /* Site default shadows */
div.side.h, span.side.h {
	 /* Background-image with horizontal (top/bottom) shadows. Taller than tallest container with shadow. Split into two background images when required	*/
}
div.side.v, span.side.v {
	 /* Background-image with vertical (left/right) shadows. Wider than page */ 
}


/* Standard tools */
div.tools { margin: 15px 0px; }
div.tool { margin: 2px 0px; }
#skiplink { 
  position: absolute;
  left: -1000px;
  width: 900px;
/*  display: none;*/
}
div.pagebar { padding: 10px 0px; clear: both; }
.pagebar.prev { margin-right: 10px; }
span.pagebarindex {
	display: block;
}
span.arrow { padding: 0px 3px; }

/* SECTION: listing/view styles */
div.pagedescription { 
	margin: 0 0 25px;
}
.pagedescription { }
h1.pagetitle {
	color: #000000;
	font-size: 1.8em;
	margin: 0 0 10px;
}
h1.headline {
	color: #000000;
	font-size: 1.35em;
	margin: 5px 0px;
	padding: 0px;
}
h2.headline {
	color: #000000;
	font-size: 1.3em;
	margin: 0px;
	padding: 0px;
}
.threecol h2.headline {
	font-size: 0.85em;
	text-transform: uppercase;
}
h1.headlineview {
        font-size: 1.8em;
        color: #000000;
	margin: 0px;
	padding: 0px;
}
.subheadline, h2.subheadline {
	font-size: 1.0em;
	font-weight: normal; 
	margin: 5px 0px;
	padding: 0px;
}
h2.paragraphheadline {
}
.ingress {
}
div.ingress {
	margin: 10px 0px; 
	padding: 0px;
}
.shortingress {
	color: #000000;
	margin: 10px 0px; 
}
.ingressview {
       color: #333;
       font-size: 1.2em;
}
div.ingressview {
	margin: 6px 0px; 
	padding: 0px;
}
.listingarea div.artxml {
	font-size: 0.85em;
}

ul {
	
	padding-left: 16px;
}


p.byline, .byline {
	margin: 0px; padding: 0px;
}
div.listingarea.artist {
	float: left;
	width: 460px;
}
div.listingarea.artist .twocol {
	background-image: url(http://img0.custompublish.com/getfile.php/1403297.1810.tpeqcdafxb/2col-vr.png);
	background-position: top center;
	background-repeat: repeat-y;
}

div.viewarea.mbio, div.listingarea.mbio {
	float: left;
	width: 460px;
}


div.bio {
	background-color: #FCFCFC;
	border: 1px solid #EDEDED;
	float: right;
	padding: 10px;
	width: 188px;
}
.bio h1 {
	color: #333333;
	font-size: 1.2em;
	font-weight: normal;
}
.bio h2 {
	color: #000000;
	font-size: 1.0em;
	font-weight: normal;
}

.bio .ingress {
	margin-bottom: 15px;
}

/* SECTION: Articlemedia */
div.articlemedia { 
	width: 250px;
	float: right;
	margin-left: 10px;
}

div.articleimage { 
	margin-bottom: 10px;
}
div.articleimagedesc, i.paragraphpictext { 
	font-style: italic;
	padding: 1px 2px;
}


/* SECTION: viewarea block/spacing elements */
.block, .articleblock {
	margin-bottom: 5px;
}

.articleblock .imgwrap {
	float: left;
	width: 40%;
}
.articleblock .imgwrap img {
	max-width: 100%;
	height: auto;
}

.articleblock .textwrap {
	float: right;
	width: 52%;
}
/* Full text width if no listing image */
div.articleblock.nopic .textwrap {
	float: none;
	width: auto;
}

/* 2-spalter */

.twocol .imgwrap, .twocol .textwrap {
	float: none;
	width: auto;
}
.twocol .imgwrap {
	margin: 0 0 15px;
}

div.twocol .articleblock { 
	width: 46%;
}
div.twocol .articleblock.pair0 { 
	clear: both;
	float: left;
}
div.twocol .articleblock.pair1 { 
	clear: right;
	float: right;
	margin-right: 0;
}

/* 3-spalter */
div.threecol {
	background-image: url(http://img0.custompublish.com/getfile.php/1384978.1810.utveuesxvu/3col-vr.png);
	background-position: center top;
	background-repeat: repeat-y;
}

div.threecol .articleblock { 
	/*width: 29.5%;
	margin-right: 5.75%; */
	float: left;
	margin-right: 40px;
	width: 210px;
}
div.threecol .articleblock.treble0 { 
	clear: both;
}
div.threecol .articleblock.treble1 { 
	margin-right: 0;
}
div.threecol .articleblock.treble2 { 
	clear: right;
	float: right;
	margin-right: 0;
}
/* 4-spalter */
div.fourcol .col { 
	width: 23%;
	float: left;
	margin-right: 2.66667%;
	width: 210px;
	margin-right: 40px;
}
div.fourcol .col.col0 { 
	clear: both;
}
div.fourcol .col.col2 { 
	margin-right: 0;
}
div.fourcol .col.col3 { 
	clear: right;
	float: right;
	margin-right: 0;
}
.fourcol .imgwrap, .fourcol .textwrap {
	float: none;
	width: auto;
}

.fourcol .imgwrap, .fourcol .imgwrap img {
	max-height:140px;
	width: auto;
}

.frontpage .focus {
	margin-bottom: 30px;
}

.frontpage .focus .textwrap {
	float: left;
	padding-top: 70px;
	width: 210px;
}
.frontpage .focus .imgwrap {
	float: right;
	width: 710px;
}
.frontpage .focus .imgwrap img {
	border: 1px solid #DCDCDC;
}
.frontpage .fourcol .textwrap {
	min-height: 110px;
	border-bottom: 1px solid #FFFFFF;
	min-height:140px;
	position: relative;
	margin-bottom:10px;

}

/*
.frontpage .fourcol .textwrap .ingress {
	min-height:80px;
}
*/


.frontpage .fourcol .textwrap .linkcontainer {
	position: absolute;
	bottom:0px;
}

.focus .headline {
	font-size: 2em;
}
.focus .subheadline, .focus .ingress {
	font-size: 1.2em;
}
.listingarea hr, div.hr /* Replacement for hr (easier to style in older browsers) */{
	background-color: transparent;
	border-width: 0 0 1px;
	border-style: solid;
	border-color: #EDEDEB;
	font-size: 1px;
	clear: both;
	height: 0px;
	margin-bottom: 10px;
}
div.body {
	clear: both; 
	margin: 0px 0px 22px 0px;
}

div.articleparagraph {
	margin-bottom: 16px;
}
.clearfix { clear: both; font-size: 1px; height: 0px; }
/* SECTION ARTPICS */
td.artpic {
	padding: 5px;
	vertical-align: top;
	text-align: left;
}
/* SECTION: page containers */ 
div.inner {
	width: 960px;
	margin: 0 auto;
}
#page {
	padding: 0px;
	text-align: left;
}
#top {
	background-color: #FFFFFF;
	margin: 0;
	padding: 25px 0;
}
#topnav {
}
#middle {
	background-color: #FFFFFF;
	padding-bottom: 30px;
}
#navbar {
	float: right;
	width: 710px;
}
#subnavbar {
	float: left;
	margin-right: 40px;
	padding-top: 2px;
	width: 210px;
}
#main {
	float: right;
	min-height: 500px;
	width: 710px;
}

#mainsidebar {
	float: right;
	width: 180px;
}


/* #main when no sidebar */
.widemain #main {
	float: right;
	width: 760px;
}
.widemain #subnavbar {
	margin-right: 0;
}
.widemain #mainsidebar {
	display: none;
}
/* #main when no sidebar or navbar */
.widefull #main, body.frontpage.articlelisting #main {
	float: none;
	width: auto;
}
.widefull #subnavbar, .widefull #mainsidebar, body.frontpage.articlelisting #subnavbar, body.frontpage.articlelisting #mainsidebar {
	display: none;
}


#footer {
	background-color: #DBDCD8;
	clear: both;
	padding: 20px 0;
}
#footer div.inner {
	background-image: url(http://img0.custompublish.com/getfile.php/1691495.1810.xsxtteytvx/kranefooter6.png);
	background-position: center top;
	background-repeat: no-repeat;
	min-height: 306px;
}
#cp {
	color: #999999;
	margin: 0 auto;
	padding: 5px 0;
	text-align: center;
	width: 960px;
}
div.magebelte {
/*	background-image: url(http://img0.custompublish.com/getfile.php/1366883.1690.pdbxeefavb/magebelte-bkg.png);*/
	background-position: top center;
	background-repeat: repeat-y;
	margin: 0px;
	padding: 10px 0;
	min-height: 100px;
}
.magebelte h2 {
	color: #333333;
	font-size: 1.18em;
}
.magebelte ul {
	padding: 5px 5px 5px 15px;
	margin: 5px 0 15px;
}
.magebelte ul li {
	margin: 0 0 2px;
	padding: 0;
}
.magebelte a {
	border-bottom-color: #333333;
}
.magebelte a:hover {
	color: #330033;
	border-bottom: none;
}
.magebelte .fjasbok {
	min-width: 195px !important;
}
.magebelte .fjasbok iframe {
	background-color: #FFFFFF;
}

.contactinfo .companyname {
	color: #330033;
	font-size: 1.18em;
	margin: 0 0 5px;
}



/* SECTION: Sidebar */
.sidebar {
}

.box {
	padding: 0px;
	margin: 0px 0px 15px 0px;
	position: relative;
}
.box .head {
}
.box .cell {
	padding: 5px;
}
.box ul {
	padding: 0px;
	margin: 0px 0px 0px 0px;
	list-style-type: none;
}
.box ul li {
	margin: 0px 0px;
	padding: 0px;
}
.box ul ul{
	padding-left: 10px;
}
.box p {
	padding: 0px;
	margin: 0px 0px 5px 0px;
}
.box h3.caption {
	padding: 0px;
	margin: 0px;
}
/* SECTION: page elements */
#logo {
	float: left;
}
#path {
	margin-bottom: 5px;
} 
#path span.arrow {
	padding: 0px 3px; 
}
ul.menu, ul.submenu {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
ul.submenu {
	padding-left: 10px;
}
ul.menu li, ul.submenu li {
	margin: 0px;
	padding: 0px;
}

ul.menu li.spacingabove{
	margin-top: 10px;
}
ul.menu li.spacingbelow{
	margin-bottom: 10px;
}
div.mainmenuwrap {
	border-bottom: 5px solid #DBDCD8;
	margin-bottom: 10px;
}
ul.mainmenu {
	font-size: 1.2em;
}
ul.mainmenu li {
	display: block;
	float: left;
	margin-right: 45px;
}

.mainmenu a, .childmenu.tabmenu a.menulevel0 {
	border-bottom: 5px solid #DBDCD8;
	display: block;
	position: relative;
	top: 5px;
}
.mainmenu a:link, .mainmenu a:visited, .childmenu.tabmenu a.menulevel0:link, .childmenu.tabmenu a.menulevel0:visited  {
	color: #999999;
	text-decoration: none;
}
.mainmenu a:hover, .mainmenu a.menuselected:link, .mainmenu a.menuselected:visited, .mainmenu a.menuselected:hover, .mainmenu li.itemselected > a:link, .mainmenu  li.itemselected > a:visited, .mainmenu  li.itemselected > a:hover, .childmenu.tabmenu a.menulevel0:hover, .childmenu.tabmenu a.menuselected:link, .childmenu.tabmenu a.menuselected:visited, .childmenu.tabmenu a.menuselected:hover, .childmenu.tabmenu li.itemselected > a:link, .childmenu.tabmenu li.itemselected > a:visited, .childmenu.tabmenu li.itemselected > a:hover  {
	color: #333333;
	text-decoration: none;
	border-bottom-color: #555555;
}

ul.childmenu {
	
}
ul.childmenu li {
	background-image: url(http://img0.custompublish.com/getfile.php/1382208.1810.ysqvtddadb/dot.png);
	background-position: 0 5px;
	background-repeat: no-repeat;
	padding-left: 10px;
}
ul.childmenu.tabmenu {
	padding-top: 50px;
	position: relative;
}
ul.childmenu.tabmenu li {
	
}
ul.childmenu.tabmenu li.menulevel0 {
	background-image: none;
	padding-left: 0px;
}
ul.childmenu.tabmenu ul.submenu.menulevel1 {
	padding-left: 0;
}
ul.childmenu.tabmenu a.menulevel0 {
	font-size: 1.2em;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
}
ul.childmenu.tabmenu .itemlvlnum2 a.menulevel0 {
	left: auto;
	right: 0;
	text-align: right;
	padding-right: 2%;
	width: 48%;
}
ul.childmenu.tabmenu li.menulevel0 {
}

h2.caption.menu {	
	border-bottom: 5px solid #DBDCD8;
	font-size: 1.2em;
	margin-bottom: 25px;
}
h2.caption.menu span.pagetitle {
	position: relative;

	border-bottom: 5px solid #555555;
}	


#search {
}
#searchform {
	width: 210px;
	margin: 0 0 0 auto;
	padding: 0;
	text-align: right;
}
input.searchinput {
	background-color: #EDEDEB;
	border: none;
	color: #333333;
	float: left;
	vertical-align: middle;
	width: 160px;
}	
input.searchsubmit {
	background-color: #D4D4D3;
	border: none;
	color: #555555;
	float: right;
	text-transform: uppercase;
	vertical-align: middle;
	cursor: pointer;
}
/* SECTION: banner locations */
.bannerlocation {
	clear: both;
	text-align: center;
}
.bannerlocation table {
	margin-left: auto;
	margin-right: auto;
}
.bannerlocation td {
	text-align: center;
	padding: 5px 0px;
}
.bannerlocation img {
	border-width: 0px;
}

.icalendardayhead { background-color: #CECECE; }
.monthlycalendartable { width: 100%; }
.calendardate { color:#333333; font-size: 0.9em; }
.errmsg { font-weight: bold; color: #AA0000; }

table.weathertablefivedays { }

table.weathertablefivedays td {
	padding: 5px;
}
table.weathertablefivedays td.weatherlocname {
	width: 100px;
	font-weight: bold;
}
table.weathertablefivedays { }
.weatherdaylabel, td.weatherfivedays {
	width: 75px;
}

input.newslettersubemail {
	width: 98%;
}

/* Kalenderliste */
h2.dayheader {
	border-bottom: 1px solid #CCCCCC;
	font-size: 1.1em;
	font-weight: bold;
	margin-top: 10px;
}
div.calendarentry {
	font-size: 0.9em;
}
span.caltime {
	margin-right: 15px;
}
div.vevent {
	border: 1px solid #666666;
	background-color: #EEEEEE;
	padding: 5px;
}

.searchpage .date{
	display: none;
}

.buyproductmodule-item { display: none; }

@media print {
	/* Printerfriendly */
	* {
		background-color: #FFFFFF !important;
		background-image: none !important;
		border-color: #666666 !important;
		color: #000000 !important;
	}
	body {
		font-size: 11pt;
		font-family: Georgia, "DejaVu Serif", "Bitstream Vera Serif", "Times New Roman", "Liberation Serif", Times, Serif !important;
	}
	#top, #topnav, #subnavbar, #subnavbar, #mainsidebar, #footer, #searchform, .corner {
		display: none !important;
	}
	#page, #main {
		width: auto !important;
	}
	.side {
		padding: 0;
	}
	.box, .articleblock {
		page-break-inside: avoid;
	}
	th {
		background-color: #CCCCCC !important;
		color: #000000 !important;
	}
	tr:nth-child(2n+1) {
		background-color: #DEDEDE !important;
	}
	tr:nth-child(2n+1) {
		background-color: transparent !important;
	}
}