/*
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/slide/login_top.png) repeat-x 0 0;
	height: 42px;
	position: relative;
}

#top ul.search {
	display: block;
	position: relative;
  	float: right;
  	clear: right;
  	height: 38px;
	width: auto;
  	font-weight: bold;
	line-height: 38px;
	margin: 0;
	right: 50px;
  	color: white;
  	font-size: 80%;
	text-align: center;
  	background: url(../../images/slide/login_r.png) no-repeat right 0;
	padding-right: 45px;
}

#top ul.search li.left {
  	background: url(../../images/slide/login_l.png) no-repeat left 0;
  	height: 38px;
	width: 45px;
	padding: 0;
	margin: 0;
  	display: block;
	float: left;
}

#top ul.search li {
 	text-align: left;
  	padding: 0 6px;
	display: block;
	float: left;
	height: 38px;
  	background: url(../../images/slide/login_m.png) repeat-x 0 0;
}

#top ul.search li a {
	color: #000;
	text-decoration: none;
}

#top ul.search li a:hover {
	color: white;
	text-decoration: underline;
}

/*Search*/

/* toggle effect - show/hide search*/

#searchPanel {
	width: 100%;
	color: #000;
	background: #c1bfbd;
	overflow: hidden;
	position: relative;
	z-index: 3;
	height: 0;	
}

#searchPanel a {
	text-decoration: none;
	color: #000;
}

#searchPanel a:hover {
	text-decoration: underline;
}

#searchPanel .searchContent {
	width: 550px;
	height: 80px;
	margin: 0 auto;
	padding-top: 25px;
	text-align: left;
	font-size: 0.85em;
}

#searchPanel .searchContent .left {
	width: 120px;
	float: left;
	padding-left: 65px;
	font-size: 0.95em;
}

#searchPanel .searchContent .right {
	width: 290px;
	float: right;
	text-align: right;
	padding-right: 65px;
	font-size: 0.95em;
}

#searchPanel .searchContent form {
	margin: 0;	
}

#searchPanel .searchContent input.field {
	border: 1px #1A1A1A solid;
	background: #464646;
	margin-right: 5px;
	margin-top: 4px;
	color: white;
	height: 16px;
}

#searchPanel .searchContent input:focus.field {
	background: #545454;
}
#searchPanel .searchContent input.rememberme {
	border: none;
	background: transparent;
	margin: 0;
	padding: 0;
}

#searchPanel .searchContent input.button_login {
	width: 47px;
	height: 20px;
	cursor: pointer;
	border: none;
	background: transparent url(../../images/slide/button_login.jpg) no-repeat 0 0;
}



