/*

STYLESHEET - Mailform

Notes: Formeelements that cannot be referenced through their tag,
are all applied a class="tag" by the mailform script.
Example: <input type="checkbox" class="checbox"
Can be accessed using: input.checkbox {}

Autor: Michael Kuehni
Email: michael.kuehni@circum.ch

*/

/*
body {
	background-color: #fff;
	font-family: Verdana, Arial, Helvetica;
}*/

h2 {

	font-size: 100%;

}

/* GENERAL FORMFIELD DEFINITION */
input, textarea, select {
	border: 1px solid #333;
	background: #eee;
	width: 200px;
	color: #000;
}

select.select {
	border: 1px solid #333;
}

/* FONT DEFINITIONS FORMFIELDS */
input.text, select, textarea, input.submit {
	padding: 3px;
	font-family: Verdana, Arial, Helvetica;
	font-size: 12px;
}

/* RADIO AND CHECKBOX */
input.radio, input.checkbox {
	width: 13px;
	height: 13px;
	border: 0px;
	margin: 0;
	padding: 0;
	
	
	background: #fff;
}

/* SUBMIT BUTTON */
input.submit {
	background: #bbb;
	width: auto;
}

/* SPECIFIC TEXTAREA HEIGHTS */
textarea.large {	height: 7em; }
textarea.small {	height: 1em; }
