/*  
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 {
	height: 100%;
	font-family:Arial, Helvetica, Verdana, Tahoma, Sans-Serif;
	font-size:14px;line-height:18px;color:#666;
}

h1, h1 a, h1 a:visited{font-size:22px;font-weight:400;color:#663;margin:0 0 12px;padding-bottom: 10px;font-weight:normal;text-decoration:none;padding:3px 6px;}
h1 a:hover{padding:3px 6px;}
h2{font-size:20px;font-weight:400;color:#663;margin:10px 0; }
h3,h4{font-size:15px;color:#517096;font-weight:400}
h5{font-size:15px;color:#999;font-weight:400;font-style:italic;font-family:georgia, times;padding:10px 0 20px}
h5 a,h5 a:visited{font-color:#09f}
ol li{margin-left:2em}
ul li{margin-left:2em;padding:3px 0;}
ul.regular_list li{margin-left:2em;padding:1px;}
img {border:0;}
a, a:visited{color:#663;text-decoration:underline;padding:3px 3px;border:0;font-weight:bold;}
a:hover{color:#693;text-decoration:none;-moz-border-radius:5px;-webkit-border-radius:5px;padding:3px 3px}
input, textarea {width:310px;font-size:18px;padding:4px;border:1px solid #222;}
button{text-align:right;color:#fff;background-color:#693;border:1px solid #e1e1e1;padding:7px 15px;font-size:16px;}
.radio{width:20px;}
.radio_span{margin-right: 50px;}
p {padding:0 0 13px;}

#registration_form, #registration_notice {float:left;width:350px;padding: 0 30px 0 0;}
#registration_notice:after{clear:both;}

.content_left {float:left;width:550px;padding: 0 30px 0 0;}
.content_right {float:left;width:400px;padding: 0 30px 0 0;}
.content_right img {border:1px solid black;}
.content_right:after{clear:both;}

#wrap {min-height: 100%;}

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

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

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}



/* IMPORTANT

You also need to include this conditional style in the <head> of your HTML file to feed this style to IE 6 and lower and 8 and higher.

<!--[if !IE 7]>
	<style type="text/css">
		#wrap {display:table;height:100%}
	</style>
<![endif]-->

*/