/* kp-21 Basics CSS */
/* MilkyMEDIA FfM */
/* 2009-11-08 */



* {
	margin: 0;
	padding: 0;
}


body {
	font-family: verdana, sans-serif;
	font-size: 11px;
	line-height: 16px;
	
	color: #323028;
}




a {
	outline: none;
	text-decoration: none;
	
	color: #E25F14;
}

a:hover {
	text-decoration: underline;
}


img {
	border: none;
	outline: none;
	display: block;
}





h1 {
	font-size: 130%;
	text-transform: uppercase;
	font-family: futura condensed, arial narrow, arial, sans-serif;
/*	font-weight: normal; */
	font-style: italic;
	letter-spacing: 0.20em;
	color: #E25F14;
	
	background: transparent url( ../files/css-gif/bg-tile.h1.gif ) repeat-x 0 12px;
	
	margin-left: -5px;
	padding-left: 5px;
	
/*	display: table-cell;*/
}

h2 {
	font-size: 100%;
}
















/* --- BASIC CLASSES --- */
.clear {
	clear: both;
}

.nodisplay {
    display: none !important;
}













/* --- FORMULARE --- */
form {
	overflow: hidden;
	margin-bottom: 15px;
}


form p,
form div.p {
	clear: both;
	overflow: hidden;

	background: #656155;/*#DEDAD3;*/
	height: 20px;
}


form fieldset {
	border: 1px dotted #656155;
	padding: 2px 3px 2px 10px;
	background: white;

}


/* INPUTS */
form input {
	padding: 2px 3px 0 3px;
/*	margin-right: 4px; */

	font-family: verdana, arial, geneva, sans-serif;
	font-size: 11px;
}	

form input.text {
	float: right;

	width: 245px;
	border: 1px solid #656155;
	background: #F3F3F3;
	
	padding: 2px;
	height: 14px;
}

form input.intval {
	width: 70px;
	border: 1px solid #656155;
	background: #F3F3F3;
	
	padding: 2px;
}

form input.email {
	width: 160px;
	border: 1px solid #656155;
	background: #F3F3F3;
}

form input.default {
	color: #7E7A6E;
}



form textarea {
/*	font-family: verdana, arial, geneva, sans-serif; */
	font-size: 11px;

	padding: 2px;
/*	width: 706px; */
	width: 320px;	
	height: 60px;	
	border: 1px solid #656155;
	background: #F3F3F3;
}




form select {
/*	font-family: Verdana, Arial, Helvetica, sans-serif; */
	font-size: 11px;
}

/* Firefox & Safari */
html>body form select {

}








form input.radio {
	display: block;
	margin: 0px;
	float: left;
}
/* Firefox & Safari */
html>body form input.radio {
	margin: 4px 0 0 0 !important;
}





form input.checkbox {
	display: block;
	margin: 0px;
	float: left;
}
/* Firefox & Safari */
html>body form input.checkbox {
	margin: 1px 3px 0 0 !important;
}

form p.checkbox {
	margin-top: 3px;
}





/* BUTTONS */
form input.button,
form input.submit {
	cursor: pointer;
	background: #323028;
	border: none;
	color: white;
	padding: 2px 5px;
	
	height: 20px;
}

form input.submit {
	float: right;
}

form input.button {

}


html>body form input.button {

}


p.buttons {
	width: auto;
	float: right;
	margin: 0;
}

p.buttons input {
	margin-bottom: 0;
}








/* LABEL */
form label, .label {
	float: left;
	color: white;
	padding: 2px 8px;
}



form label.checkbox {
	padding: 0 10px 0 1px;
}
/* Firefox & Safari */
html>body form label.checkbox {
form label.checkbox {
}



form label.radio {

}
/* Firefox & Safari */
html>body form label.radio {

}























/* --- TABELLEN --- */
table {
	clear: both;
	width: 100%;
	text-align: left;
}


table caption {

}

table td, table th {
	padding: 2px;
	vertical-align: top;
}

table thead th {

}

table tbody th {

}

table tbody td {

}



