/*
This style sheet is for the departmental pages of the site and supplements global.css
*/
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: #FFFFFF;
	background-repeat: no-repeat;
	background-position: left top;
	margin: 25px;
	padding: 0px;
}

#leftcol {
	float: left;
	width: 190px;
	margin-left: 0px;
	margin-top: 20px;
	color: #000;
	padding: 3px;
	margin-right: 0px;
	list-style-type: none;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000000;
	margin-bottom: 0px;
	}
	
#leftcol ul li {
	list-style-type: none;
	list-style-position: inside;
	text-align: left;
	/*margin-left: -55px;*/
	margin-left: -40px;
	}	
	
/*
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.
*/

#leftcol A:link {
	FONT-WEIGHT: bold;
	COLOR: #00599C;
	width: 150px;
	text-decoration: none;
}/* This option allows you to have different link colors within a given div such as leftcol  */

#leftcol A:visited {
	FONT-WEIGHT: bold;
	TEXT-DECORATION: none;
	width: 150px;
	color: #00599C;
}
#leftcol A:hover {
	FONT-WEIGHT: bold;
	COLOR: #FFFFFF;
	TEXT-DECORATION: none;
	background-color: #00599C;
	width: 150px;
}
#leftcol A:active {
	FONT-WEIGHT: bold;
	COLOR: #FFFFFF;
	TEXT-DECORATION: none;
	background-color: #00599C;
	width: 150px;
}

#rightcol {
	position: absolute;
	left: 80%;
	top: 285px;
	width: 140px;
	z-index: 3;
	color: #000;
	padding: 3px;
	margin-top: 10px;
	height: 92px;
	margin-bottom: 0px;
	}
	
#centercol {
	color: #000;
	margin-top: 0px;
	margin-right: 20%;
	margin-bottom: 0;
	margin-left: 195px;
	padding-left: 15px;
	padding-right: 15px;
	}

#twocol {
	color: #000;
	margin-top: 0px;
	margin-bottom: 0;
	margin-left: 185px;
	padding-left: 30px;
	padding-right: 15px;
	}

#singlecol {
	float: left;
	width: 95%;
	margin: 10px;
}

h6 {
	text-decoration: underline;
}

