@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	border: 0;
}
body  {
	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;
	background-color: #33CCFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
}
#maincontainer {
	width: 1000px;
	margin: 0 auto;
	background-image: url(images/stretcher.gif);
	background-repeat: repeat;
	background-position: center top;
} 
#container {
	width: 1000px;
    text-align: left; /* this overrides the text-align: center on the body element. */
    background-image: url(images/background.gif);
	background-repeat: no-repeat;
	background-position: center top;
} 
#header {
	width: 700px;
	} 
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* 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 */
	min-height: 700px;
	text-align: left;
	background-image: url(/pages/wp-content/themes/primary/images/sidepanel.gif);
	background-repeat: no-repeat;
	background-position: 0 200px;
}


#mainContent {
	padding: 0 0 0 115px;
	float: left;
	width: 600px;
} 
#footer { margin: 0 0 -3px 0;
} 
#contactdetails p {
	margin-bottom: 5px;
}
.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}



