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

A:link { text-decoration: none; }
A:active { text-decoration: none; }
A:visited { text-decoration: none; }

/* Panel Tab/button */
.tab {
  	background: url(../imgs/tab_b.png) repeat-x 0 0;
	height: 44px;
	position: relative;
    top: 0;
    z-index: 999;
}

.tab ul.login {
	display: inline;
	position: absolute;
  	height: 28px;
  	left: 791px;
	width: auto;
  	font-weight: bold;
	line-height: 28px;
  	color: white;
  	font-size: 12px;
	text-align: center;
	margin:0;
}

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

.tab .sep {color:#414141}
.tab a.open, .tab a.close {
	height: 20px;
	line-height: 20px !important;
	padding-left: 30px !important;
	cursor: pointer;
	display: block;
	width: 100px;
	position: relative;
	top: 4px;
}

.tab a.open {background: url(../imgs/bt_open.png) no-repeat left 0;}
.tab a.close {background: url(../imgs/bt_close.png) no-repeat left 0;}
.tab a:hover.open {background: url(../imgs/bt_open.png) no-repeat left -19px;}
.tab a:hover.close {background: url(../imgs/bt_close.png) no-repeat left -19px;}

/* sliding panel */
#toppanel {
    position: relative;   /*Panel will "push" the content down */
    width: 1086px;
    z-index: 999;
    text-align: center;
    margin-bottom:-14px;
}

#panel {
	width: 100%;
	height: 250px;
	color: #999;
	background: #1E1E1E url(../imgs/tab_bgr.png) bottom right repeat-x;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
}

#panel h1 {
	font-size: 1.6em;
	padding: 0 0 10px;
	margin: 0;
	color: white;
	width:350px;
}

#panel h2{
	font-size: 1.2em;
	padding: 10px 0 5px;
	margin: 0;
	color: white;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
}

#panel p {
	margin: 3px 0;
	padding: 0;
	line-height: 12px;
}
#panel a:hover {color: white;}
#panel a-lost-pwd {
	display: block;
	float: left;
}
#panel .content {
	width: 1086px;
	margin-top: 35px;
	text-align: left;
	font-size: 0.85em;
}


#panel .content div {
	padding-left:40px;
	float:left;
/* 	height: 200px; */
}


#panel .content .gl_left {
	text-align: justify;
	width:458px;
	padding-right: 41px;
	border-right: 1px solid grey;
}

#panel .content .gl_center {
	width:183px;
	padding: 0 41px 0 42px;
/* 	border: 1px solid white; */
}
#panel .content .gl_right {
	width:183px;
	padding-left: 41px;
	border-left: 1px solid grey;
	height: 200px;
}
#panel .content .gl_right.cm {
	width:461px;
}

#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: 4px;
	margin-top: 4px;
	width: 180px;
	color: white;
	height: 16px;
	padding-left: 3px;
}

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

/* BUTTONS */
/* Register, Login and Lost-PWD buttons */

#panel .content .button{
	display:inline;
	clear:left;
	text-align:center;
	cursor:pointer;
	border:none;
	font-weight:bold;
}

#panel .content input.button.register {
	float: left;
	width: 90px;
	margin: 13px 0 0 1px;
}

#panel .content input.lost-pwd,
#panel .content input.button.login {
	float: right;
	clear:none;
	width: 80px;
	margin:0;
}
/*
#panel .content input.button.comment,
#panel .content input.button.change,
#panel .content input.button.logout  {float:none!important;display:inline!important;}
*/

#panel .content input.button.logout  {	background-color: #933029; display: inline; float:right; margin-right: 9px;}
#panel .content input.button.cancel  {  background-color: #933029;}
#panel .content input.button.change  {	background-color: #adad00; float:none; margin-left: 130px;}
#panel .content input.button.changepwd { background-color: #adad00}
#panel .content input.button.comment  {	margin-left: 2px;  }

#panel .content input.lost-pwd {
	clear:none;
	display: inline;
	float: left;
	width: 92px;
	text-align: center;
	margin:0 0 0 1px;
	cursor: pointer;
	background-color: #933029;
}

#panel .content input.lost-pwd:hover,
#panel .content input.button.login:hover,
#panel .content input.button.logout:hover,
#panel .content input#cm_send:hover,
#panel .content input.button.changepwd:hover,
#panel .content input.button.change:hover,
#panel .content input.button.cancel:hover,
#panel .content input.button.register:hover {	background-color: #545454;}

#panel .content input#cm_comment,
#panel .content input.lost-pwd,
#panel .content input#cm_send,
#panel .content input.button.login,
#panel .content input.button.logout,
#panel .content input.button.register,
#panel .content input.button.change {	font-size: 11px;}
#cm_send { width:110px!important; }
#cm_comment{ 
	border:0; 
	margin-top:4px;
}
