/* 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 MS", Verdana, Arial, Lucida, sans-serif; /* 1em = 16pts */
	color:#333;
}

.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:MOCHA TAG STYLES - font sizes, margins, padding, etc. */
/* NOTE: text colors follow below */
body.mocha {background-color:#586472;}
.mocha #main_wrapper {background-color:#FFF;}
.mocha #header {background-color:#586472;}
.mocha #nav {background-color:#FFF; letter-spacing:0.01em;}
.mocha #content {background-color:FFF;}
.mocha #promo {background-color:#807059;}
.mocha #footer {background-color:transparent;}

h1, h2, h3, h4, h5, h6, ul, ol, dl {
	font-family: "Trebuchet MS", Verdana, Arial, Lucida, sans-serif;
	} 
/* CLASS:MOCHA TEXT COLORS */
.mocha h1 {
	color:#000;
	}
.mocha h2 {
	color: #7c1b31;
	}

.mocha h3 {
	color: #004d71;
	}
	
.mocha h4, .mocha h5, .mocha h6{
	color:#000;
	}
.mocha ul, .mocha ol, .mocha dl, .mocha blockquote, .mocha cite {
	color:#333;
	}
.mocha cite {
	color:#000;
	}
.mocha promo {
	color:#000;
	}
.mocha #nav ul {
	font: .75em  Arial, Lucida, sans-serif;
	font-weight:bold;
	line-height:175%;
	letter-spacing:.07em;
	}
.mocha #nav ul, .mocha #nav a {
	color:#004d71;
	text-decoration:none;
	}
.mocha a {
	color:#004d71;
	}
.mocha a:hover {
	color:#426752;
	}
.mocha #nav a:hover {
	color:#426752;
	}
	
.mocha #nav a:active {
	color:#426752;
	}
	
.mocha #footer_inner p {
	color:#000;
	text-decoration:none;
}	


/* FONT SIZES */
#footer p {font-size:.7em;
	}
th {font-size: .9em;
	}
h1 {font-size:1.5em; /* 24pt */
	}
h2 {font-size:1.375em; /* 22pt */
	line-height:1.25;
	padding:0 0 1em 0;	
	text-transform: lowercase;
	}
h3 {font-size:1.125em; /* 18pt */
	line-height:1.25;
	padding:.5em 0 0 0;	 
	}
h4 {font-size:1.125em; /* 18pt */
	}
h5 {font-size:1em; /* 16pt */
	}
h6 {font-size:.875em; /* 14pt */
	}
p  {
	font-size:.8em; /* 12pt */
	line-height:1.25; /* on 15pt */
	margin-bottom:1.75em; /* 12pts of space */
 	}
a {
	
	}
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:16px;
		
		}
li, dd {
		padding:0em 0; /* lists without specific classes */
		margin-left:2em;
		}
#nav ul, #nav dl, #nav ol {
		margin:.5em 1em .75em 1em; /* lists without specific classes */
		font-size:.7em;
		font-weight:bold;
		}
blockquote {
		font-size:1.0em;
}		
		
#nav li {
	list-style-type:none;
	margin-left:0
	}
.bold {
	font-weight:bold;
	color:#333333;
	}

.underline {
	text-decoration:underline
	}
  
.p_lowpad {
	margin: 0em;
	}

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