/*
Item Name : Pure CSS3 Sticky Footer
Author URI : http://themeforest.net/user/Keliah
Item URI : http://codecanyon.net/item/pure-css3-sticky-footer/128701
Version : 1.4
*/

/*  _______________________________________

	01 FOOTER - GENERAL STYLES
    _______________________________________  */


/* The #cmsfooter must stick to the bottom of the page, the fixed positionning is here necessary. */

#cmsfooter {
	position: fixed;
	bottom: 0px;
	margin:0;
	left:0;
	right:0;
	width: 100%;
	min-width:980px;
	height: 40px;
	background:#161616;
	border-top: 1px solid #333333;
	padding:0;
	font-family:Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 1px #000;
	z-index: 900;
	
	/* CSS3 Stylings - Creates the double top border */
	-moz-box-shadow: 0px -1px 0px #161616;
	-webkit-box-shadow:  0px -1px 0px #161616;
    box-shadow:  0px -1px 0px #161616;
	
	/* CSS3 Stylings - Creates the gradient background */
	background: -moz-linear-gradient(top, #222222, #111111);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#222222), to(#111111));
}

/* General typography stylings, paragraphs and H2 tags */

#cmsfooter h2 {
	background: #222;
	border-bottom-style: none;
	font-size: 18px;
	line-height: 18px;
	color:#FF6600;
	letter-spacing:-1px;
	font-weight: bold;
	padding:0px 10px 0px 10px;
	margin:12px 0;
}

#cmsfooter p {
	color:#cccccc;
	font-size:12px;
	padding:0 10px 0 10px;
	line-height:18px;
	float:left;
	margin:10px 0;
}

#cmsfooter img {
	border:none;
}

#cmsfooter a {
	color:#FF6600;
	text-decoration:none;
}

#cmsfooter li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}

#cmsfooter .strong { /* Forcing a bold text */
	font-weight:bold;
}

#cmsfooter .italic { /* Forcing an italic text */
	font-style:italic;
}

#cmsfooter #cmssocial {
	float:right; /* Positionning of the social icons container */
	width:auto;
	margin:5px 15px 0px;
	padding:0px;
	overflow:hidden;
}

#cmsfooter #cmssocial li {
	margin-right:12px; /* 12px is the space between each one of them */
	_margin-right:0px; /* IE6 only */
	float:left;
	width:24px;
	padding:0px;
	height:32px;
	list-style:none;
}

#cmsfooter #cmssocial li:hover {
	margin-top:-1px; /* Icons move 1px up on hover, you can remove this if you don't like */
}

#cmsfooter_menu {
	margin: 0;
	padding: 0;
	width:auto;
}

#cmsfooter_menu li {
	list-style: none;
	float: left;
	font-size:12px;
	padding: 12px 14px 14px 14px;
	border-right:1px solid #111111;
	border-left:1px solid #444444;
	background:#3E3E3E;
	
	/* CSS3 Stylings - Creates the gradient background */
	background: -moz-linear-gradient(top, #3E3E3E, #313131);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#3E3E3E), to(#313131));
}

#cmsfooter_menu li:hover {
	background:#313131;
	/* CSS3 Stylings - Creates the gradient background */
	background: -moz-linear-gradient(top, #313131, #3E3E3E);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#313131), to(#3E3E3E));
}

#cmsfooter_menu li a {
   display: block;
   color: #cccccc;
   text-decoration: none;
}

#cmsfooter_menu li a:hover {
   color: #ffffff;
}

/* Drop Up */

/* You may have heard about drop down menus, the principle is here the same except that
   the content is going up instead of down */
   
#cmsfooter_menu li ul.dropup {
   display: none; 
   width: 10em; /* Width for Opera */
}

