/*
	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 */
	#content a:link, #content a:visited
	{
		color: #520 !important;
		background: transparent;
		font-weight: bold;
		text-decoration: underline;
		border: none !important;
	}
	#content 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 
	*/
		/*#content 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 */
	#content a.thickbox:link:after,
	#content a.thickbox:visited:after,
	#content a[href^=#]:link:after,
	#content a[href^=#]:visited:after
	{
	   content: "";
	}
	
	/* Hiding elements so they don't print */
	#top_links,
	#header,
	#navigation,
	#subnavigation,
	#footer,
	div.table div.right,
	div.table div.left,
	#banner_large,
	#banner_small,
	#content #funcs,
	/*#content img,*/
	#content .cream_box
	{
		display: none !important;
	}
	
	
	/* Showing any elements that are hidden by javascript */
	#content .faq-container01 .faq-item .answer
	{
		display: block !important;
	}
	
	/* 
		Reset padding so printed version can use as much realestate on 
		paper without getting squished by uneccessary padding 
	*/
	.padding,
	#layout .mid .width .inside_mid
	{
		padding: 0 !important;
	}
	
	/* Reset float and floated items should reset */
	.floated-item,
	#layout 
	{
		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, 
	div.table
	{
		position: static;
	}
	
	
	div.table div.mid
	{
		overflow: visible !important;
		position: static !important;
	}

	/* 
		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;
		}
	
	/* reset background images */
	#content h2.tableheading01,
	#content h2.tableheading02,
	#layout,
	#layout .inside,
	#layout .inside2,
	#content table.module div,
	#content table.module div p,
	#content ul.list01 li
	{
		padding-left: 0 !important;
		background: none !important;
		margin-left: 0 !important;
	}
	
	/* Reset border*/
	#content .curved_box01,
	#content .curved_box01 td
	{
		border:#FFFFFF !important;
		border:none !important;
		border-style:none !important;
		border-color:#FFFFFF !important;
	}
	
	.ie6 #content 
	{
		width: 66% !important;
		overflow: hidden !important;
	}
	
}