.form_entry{
	margin-top: 10px;
	display: block;
	width: 80%;
	float:left;
}
/* form style */
.myform { 
	padding-bottom: 15px; 
	padding-top: 15px; 
	color:#565656;
	margin:0px auto;
} 

/* nested fieldset */
.myform fieldset {
	border:0;
	margin:0;
	padding:0;
}

/* typography */
.myform h3 	{ color: #5b5b5b; margin-top:0px; }
.myform p 	{ font-size:11px; }


/* input field */
.myform input {
	border:1px solid #919191;
	background-color: #e5e5e5;
	padding:5px;
	color: #131313;
	font-size:12px;
	width: 250px;
	
	/* CSS3 spicing */
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	text-shadow: 1px 1px 1px white;
}

.myform textarea {
	width: 610px;
	height: 200px;
}

.myform input:focus 		{ border-color: #cbcbcb; color: black; background-color: #b6b6b6; }
.myform input:active 	{ border-color: white; color: white; background-color: #3f3f3f; }


/* button */
.myform button {
	color: black;
	text-shadow: 1px 1px 1px white;
	display: block;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	margin-top: 20px;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-size: 11px;
	padding: 0px;
	border: 0px;	
	width: 150px;
	height: 24px;
	background: url(button-design.gif) no-repeat top left;
	text-align: center;
	outline: 0;
}

.myform button:active {
	text-shadow: 1px 1px 1px #aeaeae;
	background-position: -160px 0px;
	color: white;
}


/* error message */
.error {
	height:15px;
	background-color: #da2b16;
	font-size:11px;
	border:1px solid #E1E16D;
	padding:4px 10px;
	color: white;
	margin-left:-2px;
	
	-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;	
}

/* field label */
label {
	display:block;
	font-size:11px;
	color: #989898;
}

#terms label {
	float:left;
}

#terms input {
	margin:0 5px;
}

