/* 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;
	}
	

	
	/* for body we usually have at least a bacground color */
body {
		background-color: #D4E0E8;
		}
	
	/* some items need their margins and/or paddings */


img,
a img {
		border: 0px;
		}
	
	/* 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: 850px;
				margin-left: auto;
				margin-right: auto;
				background-color: #FFF;
				border-left: solid 13px #E2EAEF;
				border-right: solid 13px #E2EAEF;
				border-bottom: solid 13px #E2EAEF;
				}

/* Header
---------------------------------------------------------------------- */

#header {
	height: 99px;
	padding-top: 18px;
	overflow: hidden;
	}

/* Navigation 
	(just layout for navigation container - css for navigation objects in separate css file)
---------------------------------------------------------------------- */

#navigation {
	height: 31px;
	background-color: #FFF;
	border-bottom: solid 1px #FECA4E;
	float:left;
    width:100%;
	}
	
/* Content Layout
---------------------------------------------------------------------- */

#contentwrapper {
		background-image: url(../wsimages/contentwrapper_bg.png);
		background-repeat: repeat-x;
		padding-bottom: 9px;
	}
	
#left_column {
	width: 625px;
	border-right: solid 1px #FECA4E;
	min-height: 500px;
	padding-left: 20px;
	padding-top: 13px;
	float: left;
}

#title {
	background-image: url(../wsimages/title_bg.jpg);
	height: 25px;
	padding-top: 105px;
	width: 609px;
	padding-left: 11px;
	overflow: hidden;
}

#maincontent {
	padding: 15px 8px; 
}

#newscontainer {
	padding-top: 20px;
}

#news {
	float: left;
	width: 280px;
	padding-right: 20px;
}

#right_column {
	width: 189px;
	background-color: #EAF0F4;
	min-height: 500px;
	margin-left: 5px;
	margin-top: 13px;
	float: left;
}

#right_title {
	background-image: url(../wsimages/right_title_bg.jpg);
	height: 23px;
	padding-top: 107px;
	padding-left: 9px;
	border-bottom: solid 1px #FFF;
}
	
#right_content {
	padding: 15px 9px; 
}


/* Footer
---------------------------------------------------------------------- */
#adresse {
	padding-top: 15px;
	text-align: center;
}

#footer {
	text-align: center;
	padding: 5px;
	}

/* Developed by
---------------------------------------------------------------------- */

#devBy {
		width: 876px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 20px;
		text-align: right;
		margin-bottom: 20px;
		}
		
	/* this section usually has some other link styling than the default */
#devBy a:link,
#devBy a:active,
#devBy a:visited {
					text-decoration: none;
					}
#devBy a:hover {
				text-decoration: underline;
				color: #000;	
				}

/* Forms
---------------------------------------------------------------------- */




