/*

This CSS file was written by Matt "MCFAN" Gibson for

http://www.mattgibson.id.au/

Mike Tyson

*/


/* Tables */
table
{
	background-color: #4169e1;
	border: 1px solid #000;
	border-collapse: collapse;
	color: #fff;
	margin: 20px auto;
	width: 600px;
}
table td, th
{
	border: 1px solid #000;
	border-collapse: collapse;
	padding: 10px;
	text-align: center;

	/* Transition effects */
	transition: background-color .75s ease;
	-moz-transition: background-color .75s ease;
	-ms-transition: background-color .75s ease;
	-o-transition: background-color .75s ease;
	-webkit-transition: background-color .75s ease;
}
table tr:hover td
{
	background-color: #87beec;
	color: #fff;

	/* Transition effects */
	transition: background-color .75s ease;
	-moz-transition: background-color .75s ease;
	-ms-transition: background-color .75s ease;
	-o-transition: background-color .75s ease;
	-webkit-transition: background-color .75s ease;
}

/* Jeff Fenech Link */
#jeff-fenech-link
{
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

#jeff-fenech-link:hover
{
	text-decoration: underline;
}

/* Result */
.win a, .loss a, .no-contest a
{
	border: 1px solid #000;

	/* Rounded Corners */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;

	cursor: not-allowed;
	display: inline-block;
	padding: 5px;
	text-decoration: none;
}

.win a
{
	background-color: #4bb74c;
	color: #fff;
}

.loss a
{
	background-color: #d41a1f;
	color: #fff;
}

.no-contest a
{
	background-color: #cdc0b0;
	color: #000;
}

.win a:hover, .loss a:hover, .no-contest:hover

{
	text-decoration: none;
}