:root {
	--ui-loadmorebutton-bg: #fff8;
	--ui-loadmorebutton-fg: #111;
	--ui-loadmorebutton-hover-bg: #aaa8;
	--ui-loadmorebutton-disabled-bg: #e4e4e488; /*888*/
	--ui-loadmorebutton-disabled-fg: #444;
}

@font-face {
	font-family: ndsbios;
	src: url('/pokefusion/res/ndsbios.ttf') format('truetype');
}

@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: #000000;
	background-color: #cccccc;
	background: url('/pokefusion/res/wallpaper-jpg.jpg') no-repeat center center fixed;
	background-size: cover;
}

.TitleBox {
	border-style: solid;
	border-width: 3px;
	border-color: #035;
	border-radius: 3px;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	background:#ffffff88;
}
.TitleText {
	font-family: 'segoeuilight';
	font-size: 32;
	/*font-weight: bold;*/
	color: #000;
}

.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: #014;
	/*text-decoration: none;*/
}

a:active {
	color: #69f;
	text-decoration: none;
}

a:visited {
	color: #035;
	text-decoration: none;
}

a:hover {
	color: #69f;
	text-decoration: none;
	background-color: #014
}

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;
	}

	/*.projects h2 {
		font-family: segoeui;
	}*/

	.object-list-item {
		border-style: solid;
		border-width: 2px;
		border-radius: 2px;
		padding-top: 5px;
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 5px;
		margin-bottom: 6px;

		/*width: 100%;*/
		display: flex;

		border-color: #035;
		background: #ffffff88;

		color: unset;
	}

	.object-list-item:hover {
		background: #ffffffbb;
		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;
	}

	.projects .object-list-item-title {
		font-family: ndsbios;
		font-size: 20pt;
	}

	.projects .object-list-item-message {
		font-family: ndsbios;
		font-size: 16pt;
	}

	@media only screen and (max-width: 800px) {
		.object-list-container {
			float: none;
			width: 100%;
			padding: 2px;
		}
	}

/********************************************************************************
 * 7.3 - loadmore stuff
 */
	button.loadmore {
		padding: 6px 10px;
		margin: 4px;
		width: 100%;
		font-size: 14px;
		/*border: 1px solid;*/
		border: none;
		border-radius: 3px;
		cursor: pointer;

		background-color: var(--ui-loadmorebutton-bg);
		color: var(--ui-loadmorebutton-fg);
	}

	button.loadmore:hover {
		background-color: var(--ui-loadmorebutton-hover-bg);
	}

	button.loadmore.disabled {
		background-color: var(--ui-loadmorebutton-disabled-bg);
		color: var(--ui-loadmorebutton-disabled-fg);
		cursor: unset;
	}

	.feed-loadmore-container {
		/*padding-top: 4px;
		padding-left: 4px;
		padding-right: 4px;
		width: 100%;

		margin-top: 5px;
		margin-bottom: 5px;
		display: flex;

		border: 1px solid;
		border-top: 4px solid;
		border-radius: 4px;

		background-color: var(--feed-loadmore-bg);
		border-color: var(--feed-loadmore-border);*/

		border-style: solid;
		border-width: 2px;
		border-radius: 2px;
		padding-top: 5px;
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 5px;
		margin-bottom: 6px;

		/*width: 100%;*/
		display: flex;

		border-color: #035;
		background: #ffffff88;

		color: unset;
	}