/* START WITH A CSS RESET TO ENSURE THAT ALL BROWSERS BEHAVE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
       margin: 0px;
       padding: 0px;
       border: 0px;
       outline: 0px;
       font-weight: inherit;
       font-style: inherit;
       font-size: 100%;
       font-family: inherit;
       vertical-align: baseline;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
/** STUFF TO TRY: :first-letter , :first-line, word-spacing, letter-spacing, line-height **/

BODY {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-smooth: always;
	font-size: 1em;
	background-color: #666666;
	margin: 0;
	padding: 0;
}

H1 {
	font-size: 2em;
	font-smooth: always;
	color: black;
	font-weight: normal; 
	padding: .3em;
	margin-top: 2em;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

H2 {
	font-size: 1.5em;
	color: black;
	font-weight: normal; 
	padding: .3em;
	margin-top: 2em;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

H3 {
	font-size: 1em;
	color: black;
	font-weight: bold; 
	margin: .5em;
}

A:hover {
	color: gray;
}
A:visited {
	color: blue;
}
A:active {
	color: blue;
}

/***************************** CONTENT **************************/
.heading {
	font-weight: bold;
	line-height: 1.5em;
}

strong {
	font-weight: bold !important;
}

#content {
	float: left;
	width: 580px;
	height: 100%;
	padding-left: 2.5em;
	background-color: #FFFFFF;

	font-size: 12px;
	line-height: 20px;
	clip:   rect(   );
}
#content p {
	padding-right: 2em;	
	margin-bottom: .5em;
}
#content p.indented {
	text-indent: 3em;
}


#content img {
	padding: 0;
	margin: 0;
	float: right;
}

/********************* HEADER *********************************/
#header {
	margin: 0px;
	padding: 0px;
	background-color: #A9A583;
	width: 780px;
	height: 82px;
}

/*********************** MAIN ******************************/
#main {
	width: 780px;
	height: 100%;
	margin: 0px;
	padding: 0px;	
}

/********************* NAVIGATION COLUMN *********************/
#nav {
	float: left;
	width: 200px;
	height: 100%;
	background-color: #A9A583;
	padding-top: 5em;
}
.navcontainer {
	text-align: right;
	width: 200px;
	background-color: #444340;
	border-top: 1px solid white;
}
.navcontainer a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	font-size: .78em;
	padding-right: .5em;	
	line-height: 1.4em;
}
.navcontainer a:hover {
	color: grey;
	text-decoration: none;
}
.navcontainer a:visited {
	color: white;
	text-decoration: none;
}

#paypal_donate {
}

/******************************* FOOTER *****************************/
#footer {
	float: left;
	background-color: white;
	margin-top: 4em;
	width: 100%;
}
#copyright {
	color: #999999;
	margin-top: 1em;
	width: 100%;
}

/******************************** MISC *********************************/
#news {
	margin-top: 2em;
	margin-right: 3em;
	width: 100%;
	background-color: white;
}

#googlesearch {
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: .3em;
	margin-right: .3em;
	padding: .1em;
	border: 1px solid white;
}

.smalltext {
	font-size: .6em;
	color: white;
}

.underline {
	border: 1px solid #CCCCCC;	
	margin: 1em;
}

.top-border {
	border-top: 1px solid white;
}

.bottom-border-white {
	border-bottom: 1px solid white;
}

.top-border-grey {
	border-top: 1px solid #CCCCCC;
}

.bottom-border-black {
	border-bottom: 1px solid black;
}

.bottom-border-grey {
	border-bottom: 1px solid #CCCCCC;
}
