/*
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 {
	position:relative;
	margin: 0px auto;
    top: 0;
    z-index: 999;
	height:44px;
	background: url(../img/bg_loginform.png) repeat-x;
	background-position: 0px -138px;
}

/* sliding panel */
#toppanel {
    position: absolute;   /*Panel will overlap  content */
    /*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%;
	color: #999999;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	right:0px;
	background-color: #e12d5c;
}

#panel a {
	text-decoration: none;
	color: #FFFFFF;
}

#panel a:hover {
	color: white;
}

#panel .content {
	float: right;
	margin: 0px 170px 0px 0px;
	padding-top: 10px;
}

#panel .content form {
	margin: 0;
}

#panel .content label {
	float: left;
	display: block;
	color: #FFFFFF;
	font-size: 12px;
	margin: 0px 5px 0px 15px;
}

#panel .content .inputfield {
	float: left;
	border: 1px #ffdce5 solid;
	margin-right: 5px;
	width: 120px;
	height: 16px;
}

#panel .content a.lost-pwd {
padding-left		: 8px;
margin-left			: 8px;
border-left			: 1px solid #FFFFFF;
}

#panel .content a.lost-pwd:hover {
text-decoration		: underline;
}


/* BUTTONS */
/* Login and Register buttons */

.tab a {
	clear:right;
	display:block;
	float:right;
	height:44px;
	margin:0;
	position:relative;
	right:150px;
}

a.btn_login {
display					: block;
width					: 80px;
height					: 44px;
background				: url(../img/btn_login.png) no-repeat;
background-position		: 0px 0px;
}

a.btn_login:hover {
background-position		: 0px -44px;
}

a.btn_close {
display					: block;
width					: 80px;
height					: 44px;
background				: url(../img/btn_close.png) no-repeat;
background-position		: 0px 0px;
}

a.btn_close:hover {
background-position		: 0px -44px;
}

a.btn_sendtologin {
float					: left;
width					: 59px;
height					: 17px;
display					: block;
background				: url(../img/btn_sendtologin.gif) no-repeat;
background-position		: 0px 0px;
border					: 1px #616060 solid;
}

a.btn_sendtologin:hover {
background-position		: 0px -18px;
}



