@charset "iso-8859-1";
/* 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 Verdana, 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 */
	
/* CLASS:green TAG STYLES - font sizes, margins, padding, etc. */
/* NOTE: text colors follow below */
body.green {background-color:#00cc00;}
.green #main_wrapper {background-color:#99ff66;}
.green #header {background-color:#99ff66;}
.green #nav {background-color:#006400;}
.green #content {background-color:#ccff99;}
.green #promo {background-color:#006400;}
.green #footer {background-color:#99ff66;}

h1, h2, h3, h4, h5, h6, ul, ol, dl {
	font-family: Verdana, sans-serif;
	} 
	
/* CLASS:green TEXT COLORS */
.green h1 {
	color:#660000;
	}
	
.green h2, .green h3, .green h4, .green h5 {
	color:#660000;
	}
	
.green h3 {
	color:#660000;
	}
	
.green h4 {
	color:#ffff99;
	}
	
.green h5 {
	color:#ffff99;
	}
	
.green h6 {
	color:#660000;
	}
	
.green p {
	color:#660000;
	}
	
.green ul, .green ol, .green dl, .green blockquote {
	color:#660000;
	}
	
.green li {
	color: #fff;
	}
	
.green cite {
	color:#FFF;
	}
		
.green #nav ul, .green #nav a {
	color:#FFF;
	}
	
.green #promo_inner ul, .green #promo_inner a {
	color:#ffff99;
	}
	
.green table, .green form {
	color: #6430BF;
	}
	
.green a {
	color:#660000;
	}
	
.green a:hover {
	color:#ffff99;
	}	
	
.green #nav a:hover {
	color:#ffff99;
	}
	
.green #promo_inner a:hover {
	color:#ffff99;
	}

/* FONT SIZES */
h1 {font-size:2.5em; /* 24pt */
	}
h2 {font-size:1.375em; /* 22pt */
	line-height:1.25;
	padding:.5em 0 0 0;	
	margin-bottom: .75em;
	}
h3 {font-size:1.10em; /* 18pt */
	line-height:1.25;
	margin-bottom: .5em;
	}	
h4 {font-size: .90em; /* 18pt */
	margin-bottom: .5em;
	margin-top: 1em;
	}
h5 {font-size:.75em; /* 16pt */
	margin-left: -.25em;
	}
h6 {font-size:.50em; /* 14pt */
	}
p  {
	font-size:.8em; /* 12pt */
	line-height:1.6; /* on 15pt */
	margin-bottom:.75em; /* 12pts of space */
 	}
a {
	font-style: italic;
	}
a:hover {
	text-decoration:none;
	}
/* basic list styling - more-styled lists in list.css */
ul, dl, ol {
		margin:0 1em .75em 1em; /* lists without specific classes */
		font-size:.8em;
		line-height:1.5;}
li, dd {
		padding: 0 0; /* lists without specific classes */
		margin-left: 0;
		font-size: .85;
		}
		
#nav ul, #nav dl, #nav ol {
		margin:.5em 1em .75em .5em; /* lists without specific classes */
		}
#nav li {
	list-style-type:none;
	margin-left:0
	}
#promo ul, #promo dl, #promo ol {
		margin:.5em 0 .75em 0; /* lists without specific classes */
		}
		
#promo li {
	list-style-type:none;
	margin-left: 0;
	margin-bottom: .25em;
	font-size: .35;
	}		
	
dt {font-weight:bold;}

code {font-size:1.25em;}
* html code {font-size:1.1em;} /* default size is smaller in IE */
	
cite {
	font-size:.80em;
	font-style:italic;
	margin-bottom: .75em;
	margin-left: -.25em;
	}
	
blockquote {
	border-top:0px solid;
	border-bottom:0px solid;
	width:85%;
	margin:1em 30% 1em 10%;
	padding:;
	font-size: .85em;
	}
	
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 {
	border:0;
	}

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