body {
	background: rgba(102, 51, 0, 1) url(background.gif) repeat-x;
	color: rgba(102, 51, 0, 1);
	font-family: verdana, arial;
}

@font-face {
    /* 1. Define the font-family name you will use in your CSS rules */
    font-family: ja'JacobsXCModern'; 

    /* 2. Point to the specific font file */
    src: url('SpotifyMixUI-Bold-4264b799009b1db5c491778b1bc8e5b7.woff2') format('woff2');
    
    /* 3. Define the weight and style to map it correctly */
    font-weight: 700; /* Assuming "Bold" corresponds to 700 */
    font-style: normal; 

    /* 4. Recommended: Controls how text is displayed while the font loads */
    font-display: swap; 
}

.menu {
	margin: 0 auto;
	margin-left: 0;
	padding: 0;
	height: 30px;
	width: 100%;
	display: block;
	background: url('topMenuImages.png') repeat-x;
}

.menu li {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline;
}

.menu li a {
	float: left;
	padding-left: 15px;
	display: block;
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	font: 14px arial;
	cursor: pointer;
	background: url('topMenuImages.png') 0px -30px no-repeat;
}

.menu li a span {
	line-height: 30px;
	float: left;
	display: block;
	padding-right: 15px;
	background: url('topMenuImages.png') 100% -30px no-repeat;
}

.menu li a:hover {
	background-position: 0px -60px;
	color: rgba(255, 255, 255, 1);
}

.menu li a:hover span { background-position: 100% -60px; }
.menu li a.active,
.menu li a.active:hover {
	line-height: 30px;
	font: 14px verdana, arial;
	background: url('topMenuImages.png') 0px -90px no-repeat;
	color: rgba(102, 51, 0, 1);
}

.menu li a.active span,
.menu li a.active:hover span {
	background: url('topMenuImages.png') 100% -90px no-repeat;
}

#main {
	margin: auto;
	width: 900px;
	height: auto;
	min-height: 1000px;
	background: rgba(255, 204, 0, 1);
	font-family: arial;
	overflow: auto;
}

#main p {
	color: rgba(102, 51, 0, 1);
	font-size: 200%;
	width: 500px;
	background: rgba(255, 204, 0, 1);
	margin-left: 50px;
}

#main p2 {
	color: rgba(102, 51, 0, 1);
	font-size: 100%;
	display: inline;
	margin-left: 0px;
}

#text {
	margin-left: 100px;
	padding: 5px;
	color: rgba(102, 51, 0, 1);
}

#text2 {
	margin-left: 220px;
	padding: 5px;
	color: rgba(102, 51, 0, 1);
}

#month {
	color: rgba(102, 51, 0, 1);
	font-size: 75%;
	width: 500px;
	margin-left: 25px;
	border-bottom-style: solid;
	border-bottom-color: rgba(255, 255, 255, 1);
	border-bottom-width: 2px;
	border-right-style: solid;
	border-right-color: rgba(255, 255, 255, 1);
	border-right-width: 2px;
	padding: 5px;
}

#right {
	float: right;
	color: rgba(102, 51, 0, 1);
	height: auto;
	font-size: 50%;
	width: 250px;
	/* border-left-style: dashed ; 
	border-left-color: rgba(102, 51, 0, 1); 
	border-left-width: 1px; */
	background: rgba(230, 221, 139, 1) url(shadow1.gif) repeat-y;
	display: inline;
}

#footer {
	color: rgba(255, 255, 255, 1);
	font-size: 90%;
	text-align: center;
	font-family: verdana, arial;
}

.filterbox { border: 2px solid rgba(102, 51, 0, 1); }
.filterbox input { margin: 0.4vh 0.5vw; }
.filterbox {
	display: block;
	margin: 1vh 1vw;
	font-size: 14px;
}

label {display: inline-block; }
legend, label { font-weight: 600; }
legend {
	font-size: 15px;
	padding: 0.2em 0.5em;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

legend:before {
	position: absolute;
	content: '';
	height: 8px;
	border-right: 2px solid rgba(102, 51, 0, 1);
	left: 0px;
	top: 7px;
}

legend:after {
	position: absolute;
	content: '';
	height: 8px;
	border-right: 2px solid rgba(102, 51, 0, 1);
	right: 0px;
	top: 7px;
}

th { cursor: default; }
th[data-active] {
	position: relative;
	cursor: pointer;
	min-width: 75px;
}

th[data-active="true"]:before,
th[data-active="true"]:after {
	position: absolute;
	display: block;
	content: "";
	width: 0;
	height: 0;
	top: 50%;
	right: 5px;
	color: rgba(0, 0, 0, 1);
	border: 4px solid transparent;
}

th[data-active="true"].ascending:before {
	border-bottom-color: #000;
	margin-top: -9px;
}

th[data-active="true"].descending:after {
	border-top-color: #000;
	margin-top: 1px;
}
#data-table td { padding: 2px 2px; }
#data-table,
#data-table th,
#data-table td {
	border: 1px solid rgba(0, 0, 0, 1);
	font-size: 14px;
}

#data-table {
	margin: 1vh 1vw;
	width: calc(100% - 2vw);
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}