/* 
Author:						Ben Whisman
File:							"Oaks2002.css"
Type:							CSS2 Cascading Style Sheet 2.0
Version:						1.00
Date:							2002-01-29
Copyright:					&copy; (C) 2002 by Ben Whisman.
Organization:				Oaks Christian Church
Website:						http://www.oakscc.org/
Email:						webmaster@oakscc.org
*/

/* 
* background should always be transparent, not inherit!
* "color: inherit;" is incorrect (greenish) in Netscape 4.
* Netscape 4: transparent table cells (TD, TH) show as Black background, incorrectly.
*/

/* General Styles */
html, body {
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	background: white;
	color: black;
	}

div, p {
	font-family: "Book Antiqua", "Palatino", serif;
	font-size: small;
	background: transparent;
	color: black;
	}

/* Image Styles */
img, img a, a img	{
	/* float: left; */
	margin: 6pt;
	vertical-align: baseline;
	border-width: none;
	}

/* Anchor (Hyperlink) Styles */
/* hover is last so it overrides/affects all; */
*:focus { outline: thin dotted; } /* invert;	} */
a {
	/* font-family: "Verdana", "Arial", "Helvetica", sans-serif; */
	background: transparent;
	color: green;
	}
a[href]			{ text-decoration: underline;	}
a:link			{ background: transparent; color: green; }
a:visited		{ background: transparent; color: #993300; } 
a:active			{ background: transparent; color: red; } 
a:hover			{ background: transparent; color: #ff6600; } 
/*
a img, img a	{ border-style: thin solid green; }
a:link img		{ border-color: green; }
a:visited img	{ border-color: #993300; }
a:active img	{ border-color: red; }
a:hover img		{ border-color: #ff6600; }
*/

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
	/* padding: 3pt 6pt; */ /* if (background-color != transparent) */
	background: transparent;
	color: black;
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	}

/* Table Styles */
table {
	/* border: 1pt solid #cc6633; */
	background: transparent;
	color: black;
	margin: 12pt 2pt;
	}
caption, thead, tbody, tfoot {
	/* border: 1pt solid #cc6633; */
	background: transparent;
	color: black;
	margin: 2pt;
	}
td, th {
	font-family: "Book Antiqua", "Palatino", serif;
	font-size: small;
	text-align: left;
	vertical-align: top;
	padding: 1pt 2pt;
	/*
	border: 0.25pt solid #cc6633;
	*/
	/*
	background: transparent;
	color: black;
	*/
	}
td, tbody td {
	background: #ffffcc;
	color: black;
	}
th, tbody th {
	background: #ffe5cc;
	color: black;
	}
thead td, tfoot td {
	background: #ccffcc;
	color: black;
	}
thead th, tfoot th {
	background: #99ff99;
	color: black;
	}

/* List Styles */
ol, ul, li {
	font-family: "Book Antiqua", "Palatino", serif;
	font-size: small;
	}
dl, dt, dd {
	font-family: "Book Antiqua", "Palatino", serif;
	font-size: small;
	}
dt {
	font-weight: bold;
	}
dd {
	font-weight: normal;
	}

blockquote {
	font-family: "Book Antiqua", "Palatino", serif;
	font-size: small;
	background: transparent;
	color: black;
	}

address {
	background: transparent;
	color: black;
	font-family: "Book Antiqua", "Palatino", serif;
	font-size: small;
	}

