/*****************************************************************************************************
		Kirsir Project Template v1.1
		http://www.kirsir.ca
		
		Date Created: October 20, 2004
		Date Modified: September 14, 2005
		Description: Each file in the project template contributes to a Kirsir web site project.
		             Provides a base web site for each client.
					 The site structure and code has been developed for use by Kirsir to assist in project development
					 and cannot be distributed or sold.
		
		Copyright (c) 2005 Kirsir Web Development
******************************************************************************************************/

/******************************PRINT STYLES********************************************/

/*STYLES FOR PRINTING ONLY*/
@media print{

	.noPrint{display:none;} /*do not display during printing*/
	
	*{background-color:#fff !important; background-image:none !important;} /*if background images need printing, comment this out!*/
	
	#printCompanyInfo{
		display:inline;
		color:#000;
		font:10pt "Times New Roman", serif;
		text-align:left;
	}
	
	#topWrapper{display:none}
	#pageWrapper { /*wraps all content*/
		position:static;
		padding:0px;
		margin:0px;
		left:0px;
		margin-left:0px; /*if centred, defined as -350px above*/
		width:100%;
	}
	
	#bottomWrapper{position:static; top:0px;}
	#breadcrumb{display:none;}
	#centerLeftWrapper, #center, #content{width:100%; position:static; margin:0px; text-align:left; float:none;}
	#left{display:none;}
	#right{display:none;}
	#footer{display:none;}
	
	ul, ul li{list-style:disc; background:none;}
	ul.circle, li.circle{list-style:circle; background:none;}

}/*close print styles*/

