/* Using CSS display the output in CSV format           */
/* Set the  font family, font size, margin, line height */
nursery
{
   font-family: Arial, Helvetica, sans-serif;
   font-size: 10pt;
   margin: 10pt;
   line-height : 2ex;
}
/* Don't display the image */
image
{  
   display: none;
}
/* Print the attribute values of plant category   */
/* Under line the values and display it as bold   */
plantcategory[name]:before
{
   content: attr(name) "(" attr(code) ")";
   text-decoration: underline;
   font-weight: bold;
}
/* Display plant as block , indent text and set padding  */
plant
{
   display: block;
   text-indent: 2em;
   padding: 1ex;
}
/* To identify the beginning of  the record start with "[" */
name:before
{
   content: "[";
}
/* Display double quotes  at the beginning of description */
description:before
{
   content: "\"";
}
/* Display double quotes at the end of description and close  */
/* the record with "]"				            */
description:after
{
   content: "\"]";
}
/* Displya the attribute values for price			   */
price[amt]:before
{
   content: attr(amt) " " attr(units) " , " ;
}
/* seperate all the fields with seperator  value as ","    */
name:after,mature_height:after,mature_spread:after,mature_form:after,growth_rate:after,
sun_exposure:after,moisture_requirements:after,soil_type:after,flower_color:after,foilage_color:after,
fall_color:after,zones:after
{	
   content: " , ";
}



