/* --------------------------------------------------------------------------------------------------------
								SD Department of Environment and Natural Resources

web:			http://denr.sd.gov/
stylesheet:		print.css -- imported into global.css
date:			December 12, 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;
}

/* Allows text wrapping in IE 6.0 and spreads text across entire page width in browsers */
#wrapper, #subwrapper, #content   {
	float: none;
	width: auto;
	margin: 0px;
	padding: 0px;
}

#banner, #mainnav, #sidenav, #footer  {
	display: none;
}

/* Hides border around page and background image for sidebar nav */
#subwrapper {
	background-image: none;
	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) "* "; }


