/**
 * CSS for form elements.
 *
 * @author Bruno
 */
form
{	
	font-size: 0.8em
}

form div
{
	margin-bottom: 20px;
}

label
{
    display: block;
	
	margin-bottom: 5px;
	
    color: #FBF4DB;
}

input[type="text"], textarea
{
    border: none;
	padding: 5px;
	
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-style: italic;
	
    background-color: #515A3A;
    color: #F3A07B;
}

input[type="submit"]
{
	border: none;
	padding: 5px;
	
	font-weight: bold;

	background-color: #F3A07B;
	color: #515A3A;
	
	cursor: pointer;
}

input[type="submit"]:hover
{
	color: #FBF4DB
}

.errors
{
	margin: 5px 0 0 0;
	padding: 0;
	
	color: #F3A07B;
	
	list-style: none;
}