/************************* PAGE FORMATTING **********************************/

	body {
		margin: 0px;
		padding: 0px;
		font-family: Verdana, Helvetica, sans-serif;
		font-size: 10px;
		background-color: black;
		color: white;
	}
	
	#container {
		position: relative;
		width: 100%;
		min-height: 100%;
		height: 100%;
		text-align: center;	/* Forces correct centering behavior in Internet Explorer */
	}
	
	html, body {
		height: 100%;
		min-height: 100%;
	}
	
	* html #container {
		height: 100%;
		min-height: 100%;
	}
	
		#root {
			position: relative;
			background-color: white;
			top: 0px;
			left: 0px;
			width: 1000px;
			margin: 0px auto 0px auto;	/* "auto" forces correct centering behavior in FireFox */
		}
		
			#nonFooter {
				position: relative;
				padding: 0px;
				margin: 0px;	
				width: 1000px;
				background-color: black;
			}
				
				* html #nonFooter {
					height: 100%;
					min-height: 100%;
				}
			
			#header {
				position: relative;
				clear: both;
				top: 0px;
				left: 0px;
				width: 1000px;
				height: 80px;
				padding: 0px;
				margin: 0px;
				/*background-image: url(../images/header_bg.gif);
				background-repeat: no-repeat; border: 1px solid blue;*/
			}
			
				img#header-logo {
					position: relative;
					top: 0px;
					left: 0px;
					float: right;/* border: 1px solid red;*/
				}
			
			#page_body {
				position: relative;
				width: 1000px;
				margin: 0px 0px;
				height: 400px; /*border: 1px solid blue;*/
			}
			
			#page_title {
				position: relative;
				width: 1000px; /*border: 1px solid red;*/
			}

			
			#footer {
				position: relative;
				clear: both;
				bottom: 0px;
				width: 1000px;
				/*background-image: url(../images/footer_bg.gif);
				background-repeat: no-repeat;
				background-position: bottom;*/
				background-color: black;
				height: 86px;
				font-weight: bold;
				text-align: center; /*border: 1px solid red; */
			}
/*				
				* #footer {
					top: -86px;
				}*/

				
				#footer a:link, #footer a:visited {
					color: #0033CC;
				}
				
				#footer a:hover {
					color: #FF0000;
				}								
				
	img {
		border: none;
	} 
	
	.clear {
		clear: both;
	}
	
/************************* TEXT / LINK FORMATTING **********************************/

		
	.text-xs {
		font-size: 10px;
	}
	
	.text-sm {
		font-size: 12px;
	}
	
	.text-med {
		font-size: 14px;
	}
		
	.text-lg {
		font-size: 16px;
	}
	
	.text-xl {
		font-size: 18px;
	}
	
	.text-xxl {
		font-size: 24px;
	}
	
	.text-xxxl {
		font-size: 28px;
		font-weight: bold;
	}
	
	.error {
		font-weight: bold;
		color: red;
	}
	
	a:link, a:visited, a:hover, a:active {
		color: #CCFF33;
	}
	
	
	
	
	
	
	
	
	
	
