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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF6E1;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 14px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	background-color: #000;
}
.gardenq #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 400px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 200px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.gardenq #mainContent {
	margin: 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: absolute;
	height: 200px;
	width: 400px;
	left: 0px;
	top: 0px;

}
.gardenq #area01 {
	position: absolute;
	top: 0px;
	width: 400px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	left: 0px;
	height: 65px;
}
.gardenq #area02 {
	position: absolute;
	top: 65px;
	width: 400px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	height: 200px;
	right: 0px;
	text-align: left;
}

.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;
	margin: 0px;
}
a:link { color: #FFF4D3; text-decoration: none; font-weight: normal; }
a:visited { color: #FFF4D3; text-decoration: none; font-weight: normal; }
a:hover { color: #94C3E3; text-decoration: none; font-weight: normal; }
a:active {	color: #FFF4D3; text-decoration: none; font-weight: normal;
}
a:link2 {color:#666; } 
.darknightblue { color: #66A9D6; text-decoration: none; font-weight: normal; 
}
.lightnightblue { color: #94C3E3; text-decoration: none; font-weight: normal; 
}

.headline1 {	color: #FFF6E1;
	text-decoration: none;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 14px;
	font-variant: normal;
	text-transform: none;
}
.headline2 {
	color: #FFF6E1;
	text-decoration: none;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 14px;
	font-variant: normal;
	text-transform: none;
}

