/* This style sheet styles the page for printing. It turns off the 
	Masthead
	Menu
	Sponsors
	Footer
	
  It leaves the content formatted for printing */

	
	/* Tags for the layout of the page */
	

	#masthead {
		display: none;
	}	
	

	/* column container */
	.colmask {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
	    float:left;
     width:100%;				/* width of whole page */
		Xoverflow:hidden;		/* This chops off any overhanging divs */
	}
	/* lorne 3 column settings */
	.lorne {
		width: 800px;

	}
 .lorne .colmid {
     float:left;
     width:200%;
     margin-left:-14em; 		/* Width of right column */
     position:relative;
     right:100%;
     background:#fff;    	/* Centre column background colour */

 }
 .lorne .colleft {
     float:left;
     width:100%;
     margin-left:-55%;
     position:relative;
     left:23em;         		/* Menu width + right column width */
 }
 .lorne .col1wrap {
     float:left;
	    width:50%;
	    position:relative;
	    right:9em;        		/* Width of left column */
	    padding-bottom:1em; 	/* Centre column bottom padding. Leave it out if it's zero */
	}
	/* Styles for the content area of the site */
	
	.lorne .content  {
		display: block
	}
	
 .lorne #menu {
     display: none;
	 width: 0;
 }

	

 .lorne .sponsors {
    display: none;
 }





	


	/* Footer styles */
	#footer {
     display: none;
 }
 

