/* seriesscoring.css - Standard series standings scoring report stylesheet */

/* general formatting and page layout specifications for scoring reports */
@import url(scoring.css); 

/*
 * Notes on color options:
 *   blue (#0000FF)
 *   yellow (#FFFF00)
 *   #FFFF33 - yellow with a dash of blue thrown in
 *   #FF0033 - red with a dash of blue thrown in
 */

 
/*
 ==============================================================================
 ========================= PAGE BODY ELEMENTS =================================
 ==============================================================================
 */

/*
 * General standings table layout of TABLE.standings:
 *	 - three classes of TR rows: standingsHeader, groupHeader, racerEntry
 *  - standard TD column name classes: position, name
 *  
 * Additional TD columns for series standings report:
 *  - score
 *  - sfCount - start/finish count columnn
 *  - rsScore - one for each race in the series
 */
 
 TD.score, TD.sfCount, TD.rsScore {
 	text-align: center;
 }
 
 /* optional summary of category standings */
 TD.categorySummary {
 	font-style: italic;
 }


