/* CSS Template for [Company/Organization] */

/* all sytles should be structured as follows:
******************************************
call (descriptive element names are required) { / comments for what the call is used for if the call doesnt explain enough (eg. .nav p { \* paragraph style for copy in the nav area *\) /
	position: value;
	flaot: value; / if aplicable /
	width: value; / plese use px if possible only use % if under 100%/
	height: value; / please use px if possible and if height is absolutely neccisary please comment behind with IMPORTANT, otherwise omit /
	background: color image repat position;
	color: value;
	font-family: value;
	font-size: value; / please use pt or em if possible or size types like "small", "larger", "x-small", etc. /
	font-whatever: value; / all other font styles /
	margin: top-value right-value bottom-value left-value;
	padding: top-value right-value bottom-value left-value;
	text-whatever: value;
	display: value;
	border: width style color;
	any other styles...
}	
******************************************
if possible please use #hhh; for colors */

html, body {
	background-color: #FFF;
	margin: 0;
	padding: 0;
	text-align: center;
} 
 
#container {
	width: 882px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	color: #000;
	background: url(http://www.etheringtoncs.net/fileadmin/www.etheringtoncs.net/structure/images/main_back.png);
} 

#wrapper { /* Background image for left side should go here if needed - will resize to content - OR can put it in the body style */
 	text-align: center; 
	width: 100%;
} 
 
#header {
 	height: 153px; /* IMPORTANT */
	width: 100%;
} 

#mission {
	float: right;
	margin-right: 30px;
	color: #5C5B47;
	width: 600px;
	font-weight: bold;
	margin-top: 15px;
	text-align: justify;
}
 
#nav {
	width: 195px;
	margin-left: 15px;
	margin-top: 45px;
	float: left;
	display: inline;
}

#nav a {
	text-decoration: none;
}

#nav a:link {
	color: #5C5B47;
}

#nav a:visited {
	color: #5C5B47;
}

#nav a:hover {
	color: #2E8B57;
}

.sublink {
	margin-left: 10px;
}

#maincol {
	width: 820px;
	text-align: left;
	background: #DFE0DB;
	position: relative;
}

#nav .submenuitem {
	margin-left: 10px;
}

#nav .last {
	margin-left: 10px;
}

#content {
	margin-top: 15px;
	width: 575px;
	float: right;
	margin-right: 10px;
	background: url(http://www.etheringtoncs.net/fileadmin/www.etheringtoncs.net/structure/images/body_back.png);
	display: inline;
}

#footer{
	text-align: center;
	font-size: 8pt;
	width: 100%;
}


/*Simple styles for clients to use sizes and colors etc.*/
 H1 {
 	font-size: 20px;
	color: #5C5B47;
	margin: 0px;
 }
 
 H2 {
 	font-size: 16px;
	color: #5C5B47;
	margin: 0px;
 }
.smaller {
	font-size: 8px;
}

.small {
	font-size: 10px;
}

.big {
	font-size: 16px;
}

.bigger {
	font-size: 18px;
}

.blue {
	color: #0000a0;
}

.red {
	color: #ff0000;
}

.green {
	color: #008000;
}

.yellow {
	color: #ffff00;
}