/* Main/universal element properties */	
	img {	border: none;	}
	a	{	color: #009;	}
		a:hover	{	color: #00F;	}
	.centered	{	text-align: center;	}
	
/* Page layout hierearchy */
	html	{	height: 100%;	}

	body
	{
		color: #000;
		background-color: #AAA;
		font-family: verdanda, sans-serif;
		font-size: 14px;
		margin: 0px;
		vertical-align: top;
	}
	
	div.encompass
	{
		background-color: #FFF;
		margin-left: auto;
		margin-right: auto;
		height: 100%;
		text-align: center;
		width: 80%;
	}

	div.central	{	height: 100%;	}

	div.subpage_content
	{
		padding: 10px;
		text-align: center;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}

/* Page header */
	div.page_header
	{
		color: #FFF;
		width: 100%;
	}
	
	/* Link bar */
		div.linkbar
		{
			background-color: #AAA;
			border-bottom: 2px solid #888;
			padding: 30px 0px 1px 0px;
			position: relative;
			text-align: center;
			z-index: 1;
		}
		
		a.linkbar
		{
			background-color: #EEE;
			border-top: 1px solid #333;
			border-left: 1px solid #666;
			border-bottom: 0px;
			border-right: 2px outset #666;
			color: #009;
			display: inline;
			font-size: 12px;
			font-weight: bold;
			padding: 3px 30px 2px 30px;
			text-decoration: none;
		}
		
			a.linkbar:hover
			{
				background-color: #F6F6F6;
				color: #00F;
			}
			
		a.linkbar-active
		{
			background-color: #FFF;
			border-top: 1px solid #333;
			border-left: 1px solid #666;
			border-bottom: 3px solid #FFF;
			border-right: 2px outset #666;
			color: #00F;
			display: inline;
			padding: 3px 30px 0px 30px;
			position: relative;
			font-size: 14px;
			font-weight: bold;
			text-decoration: none;
		}
		
			a.linkbar-active:hover
			{
				color: #00F;
			}
			
/* The blocks' header and content sections */
	div.banner
	{
		display: none;
	}
	
/* Navigation bar */
	div.navbar
	{
		color: #666;
		border-bottom: 1px dashed #DDD;
		font-weight: bold;
		padding-top: 10px;
		text-align: center;
		margin: 5px 20px 0px 20px;
	}
	
	a.navbar
	{
		color: #009;
		font-size: 12px;
		text-decoration: none;
	}
	
/* Copyright */
	div.copyright
	{
		background-color: #DDD;
		color: #555;
		border: 1px solid #888;
		bottom: 0px;
		clear: both;
		display: block;
		font-size: 10px;
		position: relative;
		text-align: center;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	
/* Content blocks */
	div.contblk-1, .contblk-2, .contblk-3
	{
		text-align: left;
		width: 100%;
	}

	/* The blocks' header and content sections */
		div.contblk-header-1
		{
			border-bottom: 3px ridge #059;
			color: #059;
			font-size: 32px;
			font-weight: bold;
			padding:  2px 15px 2px 15px;
			text-align: center;
		}
	
		div.contblk-header-2, .contblk-header-3
		{
			color: #059;
			background-color: transparent;
			border-bottom:  2px groove #059;
			font-size: 20px;
			font-weight: bold;
			padding:  2px 30px 2px 30px;
		}
		
		div.contblk-content-1, .contblk-content-2, .contblk-content-3
		{
			color: #000;
			background-color: transparent;
			font-size: 14px;
			padding:  5px 25px 15px 25px;
		}
