/*
 * FORMS.CSS
 
*/

form {
	color: #878787;
	font-size: 0.9em;
}

 form.comment-form {
	margin: 5px 5px 10px 0;
	padding:10px;
}


fieldset {
	border: 1px solid #ccc;
	
	margin: 1.5em -10px;
	padding: .75em 10px;
}

fieldset fieldset {
	border: none;

	margin: 0;
	padding: 0;
}

legend {
	font-style: normal;
	font-weight: normal;
	font-size: 1.4em;
	color: #8a8a8a;	
	padding: 0 5px;
	letter-spacing: 1px;
}

fieldset fieldset legend {
	padding: 0;
	text-transform: none;
	letter-spacing: normal;
}

#site fieldset ol {
	margin: 0;
	list-style: none;
}

fieldset li {
	margin: .75em 0;
}

fieldset li:after {
	content: ".";
	clear: both;
	display: block;
	height: 0px;
	visibility: hidden;
}

fieldset li:after {
	display: inline-block;
}

/* Hides from IE-mac \*/
* html fieldset li:after {
	height: 1%;
}

fieldset li {
	display: block;
	clear: left;
}

label {
	cursor: pointer;
}

fieldset li small {
	display: block;
	clear: left;
	float: left;
	margin: .75em 0 .75em 130px;
	color: #666;
	font-size: .916667em;
}

fieldset label, span.label, form.comment-form label {
	display: block;
	float: left;
	width: 130px;
}

fieldset input, form.comment-form input {
	vertical-align: 0px;
 margin: 3px;
}

fieldset input[type="text"], fieldset input[type="password"], fieldset textarea, form.comment-form textarea {
	width: 290px;
	padding: 3px;
}

#rechts input[type="submit"] {
	margin-bottom: 4px;
	margin-top: 4px;
	color: #878787;
	font-size: 0.9em;
	padding-right: 5px;
	padding-left: 5px;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	display: block;
	
}

/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  border:1px solid #bbb;
 margin: 5px;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px; }
textarea      { width: 390px; height: 100px; padding:5px;  }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

