/* visual layout of site */

html {
	height:100%; /* fix height to 100% for IE */
	width:100%;
	max-height:100%; /* fix height for other browsers */
	margin:0; /* remove margins */
	padding:0; /*remove padding */
	border:0; /* remove borders */
	background:#fff; /*color background - only works in IE */ 
	font-size:12px
	/* hide overflow:hidden from IE5/Mac */ 
	/* \*/ 
	overflow:hidden; /*get rid of scroll bars in IE */
	/* */ 
}

body {
	height:100%; /* fix height to 100% for IE */
	max-height:100%; /* fix height for other browsers */
	width:100%;
	margin:0; /* remove margins */	
	padding:0; /*remove padding */
	border:0; /* remove borders */
	overflow:hidden; /*get rid of scroll bars in IE */
}

#content {

	position:absolute; /* position absolutely */
	top:40px; /* a value to miss the header */
	bottom:30px; /* a value to miss the footer */
	left:210px; /* a value to miss any navigation div */
	right:0; /* this will put the scroll bar at the right of the page */
	background:#fff; /* set the background color */
	z-index:3; /* If required to cover any other divs */
	overflow:auto; /* add scroll bars as necessary */
}

* html #content {
	height:100%; /* full screen height */
	width:100%; /* full screen width */
	top:0; /* place the content at the top */
	left:0; /* and left of the body */
	border-right:0;
	border-top:40px solid #fff; /*add a top border to miss the header 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-bottom:30px solid #fff; /*add a bottom border to miss the footer 
				(this is SUBTRACTED from the 100% height on quirks mode) */
	border-left:210px solid #fff; /*add a left border to miss any navigation div 
				(this is SUBTRACTED from the 100% width on quirks mode) */
}

#head {
	position:absolute;
	margin:0;
	padding:0;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:29px;
	background:#fff;
	color:#000066;
	font-size:1.5em;
	text-align:center;
	z-index:5;
	overflow:hidden;
}

#foot {
	position:absolute;
	margin:0;
	padding:0;
	bottom:0;
	left:0;
	display:block;
	width:100%;
	height:19px;
	background:rgb(255,255,255);
	color:#000066;
	font-size:1em;
	text-align:center;
	z-index:5;
	overflow:hidden;
}

#left {
	position:absolute;
	left:0;
	top:10px;
	bottom:15px;
	width:199px;
	background:rgb(255,255,255);
	font-size:1.2em;
	z-index:4;
	overflow:auto;
}

* html #left {
	height:100%;
	width:199px;
	top:0;
	bottom:0;
	border-right:0;
	border-left:0;
	border-top:10px solid #fff;
	border-bottom:15px solid #fff;
}

a.nav, a.nav:visited {
	display:block;
	width:199px;
	height:17px;
	background:#fff; 
	color:#000066;
	text-decoration:none;
	text-align:center;
	line-height:20px;
}

.crlf {
	display:block;
	width:199px;
	height:12px;
	background:#fff;
	color:#000066;
	text-decoration:none;
	text-align:center;
	line-height:15px;
}

a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-decoration: none;
	font-weight: bold;
}

.brodtext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.rubrik1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #999999;
}

a.nav:hover {
	background:#fff; 
	color:#666666;
}

.bold {
	font-size:1.2em;
	font-weight:bold;
}
