/* Client-specific CSS definitions */

/* 

Use tool at 'http://www.dejeu.net/tools/ColorScheme/' to come up with an acceptable color scheme.

NOTE: Gradients work in IE6.  Some browsers do not support this feature.  
    The filter uses an ActiveX plugin 
    (i.e. will work fine if turned on, will issue a warning if set to warn, or will not work if turned off)

If using a color gradient in the header:
    For bgndDark1:
	- use the bgndDark as the background-color
	- use the bgndDark as the filter's StartColorStr
	- use the bgndMed as the filter's EndColorStr
    For bgndDark2:
	- use the bgndDark as the background-color
    For bgndMed1:
	- use the bgndMed as the background-color
	- use the bgndMed as the filter's StartColorStr
	- use the bgndDark as the filter's EndColorStr
    For bgndLite1:
	- use the bgndLite as the background-color

If NOT using a color gradient in the header, remove the 'filter' line (or surround in comments)
    For bgndDark1:
	- use the bgndDark as the background-color
    For bgndDark2:
	- use the bgndDark as the background-color
    For bgndMed1:
	- use the bgndMed as the background-color
    For bgndLite1:
	- use the bgndLite as the background-color
	
	
Text color is defined with the 'color' attribute. Use any acceptable value you want,
      taking care to ensure sufficient contrast for readability.  
      Use '#FFFFFF' for white, and '#000000' for black.  
      Shades of gray are created with all three HEX RGB values equal (ex. '#E1E1E1', '#CCCCCC', '#A9A9A9').
  
'td.bgndMed1 a' defines the text color for anchors (or hyperlinks) 
      encased within '<td class="bgndMed1">' blocks on the web page.

The GradientType in the filter is '1' for horizontal gradients.  Change value to '0' if you want a vertical gradient.
*/



td.bgndDark1 { 
	background-color:#FFFFFF; 
	filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#FFFFFF', EndColorStr='#a81e28');
	color:#FFFFFF;
	}
td.bgndDark2 { 
	background-color:#a81e28; 
	color:#FFFFFF; 
	}
td.bgndMed1 { 
	background-color:#6699CC; 
	filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#a81e28', EndColorStr='#FFFFFF');
	color:#FFFFFF;
	}
td.bgndMed1 a { 
	color:#CCCCFF; 
	}
td.bgndLite1, body.bgndLite1 { 
	background-color:#FFFFFF; 
	}
