/*  
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, body, #wrap {height: 100%;}

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

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

#footer {position: relative;
	margin-top: -152px; /* negative value of footer height */
	height: 152px;
	clear:both;} 

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

/* -----------------------------------*/
/* ---------->>> GLOBAL <<<-----------*/
/* -----------------------------------*/

body {
	background-color: #4B5C09;
	background-image: url(../images/bkgrd.png);
	background-repeat: repeat-x;
	background-position: center top;
}
#left {
	height: 152px;
	width:294px;
	float:left;
	background-image: url(../images/footgrass.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
#right {
	height: 152px;
	width:257px;
	float:right;
	background-image: url(../images/footbird.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}
#icon {
	width:371px;
	height:245px;
	float:left;
	margin-left: 0px;
	background-image:url(../images/tree.png);
	background-repeat: no-repeat;
	background-position:left top;
}
form {
		margin-top: 20px;
                margin-left: 245px;
                margin-bottom: 20px;
		width: 520px;

		font-family: Arial, Helvetica, sans-serif;
		font-weight:bold;
		font-size : 12px;
		padding:25px 0 25px 25px;
		height: 360px !important;

}
#result {
		margin-left: 200px;
		margin-top:20px;
		width: 520px;
		height: 20px !important;
		text-align:center;
		font-family: Arial, Helvetica, sans-serif;
		font-weight:bold;
		font-size : 12px;
		padding:65px 0 65px 25px;
}
.error {
		font-family: Arial, Helvetica, sans-serif;
		font-size : 12px;
		color:#FFAA00;
		padding:0px;
		font-weight:bold;
}
input,
textarea {
		width:450px;
		font:16px/16px 'verdana', courier, monospace;
		color:#8D952E;
		padding:6px;
		margin:3px 0 3px 10px;
		border:1px solid #8D952E;
		background-color: #626814;
}
input:hover,
textarea:hover {
		width:450px;
		font:16px/16px 'verdana', courier, monospace;
		color:#626814;
		padding:6px;
		margin:3px 0 3px 10px;
		border:1px solid #626814;
		background-color: #8D952E;
}
input:focus,
textarea:focus {
		width:450px;
		font:16px/16px 'verdana', courier, monospace;
		color:#626814;
		padding:6px;
		margin:3px 0 3px 10px;
		border:1px solid #626814;
		background-color: #8D952E;
}
input[type="submit"] {
		background: #787E22;
		color: #FFF;
		width: 98%;
		padding: 15px;
		float:right;
}

