/*
	Copyright DTDigital         :: www.dtdigital.com.au ::
	Unauthorised modification / use is a criminal offence, and
	will be prosecuted to the fullest extent permitted by law.
	All Rights Reserved
*/

@media print
{
	body,
	#content
	{
		background: #ffffff; /* reset any background colours applied to containers */
	}
	
	/* Changes all links to a soft red that is still noticable in grayscale */
	#main-container a:link, #main-container a:visited
	{
		color: #520 !important;
		background: transparent;
		font-weight: bold;
		text-decoration: underline;
		border: none !important;
	}
	#main-container a * /* Makes sure if an anchor contains anything inside it, colour is reset */
	{
		color: #520 !important;
	}
	
	/* 
		For good browsers that support useful css, displays href after link in parenthesis 
	*/
	#main-container a:link:after, #main-container a:visited:after 
	{
	   content: " (" attr(href) ") ";
	}
	
	/* Don't show href if it's an inpage anchor link or a thickbox link */
	#main-container a.thickbox:link:after,
	#main-container a.thickbox:visited:after,
	#main-container a[href^=#]:link:after,
	#main-container a[href^=#]:visited:after
	{
	   content: "";
	}
	
	/* Hiding elements so they don't print */
	#header,
	#navigation,
	#subnavigation,
	#footer,
	#columns_three #column_left,
	#columns_three #column_right,
	#toolbar,
	.advert-panels,
	.print-hide,
	.cart_buttons
	{
		display: none !important;
	}
	
	#bodycontainer, 
	#bodycontainer_inside, 
	#bodycontentplaceholder,
	form,
	#maincontent
	{
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	} 
	

	/* Showing any elements that are hidden by javascript */
	.listing01 .listing-item,
	.print
	{
		display: block !important;
	}
	
	#header02 img { width: 100%; height: 77px; margin-bottom: 1em;}
	#columns_three #column_middle { width: 100%; margin: 0; }
	
	* html #bodycontainer, 
	* html #bodycontainer_inside, 
	* html #bodycontentplaceholder,
	* html form,
	* html #maincontent,
	* html #columns_three #column_middle,
	* html #header02 img
	{ width: 99.9% !important;}
	
	
	/* 
		Reset padding so printed version can use as much realestate on 
		paper without getting squished by uneccessary padding 
	*/
	.padding
	{
		padding: 0 !important;
	}
	
	/* Reset float and floated items should reset */
	.floated-item
	{
		float: none !important;
	}
	
	/* 
		Reset postion - position relative and overflows can play havoc 
		when printing make sure any items that are to be printed are 
		reset to static 
	*/
	#main-container #main-container_inner
	{
		position: static;
	}
	
	/* 
		Specific style corrections for printing this gives the printed 
		version a nicer margin than printing edge to edge on the paper 
	*/
	#bodycontainer #bodycontainer_inside
	{
		margin: 0 35px;
	}
	
	/* Reset list styles to generic bullet point */
	ul
	{
		padding: 0 0 0 15px;
	}
		ul li
		{
			list-style: disc;
			background: none;
		}

}