/*

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;
}

p, td {
	font-size: 12px;
}

h2 {
	font-size:12px;
	margin: 0px;
	padding-top:15px;
	padding-bottom: 0px;
}

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

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: auto;
	border: 0px;
	background: #fff;
}

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

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