/* *********************************************************************
   Source:       print.css
   
   Description:  This the stylesheet for printing 
   				 http://www.andersonfuneralhome.com 
   
   Date Written: 21 January 2007     Last Update: 21 January 2007
	
   ********************************************************************* */


/* --------------------------------------------------------------------
   Suppress sections which should not print.
   -------------------------------------------------------------------- */
#header,
#message,
#sidebar {
  display: none;
}


/* --------------------------------------------------------------------
   Re-format sections which should print.
   -------------------------------------------------------------------- */
#wrap,
#content {
  width: auto;
  border: 0;
  margin: 0 5%;
  padding: 0;
  float: none !important;
  colro: black;
  background: transparent;
}


/* --------------------------------------------------------------------
   Miscellaneous formatting for print.
   -------------------------------------------------------------------- */
body {
  background: white;
  font-size: 12pt;
}

div#content {
  margin-left: 10%;
}

a:link, 
a:visited {
  color: #520;
  background: transparent;
  font-weight: bold;
  text-decoration: underline;
}


/* --------------------------------------------------------------------
   Display URL after each link.
   -------------------------------------------------------------------- */
#content a:link:after,
#content a:visited:after,
#footer a:link:after,
#footer a:visited:after {
  content: " (" attr(href) ") ";
  font-size: 90%;
}

#content a[href^="/"]:after {
  content: " (http://www.andersonfuneralhome.com" attr(href) ") ";
}



   