@font-face {
	font-family: segoeui;
	src: url('/resources/fonts/segoeui.ttf') format('truetype');
}

@font-face {
	font-family: segoeuilight;
	src: url('/resources/fonts/segoeuil.ttf') format('truetype');
}

body {
	font-family: 'segoeui', arial;
	font-size: 10pt;
	color: #cccccc;
	background-color: #000000;
}

.TitleBox {
	border-style: solid;
	border-width: 1px;
	border-color: #040;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	background:#111111;
	max-width: 500px;
	text-align: center;
}
.TitleText {
	font-family: 'segoeuilight';
	font-size: 32;
	/*font-weight: bold;*/
	color: #cccccc;
}

.navBarLinks {
	font-size: 10;
}

.BodyBox {
	border-style: solid;
	border-width: 1px;
	border-top: 4px solid;
	border-bottom: 4px solid;
	border-color: #040;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	background: #111111;
}

.subSiteBox {
	width: 300px;
	border-style: solid;
	border-width: 1px;
	border-top: 2px solid;
	border-bottom: 2px solid;
	border-color: #060;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	background: #333;
}

.subSiteBox:hover {
	background: #222;
}

a.subSiteLink:hover {
	background-color: unset;
}

@media only screen and (max-width: 760px) {
	.subSiteBox {
		width: 90%;
	}
}

img.subSiteLogo {
	vertical-align: middle;
}

.subSiteTitle {
	font-size: 20px;
}

.subSiteLabel {
	font-size: 12px;
}

a:link {
	color: #0F5;
	text-decoration: none;
}

a:active {
	color: #2F5;
	text-decoration: none;
}

a:visited {
	color: #5F5;
	text-decoration: none;
}

a:hover {
	color: #0F5;
	text-decoration: none;
	background-color: #040
}

table {
	table-layout: fixed;
	width: 100%;
	font-size: 10pt;
}

/*===================================================================*/

.main-content-container {
	max-width: 95%;
	margin: 0 auto;
	padding: 0 5px;
}

.object-list-container {
	/*position: sticky;*/
	width: 35%;
	float: left;
	flex: 1;

	margin-bottom: 12px;
	/*margin-left: 12px;*/
	padding-left: 10px;
	/*margin-right: 12px;*/

	/*border-color: #040;*/
}

.projects {
	width: 60%;
	margin-left: 0;
}

.object-list-item {
	border-style: solid;
	border-width: 1px;
	border-radius: 2px;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	margin-bottom: 6px;

	/*width: 100%;*/
	display: flex;

	border-color: #222;
	background: #111;

	color: unset;
}

.object-list-item:hover {
	background: #222;
	cursor: hand;
}

.object-list-item a.object-list-main-link {
	color: unset;
	display: flex;

	/*width: 100%;*/
}

.object-list-item a.object-list-main-link:hover {
	background-color: unset;
}

.object-list-item a.secondary-link {
	/*display: flex;*/
}

.object-list-icon-container {
	float: left;
}

.object-list-icon {
	border-style: solid;
	border-radius: 24px;
	border-color: #333;
	border-width: 1px;

	width: 48px;
	height: 48px;
	margin-right: 12px;

	object-fit: cover;
}

.object-list-item-content {
	flex: 1;
	font-size: 13px;
}

.object-list-item-title {
	font-weight: bold;
	font-size: 20px;
}

.object-list-item-message {
	padding-top: 4px;
}

@media only screen and (max-width: 800px) {
	.object-list-container {
		float: none;
		width: 100%;
		padding: 2px;
	}
}