
/*======================================================================*/
/*																		*/
/*						  The "White" css								*/
/*																		*/
/* 	  This Cascading Style Sheet is (almost) completely about color 	*/
/*																		*/
/*  				Copyright 2013,  Tony Valois						*/
/*																		*/
/* 						Updated: 02/14/2013								*/
/*																		*/
/*======================================================================*/


/* This is required (but is superseded and thus masked.) */
a{color:#000000;text-decoration:none;}

/* The appearance of the links is defined by these four lines. */
a:link {color:#000080;text-decoration:none;}			/* unvisited links	*/
a:visited {color:#800000;text-decoration:none;}		/* visited links	*/
a:hover {color:#000000;text-decoration:none;}		/* mouse over links	*/
a:active {color:#000000;text-decoration:none;}		/* selected links	*/



/*======================================================================*/
/* 					The main Background and Text color					*/
/*																		*/
/* This is probably the thing to focus on if you want to try tweaking	*/
/* the style.															*/
/*																		*/
/* The colors are represented as three ordered HEX (hexadecimal) 		*/
/* numbers arranged in the sequence Red-Green-Blue: #RRGGBB.			*/
/* The HEX values range from #00 which represents completely off up to	*/
/* #FF which is completely on.											*/
/* Thus #000000 is black, #FF0000 is bright red, #008800 is 			*/
/* medium green, #880088 is medium purple (where purple is created by	*/
/* mixing red and blue) #FFFFFF is bright white and #202020 is a dark	*/
/* gray (i.e., "slate") color.											*/
/*======================================================================*/
body {background: #FFFFFF;color: #000000;}


/* The basic scheme for the species "Detail" pages can be set here. */
body.species {background: #DDDDDD;color: #000000;}

/* The basic scheme for the query (search results) can be set here. */
body.queries {background: #FFFFFF;color: #000000;}

/* Highlighting for the "Index" letters in the links pages. */
table.mainanchor {background-color:#DDDDDD;color:#000000;width:100%;}
table.secondanchor {background-color:#DDDDDD;color:#000000;width:100%;}
table.secondjump {background-color:#EEEEEE;color:#DDDDDD;width:100%;}

/* The scheme for the table of radio buttons on the "Finder" page. */
table.queryradiobuttons {background-color:#F8F8F8;color:#000000;}

/* Highlighting for the text of the species summaries. */
table.speciessummary {background-color:#FFFFFF;color:#000000;}

/* Highlighting for the Family Names on the query result pages. */
table.querynameanchors{background-color:#DDDDDD;color:#000000;}

/* The "Season" table on the "Finder Notes" page. */
table.seasons {background-color:#EEEEEE;color:#000000;}

/* A highlighed <font> tag used in some of the comments. */
font.red{color:#660000;}

/* Use this to hide/unhide the top link to the ANF Descriptions. */
/* table.SpeciesDescriptionLink_Top{display:none;} */

