/* Layout */

@charset "utf-8";

/* top elements */
* { padding: 0; margin: 0; }

html {
 height: 100%;
}

body {
	background-color: #FFFFFF;
	margin: 0; /* 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; /*Vigtigt, må ikke slettes, er med til at holde center!!!!!*/ /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    height: 100%;
	background: url("img/inner_bg.jpg") center repeat-y; 
}

.oneColElsCtr #container {
	width: 1000px;
	height: 100%;

	margin:0px auto; /* the auto margins (in conjunction with a width) center the page */
	border: -1px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColElsCtr #mainContent {
	width: 900px;
	clear: both;
	margin: 20; padding: 0;
	margin-left: 40px;
}

.left {
	text-align: left; /* this overrides the text-align: center on the body element. */
}



/* Layout */

/* Font */

.bodyFont {
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #000000;
}

.bodyFont_print {
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #000000;
}

.overskrift {
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
}

.overskrift_lille {
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000000;
}

.stor_overskrift {
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 32px;
	font-weight: bold;
	color: #000000;
}

.small {
	font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
}

.exsmall {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
}

A:link
{
    font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #000000;
    text-decoration: Underline
}

A:visited
{
    font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #000000;
    text-decoration: Underline
}

A:active
{
    font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #000000;
    text-decoration: Underline
}

A:hover
{
    font-family: "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #000000;
    text-decoration: Underline
}

/* Font */