/*
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 {
  	background: #474c50;
	background: -moz-linear-gradient(top, #474c50, #303537);
	background: -webkit-gradient(linear, center top, center bottom, from(#474c50), to(#303537));
	background: -webkit-linear-gradient(top, #474c50 0%, #303537 100%);
	background: -o-linear-gradient(top, #474c50 0%, #303537 100%);
	background: -ms-linear-gradient(top, #474c50 0%, #303537 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474c50', endColorstr='#303537',GradientType=0 );
	background: linear-gradient(top, #474c50 0%, #303537 100%);
	border-top:1px inset #27292c;
	-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.3);
	-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.3);
	box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.3);
	position: relative;
    top: 0;
    z-index: 999;
}
.tab .panelContent, #panel .panelContent { width:810px; margin:0 auto}
.tab p {font-family:"Times New Roman", Times, serif; font-size:18px; width:435px; float:left; margin-top:12px; text-align:left}
.tab p.btnBlueBg, #panel form input.btn_envoi {
	width:310px;
	height:24px;
	padding-top:4px;
	margin-top:6px;
	background: #3f96bd;
	background: -moz-linear-gradient(top, #3f96bd, #236c93);
	background: -webkit-gradient(linear, center top, center bottom, from(#3f96bd), to(#236c93));
	background: -webkit-linear-gradient(top, #3f96bd 0%, #236c93 100%);
	background: -o-linear-gradient(top, #3f96bd 0%, #236c93 100%);
	background: -ms-linear-gradient(top, #3f96bd 0%, #236c93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f96bd', endColorstr='#236c93',GradientType=0 );
	background: linear-gradient(top, #3f96bd 0%, #236c93 100%);
	-webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.63), inset 0 1px 0 #abd1e2;
	-moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.63), inset 0 1px 0 #abd1e2;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.63), inset 0 1px 0 #abd1e2;
	border:1px inset #252d31;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border-radius:20px;
	text-align:center
}
.tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 42px;
	width: 365px;
	margin-top: 1px;
	padding-right:10px;
}

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

.tab ul.login li a {
	color: #fff;
	font-family:"Times New Roman", Times, serif; font-size:18px;
	padding-top: 5px;
}

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

.tab .sep {color:#414141}

.tab a.open, .tab a.close {
	height: 30px;
	line-height: 20px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 362px;
	position: relative;
	top: 6px;
}

.tab a.open {background: url(../images/icons.png) no-repeat 0 -138px;}
.tab a.close {background: url(../images/icons.png) no-repeat 0 -138px;}
.tab a:hover.open {background: url(../images/icons.png) no-repeat 0 -138px;}
.tab a:hover.close {background: url(../images/icons.png) no-repeat 0 -138px;}

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

#panel {
	width: 100%;
	height: 255px;
	color: #999999;
	background: #303537;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}
#panel form textarea, #panel form input {
	background:#fff;
	border:1px solid#000;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	color:#727272;
	font-family:Helvetica, Arial, sans-serif;
	font-size:16px;
	padding:5px;
	margin-top: 9px;
}
#panel form textarea { width:383px;height:135px;}
#panel form input { width:297px; height:18px;}
#panel form input.btn_envoi { color:#fff; padding-top:5px; cursor:pointer;height:29px; font-family:"Times New Roman", Times, serif; font-size:18px; margin-top:10px;line-height: 15px;}
#panel form #leftFields {float:left; width:393px;margin-right: 46px;}
#panel form #rightFields {float:left; width:317px;}