/*
29-dec-2005 created by Sam Fistel

created to simplify the HTML of the calendar page
and to easily institute a more-pleasing color scheme

*/

body 
{	background	: Green;
	color		: White;
	font-family	: sans-serif;
}

h1, h2, h3
{
	text-align	: center;
	margin-top	: 4px;
	margin-bottom	: 4px;
	font-family	: verdana, sans-serif;
}

a
{
	text-decoration	: none;
}

a:link, a:visited
{
	background	: Green;
	color		: White;
}

a:hover /* invert the color scheme when mouse is over event */
{
	background	: White;
	color		: Green;
}

/* color-scheme note: to get a Grid of White lines,
// we use a background for the table of White,
// then cells have no border and a green background */

table.upcoming-events
{
	background	: White;
	font-size	: 11pt;
	font-weight	: bold;
}

table.past-events
{
	background	: White;
	font-size	: 10pt;
}

th
{
	background	: Green;
	font-size	: 14pt;
	color		: Yellow;
}

td
{
	background	: Green;
	text-align	: center;
	padding		: 2px;
}

td.date
{
	color		: Yellow;
}

/* 
*/