/* -----------------------------------------------------------------------
     ganttMagic.css ::: (c) Copyright 2002 PolyGlot, Inc.
     This file contains the CSS stylesheet that helps transforms an XML file
     in GanttMagic data format (as defined in the XSchema with the URI
     "http://www.polyglotinc.com/NS/GanttMagic/V1") into an SVG 1.0 file that
     describes a graphic Gantt Chart display of the data complete with summary
     information, titles, etc.
     -----------------------------------------------------------------------
*/

     /* components of representation of "Total" area */
     polyline.tupbevel { fill: none; stroke: white; stroke-width: 1; }
     polyline.tdnbevel { fill: none; stroke: black;  stroke-width: 1; }
	 rect.total        { fill: silver; }

     /* components of representation of "Active" area */
     polyline.aupbevel { fill: none; stroke: #fdd; stroke-width: 1; }
     polyline.adnbevel { fill: none; stroke: black; stroke-width: 1; }
	 rect.actve        { fill: red; }
	 text.actve        { font-family: sans-serif;
			     font-size: 6pt;
						 font-weight: bold;
						 text-anchor: start;
					   }
	 text.ayears       { font-family: monospace;
			     font-size: 6pt;
						 text-anchor: start;
						 font-weight: bold;
					   }
	 text.tyears       { font-family: monospace;
			     font-size: 6pt;
						 text-anchor: start;
						 font-weight: bold;
						 stroke: grey;
					   }

     /* components of alternative representation of "Active" area */
     line.actve        { stroke: red; stroke-linecap: round; stroke-width: 10; }
