/* #Forms
================================================== */

	form {
	margin-bottom: 10px;
	font-family: "Muli", sans-serif; 
	color: #666;
}
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="date"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
	border: 1px solid #ccc;
	outline: none;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	font: 12px Muli, sans-serif;
	color: #777;
	width: 100%;
	max-width: 100%;
	display: block;
	margin-bottom: 5px;
	background: #fff;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0;
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 2px;
}
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="date"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); }
	textarea {
		min-height: 60px; }
	label,
	legend {
	display: block;
	font-size: 13px;
}
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

