@font-face {
	font-family: 'texgyreadventorregular';
	src: url('/css/texgyreadventor-regular-webfont.eot');
	src: url('/css/texgyreadventor-regular-webfont.eot?#iefix') format('embedded-opentype'),
		url('/css/texgyreadventor-regular-webfont.woff') format('woff'),
		url('/css/texgyreadventor-regular-webfont.ttf') format('truetype'),
		url('/css/texgyreadventor-regular-webfont.svg#texgyreadventorregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

div#content-box {
	border: 1px solid #C0C0C0;
	background-color: white;
	min-height: 600px;
	padding: 10px;

	/* Adds rounded corners */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */

	/* Adds a shadow behind div */
	-moz-box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.5);
}

/* Override table styles inherited from other stylesheets that I cannot simply unlink to */
table {
	margin: auto;
}

th,td {
	border: none;
	padding: 0.25em;
}

.button-glossy {
	border: 1px solid #79A854;
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.1, #ABDC28), color-stop(0.9, #94C60F) );
	background: -moz-linear-gradient( center top, #ABDC28 10%, #94C60F 90% );
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ABDC28', endColorstr='#94C60F');
	background-color: #ABDC28;
	-moz-box-shadow: inset 0px 1px 2px 0px #FFFFFF;
	-webkit-box-shadow: inset 0px 1px  2px 0px #FFFFFF;
	box-shadow: inset 0px 1px  2px 0px #FFFFFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-shadow: 1px 1px 2px #000000;
	font-weight: bold;
	margin: 5px 5px;
	padding: 6px 6px;
	color: #FFFFFF;
	letter-spacing: 1px;
	font-family: 'Arial', sans-serif;
	font-size: 16px;
	width: 150px;
	text-transform: capitalize;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
}
.button-glossy:hover {
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0.1, #94C60F), color-stop(0.9, #ABDC28) );
	background: -moz-linear-gradient( center top, #94C60F 10%, #ABDC28 90% );
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#94C60F', endColorstr='#ABDC28');
	background-color: #94C60F;
}
.button-glossy:active {
	position: relative;
	top: 1px;
	left: 0px;
}