@charset "UTF-8";
/* CSS Document */

fieldset {
	border:1px solid #333;
	padding:1em;
	-moz-border-radius:0.5em;
	-webkit-border-radius:0.5em;
	border-radius:0.5em;
	background-color:#000;
}
legend {
	text-transform:uppercase;
	margin-left:1em;
	padding:0.5em;
	padding-left:1em;
	padding-right:1em;
	-moz-border-radius:0.5em;
	-webkit-border-radius:0.5em;
	border-radius:0.5em;
	background-color:#000;
}
label {
	text-transform:lowercase;
	display:block;
	margin-top:0.5em;
	margin-bottom:0.2em;
	line-height:1em;
}
input, textarea {
	-moz-border-radius:0.5em;
	-webkit-border-radius:0.5em;
	border-radius:0.5em;
	padding:0.2em;
	background-color:#111;
	border:1px solid #333;
	color:#ccc;
	font-size:100%;
}
input[type=button], input[type=submit] {
	margin-top:0.8em;
	display:block;
	color:#fff;
	background:-moz-linear-gradient(top, #333, #111);
	background:-webkit-gradient (linear, left top, left bottom, from(#333), to(#111));
	background:-webkit-linear-gradient(top, #333, #111);
	background:-o-linear-gradient(top, #333, #111);
	background:-ms-linear-gradient(top, #333, #111);
	background:linear-gradient(top, #333, #111);
	cursor:pointer;
}

.error {
	/* supply height to ensure consistent positioning for every browser */
	height:15px;
	background-color:#FFFE36;
	border:1px solid #E1E16D;
	font-size:11px;
	color:#000;
	padding:3px 10px;
	margin-left:-2px;


	/* CSS3 spicing for mozilla and webkit */
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius-bottomleft:0;
	-moz-border-radius-topleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;

	-moz-box-shadow:0 0 6px #ddd;
	-webkit-box-shadow:0 0 6px #ddd;
}

