/* 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, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* 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 {
	background-color: #FFF;
	color: #2e2d2c;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-repeat: repeat-x;
	background-image: url(../images/bg.gif);
}
/* Commonly used to style page titles. */
h1 {
	color: #333;
	font-size: 24px;
	font-weight: normal;
	line-height: 30px;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 10px;
	margin-bottom: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #666;
	font-size: 16px;
	font-weight: normal;
	line-height: 16px;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #333;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #8E1B00;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #880611;
}
#fullWidthHeader {
	background-color: #FFF; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	height: 50px;
	padding-top: 10px;
	background-image: url(../images/top_right.jpg);
	background-repeat: no-repeat;
}
#fullWidthHeader #top {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	height: 50px;
}
#fullWidthHeader #top #logo {
	margin-left: 30px;
	float: left;
	height: 30px;
	width: 261px;
	border-width: 0px;
}
#fullWidthHeader #top #kundlogin {
	float: right;
	padding: 0px;
	margin-top: -5px;
	margin-right: 200px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #333;
}
#fullWidthHeader #top #kundlogin label #pwd {
	font-size: 11px;
	color: #666;
	width: 70px;
	border: 1px solid #CCC;
	float: left;
}
#fullWidthHeader #top #kundlogin label #uname {
	font-size: 11px;
	color: #666;
	width: 70px;
	border: 1px solid #CCC;
	float: left;
	margin-right: 3px;
}
#kundloginbtn {
	background-image: url(../images/send-btn.gif);
	height: 17px;
	width: 16px;
	background-repeat: no-repeat;
	padding: 0px;
	background-color: #FFF;
	display: block;
	float: left;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
}
.kundloginrubrik {
	font-size: 14px;
	color: #999;
	line-height: 20px;
}
.sixtopinfo {
	text-align: center;
	float: right;
	margin-right: 40px;
	height: 20px;
	display: block;
	padding: 0px;
	line-height: 20px;
	margin-top: 20px;
}
#outerWrapper .sixtopinfo ul {
	list-style-image: url(../images/red_down_arrow.gif);
	margin: 0px;
	padding: 0px;
}
.sixtopinfo2 {
	text-align: center;
	float: right;
	margin-right: 30px;
	height: 20px;
	display: block;
	padding: 0px;
	line-height: 20px;
	margin-top: 20px;
}
#outerWrapper .sixtopinfo2 ul {
	list-style-image: url(../images/green_up_arrow.gif);
	margin: 0px;
	padding: 0px;
}
.redline {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	height: 4px;
	background-color: #8E1B00;
	line-height: 50px;
	color: #333;
	text-align: left;
	background-repeat: repeat-x;
	font-size: 14px;
}
.marketline {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	height: 25px;
	color: #333;
	text-align: center;
	font-size: 11px;
	line-height: 25px;
	background-image: url(../images/bg_rollingnews.gif);
	background-repeat: repeat-x;
	margin-bottom: 0px;
	margin-top: 0px;
	padding: 0px;
}
/* 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. */
#outerWrapper {
	background-color: #fff; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-bottom: 0px;
	background-image: url(../images/contentWrapper_bg.png);
}
#outerWrapper #topimg {
	width: 960px;
	background-color: #5C5C5C;
	overflow: hidden;
	height: 280px;
}
#outerWrapper #topimg #gallery {
	background-color: #858585;
	margin: 0px;
	padding: 0px;
	float: left;
	height: 280px;
	overflow: hidden;
}
#outerWrapper #topimg #topimg_txt {
	margin: 0px;
	text-align: left;
	float: left;
	width: 445px;
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 40px;
	height: 230px;
	overflow: hidden;
}
#outerWrapper #topimg #topimg_txt h1 {
	color: #FFF;
}
#outerWrapper #topimg #topimg_txt p a {
	color: #FFF;
}
#outerWrapper #topimg #topimg_txt p {
	font-size: 16px;
	line-height: 26px;
	color: #FFF;
}
#header {
	background-color: #858585;
	height: 36px;
	width: 960px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-repeat: repeat-x;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	background-image: url(../images/nav-bg.gif);
}
ul#menu {
	cursor: default;
	list-style-type: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
ul#menu ul {
	cursor: default;
	list-style-type: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
ul#menu ul li {
	background-image: none;
	float: none;
}
ul#menu li {
	background-image: none;
	float: left;
	padding: 0px;
	white-space: nowrap;
}
ul#menu > li > a {
	border-style: none;
	color: #595959;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	height: 36px;
	line-height: 36px;
	text-align: center;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
