/* 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 */
* {
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	}
	
body {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 1em;
}


.float_left {
	float:left;
	margin-top: 0;
	margin-left: 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:#FFF;}
#main_wrapper {
}
#header {
}
#nav {
	font-size: 1.3em;
	color:#434C8B;
}

#promo {background-color:transparent;}

#footer {
}

h1, h2, h4, h5, h6, ul, ol, dl {
	font-family: Tahoma, Geneva, sans-serif;
	} 
/* TEXT COLORS */

h2, h4, h5 {
	color:#B74946;
	padding-bottom: 12px;
	}
h3{
	color:#000
	
	font-family: "Courier New", Courier, monospace;
	padding-top: 8px;
	padding-bottom: 8px;
}
	
h6 {
	color:#000000;
	}
ul, ol, dl, blockquote, cite {
	}
#nav ul, #nav a {
	color:#000;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.9em;
	line-height: 1.5em;
	
	}
table, form {
	color: #BFBFAC;
	}
a {
	color:#000;
	text-decoration: underline;
	}
a:hover, #nav a:hover {
	text-decoration: none;
	color: #AAA;
	}	


/* FONT SIZES */
h1 {
	font-size:1.4em; /* 24pt */
	color: #35478c;
	letter-spacing: 0.3em;
	text-align: left;
	line-height: 1.2em;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 15px;
	}
h2 {
	font-size:1.375em; /* 22pt */
	line-height:1.25;
	padding:.5em 0 0 0;
	color: #970000;
	}
h3 {
	font-size:1em; /* 18pt */
	line-height:1.25;
	padding-top: 12px;
	padding-bottom: 8px;
	color:#7D0D00;
	font-family: Georgia, "Times New Roman", Times, serif;
	}
h4 {font-size:1.125em; /* 18pt */
	}
h5 {
	font-size:1em; /* 16pt */
	color: #35478c;
	font-family: "Courier New", Courier, monospace;
	}
h6 {font-size:.875em; /* 14pt */
} 

a {
	text-decoration: underline;	
	}
a:hover {
	text-decoration:none;
	}
/* basic list styling - more-styled lists in list.css */
ul, dl, ol {
	font-size:.9em;
	line-height:normal;
}
li, dd {
	padding-top: 0em;
	padding-right: 0;
	padding-bottom: 0em;
	padding-left: 0;
		}
#nav ul, #nav dl, #nav ol {
	margin-top: 0.5em;
	margin-right: 1em;
	margin-bottom: 0.75em;
	margin-left: 0em;
		}
#nav li {
	list-style-type:none;
	margin-left:0;
	}
#promo ul, #promo dl, #promo ol {
		}
#promo li {
	list-style-type:none;
	margin-left:0
	}		
dt {font-weight:bold;}

code {font-size:1.25em;}
* html code {font-size:1.1em;} /* default size is smaller in IE */
	
cite {
	font-size:.85em;
	font-style:italic;
	}
blockquote {
	border-top:2px solid;
	border-bottom:2px solid;
	width:50%;
	margin:1em 0 1em 20%;
	padding:.3em 1em;
	}
blockquote p {
	margin-bottom:.1em;
	}
blockquote p:before { /* IDWIMIE 6 and 7 */
	content: open-quote;
	color:#cccc8f;
}
blockquote p:after {  /* IDWIMIE 6 and 7 */
	content: close-quote;
	color:#366;
}
blockquote cite {
	font-size:.85em;
	}
abbr, acronym {
	border-bottom:1px dashed #000;
	cursor:default;
	}
address {
	margin:0 1em .75em 1em;
	}
img {
	}

/* basic table styling  - more-styled tables in tables.css */
table caption {
	font-weight:bold;
	font-size:1em;
	margin-top:.6em;
	}
table {
	border-collapse:collapse;
	font-size:.8em;
	padding: 0;
	}
table th	{
	padding: 0;
	}
table td	{
	padding: 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 */ 

