body
{
	background-color: #b79e64;
	font-size: 1.5em;
	margin: 0;
	padding: 1em;
}
#tabs
{
	display: flex;
	margin-bottom: -1px;
	padding: 0 1em;
	font-weight: bold;
}
#tabs > A
{
	color: #000;
	padding: 10px 25px;
	margin-right: 5px;
	border: 1px solid #000;
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	position: relative;
	text-decoration: none;
}
#tabs > :not(.this)
{
	background-color: #cfb372;
}
#tabs > :hover
{
	background: #e9cd8c;
}
#tabs > .this
{
	background-color: #e6c77f;
	z-index: 1;
	/* this tab is a skosh larger */
	padding-top: 12px;
	margin-top: -2px;
}
@media (max-width: 800px)
{
	#tabs
	{
		flex-direction: column;
	}
	#tabs > A
	{
		margin: 0;
		border: 1px solid #000;
		margin-bottom: -1px;
	}
	#tabs > A:last-child
	{
		margin-bottom: 0;
	}
	#tabs > A:not(:first-child)
	{
		border-radius: 0;
	}
	#tabs > .this
	{
		margin: 0 -4px -1px 4px;
	}
	#tabs > :not(.this)
	{
		margin-left: -4px;
		margin-right: 4px;
	}
}

body > div
{
	background-color: #e6c77f;
	border: 1px solid #000;
	padding: 1em;
}
body > div > H1:first-child
{
	margin-top: 0;
}

.emote
{
	height: 1em;
	position: relative;
	top: 0.2em;
}

.gallery
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 1em;
}
@media (max-width: 600px)
{
	.gallery
	{
		grid-template-columns: 1fr;
	}
}
.gallery > DIV
{
	border: 2px solid #cfb372;
	background-color: rgba(0,0,0,0.05);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.gallery > DIV > IMG, .gallery > DIV > VIDEO
{
	width: 100%;
	display: block;
}
.gallery > DIV > P:not(.memearrow)
{
	padding: 15px;
	margin: 0;
}

.memearrow
{
	background-color: #D6DAF0;
	color: #789922;
	border: 2px solid #B7C5D9;
	margin: 0.4em;
	padding: 0.4em;
}

table
{
	border-collapse: collapse;
}
td,th
{
	border: 3px solid #000;
	padding: 4px;
}
