/*	author: Dennis Kardys
	company: WSOL (http://www.wsol.com);
	email: dkardys@wsol.com
	
	notes on sizing:
	Why size with ems? I have replaced pixel heights and margins with ems so that the type can scale
	gracefully. Although most browsers implement a page zoom, this site also uses a jquery text resizer.
	The text resizers adjusts the default font size. Using ems allows all the text to scale proportionally.
*/

h1 {
	font-size: 2.286em; /* 32px */ 
	line-height: 1.5em;
	color: #000;
	font-weight: normal;
	text-transform: uppercase;
	margin: .25em 0 .35em 0; /*12px 0 0 */
}

h2 {
	font-size: 1.7143em;/* 24px */
	line-height: 1.3333em;
	color: #333; /*316b0a */
	font-weight: normal;
	margin: 1.3em 0 .6667em 0; /* 32px 0 16px 0 */
	padding: 0;
	border-bottom: 1px solid #ddd;
	text-transform: uppercase;
}

h3 {
	font-size: 22px; /* 22px */
	color: #000; 
	font-weight: normal; 
	margin: .818em 0 .444em 0;	/* 18px 0 8px 0 */
	line-height: 1.3em;
	text-transform: uppercase;
}

h4 {
	color: #000;
	text-transform:uppercase;
	font-size: 15px; 
	margin: 1.3em 0 .444em; /* 24px 0 8px 0*/
	line-height: 1.555em;
}

h5 {
	font-size: 15px; 
	line-height: 1.4em; 
	margin: 1.375em 0 .625em 0; /* 22px 0 10px 0 */
	font-weight: bold;
}
.callout { 
	font-size: 1.286em; 
	margin: .8889em 0 .8889em 0; /* 16px 0 16px 0 */
	color: #4d4d4d; 
	clear: both; 
	line-height: 1.35em;
}

.caption { font-style: italic; font-size: 11px; color: #666;}

.blockquote { 
	display: block; 
	clear: both; 
	padding: 0 0 0 30px; 
	margin: 1em 0;
	font-family:Georgia, "Times New Roman", Times, serif;
	line-height: 1.85em; 
	font-size: .75em; /* 12px */
	border-left: 5px solid #e8e8e8; color: #666;
}

.small-text { font-size: 10px;}

.textBlockRight { width: 40%; float: right; padding-left: 14px;}
.textBlockLeft { width: 40%; float: left; padding-right: 14px;}

.alert {
	font-size: 14px;
	color: #e12f29;
	background: #fdfbd4;
	border: 4px double #b60000;
	padding: 8px;
	margin: 1.1429em 0;
	clear: both;	
}


.imageSize1 { width: 80px; padding: 3px; border:1px solid #ccc; }

.imageSize2 { width: 150px; padding: 4px; border:1px solid #ccc;}

.imageSize3 { width: 300px; padding: 5px; border:1px solid #ccc;}


.alignLeft { display: block; float: left; margin-right: 14px;}

.alignRight { display: block; float: right; margin-left: 14px;}



