body {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

div.column {
	width: 25%;
	float: left;
	padding-right: 20px;
}

h4 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: black;
}

.hidden {
	display: none;
}

#employee-focus-slider {
	margin-left: 10%;
	width: 80%;
}

datalist {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	writing-mode: vertical-lr;
	margin: auto;
	width: 80%;
}
option {
	padding: 0;
	transform: rotate(-45deg);
}
option:hover {
	color: grey;
}

#newsTicker {
	height: 50px;
	overflow: hidden;
	background: #fefefe;
	color: #333;
	border: 1px solid #4a4a4a;
	position: relative;
}

.progress-bar {
	position: relative;
	margin: 1em;
	height: 25px;
	border: 1px solid black;
	padding: 0px 0px;
}

.progress-bar p {
	position: absolute;
	margin: auto;
	width: 100%;
	text-align: center;
	line-height: 25px;
}

.progress {
	position: absolute;
}

#player-build-progress {
	transition: width 0.1s linear;
}

.progress-bar .progress {
	width: var(--progress, 0%);
	height: 100%;
	background: darkgrey;
	transition: width 0.25s linear;
}

@property --progress {
	syntax: "<length>";
	initial-value: 0%;
	inherits: true;
}

#newsTicker p {
	font-size: 1.5em;
	font-weight: bold;
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0px;
	line-height: 50px;
	text-align: center;
	-moz-transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-moz-animation: scroll-left 20s linear infinite;
	-webkit-animation: scroll-left 20s linear infinite;
	animation: scroll-left 20s linear infinite;
}
#newsTicker a {
	text-decoration: none;
	color: #333;
}
#newsTicker a:visited {
	text-decoration: none;
	color: #333;
}
#newsTicker sup {
	font-size: 0.6em;
	vertical-align: super;
	line-height: 0;
}
#newsTicker sup a {
	text-decoration: underline;
	color:blue;
}

#newsTicker sup a:visited {
	text-decoration: underline;
	color:blue;
}

@-moz-keyframes scroll-left {
	0% {
		-moz-transform: translateX(100%);
	}
	100% {
		-moz-transform: translateX(-100%);
	}
}

@-webkit-keyframes scroll-left {
	0% {
		-webkit-transform: translateX(100%);
	}
	100% {
		-webkit-transform: translateX(-100%);
	}
}

@keyframes scroll-left {
	0% {
		-moz-transform: translateX(100%);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	100% {
		-moz-transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.project-container {
	border: 1px solid black;
	margin: 5px;
}
.project-container:hover {
	background-color: lightgrey;
}

.project-container.disabled {
	opacity: 50%;
}
.project-container.disabled:hover {
	background-color: white;
}

.project-container .project-title {
	text-align: center;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 0px;
}
.project-container .project-cost {
	text-align: center;
	margin: 0px;
}
.project-container .project-description {
	text-align: center;
	margin-top: 0px;
	margin-bottom: 10px;
}