/*
 * print stylesheet
 *
 * @project		Hamburg Sued Frachtschiffreisen
 * @site		https://hamburgsued-frachtschiffreisen.de
 * @author		Phillip Woelfel
 * @version		2.1
 * @date		2011-05-23
 * @media		print
 * @css-for		all browsers
 * valid		true
 */
@media print {
/*
 * hide unneeded elements and backgrounds for print view
 *
 * @section		print view
 */
body {
	font-family: Arial;
	font-size: 68.75%;
	color: #000;
	background: #ffffff;
	padding: 10px;
}
#header, #col_sidebar, div#footer, #breadcrumb, #tools, #sls_half, #sls_full, #sb_left, #shadow, #toolbar, #headline {
	display: none;
}
#main, #main_half {
	background: none;
}
#page { 
	margin: 0; 
}
#col_content { 
	padding: 0; 
}
#print_footer { 
	display: block; 
}
/*
 * avoid white color on white background in forms
 *
 * @section		form colors for print view
 */
label { 
	color: #000 !important; 
}
textarea { 
	border: 1px solid #9EA0A4 !important; 
}
/*
 * avoid cut off pages in IE6 print view
 *
 * @section		width adjustment
 * @affected	IE6
 * @css-for		all browsers
 */
#page {
	width: 600px;
}

}