/*
	K-Kart E-Commerce System, v1.0
	http://www.kirsir.com
		
	Release Date: 05/20/05
	Terms of Use: K-Kart is owned by Kirsir Web Development and cannot be used without written consent
		          or purchase.  The code contained within K-Kart cannot be reproduced and used on 
		          another site or sold as one's own.
		
	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;
  	}
	
	#printCompanyInfo{
		display:inline;
		color:#000;
		font-size:10pt;
		text-align:left;
		font-family:Times New Roman, serif;
	}
	
	#topWrapper{display:none}
	#pageWrapper { /*wraps all content*/
		position:static;
		padding:0px;
		margin:0px;
		left:0px;
		margin-left:0px; /*defined as -350px above*/
		width:100%;
	}
	
	#bottomWrapper{position:static;top:0px;}
	#breadcrumb{display:none;}
	#centerLeftWrapper, #center, #content{width:100%; position:static; margin:0; text-align:left;}
	#left{display:none;}
	#right{display:none;}
	#footer{display:none;}

}/*close print styles*/


