/* 
		CSS Start Template for websites
		By Trond Ulseth - trond@idl.no
		   Jørgen Skogås - jorgen@idl.no
		Started 29th September 2009
		
		Goal:
					Not having to create the same stuff each time a new site is created
		
		Change log:
					29th September 2009 - 		started this template
					
		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
					Page elements
					Header
					Logo
					Column Layout
					Footer
					Developed By
					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 */
@import url('reset.css');

body {
	background-color: #FFF;
	background-image: url(/wsimages/body_bg.jpg);
	background-repeat: repeat-x;
}
		
/* a clear class often comes in handy in site layouts */
.clear {
	clear: both;
	height: 1px;
	overflow: hidden;
	position: relative;
	width: 10px;
}

.hidden {
	position:absolute;
	left: -999em;
	top: auto;
	width: 1px;
	height: 100px;
	overflow: hidden;
}

/* Main Layout
---------------------------------------------------------------------- */

/* There's almost always a main div container for the layout of a site */
div#mainWrapper {
	width: 990px;
	margin: 0 auto;
}

	/* Page elements
	---------------------------------------------------------------------- */
	div#pageTop {
			background: url('/wsimages/pageTop_bg.png') no-repeat;
			height: 40px;
		}
	
	div#pageWrapper {
			background: url('/wsimages/pageWrapper_bg.png') repeat-y;
			padding-left: 31px;
			padding-right: 31px;
		}
	
	div#pageBottom {
			background: url('/wsimages/pageBottom_bg.png') no-repeat;
			height: 40px;
			padding: 50px 30px 0 0;
		}

	/* Header
	---------------------------------------------------------------------- */
	div#header {
		height: 87px;
		position: relative;
		padding-left: 31px;
		padding-right: 31px;
	}
	
		h1#logo a {
			background: url('../wsimages/logo.gif') no-repeat;
			display: block;
			height: 108px;
			width: 158px;
			text-indent: -999em;
		}
	
	/* Column Layout
	---------------------------------------------------------------------- */

	div#mainColumn {
		width: 622px;
		padding: 9px 8px;
		margin-top: -10px;
		float: left;
		overflow:hidden;
		}
		
		div#mainColumn #contentwrapper {
			padding-right: 20px;
			padding-left: 12px;
		}

	div#rightColumn {
		margin-top: -9px;
		margin-left: -17px;
		width: 290px;
		padding: 8px;
		float: left;
		border-left: 1px solid #C1C1C1;
		}
	
		div#contact {
			background-color: #DDD;
			padding: 30px 0 0 50px;
			height: 169px;
			overflow: hidden;
			margin-bottom:10px;
			line-height: 1.2;
		}
		
			div#contact #logo {
				margin-bottom: 5px;
			}
		
		.teaserLink {
			border-bottom: solid 1px #C1C1C1;
			padding: 0 0 0 40px;
			background: url(/wsimages/teaserLink.gif) no-repeat;
		}
		
			.teaserLink a {
				text-decoration: none;
			}
	
	/* News boxes
	---------------------------------------------------------------------- */	
	div#newswrapper {
		width: 643px;
		margin-left: -8px;
	}
	
		div#news_top {
			height: 42px;
			background: url('/wsimages/news_top.png') no-repeat;
			
		}
		
		div#news {
			background: url('/wsimages/news_bg.png') repeat-y;
			padding: 0 40px 0 20px;
		}
		
			div#news h2 {
				margin-bottom: 0;
			}
			
				div#news h2 a {
					text-decoration: none;
				}
		
			.thumbnail {
				padding: 0 1em 1em 0;
				float: left;
				clear: left;
			}
			
			.thumbnail img {
				border: solid 4px #6E779D;
				padding: 0;
				float: none;
			}
		
		div#news_bottom {
			height: 25px;
			background: url('/wsimages/news_bottom.png') no-repeat;			
		}
		
		div#focus {
			background: url('/wsimages/focus_bg.png') repeat-y;
			padding: 5px 38px 5px 15px;	
		}
		
			div#focusbox1 {
				min-height: 100px;
				width: 275px;
				padding-left: 5px;
				float: left;
			}
			
				div#focusbox1 a {
					text-decoration: none;
				}
			
			div#focusbox2 {
				min-height: 100px;
				width: 280px;
				float: left;
				margin-left: 30px;
			}
			
				div#focusbox2 img {
					clear: none;
					padding: 0px;
				}
		
		div#focus_bottom {
			height: 45px;
			background: url('/wsimages/focus_bottom.png') no-repeat;
		}

	/* Footer
	---------------------------------------------------------------------- */
	div#footer {
		height: 0px;
		}

	/* Developed by
	---------------------------------------------------------------------- */
	a#dev {
			height: 20px;
			}
		
		/* this section usually has some other link styling than the default */
	a#dev:link,
	a#dev:active,
	a#dev:visited {
		text-decoration: none;
		color: #DDDDDD;
		float: right;
	}

	a#dev:hover {
		text-decoration: underline;
		color: #FFFFFF;	
	}

	/* Forms
	---------------------------------------------------------------------- */