/*
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:42px;
margin:auto;
position:relative;
top:0;
width:940px;
z-index:999;
}

.tab ul.login {
	display: block;
  	float: right;
  	clear: right;
  	height: 42px;
	width: auto;
	line-height: 30px;
	margin: 0;
	right: 150px;
  	color: white;
	text-align: center;
}

.tab ul.login li {
 	text-align: left;
  	padding: 0px;
	display: block;
	float: left;
	height: 30px;
}

.tab ul.login li a {
	color: white;
}

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

.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	height: 20px;
	line-height: 10px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 100px;
	top: 11px;
}

.tab a.open {background-image:url(img/login/images/login.png) none repeat scroll 0 0 ;}
.tab a.close  {background-image:url(img/login/images/login.png) none repeat scroll 0 0 ;}
.tab a:hover.open {background-image:url(img/login/images/login.png) none repeat scroll 0 0 ;}
.tab a:hover.close {background-image:url(img/login/images/login.png) none repeat scroll 0 0 ;}
/* 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: 950px;
	height: 230px;
	color: white;
	background: #A1CF3D url(../images/fondo_login.png)repeat scroll 0 0;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	margin:auto;
}

#panel h1 {
	font-size: 25px;
	margin: 0;
	color: #000;
	line-height:28px;
	font-family:"Soho Gothic Pro Medium";
	display:inline;
	font-weight:normal;
}

#panel h2{
	font-size: 15px;
	margin-top:15px;
	margin-bottom:10px;
	color:#333;
	height:auto;
	font-family:"Soho Gothic Pro Light";
	font-weight:normal;
}

#panel h3{
	font-size: 25px;
	margin: 0;
	color:white;
	line-height:28px;
	font-family:"Soho Gothic Pro Thin";
	display:inline;
	font-weight:normal;
}

#panel p {
	margin-top:30px;
	margin-bottom:0px;
	padding: 0;
	font-family:"Soho Gothic Pro Light";
	font-weight:normal;
	color:#000;
}
#panel p.grey {
	margin-top:10px;
	margin-bottom:0px;
	padding: 0;
	font-family:"Soho Gothic Pro Light";
	font-weight:normal;
	color:#000;
}

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

#panel a:hover {
	color: #000;
}

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

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

#panel .content .left {
	width: 280px;
	float: left;
	padding: 0 15px;
	height:210px;
	border-left: 0px ;
}
#panel .content .midle {
	width: 280px;
	float: left;
	padding: 0 15px;
	height:210px;
	border-left: 1px dashed #658918;
	border-right: 1px dashed #658918;
}

#panel .content .right {
}

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

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

#panel .content input.field {
	border: 1px #1A1A1A solid;
	background: #414141;
	margin-right: 5px;
	margin-top: 4px;
	width: 200px;
	color: white;
	height: 16px;
}

#panel .content input:focus.field {
	background: #545454;
}

/* 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(img/login/images/bt_login.png) no-repeat 0 0;
}

#panel .content input.bt_register {
	width: 94px;
	color: white;
	background: transparent url(img/login/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;
}
