/* David van Wert, Thin Dime Design */


/* Kill margin and padding on all elements - because different browsers have different defaults */
*{
	margin:0;
	padding:0;
}

html{
/* Fixes background nastiness when a sidebar is open in Firefox */
	min-width:770px;
}

body{
/* Use backgound image as opposed to color so that site is still functional if images are off */
	background:white url(../decor/pattern.gif) 0 0 repeat;
/* Shove all content to the center of the screen for Internet Explorer 5 */
	text-align:center;
}

/*=====[ Set up container divs and add background tiles ]=====*/

#pageheadContainer,
#contentContainer,
#footContainer{
/* 100% so we can create the fullscreen width backgrounds */
	width:100%;
}

#pageheadContainer{
	background:transparent;
}

#contentContainer{
	background:transparent url(../decor/contentback.jpg) top center no-repeat;
/* Float left to prevent floated child divs(#article & #subContent) overflowing . aka the FnE method http://www.orderedlist.com/articles/clearing_floats_fne */
	float:left;
}

#footContainer{
	background:transparent;
	clear:both;
}

#pagehead,
#content,
#foot{
/* Set widths for "sub" container divs and center on the screen . fluid you say? I think not sir, you are quite mad! */
	width:770px;
	margin:0 auto;
/* Position relative so we can position children absolutley but keep them relative to their parents and not the document root - confused? Me too! */
	position:relative;
/* Shove the content back where it should be now we have convinced IE5 that center aligned websites are, infact, groovy (see body{}) */
	text-align:left;
}

#pagehead{
	height:130px;
}

#foot{
	height:150px;
}

/* More backgounds, we need more backgrounds! */
#pagehead{
	background:transparent url(../decor/pageheadback.jpg) bottom left no-repeat;
}

#content{
/* Add drop shadow/fading backgound to top of content area . doesn't work on IE5/MAC . oh the shame! */
	background:#e1d3b9 url(../decor/contentback.jpg) top left no-repeat;
/* Ensure this background tile is never cut short, min-height for Firefox and pals, _height 'hack' for Internet Exploiter
	min-height:613px;
	_height:613px;   */
}

#foot{
	background:transparent url(../decor/footback.jpg) top left no-repeat;
}

/*=====[ Set up two column layout for articles and subcontent ]=====*/

#article{
	width:450px;
	float:left;
	padding:14px 0 20px 0;
	margin-left:50px;
}

#subContent{
/* Fix double margin bug in IE on floats using display:inline */
	display:inline;
	width:200px;
	float:left;
	padding:20px 0 10px 0;
	margin-left:30px;
	color:#4e3d2f;
	font-size:.9em;
}


/* Foot navigation and FIR */

#foot ul{
	position:absolute;
	top:115px;
	color:#999;
}

#foot ul a{
	color:#999;
}

#foot ul a:hover{
	background:#999;
	color:#333;
}

#foot li{
/* hide bullets */
	list-style-type:none;
}

#foot #foot1{
/* width to solve odd problem with Opera 7.5 */
	width:200px;
	position:absolute;
	left:100px;
}

#foot #foot2{
/* width to solve odd problem with Opera 7.5 */
	width:200px;
	position:absolute;
	left:510px;
}


/*=====[ General params and typography ]=====*/

body{
/* relative font sizing to allowing scaling in Internet Exfoliator - http://www.clagnut.com/blog/348/*/
	font:normal 62.5%/1.8em Arial, Helvetica, sans-serif;
}

/* #content ul used to prevent main navigation, within #pagehead, list breaking */
#content ul{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	list-style-type:disc;
}

ol{
	margin:0.8em 0 0.6em 2em;
	padding-left:1em;
	list-style-type:lower-roman;
}

blockquote{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	font-style:italic;
	border-left:4px solid #9D6141;
}

/* Frame images */

img.divide{
	border:0px;
}

img{
	border:1px solid #481a01;
}

/*Set font size for content area */
#content{
	font-size:1.25em;
}

p{
	margin:0.3em 0 0.6em 0;
}

a{
	color:#7d472a;
	font-weight:bold;
	text-decoration:none;
}

a:hover{
	background:#7d472a;
	color:#FFE;
}

#article{
	line-height:1.7em;
	color:#4e3d2f;
}

h1,
h2,
h3,
h4{
 font-family: Georgia, Times New Roman, Times, serif;
 color:#481a01;
}

h2{
	margin-bottom:.3em;
	line-height:1.7em;
	font-size:1.7em;
}

h3{
	margin:0.5em 0 0.3em 0;
	font-size:1.3em;
}

h4{
	margin:0.5em 0 0.3em 0;
	font-size:1.1em;
}

/* Sub Content */

#subContent h2{
	font-size:1.3em;
	margin-bottom: 0;
}

#subContent h3{
	font-size:1.1em;
	margin-top:0;
}

#subContent ul{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	list-style-image:url(../decor/dot.gif);
}

#subContent li{
	margin:0 0 -0.2em 0;
}