/*
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 .loginContent {
	width: 850px;
	height: 180px;
	margin: 0 auto;
	padding-top: 25px;
	text-align: left;
	float: right;
}

#panel .loginContent .left {
	width: 120px;
	float: left;
	padding-left: 65px;
}

#panel .loginContent .right {
	width: 290px;
	float: right;
	text-align: right;
	padding-right: 65px;
}

#panel .loginContent form {
	margin: 0 0 10px 0;
	height: 26px;
}

#panel .loginContent input.field {
	border: 1px #1A1A1A solid;
	background: #464646;
	margin-right: 5px;
	margin-top: 4px;
	color: white;
	height: 16px;
}

#panel .loginContent input.field2{
   border:none;
   -webkit-border-radius:5px;
   -moz-border-radius:5px;
   border-radius:5px;
   -webkit-box-shadow:0 0 5px #666 inset;
   -moz-box-shadow:0 0 5px #666 inset;
   box-shadow:0 0 5px #666 inset;
   height:25px;
   line-height:25px;
   width:150px;
   text-indent:5px;
   float: left;
}

#panel .loginContent input:focus { outline:none; }

#panel .loginContent input:focus.field {
	background: #545454;
}

#panel .loginContent input.rememberme {
	border: none;
	background: transparent;
	margin: 0;
	padding: 0;
}

#panel .loginContent input.button_login {
	width: 47px;
	height: 20px;
	cursor: pointer;
	border: none;
	background: transparent url(../images/button_login.jpg) no-repeat 0 0;
}

#panel .loginClose {
	display: block;
	position: absolute;
	right: 15px;
	top: 10px;
	width: 70px;
	font-size: 0.8em;
	text-align: left;
}

#panel .loginClose a {
	display: block;
	width: 100%;
	height: 20px;
	background: url(images/button_close.jpg) no-repeat right 0;
	padding-right: 10px;
	border: none;
	font-size: 0.9em;
	color: white;
}

#panel .loginClose a:hover {
	background: url(images/button_close.jpg) no-repeat right -20px;
}