/*
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 {
  	background: #EEE;
	height: 22px;
	position: relative;
    top: 0;
/*    z-index: 999;*/
}

.tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 22px;
	width: auto;
  	font-weight: bold;
	line-height: 22px;
	margin: 0;
	right: 390px;
  	color: black;
  	font-size: 80%;
	text-align: center;
	padding:0;
}

.tab ul.login li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 22px;
/*  	background: url(../img/tab_m.png) repeat-x 0 0;*/
}

.tab ul.login li a {
	color: #333333;
}

/*.tab ul.login li a:hover {
	color: black;
}
*/
.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	cursor: pointer;
	display: block;
/*	width: 100px;*/
	position: relative;
	top: 1px;
	text-decoration: none;
}
.tab a.open{
	height: 33px;
	line-height: 20px !important;
}
.tab a.close {
	height: 30px;
	line-height: 70px !important;
}
.tab a.open {background: url(../img/bt_open.png) no-repeat center bottom;}
.tab a.close {background: url(../img/bt_close.png) no-repeat center bottom;}
/*.tab a:hover.open {background: url(../img/bt_open.png) no-repeat left -19px;}*/
/*.tab a:hover.close {background: url(../img/bt_close.png) no-repeat left -19px;}*/

/* sliding panel */
#toppanel {
    /*position: absolute;*/  /*Panel will overlap  content */
    position: relative;   /*Panel will "push" the content down */
    top: 0;
    width: auto;
/*    z-index: 999;*/
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom:18px;
    border:1px solid #E7E3D7;
  	border-bottom:0px solid black;
}

#panel {
	width: 100%;
	background: #EEEEEE;
	position: relative;
	display: none;
}

#panel a {
	text-decoration: none;
	color: #15ADFF;
}

#panel .content {
/*	width: 960px;*/
	margin: 0 auto;
/*	padding-top: 15px;*/
	text-align: left;
	font-size: 0.85em;
}
