/*
	Comment
*/

* {
	box-sizing: border-box;
}

a { /* Comment */ color: /* Comment */ Blue; }

a:hover {
	text-decoration: underline dotted;
}

html, body {
    height: 100%;
    margin: 0;
}

.column {
	float: left;
	width: 50%;
	padding: 15px;
}

.last-update {
	font-style: italic;
	text-align: center;
}

.small-space-around {
	font-size: smaller;
	margin: 11px;
}

.my-pic {
	float: right;
	height: 100px;
	width: 100px;	
}

.navigation-list {
	float: left;
}

.navigation-list-right {
	float: right;
	width: 50%;
}

.navigation-list-right:hover {
	overflow: visible;
}

.navigation-panel {
	background-color: #888888;
	list-style-type: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	}

.navigation-refs{
	color: white;
	display: inline-block;
	height: 100px;
	line-height: 100px;
	padding-left: 16px;
	padding-right: 16px;
	text-align: center;
	text-decoration: none;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

.TestClass {
	color: Black;
	background-color: White;
	text-align: left;
}

.title-style {
    font-family: Arial, Helvetica, sans-serif;
	font-size: larger;
	font-weight: bold;
	text-align: center;
}




