#main-form input{
	width: 600px;
	height: 40px;
	
	/* Runde Ecken */
	-webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
	
	/* Schatten */
    border-radius: 5px;
	border: 1px solid #999;
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	
	text-align: center;
	font-size: 15pt;
	color: #575757;
}

#main-form textarea{
	width: 600px;
	height: 100px;
	
	/* Runde Ecken */
	-webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
	
	/* Schatten */
    border-radius: 5px;
	border: 1px solid #999;
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	
	text-align: center;
	font-size: 15pt;
	color: #575757;
}
#main-form label{
	width: 50px;
	font-size: 15pt;
	display: inline-block;
}

#main-form 	button{
	width: 175px;
	height: 40px;
	
	/* Schatten */
    border-radius: 5px;
	border: 1px solid #999;
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	
	text-align: center;
	font-size: 15pt;
	color: #575757;
}

#main-form button:hover{
	box-shadow:inset 0 0 15px #999;
}

#main-feed{
	text-align: left;
	width: 80%;
	margin: 0 auto;
}
#main-feed a{
	text-decoration: none;
	color: blue;
	font-weight: bold;
}

#main-feed ul{
	list-style-type: none;
}

#main-success{
	width: 80%;
	border: 2px solid green;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	
	padding-top: 5px;
	/* Runde Ecken */
	-webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
}

#main-failed{
	width: 80%;
	border: 2px solid red;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	
	padding-top: 5px;
	/* Runde Ecken */
	-webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
}