table {
	margin: 0 auto;
	
	font-family:Arial, Helvetica, sans-serif;
	font-size:11pt;
	background-color:#333;
	border:1px solid #444;
	
	-moz-box-shadow:1px 1px 4px #000;
	-webkit-box-shadow:1px 1px 4px #000;
	box-shadow:1px 1px 4px #000;
	-webkit-box-reflect:
		below 5px 
		-webkit-gradient(
			linear, 
			left top, 
			left bottom, 
			from(transparent), 
			color-stop(0.6, transparent), 
			to(rgb(18, 18, 18))
		);
		
	max-width: 1024px;
}
table th {
	font-size:12pt;
	font-weight:normal;
	color:#777;
	text-shadow:0px 0px 1px #aaa;
}
table td {
	color:#aaa;
	text-align:center;
	padding: 5px 5px 0px 5px;
	border:1px solid #393939;
	-moz-box-shadow:0px 0px 2px #000 inset;
	-webkit-box-shadow:0px 0px 2px #000 inset;
	box-shadow:0px 0px 2px #000 inset;
}
table td object,
table td embed {
	outline:none;
}
table td.desc{
	width:450px;
	text-overflow:ellipsis;
}
table td h2{
	margin:0px 0px 5px 0px;
	padding-bottom:1px;
	font-size:10pt;
	font-weight:normal;
	color:#ddd;
	text-shadow:0px 0px 1px #fff;
	border-bottom:1px solid #555;
}
table td a:link {
	color:#55a;
}
table td a:visited {
	color:#558;
}
table img {
	max-height:60px;
	cursor:pointer;
}
td.contactCell {
	color:#fff;
	text-align:left;
	vertical-align:top;
	padding:20px 20px;
	width:500px;
}
.contactContent {
	display: flex;
	flex-flow: column nowrap;
}
@media (max-width: 1024px) {
	table {
		font-size: 9pt;
		max-width: 800px;
	}
	table th {
		font-size: 10pt;
	}
	table td h2{
		margin:0px 0px 2px 0px;
	}
	table img {
		max-height:48px;
		max-width:60px;
	}
	table td {
		padding: 2px 2px 0px 2px;
	}
	td.contactCell {
		width:200px;
	}
}
@media (max-height: 600px) {
	table {
		font-size: 7pt;
	}
	table th {
		font-size: 8pt;
	}
	table td h2{
		font-size:8pt;
		margin:0px;
	}
}
@media (min-width: 600px) and (max-width: 800px) {
	table {
		max-width: 540px;
	}
}
@media (max-width: 600px) {
	td:nth-child(1) {
		display:none;
	}
	/* To apply with previous declaration */
	/* Avoid conflict with table on bonus.php page */
	td[colspan="2"], td[style*="padding-bottom"] {
		display:block;
	}
	table {
		max-width: 320px;
	}
	td.contactCell {
		padding:5px 5px;
		width:120px;
	}
}
