/* calendar.ccs */
/* Cascading style sheet for calendar active web pages */
/* 16-Apr-2004 Fred T. Trimble */
/* 
ARRC Colors: Yellow:	#f3f21c; Blue:	#131C85;
*/

@media screen
{
	body 
	{
		color: #f3f21c; 
		background-color: #131C85;
		font-size: 12pt;
	}

	a:link /* hyperlink colors */
	{
		color: #f3f21c;
	}
	a:visited
	{
		color: violet;
	}
	a:hover
	{
		color: #20ff20;
	}
	a:active
	{
		color: #b0ffb0;
	}

	h1
	{
		color: #f3f21c;
		font-size: 24pt;
	}
	
	h2
	{
		color: #f3f21c;
		font-size: 18pt;
	}

	h3
	{
		color: #f3f21c;
		font-size: 14pt;
	}

	.ch1 /* calendar table day of the week heading */
	{
		color: #f3f21c;
		font-size: 12pt;
		background-color:#131C85;
		font-style: italic;
		font-weight: bold;
		text-align: center;
		vertical-align: middle;
	
	}
	.cd1 /* calendar table date numbers in cells */
	{
		color: #131C85;
		font-size: 18pt;
		background-color: #f3f21c;
		font-style: italic;
		font-weight: bold;
		text-align: right;
		vertical-align: top;

	}
	.cdcd /* calendar table date numbers in cells for current date*/
	{
		color: #f3f21c;
		font-size: 24pt;
		background-color: #131C85;
		font-style: italic;
		font-weight: bold;
		text-align: right;
		vertical-align: top;

	}
	.cd2 /* adjacent month calendar table cells */
	{
		color: #f3f21c;
		font-size: 10pt;
		background-color: gray;
		font-style: italic;
		font-weight: nornal;
		text-align: right;
		vertical-align: top;
	}
	.cd3 /* calendar table event text in cells */
	{
		color: #131C85;
		font-size: 8pt;
		background-color: #f3f21c;
		font-style: normal;
		font-weight: normal;
		text-align: left;
		vertical-align: bottom;
	}

	.dh1 /* data entry table title headings */
	{



	}
}

@media print
{
	body 
	{
		color: black; 
		background-color: white;
		font-size: 10pt;
	}
}