/*
Name: Sliding Login Panel with jQuery 1.3.2
Author: Jeremie Tisseau
Author URI: http://web-kreation.com/
Date: March 26, 2009
Version: 1.0

	Copyright 2009 Jeremie Tisseau
	"Sliding Login Panel with jQuery 1.3.2" is distributed under the GNU General Public License version 3:
	http://www.gnu.org/licenses/gpl-3.0.html
*/

/***** clearfix *****/
.clear {clear: both;height: 0;line-height: 0;}
.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
.clearfix {height: 1%;}
.clearfix {display: block;}

/* Panel Tab/button */

.tab {
	height: 25px;
	position: relative;
    top: 0;
    z-index: 999;
}

.tab ul.login {
	display: block;
	position: absolute;
  	float: right;
  	clear: right;
  	height: 25px;
	line-height: 25px;
	margin: 0;
	right: 0;
  	color: white;
	text-align: center;
	overflow: hidden;
}

.tab ul.login li {
 	text-align: center;
	display: block;
	float: left;
	height: 25px;
		background: #272727;
		padding-top: 2px;
}

.tab ul.login li a {
	color: #FFF;
}

.tab ul.login li a:hover {
	color: white;
}

.tab ul.login #toggle a {
	padding-top:1px;
}

.tab a.open, .tab a.close {
	height: 20px;
	line-height: 20px !important;
	padding-left: 20px !important;
	cursor: pointer;
	display: block;
	width: 120px;
	position: relative;
}

.tab a.open {background: url(../images/bt_open.png) no-repeat 10px 1px;}
.tab a.close {background: url(../images/bt_close.png) no-repeat 10px 1px;}
.tab a:hover.open {background: url(../images/bt_open.png) no-repeat 10px -19px;}
.tab a:hover.close {background: url(../images/bt_close.png) no-repeat 10px -19px;}

/* sliding panel */
#foot_global {
    position: fixed;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    width: 100%;
    z-index: 999;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
		bottom: 0;
}
*:first-child+html #foot_global {
    position: inherit;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    width: 100%;
    z-index: 999;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
		bottom: 0;
		right: 0;
}
#panel {
	width: 100%;
	height: 315px;
	background: #272727;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	text-align: left;
	color: #CCC;
	text-align: center;
}
#panel .content {
	width: 945px;
	text-align: left;
	margin: 0 auto;
}
