/* CSS Document */
/*
* This sets style attributes for background appearance and layout.
* It defines the blocks that make up the layout of the page,
* to minimize the use of table tags.
* --P Squared
*/ 
body {
	text-align:center;
	margin:10px 10px 0px 10px;
	padding:0px;
/* Background color set to match the color of the background image,
* so that the base color shows immediately while the images are loading. */
	background-color: #BAE3FF;
	background-image: url(/images/backgrounds/floral_blue4.gif);
}
/* Container within the body to hold the layout blocks */
#container {
	text-align:center;
	width:762px;
	margin:0px auto;
	height:100%;
}
/* Default settings for the image tag.*/
#img {
	border: 0;
	alt: " ";
}
/* Left and right-hand blocks; position and internal alignment.*/
#leftcontent {
	float: left;
	width:170px;
	text-align:left;
	padding-left: 10px;
}
#rightcontent {
	float: right;
	width:580px;
}
#adbars {
	float: left;
	top: 650 px;
	width: 762 px;
	text-align: center;
}
#footercontent {
	float: left;
	top: 500 px;
	width: 100%;
	text-align: center;
}
