@charset "UTF-8";
@import url("styles.css");
body {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	background: #E7E6DD;
	margin: 10; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image: url(gfx/sitebg.png);
	background-attachment: scroll;
	background-repeat: repeat-x;
}
.oneColFixCtr #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 12px;
	line-height:16px;
	padding-bottom:10px;
}
.oneColFixCtr #mainContent {
	padding: 0 0 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.oneColFixCtr #logo {
	padding-top:25px;
	padding-bottom:15px;
	padding-left:40px;

}

.oneColFixCtr #splash {
	width:940px;
	height:250px;
	margin-left: 10px;
	margin-bottom:10px;
}

.oneColFixCtr #menu {
	width:940px;
	height:50px;
	margin-left:10px;
}

.oneColFixCtr #Content {
	width:525px;
	height:auto;
	margin-top:25px;
	padding-left:40px;
	margin-bottom:20px;
	float:left;
}


.oneColFixCtr #Content2 {
	width:525px;
	height:auto;
	margin-top:25px;
	padding-left:10px;
	margin-bottom:20px;
	float:left;
}

.oneColFixCtr #Contentleft {
	width:275px;
	height:auto;
	margin-top:25px;
	padding-left:40px;
	float:left;
}

.oneColFixCtr #Contentright {
	width:295px;
	height:auto;
	margin-top:120px;
	margin-right:40px;
	margin-bottom:20px;
	float:right;
}

.oneColFixCtr #adress {
	width:940px;
	height:22px;
	margin-left:10px;
	margin-top:30px;
	padding-top:8px;
	background-image:url(gfx/adressbg.png);
	font-size:10px;
	color:#FFF;
	text-align:center;
	letter-spacing:0.1em;
}

.oneColFixCtr #dokumenter {
	position:relative;
	width:300px;
	height:auto;
	float:right;
	margin-right:10px;
	margin-bottom:10px;
/*	background-color:#CCC; */
}

.oneColFixCtr #download {
	position:relative;
	width:300px;
	height:285px;
	float:right;
	padding-top:15px;
	margin-right:10px;
	background-image:url(gfx/downloadbg.png)
}

.oneColFixCtr #rightcontainer {
	width:310px;
	float:right;
	margin-top:25px;
	margin-right:0px;
}

.oneColFixCtr li {
	list-style-image:url(gfx/list.png);
	margin-bottom:10px;
}


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
/*	margin-left: 8px;*/
	margin-right:10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
