/* a fix for IE6 only - see Star Hack in Stylin' with CSS to see how the comments and * html hide this hack from other browsers \*/
* html  {
	zoom:100%; 
/* triggers IE6 "haslayout" - google 'IE6 haslayout' for details*/
	}
/* without the above hack, IE6 does not draw the header until the page is resized */
/* the problem is triggered by the universal * selector below that resets the margins, but I need to do that, hence the hack */
* {
	margin:0;
	padding:0;
	}
body {
	font: 1em Helvetica, Verdana, Arial, sans-serif; /* 1em = 16pts */
	}
.float_left {float:left; margin: 0 .3em .3em 0;}      /* apply this class to any image or element with width - text will wrap it to the right */
.float_right {float:right;  margin: 0 0 .3em .3em;} /* apply this class to any image or element with width  - text will wrap it to the left */

/* DEFAULT TAG STYLES - font sizes, margins, padding, etc. */
/* NOTE: text colors follow below 
body {background-color:#ccc;} */
#main_wrapper {background-color:#FFF;}
/*#header {background-color:#fff;}*/
/*#nav {background-color:#FFF;}*/
#content {background-color:#FFF;}
#promo {background-color:transparent;}
/*#footer {background-color:#999;}*/
#content_1 p {
	color: #fff;
	}
/*#content_1 {
	background-color: rgb(0,77,135);
	margin: 0 0 0 10px;
	}*/
	
/*#content_1inner h6 {
	color: #333;
	}*/
	
h1, h2, h3, h4, h5, h6, ul, ol, dl {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	} 
/* TEXT COLORS */
h1 {
	color:#FFF;
	}
h2,h4, h5 {
	color:#666;
	 padding: 0 0 0 10px;
}
	
 h3 {
 	color: rgb(36,79,132);
 	padding: 0 0 0 10px;
 	}
#paypal h6 {
	font-size:.75em; /* 14pt */
	line-height:1.25;}

h6 {
	color:#036; /*rgb(0,77,135)*/
	letter-spacing: .05em;
	}
p {
	color:#333;
	padding: 0 0 5px 0;
	}

.question {
	font-weight: bold;
	color: #036;
	font-size:.90em; /* 12pt */
	line-height:1; /* on 15pt */
	margin-bottom:0em; /* 12pts of space */
	}

#left_inner .links {
	text-align: left;
	line-height: 1.5;
	padding: 0 10px 0 5px;
	}

.events {
	border-top: 1px solid rgb(193,52,38);
	padding-top: 3px;
	}

#footer p {
	margin:0;
	font-size: .6em;
	letter-spacing: .07em;
	}
	
	#content_1inner h6{
	color: #fff;
	}

#content_5 h6{
	border-top: 2px solid rgb(193,52,38);
	padding-top: 5px;
	}

#content_events3 h6{
	border-top: 2px solid rgb(193,52,38);
	padding-top: 5px;
	}

	
/* FONT SIZES */
h1 {font-size:1.5em; /* 24pt */
	}
h2 {font-size:1.375em; /* 22pt */
	line-height:1.25;
	padding:.5em 0 0 0;	
	}
h3 {font-size:1.125em; /* 18pt */
	line-height:1.25;
	}
h4 {font-size:1.125em; /* 18pt */
	}
h5 {font-size:1.125em; /* 16pt */
	line-height:1.25;
	letter-spacing: .02em;
	}
h6 {font-size:.875em; /* 14pt */
	line-height:1.25;}
p  {
	font-size:.75em; /* 12pt */
	line-height:1.5; /* on 15pt */
	margin-bottom:.75em; /* 12pts of space */
	}
.equality {font-size:1em; /* 14pt */
	line-height:1.5;}
	
code {font-size:1.25em;}

* html code {font-size:1.1em;} /* default size is smaller in IE */
	

abbr, acronym {
	border-bottom:1px dashed #000;
	cursor:default;
	}
address {
	margin:0 1em .75em 1em;
	}
img {
	border:0;
	}
	
/* THE ALSETT CLEARING METHOD */
	.clearfix:after {
 content: “.”;
 display: block; 
 height: 0;
 clear: both;
 visibility: hidden;
}
.clearfix {display: inline-table;}
/* backslash hack hides from IE mac \*/ LEAVE THIS COMMENT RIGHT HERE! 
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* end backslash hack */ 