ul#menu > li > a:active {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: none;
}
ul#menu > li:hover > a {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: none;
}
ul#menu > li.hover > a {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: none;
}
ul#menu > li.current > a.current {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: underline;
}
#header #menu li .current {
	color: #8E1B00;
	text-decoration: underline;
}
ul#submenu {
	cursor: default;
	list-style-type: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#submenucontainer {
	width: 660px;
	height: 25px;
	background-color: #666;
}
ul#submenu ul {
	cursor: default;
	list-style-type: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
ul#submenu ul li {
	background-image: none;
	float: none;
}
ul#submenu li {
	background-image: none;
	float: left;
	padding: 0px;
	white-space: nowrap;
}
ul#submenu > li > a {
	border-style: none;
	color: #FFF;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	height: 25px;
	line-height: 25px;
	text-align: center;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
ul#submenu > li > a:active {
	color: #8E1B00;
	font-weight: normal;
	text-decoration: none;
}
ul#submenu > li:hover > a {
	color: #FFF;
	font-weight: normal;
	text-decoration: underline;
}
ul#submenu > li.hover > a {
	color: #FFF;
	font-weight: normal;
	text-decoration: underline;
}
ul#submenu > li.current > a.current {
	color: #FFF;
	font-weight: normal;
	text-decoration: underline;
}
#submenu li .current {
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content1 {
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 12px;
	line-height: 17px;
	height: 400px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
}
/* 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. */
#outerWrapper #contentWrapper #content {
	margin: 0 220px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 12px;
	line-height: 17px;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
