body  {
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
#border {
	margin-top: 45px; /* Marginal till överkant av skärm */
	margin-left: auto; /* the auto margins (in conjunction with a width) center the page */
	margin-right: auto;
	width: 868px; /* Här ställs bredden på sidokanterna, ingen bredd - 860 px */
}
#bordertop {
	height: 4px; /* Här ställs höjden på topkanten */
}
#borderbottom {
	height: 4px; /* Här ställs höjden på bottenkanten */
}
#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 860px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/* width: 862px; Öka om du tar bort bordern i #container */
	margin: 0px 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. */
} 
#header {
	width: 860px;
	height: 150px;
	margin: 0;
} 
#sidebar1 {
	position: absolute;
	top: 150px;
	left: 0;
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
#sidebar2 {
	position: absolute;
	top: 150px;
	right: 0;
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding:0;
	margin:0;
}
#mainContent {
	top: 150px;
	margin-left: 180px;
	margin-right: 180px;
	margin-bottom: 0px;
	min-height:800px; /* Sätter minsta hödj för mittenkolumnen. Detta görs för att inte högermenyn ska gå utanför sidramen. */
}
#footer { 
	clear: both;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}