/**
* CSS counterpart of the hide.js script. See that script for the details of its usage
*
* These CSS statements ensure that that the elements to be hidden
* are initially hidden except when the media is of type print.
*
* * Author: Ivan Herman
* * Licence: © Copyright W3C® SOFTWARE NOTICE AND LICENSE <http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231>, Ivan Herman, 2015
* 
* @author Ivan Herman
* @license W3C
*/
.to-toggle {
  display : none;
}
.to-toggle.visible {
  display: block;
}
@media print {
  .to-toggle {
    display: block;
  }
  .toggle {
  	display: none;
  }
}
