form {
	float: left;
	width: 100%;
	margin-top: 10px;
}

#chat {
	float: left;
	width: 100%;
	margin-top: 10px;
}

form>div, #chat>div {
	float: left;
	width: 100%;
	text-align: center;
}

form>div>input, #chat>div>input {
	border-radius: 50px;
	border: 1px solid silver;
	font-size: 0.8em;
	padding: 10px 5%;
	margin-bottom: 10px;
	background-color: white;
	width: 80%;
	text-align: center;
}

#aside>form>div>input {width:auto;}

form>div>input:focus, #chat>div>input:focus, textarea:focus {
	border-color: #8d8d8d;
}

textarea {
	border-radius: 5px;
	border: 1px solid silver;
	font-size: 0.8em;
	padding: 10px;
	background-color: white;
	width: 95%;
	resize: vertical;
	max-height: 400px;
	min-height: 70px;
}

.btn {
	float: left;
	border: 0;
	width: auto;
	margin-left: 3%;
	margin-top: 1%;
	border-radius: 5px;
	padding: 5px 9px;
	font-size: 1.2em;
	background-color: #dd0000;
	color: #ffffff;
	text-shadow: #0f0f0f 0 0 2px;
	border-bottom: 4px solid #aa0000;
}

#aside>form>div>.btn {width:auto;}

.btn:hover {
	margin-top:1.3%;
	border-bottom: 2px solid #cc0000;
}

.btn:active {
	margin-top:1.5%;
	border-bottom: 0;
}