/* BODY

Innstillinger som gjelder hele siden (som fonter og tekstfarge)

*/

BODY {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: normal;
	color: #FFFFFF;
	background: #58585a url('images/bg.png');
}

/* BOKSER

Dette utgjør layout på siden, plassering og farger

*/

#page {
	position: absolute;
	top: 30px;
	left: 70px;
	width: 800px;
}

#header {
	float: left;
	clear: both;
	height: 80px;
	width: 800px;
	color: #000000;
	background: #FFFFFF;
}

#main {
	float: left;
	clear: both;
	width: 800px;
	color: #000000;
	background: #FFFFFF;
}

#columns {
	float: left;
	clear: both;
	width: 800px;
	color: #000000;
	background: #FFFFFF url('images/bg-main.png');
}

#left {
	float: left;
	padding-left: 20px;
}

#innerLeft {
	width: 510px;
}

#bottomLeft {
	position: absolute;
	bottom: 75px;
	width: 510px;
}

img.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#right {
	float: right;
	padding-right: 20px;
}

#innerRight {
	width: 190px;
}

.columnSpacer {
	clear: both;
	height: 20px;
}

#footer {
	float: left;
	clear: both;
	width: 800px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	color: #FFFFFF;
	background: inherit;
}

/* TEKST

Spesielinnstillinger for tekst

*/

H1 {
	font-weight: normal;
}

H2 {
	font-weight: normal;
}

H3 {
	font-weight: normal;
}

BLOCKQUOTE {
	font-style: italic;
}

/*
HORISONTAL RULER

<div class="hr"></div> brukes i stedet for <hr />

*/


.hr {
	border: none;
	background: #FFFFFF url('images/bg-hr.png');
	height: 20px;
}

/* LENKER

Innstillinger for lenker på siden (farger, med eller uten understreking, osv.)

*/

BODY a:link {
	color: #3b838f;
}

BODY a:visited {
	color: #89d4e0;
}

BODY a:hover {
	color: #CCCCCC;
}

BODY a:active {
	color: #333333;
}

#footer a:link { 		color: #FFFFFF; text-decoration: none; }
#footer a:visited { color: #FFFFFF; text-decoration: none; }
#footer a:hover { 	color: #89d4e0; text-decoration: none; }
#footer a:active { 	color: #333333; text-decoration: none; }