/*
Theme Name : Pure CSS3 Sticky Footer
Author URI : http://themeforest.net/user/Keliah
Version : 1.2



TABLE OF CONTENTS

01 FOOTER - GENERAL STYLES
02 FOOTER - DROP DOWN MENU (DROP UP)
03 FOOTER - COLUMNS CONTENT


_______________________________________

01 FOOTER - GENERAL STYLES
_______________________________________
The #footer must stick to the bottom of the page, the fixed positionning is here necessary.
If you modify the width of the footer, you'll need to change the margin-left value to center it.
This value must be 50% of your width + 10px (because of the padding)*/
#footer
{
	position: fixed;
	bottom: 0px;
	margin: 0;
	width: 100%;
	min-width: 980px;
	height: 74px;
	padding: 0;
	text-shadow: 1px 1px 1px #204E79;
	background-image: url(../../images/footer-background.jpg);
	background-repeat: repeat-x;
	background-position: center 0;
	z-index: 99;
	font-family: ff-dax-web-pro,sans-serif;
}
#footer P
{
	color: #61ACD8;
	font-size: 17px;
	padding: 10px;
	line-height: 18px;
	margin-top: 21px;
	margin-left: 0px;
	text-align: center;
}
#footer H2
{
	font-size: 24px;
	line-height: 24px;
	color: #946136;
	letter-spacing: -1px;
	font-weight: 400;
	padding: 7px 10px;
}
#footer P A
{
	color: #F0EFEF;
	text-decoration: none;
}

#footer P A:Hover
{
	
	color: #F0EFEF;
	text-decoration: underline;
}

.clear
{
/*Use this class between rows of content when you use columns*/
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
