/* toggle effect - show/hide login*/
#login {
	width: 100%;
	color: white;
	background: #1E1E1E;
	overflow: hidden;
	position: relative;
	z-index: 3;
	height: 0;
}

#login a {
	text-decoration: none;
	color: #EAB437;
}

#login a:hover {
	color: white;
}

#login .loginContent {
	width: 600px;
	height: 90px;
	margin: 0 auto;
	padding-top: 25px;
	text-align: left;
}

#login .loginContent .left {
	width: 200px;
	float: left;
	text-align:left;
	padding-left: 0px;
}

#login .loginContent .right {
	float: right;
	text-align: right;
	padding-right: 50px;
	width: 300px;
}

#login .loginContent form {
	margin: 0 0 10px 0;
	height: 26px;
}

#login .loginContent input.field {
	border: 1px solid #EAB437;
	margin-right: 5px;
	margin-top: 4px;
	color: white;
	height: 16px;
	background-color: #464646;
}

#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: transparent url(../img/button_login.jpg) no-repeat 0 0;
}

#login .loginClose {
	display: block;
	position: absolute;
	right: 20px;
	top: 10px;
	width: 85px;
	text-align: left;
}

#login .loginClose a {
	display: block;
	width: 100%;
	height: 20px;
	background: url(../img/button_close.jpg) no-repeat right 0;
	padding-right: 10px;
	border: none;
	color: white;
}

#login .loginClose a:hover {
	background: url(../img/button_close.jpg) no-repeat right -20px;
}

