/* 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;
	}
.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:#666666;
}
#main_wrapper {
	background-color:#420000;
}
#header {
	background-color:#420000;
}
#content {
	background-color:#420000;
}
#footer {
	background-color:#420000;
}

/* font styling */
.bold {font-weight:bold;}
.italic {font-style:italic;}
.caps {font-variant:small-caps;}
.smaller {font-size:.85em;}
.bigger {font-size:1.35em;}
.center {text-align: center;}
.bold_center {text-align: center;
font-weight:bold;}
.lighter {font-weight:lighter;}
.normal {font-weight:normal;}
.red {color:#FF0000;}
.navred {
	color:#990000;
}
.darkred {color:#420000;}
.white {color:#FFF;}
.cream {color:#FEFFDF;}
.underline {text-decoration:underline;}
.right {text-align:right;}
.right_normal {text-align:right;
font-weight:normal;}
.left {text-align:left;}
.left_normal {text-align:left;
font-weight:normal;}
/* FONT SIZES */
h1 {font-size:1.5em; /* 24pt */
color:#FFF;

	}
h2 {
	font-size:1.25em;
	line-height:1em;
	color:#420000;
	text-align: center;
	margin-top: 0px;
	}
h3 {
	font-size:1.25em; /* 12pt */
	line-height:1.2em; /* on 15pt */
	margin-bottom:0.75em; /* 12pts of space */
	text-align: left;
	color:#420000;
	font-weight: bold;
	}
h4 {
	font-size:1em;
	line-height:1.2em;
	color:#FEFFDF;
	text-align: center;
	}
h5 {
	font-size:1.1em; /* 16pt */
	text-align:left;
	text-align:center;
	}
	
h6 {font-size:.875em; /* 14pt */
margin-bottom:.75em; /* 12pts of space */
color:#FFF;
	}
                     	
p  {
	font-size:1.15em; /* 12pt */
	line-height:1.25em; /* 12pts of space */
	margin:1 2 1 2em;
	color:#FFFFFF;
	}
	c {font-size:1.125em; /* 18pt */
line-height:1.20em; /* on 15pt */
text-align:left;
margin-bottom:.75em; /* 12pts of space */
	}
	
a {
	text-decoration:underline;
	color: #006699;
	font-weight: bold;
	}
a:hover {
	text-decoration:none;
	color: #999999;
	}
	u {
	text-decoration:underline;
	}

a:hover, #nav a:hover {
	color:#066;
	}	
#footer p {
	margin:0;
	}


/* basic list styling - more-styled lists in list.css */

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 {
	border:0;
	}

/* basic table styling  - more-styled tables in tables.css */
table.page {
	width:500px;
	padding:0;
	margin:2 0 0 8em;
	font-size:.8em;
	}
table.page td {
	padding:0;
	}
table.page p {
	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 */ 
