html {

}
body {

}
form {
	margin:0;
}
img {
	border:0;
}

/* ==== inputs ==== */

input[type=text], input[type=password] {
	border:1px solid #888888;
	background:white;
	color:black;
	padding:4px;
}
input[type=text].small, input[type=password].small {
	font-size:9px;
}
textarea {
	border:1px solid #888888;
	background:white;
	color:black;
	padding:4px;
}
select {
	border:1px solid #ccc;
}
select.small {
	font-size:9px;
}

/* ==== buttons ==== */
input[type=submit], input[type=button] {
	border:1px solid #999;
	-webkit-border-radius:4px;
	border-radius:4px;
	-moz-border-radius:4px;
	font-size:13px;
	color:#111;
	background-image:url(../images/buttonGradient.png);
	background-color:#eee;
}
input[type=submit]:active, input[type=button]:active {
	background-image:url(../images/buttonGradientPressed.png);
	background-color:#888;
	color:#999;
}
input[type=submit]:disabled, input[type=button]:disabled {
	background-image:url(../images/buttonGradientDisabled.png);
	color:#999;
}
input[type=submit].small, input[type=button].small {
	border:1px solid #999;
	-webkit-border-radius:4px;
	border-radius:4px;
	-moz-border-radius:4px;
	color:#111;
	background-image:url(../images/buttonGradient.png);
	background-color:#eee;
	font-size:9px;
}
input[type=submit].small:active, input[type=button].small:active {
	background-image:url(../images/buttonGradientPressed.png);
	background-color:#888;
	color:#999;
}
input[type=submit].small:disabled, input[type=button].small:disabled {
	background-image:url(../images/buttonGradientDisabled.png);
	color:#999;
}