/* Print Style, based on Eric Meyer in A List Apart,  http://alistapart.com/stories/goingtoprint/ */

* {
	float:none;  /* clear all floats, as they don't print well */
	background: none ! important;
}
 
body {
	background: white;
	font-size: 12pt;
	margin:0;
	padding:0;
	text-align:left;
}

/* Hide menus */
#SideContent, #SideNav, #topnav, #searchForm, #masthead, #MainMenu, #nav, #footer {
	display: none;
	height:0;
	width:0;
}

/* make pretty margins for printing */
#wrapper, #mainContent, #content {
	width: 7in; 
	margin-left:0; 
	padding: 0; 
	float: none !important;
	display:inline;
	color: black; 
	text-align: left;
	font-size: 12pt;
	position:static; 
/*
	margin: 0 5%;	
	margin-left: 10%;
	border: 0;
	background: transparent;	
*/
}
#header {
	margin:0; 	
	display:block;
	font-size:2em; 
	font-weight:bold; 
	text-align:center;
	color: #000000;
}
a:link, a:visited {
	color: #520;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}

/* insert the URLs  */
a:link:after, a:visited:after {
   content: " (" attr(href) ") ";
   font-size: 90%;
}

/* convert relative URL to MU */
a[href^="/"]:after {
  content: " (http://lib.mansfield.edu" attr(href) ") ";
}

/* remove all images from normal flow */
* img {
    height: 0;
    width: 0;
    position: absolute;
}
