@charset "utf-8";
/* CSS Document */

/* root font size set to 62.5/10px for easy rem calculation */
html { 
	font-size: 62.5%;
	}

/* FONT FAMILIES */
body, h4 { 
	font-family: 'Crimson Text', serif;
	}

h1, h2, h3, .h3-inline { 
	font-family: 'PT Sans', sans-serif;
	}

/* FONT SIZES/LINE HEIGHTS */

h1 { 
	font-size: 45px;
	font-size: 4.5rem;
	line-height: 55px;
	line-height: 5.5rem;		
	} 
	
h2 {
	font-size: 25px;
	font-size: 2.5rem;	
	line-height: 35px;
	line-height: 3.5rem;			
	}

body, h4, li { 
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 22px;
	line-height: 2.2rem;		
	}
	
h3, .h3-inline { 
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 20px;
	line-height: 2.0rem;		
	}	
	
.cell p { 
	line-height: 19px;
	line-height: 1.9rem;		
	}

.padded {
	padding-top: 1.9rem;
}	

/* FONT VARIATIONS */
.h3-inline {
	font-weight: bold;
	}

h4 {
	font-weight: normal;
	font-style: italic;
	}

/* LAYOUT */
ul { 
	list-style-type: none;	
	}
	
	
.article {  
	width: 800px;
	width: 80rem;	
	padding-left: 20px;
	padding-left: 2rem;	
	padding-right: 20px;
	padding-right: 2rem;		
	margin-left: auto;
	margin-right: auto;
	}			
	
.table { 
	display: table; 
	width: 87%;	
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-top: 1rem;	
	}	
	
.outer-table {  
	width: 100%;
	border-bottom: 1px solid #000000;
	}		

.row {
	display: table-row;
	width: 100%;
	}	
	
.cell {
	display: table-cell;	
	padding-top: 20px;
	padding-top: 2rem;			
	}	
	
.no-pad {
	padding-top: 0px;
	padding-top: 0rem;		
	}
	
.skinny {
	width: 28%;
	padding-right: 20px;
	padding-right: 2rem;		
	}

.text-right {
	text-align: right;
	vertical-align: bottom;	
	}	