/**
 * 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%;
	background-image:url(http://www.customfloaters.com/background.jpg);
	background-size:100%;
	background-attachment:fixed;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#fff;
}
#wrapper {
	min-height:100%;
	position:relative;
}
#header {
	/*background:#ededed;
	padding:10px;*/
	margin-left:auto;
	margin-right:auto;
	padding-top:10px;
	text-align:center;
}
#menu {
	background-image:url(http://www.customfloaters.com/images/background/menu-bar2.png);
	background-repeat:repeat-x;
	/*background-size:100%;*/
	height:60px;
	text-align:center;
	font-weight:bold;
	margin-top:-20px;
	padding-top:20px;
}
#presentation-box {
	background-image:url(http://www.customfloaters.com/images/background/presentation-box.jpg);
	background-size:2000px;
	background-repeat:no-repeat;
	height:250px;
	margin-top:-30px;	
}
#presentation-box .image-box {
	float:right;
	width:50%;
	text-align:right;
	margin-top:5px;
}
#presentation-box .text-box {
	float:right;
	width:50%;
	margin-top:0;
}
#presentation-box p {
	margin-left:5px;
	margin-top:10px;
	padding:5px 0 0 10px;
	font-size:18px;
	font-weight:bold;
	font-style:italic;
	line-height:1.3em;
	text-align:left;
}

#black-box {
	background-color: black;
	/*background-image:url(http://www.customfloaters.com/images/background/presentation-box.jpg);*/
	background-size:2000px;   
	background-repeat:no-repeat;
	height:248px;        
	margin-top:0px;
}
/*#black-box .image-box {
	float:right;
	width:20%;
	text-align:right;
	margin-top:5px;
}*/
#black-box .text-box {     
	float:right;
	width:100%;
	margin-top:0;
} 
#black-box p {
	margin-left:5px;
	margin-top:10px;
	padding:5px 0 0 10px;
	font-size:18px;
	font-weight:bold;
	font-style:italic;
	line-height:1.3em;
	text-align:center;
	color: yellow;
}

#content {
	padding-bottom:80px; /* Height of the footer element */
	padding-top:20px;
	font-size:14px;
	width:1100px;
	/*background-color:#fff;  FOR TESTING PURPOSES ONLY */
	margin-left:auto;
	margin-right:auto;
}
#content .boxleft {
	float:right;
	width:366px;
}
#content .boxcenter {
	float:right;
	width:366px;
}
#content .boxright {
	float:right;
	width:366px;
}
.footer {
	/*olor:#fff;
	font-size:12px;
	font-weight:bold;
	text-align:center;
	background:#000000;
	width:100%;
	height:80px;
	position:absolute;
	bottom:0;
	left:0;*/
	/*position: fixed;*/
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #000000;
  text-align: center;
	margin-top: 280px;
    font-size: 14px;
}

/* COLORS, LINKS & MISC STYLES */
.red {
	color:#F5060A;
}
.itemclear {
	clear:both;
}
a, a:link {
	color:#fff;
	text-decoration:none;
}
a, a:visited {
	color:#fff;
}
a, a:hover {
	color:#f4070b;
	text-decoration:underline;
}
a, a:active {
	color:#f8090d;
}