/* CSS Document
	Layout elements for web site. Basic 3 col format but allows us to put the main content first and then the side bars */

	@import "thb.css"; /* formatting stuff - shared with blog layout */
	* {
		margin: 0;
		padding: 0;
	}
	
	body {
		margin:10px 10px 10px 10px;
		background-color: #55412D;
		}
	
	#overallcontainer {
		background:#FFA64D;
		min-height: 1000pt;
	}
	
	#leftcontent {
		position: absolute;
		left:10px;
		top:140px; 
		width:200px;
		background:#FFA64D;
		}

	#centercontent {
		background:#FFA64D;
   		margin-left: 200px;
   		margin-right:200px;
		padding: 0,10px,0,10px;
		}

	#rightcontent {
		position: absolute;
		right:10px;
		top:140px;
		width:200px;
		background:#FFA64D;
		}

	#header {
		height: 130px;
		background:#FFA64D;
	}
	
	#footer {
		background: #FFF;
	}
	
.collapsible {  /* used for dynamic page conetent */
          display: none; 
}

.collapsibleOpen {	/* expandable box initially open */
		display: block;
}

.DownloadBlock {
	padding-left: 10pt;
	margin-top: 1pt;
	margin-right: 30pt;
	margin-bottom: 10pt;
	margin-left: 40pt;
	background-color: #FFD3A6;
}

.DownloadLink {
	padding-left: 75px;
}

