
	body {
		/* setting the font-size to 62.5% equates 1em to 10px */
		/* most areas' font-sizes will have to be increased to about 1.2em (12px) */
		font-size: 62.5%;
		margin: 0px;
		padding: 10px;

		background: #fff;
		font-family: verdana, arial, helvetica, sans-serif;
	}
	
	/* we set all elements to 1em font-size to avoid problems */
	body * { font-size: 1em; }
	
	/*************************
		
		Header Styles
				
	*************************/

		h1, h2, h3, h4, h5, h6 {
			color: #006098;
		}
		
		h3 { font-size: 1.3em; margin-top: 10px; }
	
		
	/*************************
		
		Link Styles
				
	*************************/
	
		a, a:visited {
			color: #006098;
		}
		
		a:hover, a:visited:hover {
			color: #007CC4;
		}
		
		a:active, a:visited:active {
			color: #0099F2;
		}
	

	/*************************
		
		Layout Styles
				
	*************************/

	/* StyleDiv1 is the div running along the top of the page */
	#StyleDiv1 {
		display: none;
	}
	
	/*************************
		
	Head is the container for the logo and utility nav 
				
	*************************/

	#Head {
		display: block;
		position: relative;
	}
	
		/* Logo contains the img tag for the logo */
		#Logo {
			position: relative;
		}
		
		
		/* NavUtility contains the utility nav a tags */
		#NavUtility {
			display: none;
		}

		
	/*************************
		
	Main Navigation - generally the Left Hand Side Nav
				
	*************************/
	
	#NavMain {
		display: none;
	}
	
		
	/*************************
		
	Feature Area
				
	*************************/

	/* FeatureContainer contains the Feature Image and Title */
	#FeatureContainer {
		position: relative;
		display: block;
		top: 1px;

		width: 609px;
		height: 150px;
	}
	
		/* feature title text - subpage only */
		#FeatureTitle h1 {	
			font-size: 1.8em;
		}	
		
	/*************************
		
	Body Content Styles
				
	*************************/

	/* ContentContainerTop runs along the top of the main body, allowing a border or similar */
	#ContentContainerTop {
		display: none;
	}

	/* ContentContainer contains the main body content and any content features */
	#ContentContainer {
		position: relative;
		width: 607px;
		margin: 0px;
		
		padding-bottom: 2em;
	}
		
	
		/* body content is the main content area */
		#ContentBody {
			position: relative;
			
			font-size: 1.2em;
			padding: 10px;
		}
		
		/* Body features are additions to the main content - for instance right hand side features */
		#ContentFeatures {
			width: 180px;
			float: right;

			padding: 10px;
			font-size: 1.2em;
		}
		
			#BodyFeatures div {
				margin-bottom: 1em;
			}
	
	/* BodyContainerBottom runs along the bottom of the bodycontainer, allowing a border or similar */
	#ContentContainerBottom {
		display: none;
	}


	/*************************
		
	Fine Print (~Footer)
				
	*************************/

	/* FinePrint contains the byline and fineprint links - disclaimer, etc. */
	/* usually this will be the footer */
	#FinePrint {
		clear: both;
		margin-top: 1em;
		margin-bottom: 1em;
		
		font-size: 1.2em;
	}
		/* sup = superscript - for "TM" or similar */
		#FinePrint sup {
			font-size: .7em;
		}
	
		/* Byline - "powered by portalmaster" or similar */
		#ByLine {
			float: left;
		}
		
		/* container for the fineprint (~footer) links */
		#NavFinePrint {
			display: none;
		}
		