#content1 #left {
	width: 560px;
	padding-left: 20px;
	padding-top: 10px;
	float: left;
	padding-right: 40px;
	padding-bottom: 20px;
}
#content1 #left .ingress {
	font-size: 14px;
	line-height: 18px;
}
#content1 #right {
	float: right;
	width: 250px;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 10px;
}
.news {
	margin-bottom:0px;
	background-repeat:no-repeat;
	width:297px;
	color:#333;
	float: left;
	margin-right: 10px;
	margin-left: 6px;
	padding: 0px;
}
.news h2 {
	color:#333;
	margin-bottom:5px;
}
.news .wrapper {
	color:#333;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 15px;
}
.date {
	font-size: 11px;
	color: #333;
}
.news .wrapper a {
	color:#333;
	font-weight: normal;
	line-height: 14px;
}
.news .wrapper a:hover {
	color:#333;
	font-weight: normal;
	text-decoration: underline;
}
.news_rubrik {
	font-size: 13px;
	line-height: 14px;
}
.newsarchive_link {
	color: #8E1B00;
}
.flernyheter {
	float: right;
	margin-right: 15px;
	width: 90px;
	clear: both;
	margin-top: 5px;
}
.arkiv_wrapper {
	width: 450px;
	margin-top: 20px;
}
.arkiv_rubrik {
	font-size: 16px;
	font-weight: normal;
}
#outerWrapper #contentWrapper #content1 #left .arkiv_wrapper .arkiv_korttext {
	color: #333;
	display: block;
	margin-top: 10px;
}
#fullWidthFooter {
	text-align: left;
	margin-top: 0px;
	padding: 0px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	background-color: #181818;
	margin-bottom: 30px;
	font-size: 11px;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #8E1B00;
}
#fullWidthFooter #footer {
	color: #FFF;
	width: 920px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	height: 40px;
	margin-right: auto;
	margin-left: auto;
}
#fullWidthFooter #footer a {
	color: #FFF;
	font-weight: normal;
}
#fullWidthFooter #footer h2 {
	color: #FFF;
}
#fullWidthFooter #footer #asenio {
	float: right;
	width: 120px;
	color: #999;
	padding-right: 0px;
	margin-top: 10px;
}
#fullWidthFooter #footer #asenio a {
	color: #CCC;
}
#fullWidthFooter #footer .footer_tjanster {
	float: left;
	width: 200px;
}
#fullWidthFooter #footer .footer_ftginfo {
	float: left;
	width: 610px;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#puffar {
	padding: 10px 15px 10px 15px;
	font-size: 12px;
	line-height: 17px;
	margin: 0;
	overflow: hidden;
}
#puffar .puff {
	width: 290px;
	height: 150px;
	float: left;
	color: #FFF;
	background-color: #FFF;
	text-align: center;
	margin:10px;
}
#puffar .puff-news {
	width: 290px;
	height: 150px;
	float: left;
	color: #FFF;
	background-color: #FFF;
	text-align: left;
	margin:10px;
	background-image: url(/upl/images/128300.png);
	background-repeat: no-repeat;
}
#puffar .puff-news ul {
	list-style-type: disc;
	margin-top: 40px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 16px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	color: #333;
	font-weight: bold;
	height: 80px;
}
#puffar .puff-news ul li a {
	padding: 0px;
	line-height: 20px;
	margin: 0px;
	color: #333;
	font-size: 13px;
	font-weight: normal;
}
#rummet {
	font-size: 12px;
	line-height: 17px;
	text-align: left;
	width: 960px;
	background-color: #FFF;
	margin: auto;
	padding: 20px;
}
#rummet h1 {
	margin-bottom: 20px;
}
#index_rummet {
	float: left;
	width: 439px;
	margin-top: 20px;
	margin-right: 20px;
}
#dinews_rummet {
	float: left;
	width: 479px;
	overflow: hidden;
	border: 1px solid #CCC;
	margin-top: 20px;
	padding: 10px;
	background-color: #E9E9E9;
}
#dinews_rummet h2 {
	margin-bottom: 10px;
	background-color: #181818;
	height: 25px;
	line-height: 25px;
	padding-left: 10px;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
}
#e24_rummet {
	width: 900px;
	float: left;
	clear: both;
	color: #333;
	margin-top: 20px;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #8E1B00;
	padding-top: 20px;
}
#dn_rummet {
	clear: both;
	float: left;
	width: 600px;
	margin-top: 20px;
}
/*
#content1 #left .form .label {
    font-weight: bold;
    display: block;
}

#content1 #left .form .formfield,
#content1 #left .form .formbox {
	margin-top: 0;
	margin-bottom: 14px;
}
*/
ul.rellink {
	list-style: none;
	padding: 0px;
}
#contentWrapper #content1 #left table tbody tr td hr {
	color: #CCC;
}
/* ------------------------------------------------
	form 
-------------------------------------------------*/

	div.form {
	margin:10px 0px;
	padding:0px;
}
span.label {
	float:left;
	display:block;
	width:111px;
}
.formfield {
	float:left;
	width:40%;
	height:16px;
	margin:0px 0px 2px 0px;
	padding:4px 2px;
	color:#000;
	font:12px Verdana, Arial, Helvetica, sans-serif;
	border:1px solid #666;
	background:#fff;
}
.formbox {
	float:left;
	width:40%;
	margin:0px 0px 2px 0px;
	padding:4px 2px;
	color:#000;
	font:12px Verdana, Arial, Helvetica, sans-serif;
	border:1px solid #666;
	background:#fff;
}
.form .pink {
	background:#fee7e7;
}
.form .yellow {
	background:#fefee7;
}
span.icon {
	float:left;
	display:inline;
	width:8px;
	margin:0px 0px 0px 5px;
	padding:8px 2px 0px 0px;
}
.erbjudande_wrapper {
	float: left;
	clear: both;
	width: 560px;
	background-image: url(../upl/images/128610.gif);
	background-repeat: no-repeat;
        margin-bottom: 25px;
}
.erbjudande1 {
	height: 152px;
	width: 225px;
	float: left;
	padding: 10px;
	overflow: hidden;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #FAC121;
	border-bottom-color: #FAC121;
	border-left-color: #FAC121;
}
.erbjudande1 h2 {
	color: #333;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}
.erbjudande2 {
	height: 152px;
	width: 226px;
	float: left;
	padding: 10px;
	margin-left: 57px;
	overflow: hidden;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #A80A12;
	border-bottom-color: #A80A12;
	border-left-color: #A80A12;
}
.erbjudande2 h2 {
	font-size: 16px;
	color: #333;
	font-weight: bold;
	text-align: center;
}
.erbjudande3 {
	height: 152px;
	width: 226px;
	float: left;
	padding: 10px;
	margin-left: 154px;
	margin-top: 25px;
	overflow:hidden;
	clear: both;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #007D1C;
	border-bottom-color: #007D1C;
	border-left-color: #007D1C;
}
.erbjudande3 h2 {
	color: #333;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.erbjudandeforklaring {
	width: 556px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.forklaring_img {
	padding: 0px;
	margin: 0px;
	float: left;
	width: 555px;
	height: 55px;
}
#forklaring1 {
	width: 183px;
	float: left;
	font-size: 11px;
	text-align: center;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}
#forklaring2 {
	width: 185px;
	float: left;
	font-size: 11px;
	text-align: center;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}
#forklaring3 {
	width: 184px;
	float: left;
	font-size: 11px;
	text-align: center;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}
.juridiskinfotext {
	clear: both;
	float: left;
	font-size: 10px;
	font-style: italic;
	margin-top: 40px;
	line-height: 13px;
}
#contentWrapper #content1 #left table h4 a {
	color: #FFF;
	font-size: 12pt;
	font-weight: bold;
	text-decoration: none;
}
#contentWrapper #content1 #left table h4 a:hover {
	color: #fff;
        text-decoration: underline;
	}
