/*
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 */
#top {
  	background: url(../images/login_top.jpg) repeat-x 0 0;
	height: 38px;
	position: relative;
	float:right;
}

#top ul.login {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 38px;
	width: auto;
  	font-weight: bold;
	line-height: 38px;
	margin: 0;
	right: 10px;
  	color: white;
  	font-size: 80%;
	text-align: center;
  	background: url(../images/login_r.jpg) no-repeat right 0;
	padding-right: 0px;
	border:1px solid red;
}



#top 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;
}

#top ul.login li a {
	color: #33CCCC;
}

#top ul.login li a:hover {
	color: white;
}

/*Login*/
/* toggle effect - show/hide login*/
#login {
	width: 900px;
	color: white;
	background:url(../images/loginbg.png) top center repeat-y;
	overflow: hidden;
	position: relative;
	z-index: 3;
	height: 0;
}

#login a {
	text-decoration: none;
	color: #33CCCC;
}

#login a:hover {
	color: white;
}

#login .loginContent {
	width: 650px;
	height: 80px;
	margin: 0 auto;
	padding-top: 25px;
	text-align: left;
	font-size: 0.85em;
}

#login .loginContent .left {
	width: 120px;
	float: left;
	padding-left: 65px;
	font-size: 0.95em;
}

#login .loginContent .right {
	width: 290px;
	float: right;
	text-align: right;
	padding-right: 65px;
	font-size: 0.95em;
}

#login .loginContent form {
	margin: 0 0 10px 0;
	height: 35px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#e8e5d1;
	font-style:normal;
	font-size:11px;
	text-transform:uppercase;
	vertical-align:top;
	border:0px solid red;
}

#login .loginContent input.field {
	border: 1px #8e2329 solid;
	background: #1b2128;
	margin-right: 5px;
	color: white;
	height: 16px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	font-weight:bold;
}
#login .loginContent .pwd {padding:3px;}

#login .loginContent input:focus.field {
	background: #e8e5d1;
	color:#252c34;
	font-weight:bold;
}

#login .loginContent input.button_login {
	width: 57px;
	height: 26px;
	cursor: pointer;
	border: none;
	background: transparent url(../images/button_login.png) no-repeat 0 0;
	margin-top:5px;
}

#login .loginClose {
	display: block;
	position: absolute;
	right: 45px;
	top: 20px;
	width: 90px;
	font-size: 0.8em;
	text-align: left;
	height:auto;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; text-transform:uppercase; font-size:11px; font-weight:bold;
	margin-top:20px;
}

#login .loginClose a {
	display: block;
	width: 100%;
	height: 26px;
	background: url(../images/button_x.png) no-repeat right 0;
	padding-right: 10px;
	padding-top:6px;
	border: none;
	font-size: 0.9em;
	color: white;
	cursor: pointer;
}

