@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: Arial, Helvetica, sans-serif;
	background-color:#ccc;
}

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:800px;
}

.image {
	padding:25px 20px 5px 30px;
	margin:0;
	background-color:#ccc;
	width: 340px;
	float:left;
}
.text {
	padding:10px 10px 10px 10px;
	margin:0;
	float:right;
	width:160px;
	color:#6D44BA;
	
}

#content h1 {
	margin:0;
	padding-right:10px;
	text-transform:lowercase;
	font-size:2em;
	color: #6D44BA;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

#content p { margin:0; padding-top:10px; padding-bottom:10px;}

#content ul{
	margin:0;
	padding:0 0 0 0;
	color:#6D44BA;
	
}
#content li{
	margin:0 0 0 10px;
	padding:1px 0 0 0;
	color:#000000;
	list-style:url(images/list.jpg);
}

#bg{
	margin:0px 0 0 0;
	background-image:url(images/bg.jpg);
}

#footer {
	background: #999; /* for non-css3 browsers */

	filter: 	progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#333333'); /* for IE */

	background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#333)); /* for webkit browsers */

	background: -moz-linear-gradient(top,  #ccc,  #333); /* for firefox 3.6+ */


	position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;}
	
#text_footerLeft {
	float:left;
	padding:120px 30px 0 30px;
	text-transform:lowercase;
	color:#000000;
	font-size:11px;
}

#text_footerRight {
	float:right;
	padding:120px 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 */

