@charset "UTF-8";
body  {
	font: 7px, Verdana, Geneva, sans-serif;
	background: #f37021;
	margin: 0;
	padding: 0;
	text-align: center; /*centers the container in IE 5* browsers.text is set left aligned default in the #container selector */
	color: #f37021;
}
#container {
	width: 900px;
	padding: 30px 0 30px 30px;
	background: #ffffff;
	margin: 100px auto;
	border: none;
	text-align: left;
	vertical-align: bottom;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#column1 {
	float: left;
	width: 205px;
	margin-top: 170px;
	padding: 0;
}
#column2 { 
	float: left;
	width: 135px;
	height: 240px;
	padding: 0;
} 
#column3 { 
	background: url(Images/W4.gif) no-repeat;
	float: left;
	width: 260px;
	height: 240px;
	font-size: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-style: italic;
	letter-spacing: .25em;
	color: #cccc32;
	padding: 0;
} 
#column4a { 
	float: left;
	width: 150px;
	height: 80px;
} 
#column4fill{
	float: left;
	background: url(Images/W5.gif) no-repeat;
	font-size: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-style: italic;
	letter-spacing: .25em;
	color: #cccc32;
	width: 140px;
	height: 30px;
	padding: 100px 0 0 10px;
	border: none;
}
#column4b {
	float: left;
	width: 150px;
	height: 30px;
	padding: 0;
}
.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;
}

