@charset "utf-8";
/* CSS Document */


body  {
	font-family: Arial, Helvetica, sans-serif;
	background: #dbe5fe url(images/body-bg.jpg) repeat-x;
	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;
}
a { 
	text-decoration: none;
} 
p, ul, li { 
	font-size: 11px;
	line-height: 16px;
}

.worsley #container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images/main-bg.jpg) repeat-y;
	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. */
} 
.worsley #header { 
	background: #4f5168 url(images/header-bg.jpg) repeat-x;
	height: 111px;
	border-top: solid 1px #4f5168;
	border-left: solid 1px #4f5168;
	border-right: solid 1px #4f5168;
} 
.worsley #header h1{ 
	background: url(images/logo.jpg) no-repeat;
	height: 111px;
	width: 265px;
	margin-left: 30px;
	text-indent: 105em;
}  
.worsley #header h2{ 
	background: url(images/slogan.jpg) no-repeat;
	height: 111px;
	width: 204px;
	margin-left: 30px;
	text-indent: -105em;
} 
.worsley #header p{ 
	font-size: 16px;
	line-height: 20px;
	color: #FFFFFF;
	text-align: right;
	padding: 35px 20px 0 0;
}
.worsley #header a{ 
	font-size: 11px;
	color: #aac3e1;
} 
.worsley #header a:hover{ 
	color: #ffffff;
} 
.worsley #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* 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 */
	height: 496px;
	background: #c2c6e3 url(images/cogs.jpg) no-repeat; /* the background color will be displayed for the length of the content in the column, but no further */
	background-position: bottom;
	border-top: solid 1px #ffffff;
}
.worsley #sidebar a{
	background: #4f5168 url(images/menu-item.jpg) repeat-x;
	height: 46px;
	line-height: 46px;
	display: block;
	padding-left: 20px;
	color: #FFFFFF;
}
.worsley #sidebar a:hover{
	background: #ffffff url(images/menu-hover.jpg) repeat-x;
	color: #4f5168;
}
.worsley #mainContent { 
	margin: 0 0 0 220px; /* 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. */
} 
.worsley #mainContent p, .worsley #mainContent h1{ 
	padding: 0 0 20px 0;
} 
.worsley #mainContent h1{ 
	color: #454c71;
	font-size: 16px;
} 
.worsley #mainContent a{
	color: #2a3f75;
}
.worsley #mainContent a:hover{
	color: #5a80f8;
}
.worsley #mainContent .text{ 
	padding: 30px 30px 0 0;
} 
.worsley #mainContent .imageColumn{ 
	width: 172px;
	float: right;
	padding-left: 30px;
} 
.worsley #mainContent .imageColumn img{ 
	margin: 12px;
	margin-bottom: 0;
	border: solid 1px #4f5168;
} 
.worsley #mainContent .productsColumn{ 
	width: 300px;
	float: left;
} 
.worsley #mainContent .productsColumn img{ 
	margin: 0 12px 12px 0;
	border: solid 1px #4f5168;
	float: left;
	text-align: left;
} 
.worsley #footer { 
	background: #4f5168 url(images/footer-bg.jpg) repeat-x;
	height: 43px;
	border-top: solid 1px #ffffff;
	border-left: solid 1px #4f5168;
	border-right: solid 1px #4f5168;
} 



/*OTHER*/

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
}