/*

[ CSS Document ]

	Style Sheet Name: print.css
	Purpose: Print Stylesheet

[ Table Of Contents ]

	0- Reset
	1- Default Print Styles
	2- Global Print Resets
	3- Additional Print Styles





/* ����������������������������������������������������������������
=0 -          Reset 
������������������������������������������������������������������� */

@import url("reset.css");

/* ����������������������������������������������������������������
=1 -          Default Print Styles
������������������������������������������������������������������� */

* {
	background: transparent !important;
	color: #444 !important;
	text-shadow: none;
    float: none;
    width: auto;
    position: relative;
    top: 0;
    left: 0;
}

body {
	background: white;
	font-size: 13pt;
    line-height: 1.4;
}

a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}

a:after {
	content: " (" attr(href) ")";
}

abbr:after {
	content: " (" attr(title) ")";
}

.ir a:after {
	content: "";
}  /* Don't show links for images */

pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}

img {
	page-break-inside: avoid;
}
@page {
margin: 0.5cm;
}

p, h2, h3 {
	orphans: 3;
	widows: 3;
}

h2, h3 {
	page-break-after: avoid;
}

/* Unstyles - to hide elements by default when printing */

nav {
	display: none;
}

ul#fader {
	display: none;
}
.skipnav {
	display: none;
}

/* ����������������������������������������������������������������
=2 -          Global Print Resets
������������������������������������������������������������������� */

/* Section style */
section {
	margin:  			0px;
	padding: 			0px;
	text-align: 	left;
	color: 				#42403a;
	font-family: 	Arial, Helvetica, sans-serif;
	font-size: 		0.8em;
	line-height: 	1.4em;
}

/* General headings */
h1, h2, h3, h4, h5, h6 {
	color: 				#000;
	margin: 			0px;
	padding: 			0px;
	font-weight: 	500;
	text-shadow:	none;

}

h1 {
	font-size: 		1.8em;
	margin: 			1.5em 0 1.5em 0;
}

h2 {
	font-size: 		1.5em;
	margin: 			0em 0 1.5em 0;
}

h3 {
	font-size: 		1.3em;
	margin: 			0em 0 1.5em 0;
}

h4 {
	font-size: 		1.1em;
	margin: 			0em 0 1.5em 0;
}

h5 {
	font-size: 		1.0em;
	margin: 			0em 0 1.5em 0;
}

h6 {
	font-size: 		0.8em;
	margin: 			0em 0 1.5em 0;
}

/* General paragraph style */
p {
	margin: 			0px 0px 0px 0px;
	padding: 			0em 0px 1.5em 0px;
}

blockquote {
	font-style:		italic;
	quotes: 			none;
}

/* General list styles  */
ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

ul, ol {
	margin: 			0px 0px 0px 40px;
	padding: 			0px 0px 1.5em 0px;
}

/* ����������������������������������������������������������������
=3 -          Additional Print Styles
������������������������������������������������������������������� */

#supersize,
.skipnav,
.badge,
.util,
.register,
#breadcrumbs,
#prodList,
.tab-header,
.tabs,
#wrapSearch,
#wrapSocial,
#subFeatureLevel2
{
    display: none !important;
}


