/*
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 {
	height: 2em;
	position: relative;
	float: right;
	width: 100%;
    top: 0;
 /* position: absolute;
	z-index: 999; */
	}

.tab ul.login {
	position: relative;
  	float: right;
  	clear: right;
  	height: 2em;
	width: auto;
	margin: 0;
	}

.tab ul.company-nav {
	float: right;
  	height: 1.75em;
	width: auto;
	margin: 0 1em 0 0;
	}

.tab ul.login li,
.tab ul.company-nav li {
 	text-align: left;
  	padding: 0 6px;
	float: left;
	line-height: 2.25em;
	width: auto;
	font-size: .75em;
	}

.tab ul.login li a,
.tab ul.company-nav li a {
	width: auto;
	padding: .25em;
	}

.tab a.open, .tab a.close {
	height: 100%;
	line-height: 1.75em !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 100%;
	position: relative;
	}

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

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

#panel {
	width: 100%;
	height: auto;
	padding-bottom: 1em;
/*	background: url('../img/footer-bg-diamond.png') repeat 0 0; */
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	}

#panel h2#welcomeloginslide {
	font-size: 1.6em;
	padding: 0;
	margin: 0;
	text-shadow: none;
	border: none;
	}

#panel p {
	margin: 5px 0;
	padding: 0;
	}

#panel a {
	text-decoration: none;
	}

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

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

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

#panel .content form {
	margin: 0 0 10px 0;
	}

#panel .content form ul {
	margin-top: .5em;
	}

#panel .content form ul li {
	margin-bottom: .5em;
	}

#panel .content label {
	float: left;
	line-height: 1em;
	clear: both;
	width: 280px;
	display: block;
	}

#panel .content input.field {
	margin-right: 5px;
	margin-top: 4px;
	width: 200px;
	height: 18px;
	padding: .25em;
	font-size: 1em;
	}

/* BUTTONS */
/* Login and Register buttons */
#panel .content input.bt_login,
#panel .content input.bt_register {
	display: block;
	float: left;
	height: 2.5em;
	line-height: 1em;
	text-align: center;
	cursor: pointer;
	border: none;
	font-weight: bold;
	margin: .75em 0;
	padding: 0;
	}

#panel .content input.bt_login {
	width: 6em;
	}

#panel .content input.bt_register {
	width: 8em;
	}

#panel .lost-pwd {
	display: block;
	float:left;
	clear: right;
	padding: 15px 5px 0;
	font-size: 0.95em;
	text-decoration: underline;
	}