/* CSS Document */
body {

	font-family:Arial, Helvetica, sans-serif;
	font-size:medium;
	background-color:#fff4e9;
}
a:link, a:visited, a:hover {
	color: #FF0000;
	text-decoration: none;		
}
a:hover {
	text-decoration: underline;
	color:#FF0000;
	background-color:#dddddd;
}

/****************************************/

h1{
 font-size: 145%;
 color: #006699;
}

h2{
 font-size: 114%;
 color: #006699;
}

h3{
 font-size: 100%;
 color: #334d55;
}

h4{
 font-size: 90%;
 font-weight: normal;
 color: #333333;
}

h5{
 font-size: 80%;
 color: #334d55;
}

/************ LAYOUT ****************/
#header {
	width:850px;
}

#holder {
	width:850px;
}

#nav {
	float:left;
	width:180px;
	background-image: url(../images/bg_nav_stripe_tall.gif);
	background-repeat: repeat-x;
	text-align: center;
}

#content {
	float:left;
	width:653px;   /*  653w + 15pad + 2border = 680  (670 + 180 = 850) */
	background-color:#FFFFFF;
	padding: 5px 5px 5px 10px;
	border: 1px groove #666666;
}

#footer {
	width:850px;
	text-align:center;
	margin-top:10px;
}


/**************************************/
.clearfix:after {
	content: ".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;	
}	
.clearfix {	
	display:inline-block;   /** Mac Fix  **/ 
}
* html .clearfix {height: 1%;}  /**  IE fix **/
.clearfix {display:block;}
