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

/***** 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:#141e38;
	height:60px;
	float:left;
	position: relative;
    top:0;margin:0;
    z-index: 999;width:100%;
	padding:20px 0;
	min-width:1200px;
}

.tab a.open {
	height: 59px;
	width:210px;
	position:absolute;
	left:0;
	top:20px;
	display:block;
	text-indent:-999px;
	overflow:hidden;
	background:url(../images/tab_plus.png) no-repeat;
	border:none;
}

.tab a.close {
	height: 59px;
	width:210px;
	position:absolute;
	left:0;
	top:20px;
	display:block;
	text-indent:-999px;
	overflow:hidden;
	background:url(../images/tab_minus.png) no-repeat;
	border:none;
}

/* sliding panel */
#toppanel {
	top:0px;
	width: 100%;
	z-index: 999;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#panel {
	width: 100%;
	height:280px;
	color: #999999;
	background: #1f2c4b;
	overflow: hidden;
	position: relative;
	z-index: 3;
	display: none;
	border-bottom:1px solid #2f364d;
	padding:20px 0;
}

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

#panel h2{
	font-size: 1.2em;
	padding: 10px 0 5px;
	margin: 0;
	color: white;
}

#panel p {
	margin: 5px 0;
	padding: 0;
}

#panel a {
}

#panel a:hover {
	color: white;
}

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

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

#panel .content .left {
	width: 200px;
	float: left;
	padding: 10px 19px 10px 0;
	border-right: 1px solid #2f364d;
	height:260px;
}

#panel .content .mid {
	width: 200px;
	float: left;
	padding: 10px 19px;
	border-right: 1px solid #2f364d;
	height:260px;
}

#panel .content .right {
	width: 562px;
	float: left;
	padding: 10px 0 10px 19px;
	height:260px;
}

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

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

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

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

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

#panel .content input.bt_register {
	display: block;
	float:right;
	clear: left;
	height: 26px;
	text-align: center;
	cursor: pointer;
	border: none;
	font-weight: bold;
	margin:10px 0px;
}


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

#panel .content input.bt_register {
	width: 64px;
	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;
}

