/*
This style sheet is for the main or home page of the site.
*/
html {
	PADDING-RIGHT: 0px;
	PADDING-LEFT: 0px;
	PADDING-BOTTOM: 0px;
	MARGIN: 0px;
	PADDING-TOP: 0px;
	background-color: #006699;
	background-image: url(../Images/pattern.png);
}

body {
	/*MIN-HEIGHT: 100%; */
	COLOR: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	/*background-color: #FFFFCC; */
	background-repeat: no-repeat;
	background-position: left top;
	margin: 25px;
	padding: 0px;
}

#leftcol {
	float: left;
	width: 150px;
	margin-left: 10px;
	margin-top: 20px;
	color: #000;
	margin-right: 10px;
	/* background-color: #00FFFF; */
	z-index: 2;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000000;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 6px;


	}
/*
CSS really only allows for a 2-column float. To get a third right-most column requires a workaround. In this case #rightcol is NOT floating, but has a fixed absolute position that will NOT move as the page is resized in the browser window.

Since this is being used to contain logo/links to other sites, if the items in the #rightcol div cause its length to lower on the page, it will overlay the footer and container divs. If this ever happens, the fix is to put several empty <p> tags (pressing enter to start a new paragraph) at the bottom of the #leftcol div. This will cause the #leftcol div to lengthen forcing down the footer and bottom border below the fixed #rightcol.
*/

#rightcol {
	position: absolute;
	left: 80%;
	top: 285px;
	width: 140px;
	z-index: 4;
	color: #000;
	padding: 3px;
	margin-top: 10px;
	height: 82px;
	/* background-color: #FFCCFF; */
	float: none;
	margin-bottom: 10px;

	}
	
#centercol {
	color: #000;
	margin-top: 20px;
	margin-right: 20%;
	margin-bottom: 0;
	margin-left: 185px;
	padding-left: 15px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-right-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	padding-right: 15px;
	/* background-color: #CCCCCC; */
	padding-top: 0px;
	float: none;
	z-index: 3;


	}
