@import "nav.css";
@import "idlform.css";
/* 
		CSS Start Template for websites
		By Trond Ulseth - trond@idl.no - Started 1st June 2006
		
		Goal:
					Not having to create the same stuff each time a new site is created
		
		Change log:
					1st June 2006 - 		started this template
					2nd June 2006 - 		continued development of template
					21nd November 2006 - 	changed order of some elements
					28nt November 2006 - 	added some default IDs (header, footer, navigation, contentcontainer & maincontent
											adjusted default values for some header sizes
					
		Once implemented for a site this template should/could be edited, added to and deleted from.
		Coments can be deleted as well, but it's adviced not to.
		Parst of this template is based on the article Squeaky Clean CSS by Lokesh
			http://www.huddletogether.com/2006/02/16/practical-web-development-tips/
		Styles for css/js navigation is kept in it's own stylesheet.
		
		Table of Contents:
		
					Setting up some Global Defaults
					Main Layout
					Header
					Content Layout
					Footer
					Developed By
					Typography
					Forms					
*/

/* Setting up Some Global defaults
---------------------------------------------------------------------- */

	/* since browsers have diferent default measures for margin and padding we're zeroing them out to be treated equaly all over */
* {
	margin: 0px;
	padding: 0px;
	}
	
	/* some global font attributes is good to have */
* {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	line-height: 1.2em;
	}
	
	/* for body we usually have at least a bacground color */
body {
		background-color: #FFF;
		background-image: url(/wsimages/body_bg.png);
		background-repeat: repeat-x;
		}
	
	/* some items need their margins and/or paddings */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 1.0em;
	}
	
h1,
h2,
h3,
h4,
h5,
h6,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #990B3C;
	}
	
ol, ul {
		line-height: 1.5em;
		margin: 1.2em 0 1.2em 2em;
		}

ul li,
ol li {
		margin-bottom: 0.2em;
		}

img,
a img {
		border: 0px;
		}
	
	/* sizes for the headers */
h1,
h1 a {
	font-size: 18px;
	}
h2,
h2 a {
	font-size: 16px;
	}
h3,
h3 a {
	font-size: 14px;
	font-weight: normal;
	}
h4,
h4 a {
	font-size: 1em;
	margin-bottom: 0em;
	}
h5 {
	font-size: 0.8em;
	}
h6 {
	font-size: 0.6em;
	}
	
	/* some global styles for links */
a:link,
a:active,
a:visited {
			text-decoration: none;
			color: #006699;
			}
a:hover {
			text-decoration: underline;
			color: #000000;	
			}
			
h3 a:link,
h3 a:active,
h3 a:visited,
h4 a:link,
h4 a:active,
h4 a:visited {
			text-decoration: none;
			color: #990B3C;
			}
h3 a:hover,
h4 a:hover {
			text-decoration: underline;
			color: #000000;	
			}
			
	/* a clear class often comes in handy in site layouts */
	
.clear {
	clear: both;
	height: 1px;
	overflow: hidden;
	position: relative;
	width: 10px;
	}

/* Main Layout
---------------------------------------------------------------------- */

	/* There's almost always a main div container for the layout of a site */
#mainwrapper {
				width: 884px;
				margin-left: auto;
				margin-right: auto;
				margin-top: 15px;
				position:relative;
				}

/* Header
---------------------------------------------------------------------- */

#header {
	height: 127px;
	overflow: hidden;
	background-image: url(/wsimages/header_bg.png);
	position: relative;
	}
	
#logo {
	height: 98px;
	width: 253px;
	position: absolute;
	bottom: 0px;
	left: 50px;
}

#header_ill {
	height: 107px;
	bottom: 1px;
	right: 19px;
	text-align: right;
	position: absolute;
}

/* Navigation 
	(just layout for navigation container - css for navigation objects in separate css file)
---------------------------------------------------------------------- */

#navigation {
	height: 30px;
	background-image: url(/wsimages/navigation_bg.png);
	overflow: hidden;
	padding-top: 20px;
	}
	
#navigationbottom {
		background-image: url(/wsimages/navigation_bg.png);
		background-repeat: repeat-y;
		height: 1px;
	}
	
#navigationbottom .hr {
	border-top: solid 1px #999;
	margin-left: 50px;
	margin-right: 50px;
}
	
/* Content Layout
---------------------------------------------------------------------- */


#contentwrapper {
		background-image: url(/wsimages/contentwrapper_bg.png);
		background-repeat: repeat-y;
		min-height: 500px;
	}
	
#maincontent {
	float: left;
	width: 554px;
	padding-left: 50px;
	padding-right: 50px;
	padding-top: 25px;
	min-height: 500px;	
	}
	
#maincontent * {
	line-height: 2em;
}

.box {
	width: 162px;
	height: 200px;
	padding-left: 5px;
	padding-right: 5px;
	border: solid 1px #990B3C;
	float: left;
	margin-right: 10px;
	margin-bottom:10px;
	background-image: url(/wsimages/box_bg.jpg);
	background-repeat: no-repeat;
}

.box p,
.box a {
	font-size: 11px;
	}
	
.box h3 a {
	font-size: 14px;
	}
	
#rightcollumn {
	background-image: url(/wsimages/rightcollumn_bg.png);
	float: right;
	width: 226px;	
}

#rightcollumncontent {
	padding-right: 50px;
	min-height: 350px;
}

#rightcollumncontent p,
#rightcollumncontent a {
	font-size: 11px;
	}

.rightcollumnbox {
	background-color: #FFF;
	border: solid 1px #990B3C;
	margin-top: 20px;
	padding: 5px;
}

#rightcollumnbottom {
	background-image: url(/wsimages/rightcollumnbottom_bg.png);
	height: 22px;
	overflow: hidden;
}

p.meldkrav {
	display: none;
	margin-top: 20px;
}

p.meldkrav a {
	font-size: 12px;
	font-weight: bold;	
}

.displaynone {
	display: none;
}

.thumbnail img {
	float:left;
	margin-right:5px;
}

.box .thumbnail img {
	
}


/* Footer
---------------------------------------------------------------------- */

#footer {
	height:52px;
	overflow: hidden;
	background-image: url(/wsimages/footer_bg.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	padding: 5px;
	clear: both;
	}
	
#footer * {
	font-size: 11px;
}
	
#footercontent {
	width: 570px;
	border-top: solid 1px #999;
	margin-left: 50px;
	margin-left: 50px;
	padding-top: 10px;
}

/* Developed by
---------------------------------------------------------------------- */

#devBy {
		width: 884px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 20px;
		text-align: right;
		}
		
	/* this section usually has some other link styling than the default */
#devBy a:link,
#devBy a:active,
#devBy a:visited {
					text-decoration: none;
					color: #DDDDDD;
					}
#devBy a:hover {
				text-decoration: underline;
				color: #AAA;	
				}

/* Typography
---------------------------------------------------------------------- */

.important_text {
	font-weight: bold; 
	}
	
.smaller_text {
	font-size: 0.7em;
	}
	
.quote_text {
	}


/* Forms
---------------------------------------------------------------------- */



