/* Generelle indstillinger. Dimensioner på og udseende af sidernes hovedelementer

	color scheme green 
  	green-0: #d7f4d7
	green-1: #a5e9a5 
	green-2: #60e960
	green-3: #06a006
	green-4: #2F7c2F
  	green-5: #004000
	
	white: #fff
	gray-0: #f0f0f0
	gray-1: #ddd
	gray-2: #888
	gray-3: #222
	black: #000
*/

body {
	overflow: hidden;
	overflow-y:scroll;
}

body {
	background-color: #ddd; /* gray-1 */
	margin: 0;
	padding: 0;
	
}

noscript {
	margin: 10px;
	display: block;
	color: #f00;
}

/* image rounded corners */
body img {
	border:1px solid #06a006;
	-webkit-border-radius:10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

#container {
	font-family: Helvetica, Verdana, Arial,  sans-serif;
	border-radius: 10px;
	width: 960px;
	background: url(../images/faux-columns.png) repeat-y;
	margin: 30px auto;
	color: #004000; /* green-5 */
}

header {
	width: 960px;
	margin: 0px;
	float:left; 
}

#content {
	width: 720px;
	float: left;
}

#sidebar {
	float: right;
	width: 240px;
	color: #fff;
}

footer {
	padding: 10px 0;
	text-align: center;
	border-radius: 0 0 10px 10px;
	background-color: #004000; /* green-5 */
	color: #60e960; /* green-2 */
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the #container to understand where the columns end and contain them */
}


/*Sitens standardindstillinger*/

header, section, footer, aside, nav, article, figure, figcaption {
	display: block; /* Old Browser HTML patch */
}

img, ul, ol, dl {
	margin: 0;
	padding: 0;
}

li {
 	margin-left: 40px;
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	padding:0;
	margin:0;
}

a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: #6E6C64;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}


