/*
+----------------------------------------------------------------+
|																							|
|	Print CSS for Sketch Library										|
|	Copyright (c) 2008 									|
|																							|
|	File Written By:																	|
|	- Sara Williams															|
|	- http://tweaksanddesigns.blogspot.com															|
|																							|
|	File Information:																	|
|	- CSS Style For Printer Friendly Clicked Image Print										|
|	- wp-content/themes/52sketches/print.css								|
|																							|
+----------------------------------------------------------------+
*/


<link rel="stylesheet"
media="print"
type="text/css"
href="print.css">

/* STYLING ELEMENTS */

a img { /* Takes away the border on images when they are linked. Again, little purpose when printed. */
border: 0;
}

a { /* Style link colors back to normal. */
color: black;
text-decoration: none;
font-weight: 900;
}

.post a:link:after, .post a:visited:after { /* Advanced link style, courtesy of ALA. */
content: ""attr(href)"";
font-size: 80%;
margin-left: 7px;
   }
.postmetadata a:link:after, .postmetadata a:visited:after, .post h1 a:link:after, .post h1 a:visited:after { /* Gets rid of the the link printing in places we don't want it (headlines, small text, etc.) */
content: "";
}

/* Basic text stylings. */
h1 { 
text-decoration: underline;
font-size: 18pt;
}
h2 {
text-decoration: none;
font-size: 16pt;
}
h3 {
font-size: 14pt;
}
p {
font-size: 12pt;
line-height: 18pt;
}

.TopMenu, .TopMenu li { display: none; }

.ExtraBG { display: none; }

.SRR { display: none; }

.ContainerBG { position: absolute; }

.Footer { display: none; }

.SCS, .SC { display: none; }
	
@media print {
body { background:white; color:black; margin:0 }
}
