/* 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 Trebuchet, Lucida, 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:#F9F2DF;}
#main_wrapper {background-color:transparent;}
#header {background-color:transparent;}
#multi_drop_menus transparent {background-color:transparent;}
#nav {background-color:transparent;}
#content {background-color:transparent;}
#promo {background-color:transparent;}
#footer {background-color:#F9F2DF;}

h1, h2, h3, h4, h5, h6, ul, ol, dl {
	font-family: Trebuchet, Lucida, Arial, sans-serif;
	} 
/* TEXT COLORS */
h1 {
	color:#CC6600;
	}
h2 {
	color:#FF6633;
	}
h3 {
	color:#B77C05;
	}
h4 {
	color:#CC9933;
	}
h5 {
	color:#666633;
	}
h6 {
	color:#CC6600;
	}
p {
	color:#663333;
	}
a {
	color:#999966;
	}
a:link{
	color:#999966;
	}	
a:hover{
	color:##CC9933;
	}
ul, ol, dl, blockquote, cite {
	color:#B77C05;
	}
table, form {
	color: #663333;
	}
#nav a:link, #promo a:link, #footer a:link{
	color:#999966;
	}
#multi_drop_menus transparent a:link{
	text-decoration: none;
	color:#663333;
	}
#nav a:hover, #promo a:hover, #footer a:hover {
	color:##CC9933;
	}
#multi_drop_menus transparent a:hover{
	text-decoration: none;
	color:#663333;
	}
a:link{
	color:#999966;
	}	
a:hover{
	color:##CC9933;
	}
/* FONT SIZES */
h1 {font-size:1.4em; /* 24pt */
	font-style:italic;
	}
h2 {font-size:1.3em; /* 22pt */
	line-height:1.25;
	padding:.5em 0 0 0;	
	}
h3 {font-size:1.12em; /* 18pt */
	line-height:1.2;
	padding:.5em 0 0 0;	
	}
h4 {font-size:.85em; /* 18pt */
	}
h5 {font-size:1em; /* 16pt */
	}
h6 {font-size:1.2em; /* 14pt */
	}
p  {
	font-size:.90em; /* 12pt */
	line-height:1; /* on 15pt */
	margin-bottom:.35em; /* 12pts of space */
 	}

/* basic list styling - more-styled lists in list.css */
ul, dl, ol {
		margin:0 1em .75em 1em; /* lists without specific classes */
		font-size:.95em;
		line-height:1.1;}
li, dd {
		padding:0em 0; /* lists without specific classes */
		margin-left:1em;
		}
#nav ul, #nav dl, #nav ol {
		margin:.5em 1em .75em 1em; /* lists without specific classes */
		}
#nav li {
	list-style-type:none;
	margin-left:0
	}
#promo ul, #promo dl, #promo ol {
		margin:.5em 1em .75em 1em; /* lists without specific classes */
		}
#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:#B77C05;
}
blockquote p:after {  /* IDWIMIE 6 and 7 */
	content: close-quote;
	color:#B77C05;
}
blockquote cite {
	font-size:.85em;
	}
abbr, acronym {
	border-bottom:1px dashed #000;
	cursor:default;
	}
address {
	margin:0 1em .75em 1em;
	}
img {
	border:0;
	}

/* basic table styling  - more-styled tables in tables.css */
table caption {font-size:1.12em; /* 18pt */
	line-height:1;
	padding:.0em 0 0 0;
	color:#B77C05;
	}
table {
	margin: 1em 0em 0em 0em;
	border-top:0px solid #CC9933;
	border-collapse:collapse;
	font-family: Trebuchet, Lucida, Arial, sans-serif;
	}
table th	{
	padding: 0em 0em 0em 0em;
	border-bottom:0px solid #CC9933;
	}
table td	{
	padding: 8px 4px 0em 4px;
	border-bottom:0px solid #CC9933;
	}
/* 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 */ 

