@charset "UTF-8";
* {
	margin: 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: #FFFF99;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#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 {
	height: 170px;
	} 
#title {
	padding: 45px 0 0 30px;
}
#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;
}
#mainContent {
	padding: 0 0 0 40px;
	float: left;
	width: 670px;
} 
#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;
}

 /*printer styles*/ 
 @media print{ 
/*hide the left column when printing*/ 
#header, #sidebar1, #footer {display:none;} 
#mainContent {
	width:100%;
	margin: 0 0 40px 0;
	padding: 0;
}
}

