/*
Print stylesheet.
*/

/* basic print styles */

body {
	background: white;
	color: black;
	font-family:Georgia,Utopia,Palatino,'Palatino Linotype',serif;
	font-size: 12pt;
	padding: 0;
	margin: 0;
 	/* serif fonts render better in print than sans-serif, and specifying 12pt
	   sets a reasonable print-friendly size. */
}

.not-printed {
	display: none;
}

.print-only {
	display: block;
}

a:link, a:visited {
	color: #520;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
	/* this gives the links a color dark enough to be close to black in grayscale output,
	   while still using a dark red that will show up on a color printout. The boldfacing
	   and underlining ensure that the text of the links will stand out. */
}

a:link:after, a:visited:after {
	/*
	content: " (" attr(href) ") ";
	font-size: 90%;
	   in a fully CSS2-conformant browser, we can parenthetically insert the URLs of the
	   links after each one */
}

/*  Headers  */

h1, h2, h3 {
	background: transparent;
	color: black;
	padding-bottom: 1px;
	font-weight: bold;
}

h1 {
	font-size: 16pt;
	margin: 10px 0;
}

h2 {
	font-size: 14pt;
}

h3 {
	font-size: 12pt;
	border-bottom: none;
}

/*  Style pea specific areas  */

	#header {
		height: 80px;
		background: url('../images/divider.jpg') no-repeat center 65px;
		width: 100%;
	}
		
		#header .nav {
			display: none;
		}

		#header #bag {
			display: none;
		}

		#header h2.logo {
			background: none;
			overflow: hidden;
		}
			#header h2.logo a {
				text-indent: 0;
			}		
				#header h2.logo a:before {
					content: url('../images/logo.jpg');	
				}
	
	.checkout form {
		padding-bottom: 0;
	}
		
	#footer { 
		display: none;
	}


