/*
** map_print.css
** Classes to control what gets printed, and what doesn't
** on the contacts page of the deCarta web site.
** For this to work, the following link must be included
** in the map_frame.html page:
** <link rel="stylesheet" href="map_print.css" type="text/css" media="print" />
*/

/* Begin printer only rules */
/**/
@media print
{
  /* 
  ** For right now, we only want to hide the mapcontrolcontainer.
  ** Nothing else needs a rule because we'll show everything else.
  ** If other things need hiding, this should be switched to a class
  ** and each thing that needs hiding should be given the "print hidden"
  ** class.
  */
  #mapcontrolcontainer
  {
    display: none;
  }

}
/**/
/* End printer only rules */
