/* Styling af forms CSS Document */
fieldset {
	margin: 1em 0;
	padding: 1em;
	border: 1px solid #6699CC;
	background: #f8f8f8;
}

legend {
	font-size: 16px;
	font-weight: bold;
}

label {
	display: block;
	font-weight: bold;
}

input {
	width: 200px;
}

input:focus, textarea:focus {
	background: #FFFFCC;
}

textarea {
	width: 200px;
	height: 100px;
}

