/*
Name: Nice Login and Signup Panel using Mootools 1.2
Tutorial URI: http://web-kreation.com/demos/login_form_mootools_1.2/
Author: Jeremie Tisseau
Author URI: http://web-kreation.com/
Date: August 2008

	The CSS, XHTML and design is released under Creative Common License 2.5:
	http://creativecommons.org/licenses/by-sa/2.5/

*/

/* Login Panel */
#login-tab {
  	background: url(images/login_top.jpg) repeat-x 0 0;
	height: 38px;
	position: relative;
}

#login-tab .inside {
	width: 600px;
	margin: 0 auto;
}

#login-tab ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 38px;
	width: auto;
  	/*font-weight: bold;*/
	line-height: 38px;
	margin: 0;
	right: 0px;
  	color: white;
  	/*font-size: 80%;*/
	text-align: center;
  	background: url(images/login_r.jpg) no-repeat right 0;
	padding-right: 45px;
}

#login-tab ul.login li.left {
  	background: url(images/login_l.jpg) no-repeat left 0;
  	height: 38px;
	width: 45px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

#login-tab ul.login li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 38px;
  	background: url(images/login_m.jpg) repeat-x 0 0;
}

#login-tab ul.login li a {
	/*color: #white;*/
}

#login-tab ul.login li a:hover {
	/*color: white;*/
}

/*Login*/
/* toggle effect - show/hide login*/
#login-panel {
	width: 100%;
	color: #ffffff;
	background: #1E1E1E;
	overflow: hidden;
	position: relative;
	z-index: 3;
	height: 0;
}

#login-panel a {
	text-decoration: none;
	/*color: #33CCCC;*/
}

#login-panel a:hover {
	/*color: white;*/
	text-decoration: underline;
}

#login-panel .loginContent {
	width: 600px;
	/*height: 80px;*/
	margin: 0 auto;
	padding-top: 25px;
	text-align: left;
	color:  #ffffff;
	/*font-size: 0.85em;*/
}

#login-panel .loginContent p {
	color: #ffffff;
}

#login-panel .loginContent form {
	margin: 0 0 10px 0;
	/*height: 26px;*/
}

#login-panel .loginContent input.text {
	border: 1px #1A1A1A solid;
	background: #464646;
	margin-right: 5px;
	margin-top: 4px;
	color: white;
	/*height: 16px;*/
}

#login-panel .loginContent input:focus.text {
	background: #545454;
}

#login-panel .loginContent input.submit {
	margin-left:0px;
	padding:2px 5px;
	background-color:#ffffff;
	font-size:11px;
	color:#000000;
}

#login-panel .loginContent input:hover.submit {
	background-color:#cccccc;
}

#login-panel .loginContent input:active.submit {
	background-color:#aaaaaa;
}

#login-panel .loginContent input.text,
#login-panel .loginContent input.password {
	width:120px;
	margin:0 10px 15px 10px;
	padding:3px;
	border:1px solid #000000;
}

#login-panel label {
	color: white;
}

#login-panel .loginClose {
	display: block;
	position: absolute;
	right: 15px;
	top: 10px;
	/*width: 70px;*/
	/*font-size: 0.8em;*/
	text-align: left;
}

#login-panel .loginClose a {
	display: block;
	width: 100%;
	height: 20px;
	background: url(images/button_close.jpg) no-repeat right 0;
	padding-right: 12px;
	border: none;
	/*font-size: 0.9em;*/
	color: white;
}

#login-panel .loginClose a:hover {
	background: url(images/button_close.jpg) no-repeat right -20px;
}