#cmsfooter_menu li:hover ul.dropup  {
	display: block;
	position: absolute;
	margin: 0 0 0 -16px;
	bottom:40px; /* Distance to the bottom of the browser */
	background-color:#222222;
	border: 1px solid #111111;
	border-bottom:none;

	/* CSS3 Stylings - Rounded Corners */
	-moz-border-radius: 7px 7px 0px 0px;
	-webkit-border-radius: 7px 7px 0px 0px;
	border-radius: 7px 7px 0px 0px;
}

#cmsfooter_menu li:hover li { /* Drop up default lists */
	float: none;
	background:none;
	border:none;
	border-bottom:1px solid #161616;
	padding:12px 10px 12px 10px;
}

#cmsfooter_menu li:hover a {
	color: #aaaaaa;
}

#cmsfooter_menu li:hover a:hover {
	color: #eeeeee;
}

#cmsfooter_menu li:hover p {
	margin:6px 0;
}

/* Right Panel */

#cmsfooter_menu .right { /* Use the right class to push the content to the right */
	float:right;
	right:0px;
	margin-right:2px;
}

/*  _______________________________________

	03 FOOTER - COLUMNS CONTENT
    _______________________________________  */

/* Following the principles of the 960 grid, we define here 3 containers
   which can contain from 1 to 3 columns */
   
#cmsfooter .dropdown_1column, 
#cmsfooter .dropdown_2columns, 
#cmsfooter .dropdown_3columns {
	margin:4px auto;
	position:absolute;
	padding:10px 5px 10px 5px;
	display:none;
	text-align:left;
}

/* Drop Downs Sizes */

#cmsfooter .dropdown_1column {width: 140px;}
#cmsfooter .dropdown_2columns {width: 280px;}
#cmsfooter .dropdown_3columns {width: 420px;}

/* Showing Drop Down on Mouse Hover - Left aligned */

#cmsfooter_menu li:hover .dropdown_1column, 
#cmsfooter_menu li:hover .dropdown_2columns, 
#cmsfooter_menu li:hover .dropdown_3columns {
	display: block;
	position: absolute;
	margin: 0 0 0 -16px;
	bottom:40px;
	background-color:#222222;
	border: 1px solid #111111;

	/* CSS3 Stylings - Rounded Corners */
	-moz-border-radius: 7px 7px 0px 0px;
	-webkit-border-radius: 7px 7px 0px 0px;
	border-radius: 7px 7px 0px 0px;
}

/* Columns sizes, they have to be placed within a dropdown_columns DIV */

#cmsfooter .col_1,
#cmsfooter .col_2,
#cmsfooter .col_3 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}
#cmsfooter .col_1 {width:130px;}
#cmsfooter .col_2 {width:270px;}
#cmsfooter .col_3 {width:410px;}

/* Lists stylings */

#cmsfooter_menu li ul.simple { /* Reset stylings for other lists inside columns */
	margin-left:5px;
}

#cmsfooter_menu li ul.simple li {
	border:none;
	padding:0px;
	width:120px;
	line-height:24px;
	margin-left:5px;
}

/* @group CopyRight */

#bottomBar { 
	position: fixed; 
	bottom: 0; 
	margin:0;
	left: 0; 
	right: 0; 
	width: 100%;
	min-width:980px;
	height: 27px; 
	background:#343a40;
	border-top: 1px solid #333333;
	padding: 0 10px 0 20px; 
	text-shadow: 1px 1px 1px #000;
	font-size: 80%; 
	z-index: 901; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	white-space: nowrap; 
	-moz-box-shadow: 0px -1px 0px #161616;
	-webkit-box-shadow:  0px -1px 0px #161616;
    box-shadow:  0px -1px 0px #161616;
	background: -moz-linear-gradient(top, #343a40, #111111);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#343a40), to(#111111));	
	line-height: 1.625em;
}

#bottomBar a { 
	color: white; 
	text-decoration: none;
}

.copyright {
	color: white; 
	left: 10px;
}

.copyright_build { 
	color: white; 
	font-weight: lighter;
}

.copyright_powered { 
	color: white;
	position: fixed;
	right: 10px;
	font-size: 12px;
}

/* @end */
