/* --------------------------------------------------------------------------------------------------------
								Community Bible Church, Pierre South Dakota

web:			http://www.cbcpierre.org/
stylesheet:		banner.css -- imported into global.css
date:			December 17, 2008
author:			Ron Duvall

-----------------------------------------------------------------------------------------------------------*/

/*
Turn off display of unnecessary style sheets for printing purposes
*/
 
body {
 background-color: transparent;
 font-size: 12pt;
 font-family:'Times New Roman',Times,serif;
 color:#000000;
 background-image: none;
 margin: 0px;
}
 
/* Allows text wrapping in IE 6.0 and spreads text across entire page width in browsers */
#wrapper, #subwrapper, #content   {
 float: none;
 width: auto;
 padding: 0px;
 margin: 0px;
}
 
#banner, #mainnav, #sidenav  {
 display: none;
}

#footer {
	border-top-width: 0px;
	width: auto;
	color: #000000;
}
 
/* Hides border around page */
#subwrapper {
 border-right-width: 0px;
 border-bottom-width: 0px;
 border-left-width: 0px;
}
 
/*For a link to make sense in print, it's href attribute has to be printed out. This can be accomplished by the pseudo class :after and the property :content to print out the complete URL of the link. This CSS properties is currently supported by Mozilla and Safari.   
 
a:after, a:link:after  { 
color: #000000;
background-color:transparent; 
content: " * Link " attr(href) "* "; }
 
a:visited:after {
color:#000000; 
background-color:transparent;
content: " * Link " attr(href) "* "; }

*/