#edit_resource_form input[type=text] {
	padding: 5px;
	width: 300px;
}

#edit_resource_form textarea {
	width: 400px;
	height: 100px;
}

#edit_resource_form label {
	line-height: 1.5em;
}

#edit_resource_form input[type=submit] {

	padding: 10px;
	background-color: #ccc;
	background: -moz-linear-gradient(bottom, #ccc, #eee);
	background: -webkit-gradient(linear, center bottom, center top, from(#ccc), to(#eee)); 
	margin: 0px;
	
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
}

#edit_resource_form input[type=submit]:hover {
	background-color: #eee;
	background: -moz-linear-gradient(bottom, #eee, #ccc);
	background: -webkit-gradient(linear, center bottom, center top, from(#eee), to(#ccc));
	cursor: pointer;
}
