*
{
	font-family: 'Tahoma', sans-serif;
	color: #DEDEDE;
}

a
{
	color: #6BA1FE;
	text-decoration: None;
	font-weight: bold;
}

body
{
	/* Background pattern modified from https://projects.verou.me/css3patterns/ */
	background-color: #404040;
	/* background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(56,56,56,.5) 1px, rgba(56,56,56,.5) 12px); */
	background-image: url("hex_tile.png");
	
	max-width: 1250px;
	margin-left: auto;
	margin-right: auto;
	font-size: 100%;
	
	/*0 0 3px rgba(121,237,237,.5)*/
	/* Orig was #f1b3fd */
	/*box-shadow: 0 0 10px 6px rgba(139, 188, 230, 0.8); this one is the contributor role color*/
	box-shadow: 0 0 10px 6px rgba(111, 119, 235, 0.8); /* Orig was #f1b3fd */
}

.content
{
	padding: 15px;
	margin-left: auto;
	margin-right: auto;
	background-color: #232323;
}

.tab
{
	overflow: hidden;
	text-align: center;
}

.tab button
{
	background-color: #eeeeee;
	border: none;
	border-radius: 2px;
	outline: none;
	cursor: pointer;
	padding: 5px;
	vertical-align: middle;
	color: #000000;
	font-size: 40px;
	height: 62px;
}

.tab button.active
{
	background-color: #b6b6b6;
}

pre
{
	overflow: auto;
}

code
{
	font-family: 'courier new', monospace;
}

h2
{
	padding-top: 1em;
	font-size: 1.75em;
}

h3
{
	padding-top: 0.5em;
	font-size: 1.5em;
}

h4
{
	font-size: 1.25em;
}

img
{
	max-width: 100%;
	max-height: 100%;
}

.full_banner
{
	display: inline-block;
}

.mobile_banner
{
	display: none;
}

@media screen and (max-width: 600px)
{
	.full_banner
	{
		display: none;
	}
	
	.mobile_banner
	{
		display: inline-block;
	}
}

.event_end
{
	border-style: solid;
	border-color: #6F77EB;
	border-radius: 15px;
	padding: 15px;
	background: #22233B;
	/*color: #404040;*/
}

.event_end > a
{
	color: #3876E0;
}