/* Forms UI */
input[type="text"], input[type="password"] {
	display: block;
	position: relative;
	height: 18px;
	padding: 4px;
	border: 1px solid #666;
	color: #666;
}
.overTxtLabel {
	color: #676767;
	padding: 4px;
	line-height: 18px;
}
input[type="text"]:focus, input[type="password"]:focus {
	/*background: #e7ffe7;*/
	border-color: #cca600;
	/*outline: 1px solid #cca600;*/
	color: #000;
}
input[type="button"], input[type="submit"] {
	display: block;
	background: #e5e5e5 -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#e5e5e5)) repeat-x 0px 0px;
	height: 24px;
	border: 1px solid #666;
	color: #333;
	padding: 0px 4px;
	text-shadow: 0px 1px 1px #fff;
}
input[type="button"]:not([disabled]):hover, input[type="submit"]:not([disabled]):hover {
	background: #e5e5e5 -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#f7f7f7)) repeat-x 0px 0px;
	border-color: #000;
}
input[type="button"]:not([disabled]):active, input[type="submit"]:not([disabled]):active {
	background: #e5e5e5 -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#f7f7f7)) repeat-x 0px 0px;
	border-color: #696;
	color: #999;
}
input[type="button"]:disabled, input[type="submit"]:disabled {
	color: #999;
	border-color: #999;
}
select {
	height: 24px;
	padding: 1px;
	font-size: 14px;
	border: 1px solid #666;
}
.textarea {
	padding: 4px;
	border: 1px solid #666;
}
.textarea textarea {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 13px;
	line-height: 15px;
	font-size: Arial;
	padding: 0px;
	border: none;
}

input, .textarea {
	-webkit-border-radius: 3px;
	-webkit-box-shadow: 0px 0px 3px #666;
}