/* CSS Document */

/*kontaktseite*/
/*kontaktbereich ist das gesamt Bereich der Kontaktseite ohne Navi */
#kbereich{
	position: relative;
	width: 500px;
	height: 440px;
	margin: 30px 0 0 350px;
	border-left: #FFF dotted thick;
	border-bottom: #FFF dotted thick;
	padding-left: 20px;
	padding-bottom: 20px;
	z-index: 100;
	}

 #fussnote_contatto {
	position: relative;
	width: 550px;
	margin: 0 auto;
	
	
}

	
/* kformular ist das Formular*/	
#kformular {
	position: absolute;
	width: 400px;
	height: 400px;
	top: 30px;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 16px;
	z-index:101;
	
	}

#stemma{
	position: absolute;
	left: 350px;
	
	}
	
	
label{
	display: block;  /*die Beschriftugen werden über den Inhaltfeld postitioniert*/
	cursor: pointer; /*Mauszeiger wird zur Hand*/
	padding-bottom: 5px;
}


/* felder name, e-mail und nachricht von kontaktform */	
input, textarea {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-style: oblique;
}
/* nur felder name und e-mail von kontaktform */		
input {
	height: 25px;
	}
/*wenn man in textarea anklickt wird sie gefärbt */	
input:focus, 
textarea:focus {
	background-color: #d1cfcf;
	}
/* für honeypot gegen spamm*/
.wwwebsite {
    z-index:999;
    position:absolute;
    height:0;
    width:0;
    border:none;
    background:none;
    margin:0;
    top:0;
    left:0;
    clear:both;
    font-size:0px;
    line-height:0px;
}