/*
	stylesheet for www.ikkeforstyrr.no
	by Erland Wiencke - Apt AS
	
	version 0.8
	
	last update: 20081128
	
	document convention and structure:
	
	colours
		page background: #fff
		default text: #191919
		link: #191919;
	
	fonts
		body: Arial, Helvetica, sans-serif

	structure
		=reset
		=typography and colours
		=layout
		=widgets
		=special
	
	order of declarations
		alphabetical per class/id/item
	
*/

/*=reset*/
* {
	list-style: none;
	margin:0;
	padding:0;
	outline: none;
	}
	
fieldset{
	border: none;
	}

img{
	margin:0;
	border: none;
	}

/*=typography and colours*/
body{
	background-color: #fff;
	color: #191919;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 100%;
	}

a{
	color: #191919;
	}
	
a:hover{
	background-color: #ffc00d;
	}

strong{
	font-size: 1.4em;
	}

fieldset{
	margin-bottom: 1em;
	}

legend{
	font-size: 1.2em;
	font-weight: bold;
	}
	
label{
	display: block;
	width: 25%;
	}
	
input{
	color: #252525;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-size: 1.2em;
	}

div#wrapper{
	background-image: url('../images/background-dog.jpg');
	background-position: right top;
	background-repeat: no-repeat;
	}
	
	div#wrapper h1{
		font-size: 2.4em;
		}
		
	div#wrapper p{
		font-size: 1.2em;
		}
		
	div#wrapper ul{
		font-size: 0.8em;
		}
		
		div#wrapper ul li{}

div#error-message{
	color: #252525;
	font-weight: bold;
}

/*=layout*/
html, body, div#page{
	/*attributter settes programmatisk i main.js*/
	}

div#wrapper{
	height: 570px;
	margin: 5em auto;
	position: relative;
	width: 860px;
	}
	
	div#wrapper h1{
		width: 50%;
		margin-bottom: 1em;
		}
	
	div#wrapper p{
		margin-bottom: 1em;
		width: 50%;
		}
		
	div#wrapper ul{
		bottom: 0;
		position: absolute;
		}
		
		div#wrapper ul li{
			float: left;
			margin-right: 3em;
			}