body {
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 200;
	color: var(--body-color);
	background: #fff;
	font-size: 0.9rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
	body {
		padding: 0;
	}
}

img {
	image-rendering: optimizeSpeed;
	/* STOP SMOOTHING, GIVE ME SPEED  */
	image-rendering: -moz-crisp-edges;
	/* Firefox                        */
	image-rendering: -o-crisp-edges;
	/* Opera                          */
	image-rendering: -webkit-optimize-contrast;
	/* Chrome (and eventually Safari) */
	image-rendering: optimize-contrast;
	/* CSS3 Proposed                  */
	-ms-interpolation-mode: nearest-neighbor;
	/* IE8+ */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
}

h4 {
	font-size: 1.2rem;
}

p {
	line-height: 1.5;
}

a {
	text-decoration: none;
}

table {
	border-collapse: collapse;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

.all-container {
	width: 100%;
	margin: auto;
	padding: 0;
}

.all-container > div {
	max-width: 47rem;
}

.con {
	margin-bottom: 3vh;
	margin-top: 0;
}

.div-title {
    background-color: #4b2e83;
    width: 100%;
}

.row-title {
    width: 65vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
    color: white;
}

.div-content {
	width: 65vw;
	margin-top: 4vh;
}

.posted {
	color: #888;
	margin: 0;
}

.due {
	color: #333;
	margin: 0;
	font-weight: 500;
}

.strong {
	font-weight: 500;
}