html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

.column {
	position: relative;
	/*float: left;*/
	display: inline-block;
	width: 320px;
	margin-bottom: 16px;
	padding: 0 8px;
}

@media screen and (max-width: 650px) {
	.column {
		width: 100%;
		display: block;
	}
}

.card {
	/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
	background: #F5F5F5;
	color: #000;
	padding: 20px;
	border-radius: 25px;
	/* rounded corners*/
	margin: 10px;
}

.red {
	border-bottom: 2px solid #d40625;
	border-right: 2px solid #d40625;
}

.orange {
	border-bottom: 2px solid #f77f07;
	border-right: 2px solid #f77f07;
}

.pink {
	border-bottom: 2px solid #cc0ecc;
	border-right: 2px solid #cc0ecc;
}

.purple {
	border-bottom: 2px solid #800ecc;
	border-right: 2px solid #800ecc;
}

.green {
	border-bottom: 2px solid #109436;
	border-right: 2px solid #109436;
}

.yellow {
	border-bottom: 2px solid #fff000;
	border-right: 2px solid #fff000;
}

.cyan {
	border-bottom: 2px solid #08c0d1;
	border-right: 2px solid #08c0d1;
}

.blue {
	border-bottom: 2px solid #092ee8;
	border-right: 2px solid #092ee8;
}

.container {
	padding: 0 16px;
}

.container::after,
.row::after {
	content: "";
	clear: both;
	display: table;
}

.pic img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	border: 5px solid #116dbd;
}

.title {
	color: grey;
}

.button {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 8px;
	color: white;
	background-color: #116dbd;
	text-align: center;
	cursor: pointer;
	width: 100%;
	border-radius: 15px;
}

.button:hover {
	background-color: #6a95ba;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20pt;
}

h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
}

td {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: top;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
}

.greybar {
	background-color: #CCCCCC;
	height: 1px;
	width: 100%;
	line-height: 2px;
}

.bottom {
	font-weight: normal !important;
	text-align: center !important;
	font-style: oblique !important;
	font-size: 9pt;
}