/*
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;
	border-bottom: 3px solid #000;
}

h2
{
	font-size: 14pt;
}

h3
{
	font-size: 12pt;
	border-bottom: none;
}

/*
Style peekaboot specific areas
*/


div#page {
	margin:0 auto 20px;
	padding-top:71px;
}

	body div#page div#header {
		background: none;
		padding: 22px 22px 10px;
		height: 39px;
		top: 0;
	}
	
		div#page div#header h2 {
			width: 234px;
			height: 39px;
			display: block;
			margin-left: 30px;
		}

			div#page div#header h2 a {
				display:block;
				text-indent: 0;
				width: 234px;
				height: 39px;
			}
		
		div#page div#header #nav {
			display: none;
		}
		div#page div#header #bag {
			display: none;
		}


	body div#page div#wrapper {
		background: none;	
	}

		div#page div#wrapper .content {
			border: 0;
		}
		
			body div#page div#wrapper .content .checkout {
				background: transparent;
			}


.peeper {
	display: none;
}

div#page div#footer {
	display: none;
}