/*
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/

*/
/* Toevoegingen */
.left img { float:left;}

.input_top {

	background-image:url(../images/input_bg.jpg);
	background-position: top left;
	background-repeat: no-repeat;

	width: 280px;
	height: 30px;

	margin: 5px 0px;
	padding: 3px;

	display: block;
	float:left;
}

.input_top input{

	border: 0px solid #ddd;
	text-align: right;
	width: 270px;
	color:#666666;

	background: #fff;
	font-family: Arial, Verdana, sans-serif;
    font-size: 120%;

	padding-top: 3px;
}



/* Panel Tab/button */
.tab {
	height: 13px;
    z-index: 999;
	background-color: #fff;
	border-bottom: 6px solid #b4deea;

}

.login {
	display: block;
	float: right;
  	height: 10px;
	width: 190px;
	text-align:right;
	margin-right: 10px;
	margin-top: 5px;


}

.login a{
	text-decoration: none;
}

.login_container {
	width: 960px;
	margin: 0 auto;


}





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

#panel {
	width: 100%;
	height: 235px;
	color: #333333;
	background: #fff;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}



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

#panel .content .left {
	width: 350px;
	float: left;
	margin-right: 18px;

}

#panel .content .mid {
	width: 280px;
	float: left;
	padding: 0px;
	margin-right: 18px;

}

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

}

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

#panel .content label {
	float: left;
	padding-top: 8px;
	clear: both;
	width: 280px;
	display: block;
}



/* BUTTONS */
/* Login and Register buttons */
#panel .content input.bt_login,
#panel .content input.bt_register {
	display: block;
	float: left;
	clear: left;
	height: 24px;
	text-align: center;
	cursor: pointer;
	border: none;
	font-weight: bold;
	margin: 10px 0;
}

#panel .content input.bt_login {
	width: 74px;
	background: transparent url(../images/bt_login.png) no-repeat 0 0;
}

#panel .content input.bt_register {
	width: 94px;
	color: white;
	background: transparent url(../images/bt_register.png) no-repeat 0 0;
}

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

