summary {
    cursor: pointer;
}

body {
	background:#000 url(img/mush-bg.png);
	color:#fff;
    overflow-y: scroll;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(24 27 39);
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

a {
	/*color:#949ab7; Old Blue*/
	color:#bbd6ff; 
	text-decoration:none;
}

p {
	white-space: pre-line;
}

.grey {
	color:#C0C0C0;
	font-family:monospace;
	font-size:14px;
	text-align:center;
}

hr {
	margin: 0 10px;
    border: 0;
    height: 16px;
    background-position: center;
    background-image: url(img/border-divider.png);
    background-repeat: repeat-x;
    background-size: 50px 4px;
    overflow: hidden;
}

.additional-links {
	padding-top:0;
	padding-left:25px;
	padding-right:25px;
}

.disable {
	pointer-events:none; 
	opacity:0.5;
    user-select: none;
}

/* Image Corners */
.lefttop { position: absolute; top: -10px; left: -10px; }
.leftbottom { position: absolute; bottom: -10px; left: -10px; }
.righttop { position: absolute; top: -10px; right: -10px; }
.rightbottom { position: absolute; bottom: -10px; right: -10px; }
header .cornerpieces img {z-index: 667}

/* Main */
main {
    box-sizing: border-box;
	position:relative;
	max-width: 1200px;
	border: 10px solid transparent;
	border-image: url(img/border.png) 10 fill repeat;
	margin: auto;
}

main p {
	margin: 0px;
    padding: 10px;
}

/* Header Specific */

header {
	position:relative;
	box-sizing: border-box;
	margin:14px auto;
	min-height:60px;
    max-width: 400px;
	border: 10px solid transparent;
	border-image: url(img/border.png) 10 fill repeat;
}

nav {
	display:flex;
	justify-content:space-between;
}
nav img {max-height:40px;}
nav a {
    height: 40px;
    line-height: 40px;
}

#nav-title{
	text-align:center;
    cursor: default;
}

#lefttop, #leftbottom, #righttop, #rightbottom {z-index:15;pointer-events:none;}
#nav-menu {text-align:left; margin-left: 10px;}
#nav-logo {text-align:right; margin-right: 10px;}
#nav-top img, #nav-logo {z-index: 6666;}
#nav-title {
	text-align:center;
    font-family: monospace;
	font-size:24px;
	letter-spacing: .2rem;
}

#menu-links {
	flex-basis:100%;
	text-align:center;
	width:100%;
	font-family: monospace;
	font-size: 20px;
	overflow:hidden;
	position: absolute;
	border: 10px solid transparent;
	border-image: url(img/border.png) 10 fill repeat;
	border-top:0;
	margin-left:-10px;
	top:50px;
	z-index: 5;
}

#menu-links a {
	height: unset;
	line-height: unset;
	display: block;
	padding: 10px 0;
}

#nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Details*/


details > summary {
  list-style: none;
  border-radius: 5px;
  list-style-type: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

details > summary::marker {
  display: none;
}

details p {padding:0 10px;}

/*Misc*/

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}