/*
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 {
	width: 960px;
	height: 25px;
	margin:0 auto;
	position: relative;
    top: 0;
	right:0;
    z-index: 1998;
}

.tab ul.login {
	width: auto;
  	height: 25px;
	margin: 0;
	display: block;
	text-align: center;
  	font-weight: bold;
  	color: white;
	position: relative;
	top:0;
	right: 0;
  	float: right;
  	clear: right;
}

.tab ul.login li.left {
	width: 14px;
  	height: 25px;
	margin: 0;
	padding: 0;
  	display: block;
	float: left;
  	background: url(/images/common/tab_l.png) left top no-repeat; 
}

.tab ul.login li.right {
	width: 12px;
  	height: 25px;
	margin: 0;
	padding: 0;
  	display: block;
	float: left;
  	background: url(/images/common/tab_r.png) left top no-repeat; 
}

.tab ul.login li {
	height: 19px;
 	text-align: left;
  	padding: 6px 6px 0 6px;
	display: block;
	float: left;
  	background: url(/images/common/tab_m.png) left top repeat-x;
}

.tab ul.login li a {
	color: #ffffff;
}

.tab ul.login li a:hover {
	color: ffffff;
	text-decoration:underline
}

.tab .sep {color:#75c4e4}

.tab a.close {
	padding:0 20px 0 0;
	cursor: pointer;
	display: block;
	position: relative;
	top: 0;
}
.tab a.close {background: url(/images/common/tub_btn_out.gif) right center no-repeat;}
.tab a:hover.close {background: url(/images/common/tub_btn_out.gif) right center no-repeat;}

.tab a.open {
	cursor: pointer;
	display: block;
	position: relative;
	top: 0;
}
.tab a.open {background:none;}
.tab a:hover.open {background:none;}

/* sliding panel */
#toppanel {
	width:980px;
    margin:0 auto;
    position: absolute;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    top: 0;
	left: 0;
    width: 100%;
    z-index: 1999;
    text-align: center;
	font-size:12px;
}

#panel {
	width: 980px;
    margin:0 auto;
	padding:10px 0 0 0;
    text-align: center;
	color: #999999;
	overflow: hidden;
	position: relative;
	z-index: 1997;
	display: none;
	color: white;
  	background: url(/images/common/login_tab.gif) left bottom no-repeat;
}
#panel h1 {
	margin:0 0 20px 0;
	font-size:16px;
	font-weight:bold;
}

#panel h2{
	margin:0 0 20px 0;
	font-size:12px;
	font-weight:bold;
}

#panel p {
	margin:0 0 20px 0;
	padding: 0;
}

#panel a {
	text-decoration: none;
	color: #15ADFF;
}

#panel a:hover {
	color: white;
}


#panel .panelcontent {
	width: 960px;
	margin:10px 0 20px 10px;
	*margin:15px 0 20px 10px;
	text-align:left;
	background:url(/images/common/login_tabBg.gif) center top repeat-y;
}
#panel .panelcontent a{ color:#ffff66; text-decoration:none;}
#panel .panelcontent a:activ{ color:#ffff66; text-decoration:none;}
#panel .panelcontent a:visit{ color:#ffff66; text-decoration:none;}
#panel .panelcontent a:hover{ color:#ffff66; text-decoration:underline;}

#panel .panelcontent .tab_contents_left {
	width: 300px;
	padding:0 20px;
	float: left; 
}

#panel .panelcontent .tab_contents_center {
	width: 200px;
	margin:0 20px;
	float: left;
}
#panel .panelcontent .tab_contents_center .lost-pwd {font-size:12px; margin:0 0 19px 0;}

#panel .panelcontent .tab_contents_right {
	width: 340px;
	margin:0 0 0 20px;
	float: left;
}

#panel .panelcontent form {
	margin: 0 0 10px 0;
}

#panel .panelcontent label {
	float: left;
	padding-top: 8px;
	clear: both;
	width: 200px;
	display: block;
}

#panel .panelcontent .field input{
	width: 175px;
	height: 20px;
	margin:0 0 10px 0;
	padding:8px 0 0 5px;
	font-size:12px;
	line-height:1;
	color:#666;
	float:left;
	border: 1px solid #cccccc;
	background: #ffffff;
}
#panel .panelcontent .field_answer{
	float:left;
	margin:0 0 10px 0;
}



/* BUTTONS */
/* Login and Register buttons */
#panel .panelcontent input.bt_login,
#panel .panelcontent input.bt_register {
	display: block;
	float: left;
	clear: left;
	width: 135px;
	text-align: center;
	cursor: pointer;
	border: none;
	font-weight: bold;
	margin: 10px 0;
}

#panel .panelcontent input.bt_login {
	width: 135px;
}

#panel .panelcontent input.bt_register {
	width: 135px;
}

