/*
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 */
#topBar {
	height: 144px; /* original value: 37 */
	width: 100%;
	position: relative;
	background-image: url(../images/Top-BG.png);
	background-repeat: repeat-x;
	background-position: 0 0;
	background-color: #F7F7F7;
}
#top {
	height: 109px; /* original value: 27 */
	position: relative;
	background-image: url(../images/slider_top/topTab_top.png);
	background-repeat: repeat-x;
	background-position: 0 0;
}

#top ul.login {
	display: block;
	position: relative;
	float: right;
	clear: left;
	height: 27px;
	width: 960;
	font-weight: bold;
	line-height: 27px;
	right: 0px;
	color: white;
	font-size: 80%;
	text-align: center;
	padding-right: 35px;
	background-image: url(../images/slider_top/topTab_right.png);
	background-repeat: no-repeat;
	background-position: right 0;
	margin-top: 0;
	margin-right: 85px;
	margin-bottom: 0;
	margin-left: 0;
}

#top ul.login li.left {
	height: 27px;
	width: 35px;
	padding: 0;
	margin: 0;
	display: block;
	float: left;
	background-image: url(../images/slider_top/topTab_left.png);
	background-repeat: no-repeat;
	background-position: left 0;
}

#top ul.login li {
	text-align: left;
	padding: 0 6px;
	display: block;
	float: left;
	height: 27px;
	background-image: url(../images/slider_top/topTab_middle.png);
	background-repeat: repeat-x;
	background-position: 0 0;
}

#top ul.login li a {
	color: #FFF;
	outline: none;
}

#top ul.login li a:hover {
	color: #FC6;
}

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

#login a {
	text-decoration: none;
	color: #FBB255;
}

#login a:hover {
	color: white;
}

#login .loginWrapper {
	width: 960px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#login .loginContent {
	width: 460px;
	height: 40px;
	padding-top: 25px;
	text-align: left;
	font-size: 0.85em;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 500px;
}

#login .loginContent .left {
	width: 100px;
	float: left;
	text-align: left;
	padding-left: 0px;
	font-size: 0.95em;
	padding-right: 15px;
}

#login .loginContent .right {
	width: 320px;
	float: left;
	text-align: left;
	padding-right: 0px;
	font-size: 0.95em;
}

#login .loginContent form {
	margin: 0 0 10px 0;
	height: 26px;
}

#login .loginContent input.username {
	border: 1px #1A1A1A solid;
	margin-right: 5px;
	margin-top: 4px;
	color: #666;
	height: 22px;
	background: #fbfbfb url(../images/slider_top/user_bg.png) 0 50% no-repeat;
	/*padding-left: 22px;*/
 	padding-left:22px;
	vertical-align: text-bottom;
}
#login .loginContent input.password {
	border: 1px #1A1A1A solid;
	margin-right: 5px;
	margin-top: 4px;
	color: #666;
	border: 1px solid #666;
	height: 22px;
	background: #fbfbfb url(../images/slider_top/pass_bg.png) 0 50% no-repeat;
	/*padding-left: 22px;*/
	padding-left:22px;
	vertical-align: text-bottom;
}

#login .loginContent input:focus.field {
	background: #545454;
}

#login .loginContent input.rememberme {
	border: none;
	background: transparent;
	margin: 0;
	padding: 0;

}

#login .loginContent input.button_login {
	width: 47px;
	height: 20px;
	cursor: pointer;
	border: none;
	background-color: transparent;
	background-image: url(../images/slider_top/button_login.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	top: auto;	
}

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

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

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