@charset "utf-8";
/* CSS Document */
body {
	font: 100%/1.3 Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	color: #333;
	background-color: #999;
}
/* ~~ Element/tag selectors ~~ 
ul, ol, dl { Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector.
	padding: 0;
	margin: 0;
}*/
p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	color: #333;
}
strong {color: #555;}
h1, h2, h3, h4, h5, h6{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	color: #666;
	font-family: 'Open Sans Condensed', Arial, Helvetica, sans-serif;

}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
h1 {
	font-size: 150%;
}
h2 {
	font-size: 130%;
}
h3 {
	font-size: 125%;
}
a:link {
	color: #70A4CB;
	text-decoration:none;
	font-weight:bold
}
a:visited {
	color: #70A4CB;
	text-decoration:none;
	font-weight:bold
}
a:hover {
	color: #70A4CB;
	text-decoration:underline;
	font-weight:bold
}
a:active {
	color: #70A4CB;
	text-decoration:underline;
	font-weight:bold
}
a:focus {
	color: #70A4CB;
	text-decoration:underline;
	font-weight:bold
}
