/*
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-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: url(../images/tab_b.png) repeat-x 0 0;
	height: 20px;
	position: relative;
    top: 0;
    z-index: 999;
}

ul.login {
	position: absolute;
	right: 0;
	top: 90px;
  	height: 30px;
  	font-weight: bold;
	line-height: 29px;
	margin: 0;
  	color: white;
	text-align: center;
	list-style: none;
}

ul.login li {
	float: left; 
	margin: 0 0 0 5px; 
	position: relative;
	padding: 0;
	height: 29px;
	line-height: 29px;
}

ul.login li:hover {
	background: url('../images/navarrow.gif') no-repeat center;
}

ul.login a {
	font-size: 13px;  
	line-height: 29px; 
	font-weight: bold; 
	color: #FFF; 
	text-decoration: none;
	padding: 8px 0 8px 0;
	cursor: pointer;
}

ul.login li a:hover {
	color: #fff;
	text-decoration: none;
}

/* sliding panel */
#toppanel {
    position: absolute;
    top: 120px;
    width: 100%;
    z-index: 999;
    text-align: center;
    margin: auto;
}

#panel {
	width: 100%;
	margin: auto;
	height: 250px;
	color: #999999;
	background: #8f3e79;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panel h1 {
	font-size: 1.6em;
	padding: 5px 0 10px;
	margin: 0;
	color: white;
}

#panel h2{
	font-size: 1.2em;
	padding: 10px 0 5px;
	margin: 0;
	color: white;
}

#panel a:hover {
	color: white;
}

#panel .content {
	width: 900px;
	margin: 0 auto;
	padding: 15px 0 0 0;
	text-align: left;
	font-size: 0.85em;
}

#panel .content .left {
	width: 280px;
	height: 220px;
	float: left;
	padding: 0 10px 0 10px;
	margin: 0;
}

#panel .content .middle {
	width: 278px;
	height: 220px;
	float: left;
	padding: 0 10px 0 10px;
	margin: 0;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

#panel .content .right {
	width: 280px;
	height: 220px;
	float: right;
	padding: 0 10px 0 10px;
	margin: 0;
}

#panel .content label {
	float: left;
	clear: both;
	width: 280px;
	display: block;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	margin: 5px 0 3px 0;
}

#panel .content input{
	border: 1px #ccc solid;
	background: #fff;
	margin-right: 5px;
	margin-top: 4px;
	width: 200px;
	height: 16px;
}
