/* This style sheet sets the overall font sizing 
   All other styles should be placed into main.css
*/
/* Because all p tags are within a div in the ATS design, it is not necessary to explicitly declare it here.  
   When font size is compounded due to nesting, it can be reset by setting the nested tag to font-size:1em  
	}
*/	
body {/* relative font sizing taken from: http://www.thenoodleincident.com/tutorials/typography/index.html*/
	margin: 0;
	padding: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 76%;/* all subsequent font sizing in ems. If you want to change anything, just change this but NOT below 75%.*/
	color: #666;
	background-color: #ffffff;
	}
	
body div, body table{
	font-size:0.95em;
}

