/* Turn off borders on linked images. */
a img
{
	border: 0;
}

/* kill default form margin/padding */
form
{
	margin: 0;
	padding: 0;
}

/* Make sure our inline elements vertical-align properly. */
input,
select,
label
{
	vertical-align: middle;
}

/* Make sure all elements inherent font properties properly. */
table,
thead,
tbody,
tfoot,
tr,
th,
td,
input,
select,
textarea
{
	font-size: 1em;
	font-family: inherit;
}

/* Make table cells default to top vertical alignment since more often than not we want it this way. */
td
{
	vertical-align: top;
}