form {
	font-size: 8pt;
	font-family: 'Tahoma', serif;
	font-weight: normal;
}

form button {
	font-size: 8pt;
	display: block;
	width: 65px;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
	border: none;
}

/*
 * Form Backgrounds
 */
form input.name {
	background: url('../images/form_input_name.png') no-repeat .5em 50%;
}

form input.email {
	background: url('../images/form_input_email.png') no-repeat .5em 50%;
}

form input.website {
	background: url('../images/form_input_link.png') no-repeat .5em 50%;
}

/*
 * Form: Light
 */
form.light {
	color: #32383F;
}

form.light input,form.light textarea {
	color: #32383F;
	border: 1px solid #dddddd;
}

form.light input {
	background-color: #eeeeee;
}

form.light textarea {
	background-color: #eeeeee;
}

form.light button {
	background-color: black;
	color: white;
}

form.light button:hover {
	background-color: rgb(4, 222, 184);
}

/*
 * Form: Dark
 */
form.dark {
	color: white;
}

form.dark input,form.dark textarea {
	color: white;
	border: none;
}

form.dark input {
	background-color: #2D2D2D;
}

form.dark textarea {
	background-color: #eeeeee;
}

form.dark button {
	background-color: white;
	color: black;
}

form.dark button:hover {
	background-color: rgb(4, 222, 184);
	color: white;
}

/*
 * Form: Big
 */
form.big textarea,form.big input {
	margin-bottom: .7em;
}

form.big input {
	height: 34px;
	line-height: 34px;
	padding: 0 30px;
	margin-bottom: .7em;
}

form.big label {
	line-height: 34px;
	margin-left: 10px;
}

form.big button {
	height: 34px;
	line-height: 34px;
}

/*
 * Form: Small
 */
form.small input {
	height: 1.5em;
	line-height: 1.5em;
	padding: 0 30px;
}

form.small label {
	line-height: 1.5em;
	margin-left: 10px;
}

form.small button {
	height: 1.5em;
	line-height: 1.5em;
}

/*
 * Simple style
 */
form.clean input {
	background-image: none;
	padding-left: 1em;
}