html {
	cursor: url("cur.cur"), auto;
}

html,
body {
	height: 100%;
	margin: 0;
}

body {
	background: #999999;
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
}

a:hover {
	cursor: url("curli.cur"), auto;
}

button:hover {
	cursor: url("curli.cur"), auto;
}

table {
	border-collapse: collapse;
}

.main {
	width: 980px;
	background: #ffffff;
}

.header {
	background: #003366;
	color: white;
	padding: 5px;
	font-size: 30px;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.header img {
	height: 60px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 11px;
}

.nav {
	background: #cccccc;
	font-size: 13px;
	padding: 6px;
}

.nav a {
	margin-right: 12px;
	color: #0000cc;
	text-decoration: none;
}

.nav a:hover {
	text-decoration: underline;
}

.ticker {
	background: #ffffcc;
	border-bottom: 1px solid #000;
	overflow: hidden;
	white-space: nowrap;
	font-size: 12px;
	color: red;
}

.ticker span {
	display: inline-block;
	padding-left: 100%;
	animation: scroll 12s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

.content {
	padding: 12px;
	font-size: 14px;
}

.sidebar {
	background: #eeeeee;
	width: 220px;
	vertical-align: top;
	padding: 8px;
	border-right: 2px solid #000;
}

.box {
	border: 1px solid #000;
	margin-bottom: 10px;
	padding: 6px;
	background: #ffffff;
}

.footer {
	background: #003366;
	color: white;
	text-align: center;
	font-size: 12px;
	padding: 6px;
}
