@charset "UTF-8";
/* ** ** forms ** ** */
form input[type=text], form input[type=email], form input[type=url], form input[type=password], form input[type=number], textarea {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius:3px;
	height:15px;
	border:none;
	padding:3px 0 3px 5px;

}
form .textarea textarea {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius:3px;
	margin-bottom:5px;
	min-height:50px;
	border:none;
	padding:3px 0 3px 5px;
	width:100%;
}
form .textarea {
	height:auto;
}
form label {
	display:block;
	/*height:20px;*/
}
/* special form styling */
form div input.invalid {
	border-bottom:1px solid #f00;
}
form fieldset input[type=submit], form fieldset button {
	display: inline-block;
	padding: 4px 8px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.6);
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfcfb), to(#9d9e9d));
	background: -moz-linear-gradient(#fbfcfb, #9d9e9d);
	background-color: #eee;
	text-shadow: rgba(255, 255, 255, 0.4) 0px 1px;
	-webkit-box-shadow: rgba(255, 255, 255, 0.4) 0 1px;
	-moz-box-shadow: rgba(255, 255, 255, 0.4) 0 1px;
	box-shadow: rgba(255, 255, 255, 0.4) 0 1px;
	-webkit-user-select: none;
	-moz-user-select: none;
	cursor:pointer;
}

.search {
	position:relative;
}
#search-box {
	padding-left:25px;
	font-size:0.95em;
	color:#999;
	width:120px;
	background-color:#fff;
}
#search-button {
	background:url(../images/magnifier.gif) no-repeat scroll 0 0 transparent;
	border: medium none;
	cursor: pointer;
	height: 15px;
	width: 15px;
	position:absolute;
	left:5px;
	top:3px;
}
#search-button:hover {
	background:url(../images/magnifier_hover.gif) no-repeat 0 0;
}
