/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*/

* {/*margin:0*/;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, #wrap {height: 100%;}

body > #wrap {height: auto; min-height: 100%;}

#main {padding-bottom: 123px;}  /* must be same height as the footer */

#footer {position: relative;
	margin-top: -123px; /* negative value of footer height */
	height: 123px;
	clear:both;
	background-image: url(/img/site/footer-bkg.jpg);
	background-repeat: repeat-x;
	} 

/* CLEAR FIX*/
.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

.clear {clear: both;}
body {
	background: #e7e7e7 url('/img/site/container-bkg.jpg') repeat-y top center;
	color: #333;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	margin: 0;
	height: 100%;
}

#container {
	width:1020px;
	margin: 0 auto;	
}

h2 { font-size: 22px; color: #ff6731; }
h3 { font-size: 18px; color: #5d5d5d; }
h4, h5, h6 { font-size: 14px; color: #ff6731; }

p {
	margin: 5px 0px 5px 0px;	
}
	
#header {
	background-image: url(/img/site/header-bkg.jpg);
	background-repeat: repeat-x;
	height:132px;	
}

#header h1 {
	margin: 0px;
	padding: 0px;
	float: left;
	background-image: url(/img/site/logo.jpg);
	background-repeat: no-repeat;
	height:120px;	
	
}
#header h1 a {
	display: block;
	height: 100px;
	outline: none;
	text-indent: -9999px;
	width:330px;
	float: left;
}

#nav {
	width:800px;
	margin: 0 auto;
	padding: 10px 0px 50px 200px;
	font-size:22px;
	text-align:right;
}

.phone {
	color:#E7721F;
	font-style:italic;
}

/*#nav {
	float:right;
	font-size:22px;
	left:-200px;
	position:relative;
	top:50px;
	width:300px;
	z-index:2;
}*/

#content {
	clear:both;
	font-size: 12px;
	padding:20px 10px;
	width:650px;
	float:left;	
}

#content-bkg {
	margin-left:50px;
	width:930px;
}


#sidebar {
	float:right;
	padding: 0px 10px 0px 20px;
	margin-top: 20px;
	width:220px;
	border-left:1px solid #FF6632;
	margin-bottom: 20px;
}


#footercopy {
	width: 960px;
	height: 20px;
	clear: both;
	padding-top: 20px;
	margin: 0 auto;
}

#footercopy #copyright {
	font-size: 10px;
	text-align: left;
	width: 400px;
	height: 20px;
	float: left;
}

#footercopy #cms {
	width: 400px;
	height: 20px;
	float: right;
	text-align: right;
	font-size: 10px;
}



