/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
.accessibility,
.noprint
 {
display:none !important; 
}

/* 
remove all width constraints from content area
*/
div#content,
div#main {
display:block !important;
width:100% !important;
border:0 !important;
padding:1em !important;
}

/* hide everything else! */
div#header,
div#header h1 a,
div.breadcrumbs,
div#search,
div#footer,
div#menu_vert,
div#news,
div.right49,
div.left49,
div#sidebar,
#contentHeader  {
   display: none !important;
}

img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

table.listing {font-size: 1em; width: 100%; padding-bottom: 10px; border-bottom:1px solid #B9A182;}
table.listing td {padding: 1px 3px;}
table.listing .thumb {width: 80px; text-align:center;}
.noimg {width:76px; display:block; color:#B8AF92; text-align:center; padding: 25px 0; border:1px solid #FAE69D}
table.listing .title, table.listing .price {font-size: 1.2em; font-weight:bold;}
table.listing .price {text-align:right;}
table.listing .age {text-align:right;}
table.listing .specs {width: 33%; vertical-align:top;}
table.listing .fav {width: 33%; vertical-align:bottom; font-size: 11px; text-align:right;}
.fav a {color:#669900;}
