/* Layout ------------------ */

html, body, form
{
	margin: 0;
	padding: 0; /*height: 100%;*/
}
#header
{
	width: 950px;
	padding: 0px 0px 0px 0px;
	margin: 0px 10px;
}
#container
{
	/*	min-height: 100%; 	position: relative;*/
	background: url(img/back.gif) repeat-y top center;
	margin: 0 auto;
	width: 970px;
}



#content
{
	padding: 40px 30px 40px 30px;
}

#footer
{
	/*	position: absolute; 	bottom: 0;*/
	width: 930px;
	height: 40px;
	background: url(img/footbg.gif) repeat-x;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	color: #999; /*line-height: 40px;*/
	padding: 10px 0px 0px 20px;
	margin: 0px 10px;
}

#bodycol
{
	width: 460px;
	float: left;
}
#rightcol
{
	padding: 30px 20px 30px 20px;
	width: 350px;
	float: right;
}

#infocol
{
	background-color: #E8E5E2;
	color: #4F5052;
	padding: 30px 20px 30px 20px;
	width: 350px;
	float: right;
}
#infocol1
{
	background-color: #E8E5E2;
	color: #4F5052;
	padding: 30px 20px 30px 20px;
	width: 350px;
}
#infocol1 h5
{
	width: 200px;
	margin: 0px 0px 12px 0px;
}
#infocol1 h5 a
{
	color: #fff;
}
#infocol2
{
	padding: 30px 20px 30px 20px;
	color: #4F5052;
}

#title
{
	height: 105px;
	background-image: url(img/header.gif);
}
.logo
{
	/*right: 15px;     bottom: 9px;*/
	background-image: url(img/footerlogo.png);
	background-repeat: no-repeat;
	height: 23px;
	width: 150px;
	float: right;
	margin: 0px 15px 0px 0px;
}
.footerText
{
	width: 750px;
	float: left;
	padding: 5px 0px 0px;
}

/* General styling ---------- */



body, td, th, input, select
{
	font-family: Arial;
	font-size: 12px;
	color: #464648;
}

a
{
	color: #666633;
	font-weight: bold;
	text-decoration: none;
}

h1, h3
{
	font-family: "/Fonts/MYRIADPR.TTF";
	font-weight: normal;
	line-height: 130%;
}
h1
{
	margin-top: 0px;
	color: #464648;
	font-size: 30px;
}

h2
{
	font-family: "/Fonts/MYRIADPL.TTF";
	margin: 10px 0px 15px 0px;
	font-size: 28px;
	color: #666633;
}
h3
{
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: #666633;
	font-weight: bold;
}
h5
{
	background: url(img/infoboxtitle.gif) repeat-x bottom left;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 4px 0px 5px 15px;
	margin: 0px;
}
h5 a
{
	color: #fff;
}

p
{
	line-height: 1.4;
}

.clear
{
	clear: both;
}

.left
{
	float: left;
}

.right
{
	float: right;
}

a img
{
	border: 0;
}




/* Main menu ---------------- */
#menu {
background:url(img/menuback.gif) repeat-x;
height:27px;
height:31px;
border-bottom: 2px solid #D0A609;
border-top:1px solid white;

}

