/* Moved css from <style> to here as it literally makes sense to do so */

html {
	cursor:url(/media/images/cursor.png), auto;
	height: 100%;
}

body {
	background-color: black;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
}

ul {
	background-color: #ffffff;
}

li {
	display: inline;
	margin:0;
	padding:0;
}

a {
	color: rgb(60, 60, 255);
	cursor:url(/media/images/cursor_hover.png), auto;
}

td {
	border:0px solid black;
	opacity:1;
}

img {
	z-index: 999;
	opacity: 1.0;
}

#Body {
	text-align: center;
	width: 1000px;
	margin: 0 auto;
}

#Content {
	margin-top: 20px;
	text-align: left;
}

#News {
	padding: 3px;
	width:395px;
	height:480px;
	float:left;
}

#Buttons {
	float:left;
	width:585px;
}

#Buttons > table {
	margin: 0 auto;
}

#Button {
	text-align: center;
	width: 150px;
	padding:43px;
}

#Button > a > img {
	width:150px;
	height:150px;
}

#quote {
	font-size: smaller;
}

hr {
	width: 980px;
}

#Links a {
	color: white;
}

@keyframes blinking {
	0% {
		border: 2px red solid;
	}
	50% {
		border: 2px red solid;
	}
	100% {
		border: 2px darkred solid;
	}
}

@-webkit-keyframes blinking {
	0% {
		border: 2px red solid;
	}
	50% {
		border: 2px red solid;
	}
	100% {
		border: 2px darkred solid;
	}
}

.Disclaimer {
	animation: blinking 1s infinite;
	-webkit-animation: blinking 1s infinite;
	text-align: center;
	width: 975px;
	margin: 0 auto;
	margin-top:15px;
}

.Disclaimer h4 {
	margin: 5px;
}