/*
Name: Sliding Login Panel with jQuery 1.3.2
Author: Jeremie Tisseau
Author URI: http://web-kreation.com/
Script URI: http://web-kreation.com/index.php/tutorials/nice-clean-sliding-login-panel-built-with-jquery/
Date: March 26, 2009
Version: 1.0

	The CSS, XHTML and design is released under Creative Common License 3.0:
	http://creativecommons.org/licenses/by-sa/3.0/

*/ 

/***** clearfix *****/
.clear {clear: both;height: 0;line-height: 0;}
.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.clearfix {display:inline;}
/* 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 {	
	position: relative;
    top: 0;
    z-index: 999;
	top:-14px;
}

.tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 2px;
	width: auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#505050;
  	font-weight: bold;
	line-height: 28px;
	margin: 0;
	right: 0px;  
	text-align: center;
	cursor:pointer;
	z-index:-100;
}

.tab ul.login li.left {
  	background: url(../images/tab_l.jpg) no-repeat left 0;
  	height: 29px;
	width: 30px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li.right {
  	background: url(../images/tab_r.jpg) no-repeat left 0;
  	height: 29px;
	width: 30px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

.tab ul.login li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 28px;
  	background: url(../images/tab_m.jpg) repeat-x 0 0;
}

.tab ul.login li a {
	font-size:11px;
	color:#505050;
}

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

.tab .sep {color:#505050;}




/* sliding panel */
#toppanel {
    position: relative;
	_position:fixed;
	 /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    top:-4px;
    width: 100%;
    z-index: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
	
}


/*#panel {
	
	color: #999999;
	background: #f2f2f2;
	border:1px solid #e9e9e9;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	top:-14px;
}*/

#panel {
	
	color: #999999;
	background: #f2f2f2;
	border:1px solid #e9e9e9;
	overflow: hidden;
	position:relative;
	_position:fixed;
	z-index: 3;
	display: none;
	top:-14px;

}



#panel a {
	text-decoration: none;
	color: #15ADFF;
}

#panel a:hover {
	color: white;
}

#panel a-lost-pwd {
	display: block;
	float: left;
}

#panel .content {
	width: 890px;
	margin: 0 auto;
	padding:8px 0px 8px 0px;
	text-align: left;
	font-size:17px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#818181;
	
}

#panel .content .left {
	width: 137px;
	float: left;
	padding: 0px 15px 0px 5px;	
}

#panel .content .right {
	line-height:22px;
}



