/*************************************************************************
 *									include.css
 * WelComm User Interface Library (WUI) v1.0
 *   - CSS
 *
 * Author: Brad Buckingham (brad@welcomm.com)
 * 
 * This CSS file will include every css file needed to display the pages
 * correctly.
 *
 ***********************************************************************/

@import url("/lib/css_temp/reset-min.css");
@import url("/lib/css_temp/fonts.css");
@import url("/lib/css_temp/layout.css");
@import url("/lib/css_temp/elements.css");
@import url("/lib/css_temp/classes.css");
@import url("/lib/css_temp/bodytemp.css"); 
@import url("/lib/css_temp/buttons.css");

/**
 * Print styles: Very basic site styles so that the page's information
 * can be printed without a problem
 *
 */ 
@media print{ 
	/*hide the left column when printing*/ 
	#leftcol{display:none;} 
	
	/*hide the right column when printing*/ 
	#rightcol{display:none;} 
	#twocols, #maincol{width:100%; float:none;}
}

