/* 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 1em 0em 0em;} /* 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:#FFF;}*/

h1, h2, h3, h4, h5, h6, ul, ol, dl {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	} 
/* TEXT COLORS */
h1 {
	color:#333;
	}
h2, h3, h4, h5 {
	color:#333;
	}
h6 {
	color:#333;
	}
p {
	color:#333;
	}

#left_inner p{
	margin: 220px 0 0 50px;
	text-align: left;
	font-size: .65em;
	font-style: bold;}



#footer p {
	margin:0;
	font-size: .6em;
	letter-spacing: .08em;
	}
	
/* FONT SIZES */
h1 {font-size:1.5em; /* 24pt */
	letter-spacing: .07em;
	}
h2 {
	font-family: Times, "New Times Roman", Georgia, serif;
	font-size:1.125em; /* 22pt */
	line-height:1.25;
	margin: 0em 0 0 0;
	letter-spacing: .1em;
	font-weight: normal;

	}
h3 {font-size:1.125em; /* 18pt */
	line-height:1.25;
	}
h4 {font-size:1.125em; /* 18pt */
	}
h5 {font-size:1em; /* 16pt */
	}
h6 {
	font-family: Times, "New Times Roman", Georgia, serif;
	font-size:.875em; 
	line-height:1.25;
	letter-spacing: .03em;
	font-weight: bold;
	margin: 0px 0 0 0;
	}
	
p  {
	font-size:.75em; /* 12pt */
	line-height:1.5; /* on 15pt */
	margin-bottom:.75em; /* 12pts of space */
 	}

a:link {
	font: .9em/100% Verdana, Arial, Helvetica, sans-serif;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	margin: 0px 0 0 0px;
	text-align: left;	
	}
	
a:visited {
	font: .9em/100% Verdana, Arial, Helvetica, sans-serif;
	color: #999;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0 0 0px;
	}

a:hover {
	font: .9em/100% Verdana, Arial, Helvetica, sans-serif;
	color: rgb(107,199,42);
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0 0 0px;
	}

a { font-family: Helvetica, Verdana, Arial, sans-serif;
	font-weight: bold;
	}
	
a:hover {
	text-decoration:none;
	}

dt {font-weight:bold;}

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 */ 
