/*************************************************************************
 *									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;}
	
	body {font: 10pt arial,tahoma,verdana,sans-serif; background: #FFFFFF;}
	h1, h2, h3, h4, h5, h6 {margin: 1em 0 .2em;font-family: arial,tahoma,verdana,sans-serif; border: none;}
	
	p {margin: 0 0 1em}
	dt {font-weight:bold}
	
	#masthead_print {display: block; border-bottom: 2px solid #000000;}
	#header {display: none;}
	#footer {margin: 1em 0}
	
	/* LINKS */
	a {border:none}
	a,a:link,a:link,a:link,a:hover {background:transparent;text-decoration:underline;cursor:pointer} 
	a:link {color:#5291c4} 
	a:visited {color:#666}
	a:hover {color:#ff9900;border:none} 
	a:active {color:#0066cc} 
	
	/* TABLES */
	table {font-size: 9pt;margin: 0 0 1em;border-collapse:collapse}
		table th {border-bottom: 3px solid #000;vertical-align:top;padding: 1.5em 3px 3px;line-height:1.1;font: bold 145% arial;letter-spacing:0;text-align:left}
	
	/* Tab styles for detail pages with tab system */
	.anchors {
		display: none;
	}
	.anchor {
		display: block !important;
	}
	.anchor_title_print {
		display: block;
		margin: 15px 0 5px 0;
		font-size: 11pt;
		font-weight: bold;
		font: Arial, Helvetica, sans-serif;
	}
	div#otherImages_titleBar, div#largeImage {display: none;}
	
	/* End tab print styles */
}

