/*----------------------------------------------------------------------
						[Structure Stylesheet]
[Table of Contents]

1. Body / body
	2. Wrapper / #wrapper
		2.1 Header / #wrapper_header
			2.1.1 Header Image / #wrapper_header img
		2.2 Body / #wrapper_body
			2.2.1 Content / #content
			2.2.2 Content Padding / #content_pad
		2.3 Footer / #wrapper_footer
			2.3.1 Fraynework / #fraynework
			2.3.2 Footer Links / #footer_links
				2.3.2.1 Footer Links A / #footer_links a
				2.3.2.2 Footer Links Mouse Over / #footer_links a:hover
	3. Involved Pod / #involved_pod
	4. Sidebars
		4.1 Left Sidebar / #sidebar_left
		4.2 Right Sidebar / #sidebar_right

[Colour Codes]
	Body: Background, #DED1A5 (beige)
	Involved Pod: Text, #FFF (white)
	Footer Links: text, #a43d00 (maroon)
	Footer Links:hover: text, #1D705F (green)
----------------------------------------------------------------------*/

@charset "utf-8";
/* CSS Document */



body {
	margin: 0px;
	background-color:#DED1A5;
	background-image:url(../../_sharedimg/background.jpg);
	background-repeat:repeat-x;
}
	#wrapper {
		position: relative;
		width: 902px;
		height: auto;
		margin: 0 auto;
		background: url(../../_sharedimg/content_bg_repeat.jpg) repeat-y;
	}

		#wrapper_header {
			position: relative;
			width: 902px;
			height: 189px;
		}
		
		#wrapper_header img {display:block;}

		#wrapper_body {
			position: relative;
			width: 900px;
			height: auto;
			padding: 0;
			clear: both;
			min-height: 520px;
			margin: 0 1px;
		}

			#content {
				float: left;
				width: 665px;
			}
			
			#content_pad{
				padding: 18px;
			}

		#wrapper_footer {
			background: top url(../../_sharedimg/footer_bg.gif) no-repeat;
			position: relative;
			width: 902px;
			height: 70px;
			margin: 0 auto;
			clear: both;
		}

			#fraynework {
				position: absolute;
				width: 124px;
				right: 16px;
				top: 19px;
			}
			
			#footer_links {
				position: absolute;
				width: 300px;
				left: 20px;
				top: 20px;
				font-size: 0.8em;
			}
				#footer_links a {color:#a43d00;}
				#footer_links a:hover{color:#1d705f;}


	#involved_pod {
		float: left;
		width: 203px;
		height:137px;
		background: url(../../_sharedimg/get_involved.jpg) no-repeat;
		margin: 20px 0 0 8px;
	}
	
	#sidebar_left {
		position: absolute;
		left: -9px;
		top: 190px;
		width: 10px;
	}
	#sidebar_right {
		position: absolute;
		right: -9px;
		top: 190px;
		width: 10px;
	}