/* undo some default styling of common (X)HTML browsers
 * ------------------------------------------------------------------------- */

/* No list-markers by default - must redefine bullets w/ bg graphics */
ul,ol { list-style:none; }

/* Avoid browser default inconsistent heading font-sizes and pre/code */
h1,h2,h3,h4,h5,h6,pre,code,td { font-size:1em; }


/* prevent blue linked image borders */
a img, :link img, :visited img, fieldset { border:none; }

/* Remove inconsistent (among browsers) default padding or margin */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input,label,div,dd,dt,dl,button { margin:0; padding:0; }



/* global elements
 * ------------------------------------------------------------------------- */

/* ---------- A note on font-sizing ---------- 
Default font size in IE6, IE7 and FireFox is 16px. 
Default for Safari 2 is 16px for "standard fonts" and 13px for "fixed-width fonts." (Safari 3 uses 16px for all fonts.) 
I am ignoring the Safai 13px mono-space type issue since this site does not use any mono-spaced fonts.
*/

html {
	font-size:100% /* IE has problems scaling text in ems. Using a percentage makes for better text rendering when scaled. */
	}

body {
	background:#d0cbba;
	font-size:.75em; /* 75% of 16px = 12px */
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	margin:12px 0; 
	color:#fff;
	}

a:link, a:visited {
	color:#ef3e33;
	}
	
a:hover, a:active {
	color:#ffa14e;
	}

p {
	margin-bottom:15px;
	}

h1 {
font-size:1.6em;
margin-bottom:15px;
}

ul {
	margin:5px 0 15px 15px;
	}

li {
	background:url(../images/bullet.gif) no-repeat 0px 4px;
	list-style:none;
	margin-bottom:3px;
	padding-left:14px;
	}


/* Classes
 * ------------------------------------------------------------------------- */

.clear {
	clear:both;
	height:.01em;
	overflow:hidden;
	}

.big {
	font-size:1.2em;
	color:#d0cbba;
	}

.hr {
	margin:25px 0;
	color:#4b7f9f;
	background:#4b7f9f;
	width:100%;
	height:1px;
	overflow:hidden;
	}


/* Layout
 * ------------------------------------------------------------------------- */
 
#container {
	width:790px;
	margin:0 auto;
	background-color:#054369;
	border:5px solid #fff;
	}

#header {
	background:url(../images/header.jpg) no-repeat;
	width:790px;
	height:190px;
	}
	
	#header p {
		text-indent:-5000px;
		}

#content_container {
	padding:20px;
	font-size:1.1em;
	}
