/* 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:#3d362e;
}
#main_wrapper {background-color:#FFF;}
#header {background-color:#3d362e;}
#nav {background-color:#3d362e;}
#content {background-color:#cdc4b9;}
#content1 {background-color:#cdc4b9;}
#content_menu {background-color:#cdc4b9;}
#promo {background-color:#3d362e;}
.menu {
	background-color:#FFFFFF;
	background-image:url(../images/Charliesmenuimage%20copy.gif);
	background-repeat:no-repeat;
	background-position:center;
	}

h1, h2, h3, h4, h5, ul, ol, dl {
font-family:"Comic Sans MS", cursive;
	} 
/* TEXT COLORS */
h1 {
	color:#FFF;
	}
h2 {
	color:#3d362e;
	font-family:"Comic Sans MS", cursive;
	font-size:40px;
	text-align:center;
	}
h3 {
	color:#3d362e;
	font-family:"Comic Sans MS", cursive;
	font-size:20px;
	text-align:center;
	}
h4 {
	color:#7c559a;
	font-family:"Comic Sans MS", cursive;
	font-size:16px;
	text-align:center;
	text-decoration:underline;
	}
h5 {
	color:#CC3300;
	font-family:"Comic Sans MS", cursive;
	font-size:16px;
	text-align:center;
	}
h6 {
	color:#FFFFFF;
	font-family:"Comic Sans MS", cursive;
	font-size:11px;
	text-align:left;
	}	
p {color:#000;
	font-family:"Comic Sans MS", cursive;
	font-size:12px;
	font-weight:300;
	}
ul, ol, dl, blockquote, cite {
	color:#808073;
	}
#nav ul, #nav a {
	color:#FFF;
	}
table, form {
	color: #BFBFAC;
	}
A:link	{
color:ffffff;
font-family:"Comic Sans MS", cursive;
font-style:normal;
font-weight:normal;
	}
#nav a:hover	{
color:#7c559a;
font-family:"Comic Sans MS", cursive;
font-style:normal;
font-weight:bold;
	}
A:visited	{
color:e14f15;
}	
#footer p {
	margin:0;
	}

/* FONT SIZES */
h1 {font-size:1.5em; /* 24pt */
	}
h4 {font-size:1.125em; /* 18pt */
	}
h5 {font-size:1em; /* 16pt */
	}
h6 {font-size:.875em; /* 14pt */
	}

a {
		}
a:hover {
	text-decoration:none;
	}
/* basic list styling - more-styled lists in list.css */
ul, ol, dl, blockquote, cite {
	font-family:"Comic Sans MS", cursive;
	color:#FFFFFF;
	list-style: none;
	text-align:center;
	}
#nav ul, #nav a {
	color:#FFF;
	text-decoration:none;
	text-align:center;
	font-family:"Comic Sans MS", cursive;
	font-size:12pt;
}
#nav ul, #nav b {
	color:#FFF;
	text-decoration:none;
	text-align:center;
	font-family:"Comic Sans MS", cursive;
	font-size:10pt;
}
}

code {font-size:1.25em;}
* html code {font-size:1.1em;} /* default size is smaller in IE */
	


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