@charset "utf-8";
/*   Input Widths    */
/*    Global style reset for all inputs   */
fieldset, legend,  button, select , textarea {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius : 4px;	
	border: solid 1px #a9ccde;
 	padding: .4em .8em;
 	margin: .2em;
} 

input[type="text"], input[type="password"], input[type="button"], input[type="submit"] {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius : 4px;	
	border: solid 1px #a9ccde;
 	padding: .4em .8em;
 	margin: .2em;
 }

/* Textarea, Fieldset, legend, select, label  */
textarea {
	font-family: "Lucida Grande", Arial, Verdana, sans-serif;
	font-size: 90%;
	min-height: 15em;
	overflow-x: hidden;
	overflow-y: auto;
	overflow: auto;
}
fieldset { padding: 0; 	}
legend { 	
	font-weight:  bold; 
	margin: 0 1em; 
	width: 20%; 
	background-color: #34A2DB; 
	color: white;
	font-size: 120%;
	text-align: center;
	
}
label {		padding: .2em .8em; }
select { 	padding:  .1em 0;}

/* Text and Passwords   */
	input[type="text"], input[type="password"], textarea {
		background-color: white;
	}
	
	input[type="text"]:hover, input[type="password"]:hover, textarea:hover {
		background-color: white;
		background-image: none;
		border: solid 1px #5ea3c7;
	}
	
	input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
		background-color: #ffffea;
		background-image: none;
		border: solid 1px #5ea3c7;
	}

/* Buttons */
	input[type="submit"],input[type="button"], button {
	 	color: #4d6116;
	 	border:  solid 2px #7b9f18;
	 	border-top-color: #d7f488;
	 	border-right-color: #d7f488;
	 	background: #aad140;
	 	font-weight: bold;
	 	font-size: 120%;
	 	cursor: pointer;
	 	padding: .1em .8em;
	}
	input[type="submit"]:hover, input[type="button"]:hover, button:hover {
			background: #bfec44;
	}
	input[type="submit"]:active, input[type="button"]:active, button:active {
	 	background-color: #83a132;
	 	border:  solid 2px #7b9f18;
	 	border-bottom-color: #d7f488;
	 	border-left-color: #d7f488;	 		
	}