#awards {
	width: 474px;
	height: 119px;
	margin-left: auto;
	margin-right: auto;
}

.award {
	border: 1px solid #a6a6a6;
	padding: 4px;
	height: 100px;
	margin: 4px;
	float: left;
	width: 140px;
}
table#downloads {
	margin-left: auto;
	margin-right: auto;
	-moz-box-shadow: -0.5pt 1pt 3pt gray;
	-webkit-box-shadow: -0.5pt 1pt 3pt gray;
	box-shadow: -0.5pt 1pt 3pt gray;

	border-collapse: separate;
	border-spacing: 0;

	-moz-border-radius: 5pt;
	-webkit-border-radius: 5pt;
	border-radius: 5pt;
}
/*Faking border-collapse: collapse so that we can use border-radius. The real thing prevents it.*/
table#downloads tr th, table#downloads tr td {
	border-left: none;
	border-bottom: none;
}
table#downloads tr th:first-child, table#downloads tr td:first-child {
	border-left: 1pt solid gray;
}
table#downloads tr:last-child th, table#downloads tr:last-child td {
	border-bottom: 1pt solid gray;
}
/*And now, border-radius on the corner cells as well as the table.*/
table#downloads tr:first-child th:first-child {
	-moz-border-radius-topleft: 5pt;
	-webkit-border-top-left-radius: 5pt;
	border-top-left-radius: 5pt;
}
table#downloads tr:last-child th:first-child {
	-moz-border-radius-bottomleft: 5pt;
	-webkit-border-bottom-left-radius: 5pt;
	border-bottom-left-radius: 5pt;
}
table#downloads tr:first-child td:last-child {
	-moz-border-radius-topright: 5pt;
	-webkit-border-top-right-radius: 5pt;
	border-top-right-radius: 5pt;
}
table#downloads tr:last-child td:last-child {
	-moz-border-radius-bottomright: 5pt;
	-webkit-border-bottom-right-radius: 5pt;
	border-bottom-right-radius: 5pt;
}
table#downloads {
	font-size: 2em;
}
table#downloads th {
	text-align: left;
}
table#downloads th small {
	/*Relative to font-size set in table#downloads above.*/
	font-size: 0.5em;
}
table#downloads td {
	font-weight: bold;
	vertical-align: middle;
}
table#downloads p {
	width: 12em;
}
table#downloads img {
	float: left;
	margin-right: 0.5em;
}
