@charset "utf-8";
body  {
	font: 92% Trebuchet MS, Tahoma;
	background: #c2ca8b;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

div#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 10px;
} 

div#header {
	width: 950px; 
	background: #c2ca8b url(http://www.wonderwoolwales.co.uk/fileadmin/templates/images/header-bg.gif) repeat-x; 
} 

div#languageSwitcher {
	position: absolute;
	top: 6px;
	margin-left: 838px;
	height: 50px;
	width: 112px;
	background: url(http://www.wonderwoolwales.co.uk/fileadmin/templates/images/language-switch-bg.gif) no-repeat;
	text-align: right;
	padding-top: 2px;
}

div#mainImage {
	background: #FFFFFF;
	width: 950px;
	height: 307px;
}

div#topNavigation {
	background: #e85c0f;
	width: 950px;
	padding: 5px 0px;
	border-bottom: 10px solid #FFFFFF;
}

div#mainBodyContainer {
	width: 950px;
	background: #FFFFFF;
}

div#leftCol {
	float: left; /* since this element is floated, a width must be given */
	width: 194px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
}

div#mainContent { 
	float: left;
	margin: 0px 5px 0px 5px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 20px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 300px !important;
	width: 505px;
} 

div#rightCol {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
}

div#mainContent h1 { 
	font: normal 225% Trebuchet MS, Tahoma;
	margin: 0px;
	padding-bottom: 10px;
}

div#footer { 
	background: #c2ca8b;
	border-top: 10px solid #FFFFFF;
	padding: 10px;
} 

div#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

div#footerImages {
	clear: both;
	width: 930px;	
	padding: 10px;
}

/* Language Switcher Class */
div#languageSwitcher a {
	color: #FFFFFF;
	padding-right: 10px;
}

/* Top Navigation Class */
div#topNavigation ul {
	margin: 0px 0px 0px 0px; 
	padding: 0px;
	list-style-type: none;
}

div#topNavigation li {
	display: inline;
	margin: 5px 0px;
	border-right: 1px solid #FFFFFF;
}

div#topNavigation a {
	padding: 0px 17.5px;
	text-decoration: none; /*lets remove the link underlines*/
}

div#topNavigation a:link, div#topNavigation a:active, div#topNavigation a:visited {
	background: #e85c0f;
	color: #FFFFFF;
	font: 100% Trebuchet MS, Tahoma;
}

div#topNavigation a:hover {
	background: #e85c0f;
	color: #FFFFFF;
	font: 100% Trebuchet MS, Tahoma;
}


/* Left Column CSS */
div#leftCol h1 {
	background-color: #1563e4;
	color: #FFFFFF;
	width: 174px;
	font: normal 100% Trebuchet MS, Tahoma;
	padding: 5px 10px;
	margin: 0px;
	border-bottom: 2px solid #FFFFFF;
}

div#leftCol ul {
	margin: 0px; 
	padding: 0px;
	list-style-type: none;
}

div#leftCol li {
	margin: 0px;
	width: 194px;
	display: block;
}

div#leftCol a {
	font: 130%;
	display: block;
	text-decoration: none; /*lets remove the link underlines*/
	width: 174px;
	padding: 10px;
}

div#leftCol a:link, div#leftCol a:active, div#leftCol a:visited {
	background: #e85c0f;
	color: #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
}

div#leftCol a:hover {
	background: #1563e4;
	color: #FFFFFF;	
	border-bottom: 2px solid #FFFFFF;		
}

/* Right Column CSS */
div#rightCol h1 {
	background-color: #1563e4;
	color: #FFFFFF;
	width: 180px;
	font: normal 150% Trebuchet MS, Tahoma;
	padding: 5px 10px;
	margin: 0px;
	border-bottom: 2px solid #FFFFFF;
}

div#rightCol h2 {
	background-color: #e85c0f;
	color: #FFFFFF;
	width: 180px;
	font: normal 150% Trebuchet MS, Tahoma;
	padding: 5px 10px;
	margin: 0px;
	border-bottom: 2px solid #FFFFFF;
}


a {
	color: #1563E4;
	text-decoration: none;
}


a:hover {
	color: #1563E4;
	text-decoration: underline;
}