<!--
/*	IMPORTANT NOTE									*/

/*	It is recommended that, when replacing a hexidecimal color value, 		*/
/*	all occurrences of that value be replaced eg if changing the background color 	*/
/*	from #990000 to #330000, replace all #990000 with #33000.			*/
/*	This maintains design consistency						*/

/*	Ignore, but do not delete, this first declaration				*/

	empty {}


/*	STANDARD FORMATTING				*/

/*	Set the background color for all documents	*/
/*	The 'font-family' value needs to be repeated	*/
/*	for the 'table, tr, td, etc' declaration	*/

	body {
		color:			#666;
		background-color:	#fff;
		font-family:		arial, helvetica, sans-serif;
	}

	table, tr, th, td, input, textarea, select, ul, ol, li, h1, h2, h3, p {
		font-family:		arial, helvetica, sans-serif;
	}


/*	TEXT FORMATTING						*/
/*	Set the color value for paragraph text			*/

	p {
		color:			#666;
	}

/*	Set the color values for the various heading levels	*/

	h1 {
		color:			#f60;
	}

	h2 {
		color:			#666;
	}

	h3 {
		color:			#666;
	}


/*	Set the color value for list item			*/

	span.li {
		color:			#666;
	}

/*	Set the color and text decoration values 		*/
/*	for standard hyperlinks		*/

	a {
		color:			#f60;
		text-decoration:	underline;
	}

	a:hover {
		color:			#f60;
		text-decoration:	underline;
	}




/*	NAVIGATION						*/

/*	The <div> HTML tags for navigation blocks and text 		*/

/*	div.navtext is the 'off state'				*/
/*	div.navtextOn is the 'on state'				*/

	div.navblock {
		background-color:	#b4b4b4;
	}
	
	div.navblockOn {
		background-color:	#f60;
	}
	
	div.navtext {
		background-color:	#ccc;
	}
	
	div.navtextOn {
		background-color:	#999;
	}

/*	Set the color values for navigation menu hyperlinks	*/

	a.navtext {
		color: 			#000;
	}

	a.navtext:hover {
		color: 			#fff; 
	}


/*	FREQUENTLY ASKED QUESTIONS		*/

/*	Set the color values for FAQs	 	*/
/*	questions and answers respectively	*/

	div.question {
		color:			#666;
	}

	div.answer {
		color:			#666;
	}

/*	PROMOTIONAL BOX				*/




/*	FORMS					*/

/*	Set the color and background values	*/
/*	for form fields	and labels		*/

	textarea {
		color:			#333;
		background-color:	#ebebeb;
	}

	select {
		color:			#333;
		background-color:	#ebebeb;
	}

	input.text {
		color:			#333;
		background-color:	#ebebeb;
	}

	label {
		color:			#666;
	}

-->
