/**
 * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
 * 
 * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
 * License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
 *
 * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */
html,
body {
	margin:0;
	padding:0;
	height:100%;
}
#wrapper {
	min-height:100%;
	position:relative;
}
#header {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 40px;
	text-align: center;
	color: #F6E67A;
	font-family: "felt-tip-roman", sans-serif;
	font-size: 4em;
	font-weight: heavy;
	text-shadow: 5px 5px 8px #000000;
	line-height: 60px;
	max-width: 95%;
	height: auto;
}
#content {
	padding-bottom: 100px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
#content p {
	font-size: 18px;
}



.Videos {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	width: 720px;
	height: auto;
}

#footer {
	background: #ffab62;
	width: 100%;
	height: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #F8EEE5;
	font-size: 0.8em;
	color: #000000;
	text-align: center;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#wrapper #sideRight {
	float: right;
	padding-right: 20px;
}
