/** \file
This file is contains CSS rules for printing an outreach page.
This includes hiding the leftside menus and find-create bar at the top of the page.
The CSS rules in this file are not generated from anywhere, they are hardcoded here.

Apache redirects are used to access this file directly.

Currently this file is copied from here to each new licensee folder.
However, it doesn't actually need to be copied as the copy of the file in licensee directories is never used.

This can be fix in the admin file create_account.php.
The apache rewrites for stylesheet_print.css on all servers should be checked before doing this 
because from memory they may have used to point to the copy in the licensee directories.
*/

a[href]:after {
  content: "";
}

.eq_topbar, .eq_leftside, .eq_toprow, .eq_screen_only{
  visibility: hidden;
  display: none;
}

.eq_leftside{
  width: 0px;
}

.eq_rightside{
  width: 100%;
  _width: 80%; /* fix IE6 can't print the whole page width */
}

.eq_whole{
  border: 1px solid white; /*stop mozilla from putting the content outside printable border of the page*/
  /* width: 100%; /*stop IE overflowing the page*/
}

.eq_print_only{
  visibility: visible; 
  display: block;
} 

.eq_debug{
  visibility: hidden;
  display: none;
}