/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul
{
    font-size: 12px;
    font-family: Arial;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-right: 0px;
    margin-left:10px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul
{
    display: none;
    position: absolute;
    top: 1.0em;
    margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
    left: -1px;
    width: 150px;
   
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul
{
    top: -1px;
    margin-top: 0;
    left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li
{
    float: left;
    display: block;
    position: relative;
    margin-right: -1px;
    min-height:31px;
    border-left:1px solid #FFFFFF;
    border-right:1px solid #FFFFFF;
   
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li
{
    float: none;
    margin: 0;
    margin-bottom: -1px;
    background:#d0cfca;
    
   
}
#listMenuRoot ul
{
    margin-top:22px;
    width:220px;
    background:url(img/menuback.gif);
}

.menulist ul > li:last-child
{
    margin-bottom: 1px; /* Mozilla fix */
    background:#d0cfca;
     
    
}

/* Links inside the menu */
.menulist a
{
    display: block;
    padding: 5px 12px 5px 4px;
    color: #464648;
    text-decoration: none;

}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus
{
   
    color: #FFF;
    background:transparent url(img/menuselected1.gif) repeat-x;
 
}
.menulist a.highlighted
{
    color: #FFF;

   
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind
{
    display: none;
    margin-top:20px;
    
}
.menulist ul a .subind
{
    display: block;
    float: right;
    margin-top:20px;
   
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a
{
    float: left;
}
.menulist ul a
{
    float: none;
}
/* \*/
.menulist a
{
    float: none;
    padding-top:10px;
    padding-left:18px;
    padding-right:18px;
}
/* */

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child + html .menulist ul li
{
    float: left;
    width: 100%;
}

* html .menulist ul li
{
    float: left;
    height: 1%;
}
* html .menulist ul a
{
    height: 1%;
}
/* End Hacks */

.menulist li.selected
{
    background: transparent url(img/menuselected1.gif) repeat-x;
    min-height:31px;
    color:White;
    border-right:1px solid white;
}
.menulist li.selected:last-child
{
     background: transparent url(img/menuselected1.gif) repeat-x;
    min-height:31px;
    color:White;
}

.menulist li.selected a
{
    color:White;
}

.menulist li.hidden
{
    display: none;
}

.rsslist
{
    list-style-type:none;
    margin-bottom:10px;
      padding-left:2px;
}
.rsslist li
{
    margin-bottom:5px;
  
}

/*
#mainmenu
{
	margin-top: 1px;
	height: 31px;
	background: url(img/menuback.gif) repeat-x;
}

#mainmenu ul
{
	margin: 0px;
	padding: 0px 0px 0px 10px;
	list-style-type: none;
}

* html #mainmenu ul
{
	/*beh\avior: expression(this.firstChild.style.borderLeft = "solid 1px white");*/

/*
#mainmenu li
{
	display: block;
	float: left;
	border-right: solid 1px #fff;
	position: relative;
}


#mainmenu li:first-child
{
	border-left: solid 1px #fff;
}

#mainmenu a
{
	display: block;
	padding: 8px 18px 8px 18px;
	color: #464648;
	font-weight: bold;
	text-decoration: none;
	font-size: 12px;
}

#mainmenu a:hover, #mainmenu a.selected
{
	background: url(img/menuselected1.gif) repeat-x;
	color: #fff;
}

#mainmenu li .marker
{
	position: absolute; /* background: url(img/menumarker.gif) no-repeat;*//*
	width: 13px;
	height: 7px;
	left: 50%;
	margin-left: -6px;
}

/* Sub menu ------------------- */
/*
#submenu
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-color: #c9c9c1;
	height: 30px;
	border-top: solid 2px #D0A609;
}

#submenu ul
{
	margin: 0px;
	padding: 0px 0px 0px 10px;
	list-style-type: none;
}

#submenu li
{
	float: left;
}

#submenu a
{
	display: block;
	padding: 8px 4px 7px 4px;
	text-decoration: none;
	color: #464648;
	font-size: 11px;
}

#submenu a:hover, #submenu a.selected
{
	background-color: #D0A609;
	color: #fff;
}
.sep
{
	padding: 8px 0px 7px 0px;
	color: #464648;
}
*/

/* Two column layout ------------------- */


#bodycol h1
{
	margin-top: 0px;
	color: #464648;
	font-size: 30px;
	font-family: Arial;
}



#infocol h1
{
	margin-top: 0px;
	font-size: 30px;
	font-family: Segoe Condensed;
	font-weight: normal;
	color: #666633;
}

#infocol .infobox
{
	margin: 10px 0px 10px 0px;
}

#infocol .infobox .title, #infocol h5
{
	background: url(img/infoboxtitle.gif) repeat-x bottom left;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 4px 0px 5px 15px;
}

#infocol .infobox .content
{
	background-color: #fff;
	padding: 15px;
	background: #fff url(img/infoboxback.gif) repeat-x bottom left;
}


/* Kontakt ------------------------------ */

.personinfo
{
	margin-top: 20px;
}

.personinfo img, .personinfo > div
{
	float: left;
}

.personinfo > div
{
	margin-left: 10px;
}

.personinfo .name
{
	font-weight: bold;
}

/* Nyheter ------------------------------- */

.newsitem
{
	margin-top: 20px;
}

.newsitem .date
{
	font-size: 12px;
	font-weight: bold;
	color: #666633;
}


.newsitem .title, .newsitem h2
{
	font-size: 18px;
	margin: 3px 0px 10px 0px;
}

/* Anslagstavlan ---------------------*/

.login
{
	background-color: #E8E5E2;
	padding: 10px;
	width: 300px;
}

.login label
{
	font-weight: bold;
	color: #666633;
	margin-right: 10px;
}

.login input
{
	border: solid 1px #464648;
}

.login .button
{
	color: #464648;
	height: 25px;
	margin-right: 5px;
}



/* --------------- fckEditor fix ---------------------------------*/
body.fckEdit
{
	background-color: Transparent;
	height: auto;
}

body.fckEdit table tr td
{
	border-color: #000;	
}

*:first-child + html body.fckEdit
{
	background-color: #fff;
	background-image: none;
}
/* ---------------------------------------------------------------*/
#search
{
	float: right;
	padding: 0px 0px 0px 0px;
}
.searchbox
{
	margin: 2px;
	padding: 2px 0px 0px 0px;
	width: 170px;
	height: 20px;
	border: 1px solid #ccc;
	color: #000;
	font-size: 11px;
}

.searchBox
{
	background-color: #E8E5E2;
}

.searchBox
{
	background-color: #fff;
	border: 1px solid #E8E5E2;
}

.searchBox div
{
	border-bottom: dashed 1px #E8E5E2;
	padding: 1px;
	z-index: 1;
	background-color: #fff;
	margin: 3px;
}

.searchBox .selected
{
	background-color: #E8E5E2;
}

.searchBox span
{
	font-weight: 900;
}


.searchBox .c
{
	margin-left: 10px;
	font-weight: 100;
}
#ctl00_cph1_body1 input, #ctl00_cph1_body1 textarea, #ctl00_cph1_body1 select
{
	border: solid 1px #7D7D52;
}
.date
{
	padding: 5px 0px 0px 0px;
}
