/* Global Styles 
-----------------------------------------------------
This set the global sites for the site.  Works for both 
screen and print. 
-----------------------------------------------------
*/

/* Resets all margins and padding
-----------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	}

/* Sets body font styles
-----------------------------------------------------*/	
body {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 90%;
	line-height: 140%;
	color: #333333;
	background-color: #fff;
	}
	
body h1 {
	line-height: 120%;
	}
	
/* Used to set body width and center
-----------------------------------------------------*/	
.wrap {
	margin: 0;
	padding: 10px;
	height: 1%;
	background-color: transparent;
	position: relative;
	}

/* Applies some space to the bottom of some elements
-----------------------------------------------------*/		
p, dl, ol, ul, form, fieldset, table {
	margin-bottom: 1.0em;
	}

/* Color of headings
-----------------------------------------------------*/		
h1, h2, h3, h4, h5, h6 {
	color: #0179B7;
	margin-bottom: 0.25em;
	}

/* Headings that are also links for SEO
-----------------------------------------------------*/	
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	/*color: #06294D;*/
	text-decoration: none;
	}

/* Basic link styles
-----------------------------------------------------*/		
a {
	color: #0179B7;
	text-decoration: underline;
	}
	
a img {
	/*border: 1px solid #5095D2;*/
	border: 0;
	}

/* Typical misc elements
-----------------------------------------------------*/	

.clear {
	clear: both;
	}
	
.hidden, .hide {
	position: absolute;
	text-indent: -15000px;
	}
	
img.left {
	float: left;
	margin-right: 1.0em;
	}
	
img.right {
	float: right;
	margin-left: 1.0em;
	}
	
/* Makes Horizontal Rules look (somewhat) consistant
   accross popular browsers.
-------------------------------------------------------*/

hr {
	background: #cccccc;
	border: 0;
	color: #cccccc;
	height: 1px;
	margin: 0 0 10px;
	}