@charset "UTF-8";
/* CSS Document */

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

Thanks, Steve!!
*/

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

body {
	margin:0;
	font-size:0.9em;
	line-height:20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #666;
}

html, body, #wrap {height: 100%;}

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

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


#content {
	margin:0 auto 0 auto;
	padding:10px 0 50px 0;
	width:700px;
}

.image {
	padding:25px 10px 5px 20px;
	margin:0;
	background-color:#666666;
	float:left;
}
.text {
	padding:30px 10px 10px 10px;
	margin:0;
	float:left;
	width:150px;
	color:#634680;
	
}
#content h1 {
	margin:0;
	padding-right:10px;
	text-transform:lowercase;
	font-size:2em;
	color: #634680;
}
#content p { margin:0; padding-top:10px; padding-bottom:10px;}
#content ul{
	margin:0;
	padding:0 0 0 0;
	color:#634680;
	
}
#content li{
	margin:0 0 0 10px;
	padding:1px 0 0 0;
	color:#000000;
	list-style:url(images/list.jpg);
}

#footer {
	background: #666666 url('images/footer.jpg') repeat-x;
	position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;}
	
#text_footerLeft {
	float:left;
	padding:50px 30px 0 30px;
	text-transform:lowercase;
	color:#000000;
	font-size:11px;
}

#text_footerRight {
	float:right;
	padding:50px 30px 0 30px;
	text-transform:lowercase;
	color:#000000;
	font-size:11px;
	text-align:right;
}
#text_footer a { color:#FFFFFF;}
#text_footer a:hover { text-decoration:none;}
	

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