@charset "utf-8";
/* CSS Document */
/* NO MODIFICATION NEEDED IN THIS FILE!!!!!!! */
/* File System name	: Legacy Contact Form
 * File name		: print.css 
 * Author name		: Armagan Tekdoner 
 * First release	: April 2014
 * Author website	: grifare.ca 
 * Description		: A robust file system for a non-HTML5 contact page
 * Compatibility	: Will work with almost any browser's any version 
 */

/* W3C CSS Validator results (CSS level 2.1)
 * Congratulations! No Error Found.
 * This document validates as CSS level 2.1 !
 */

/* PAPER PRINT VERSION */

body {
	/* sets the font face. To change, just replace "Times New Roman" with yur choice. */ 
	font-family:"Times New Roman", Times, serif;
	/* the higher the value the larger the font */
	font-size: 1em;
	/* Sets the font colour. #000000 is black. */
	color: #000000;
}
		
		#div_contact{
			display: none;
		}
		
		h2{
			display: none;
		}
		
		div#no_print{
			display: none;
		}

h4{
	font-size: 1.15em;
	font-weight: 100;
}

img.company_logo{
	/* reduces the image size to save toner */
	max-width: 30%;
	height: auto;
}

/* output section which is not displayed before a valid form was submitted */  
#div_received{
	/* change the value 800 only to have a wider or narrower results width */
	width: 800px;
	/* This is the background colour of the results only.
	Replace white #fff, with any colour you like */
	background-color: #fff;
	
		/* places the form in the centre */
		margin-left: auto;
		margin-right: auto;			
		/* if you want the form to be left aligned, 
		comment-out the auto lines above by adding stars and dashes 
		and uncomment the following line by removing stars and dashes in that line */
/*		 margin-left: 50px;*/	

	/* sets double space between lines */
	line-height: 200%;	
}