/* reset html by Josh Comeau -- URL: https://www.joshwcomeau.com/css/custom-css-reset */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
	box-sizing: border-box;
}
/* 2. Remove default margin */
* {
	margin: 0;
}
/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
	html {
		interpolate-size: allow-keywords;
	}
}
body {
	/* 4. Add accessible line-height */
	line-height: 1.5;
	/* 5. Improve text rendering */
	-webkit-font-smoothing: antialiased;
}
/* 6. Improve media defaults */
img, picture, video, canvas, svg { display: block; max-width: 100%; }
/* 7. Inherit fonts for form controls */
input, button, textarea, select { font: inherit; }
/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
/* 9. Improve line wrapping */
figcaption,p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
/* 10. Create a root stacking context*/
#root, #__next {
  isolation: isolate;
}

/*OLD: a,abbr,acronym,address,applet,article,aside,audio,b,blockquote,big,body,center,canvas,caption,cite,code,command,datalist,dd,del,details,dfn,dl,div,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,keygen,label,legend,li,meter,nav,object,ol,output,p,pre,progress,q,s,samp,section,small,span,source,strike,strong,sub,sup,table,tbody,tfoot,thead,th,tr,tdvideo,tt,u,ul,var{background:transparent;border:0 none;font-size:100%;margin:0;padding:0;border:0;outline:0;vertical-align:top;}ol, ul {list-style:none;}blockquote, q {quotes:none;}table, table td {padding:0;border:none;border-collapse:collapse;}img {vertical-align:top;}embed {vertical-align:top;}input[type=text], textarea{ outline:none;border-radius:0;} */

article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video {
	display: block
}
mark, rp, rt, ruby, summary, time {
	display: inline
}

/*=== utilities ===*/
/* .hide/#190 :: use 'hyd' (as utility) in place of jQuery 'hide' default */

.acenter { float:none; margin:0 auto; text-align: center; }
.aleft { float:left; margin:0; }
.aright { float:right; margin:0; }
.clear20 {clear:both; margin-bottom: 20px;}
.hide {display:none !important; visibility: hidden;}
.closed-notice {
	border: 3px dashed #ccc;
    background: #feb;
    color: #cd0a0a;
    padding: 1em 0;	
}
.alignleft {
    display: block;
    float: left;
    margin-bottom: 20px !important;
    margin-right: 20px !important;
}
.alignright {
    display: block;
    float: right;
    margin-bottom: 20px !important;
    margin-left: 20px !important;
}
.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em auto;
	text-align: center !important;
}
h1.aligncenter,
p.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 20px auto;
	text-align: center
}
.stretch { letter-spacing: .033em; font-weight: 500; }
.center-logo {
    clear: both;
    display: block;
    margin: 0 auto;
	text-align: center
}

/* ==== customization ==== */
::root {
	--font-size: 16px;
}
/* FLUID-TYPE SCALING = '@media screen' */
/* https://css-tricks.com/snippets/css/fluid-typography/ */

html {

  font-size: 16px;

}
@media screen and (min-width: 3000px) {
  html {
    font-size: 16px;
  }
  .slammin_banner h1 {
    padding: .8em 0;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
  .slammin_banner h1 {
    padding: .8em 0;
  }
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 4 * ((100vw - 320px) / 680));
  }
  .slammin_banner h1 {
    padding: 0;
  }  
}

body { 
	background: rgba(0,0,0,1) url('images/bodybg_opacity94.png') repeat center center;
	font: 82% Rockwell,Helvetica,sans-serif !important;
	margin: 0;
}

.grid-container.tabs {
	min-height: 700px;
}
/*boring stuff*/
h1,h2,h3,h4,h5,h6 {color:#911; font-family: 'Neuton', serif; text-wrap: pretty;}
h1 { display: block; font-size: 2em; font-weight: bold; }
h2 { display: block; font-size: 1.75em; font-weight: bold; }
h3 { display: block; font-size: 1.5em; font-weight: bold; }
h4 { display: block; font-size: 1.25em; font-weight: bold; }
h5 { display: block; font-size: 1em; font-weight: bold; }
h6 { display: block; font-size: .75em; font-weight: bold; }
p { display: block; font-size: 1em; line-height: 1.3; margin-bottom: 15px; }

:where(.tabcontent,footer.grid-container) :is(a:link,a:visited) {
	color: #911;
	text-decoration: underline;
}
:where(.tabcontent,footer.grid-container) :is(a:hover,a:active) {
	color: #911;
	text-decoration: underline dotted;
}

/*BEG: new tabs*/
/* Style the tab */
.tab {
  overflow: hidden;
  /* border: 1px solid #ccc; */
  background-color: #f9f9f970;
}
ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
   /*  border: 1px solid #ccc; */
    background-color: #f9f9f970;
}
ul.tab li {
    float: left;
}
ul.tab li a {
    font-family: "Lato", sans-serif;
    display: inline-block;
    color: black;
    text-align: center;
    padding: 8px 10px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 16px;
}
/* wrapper for tab contents */
.tab-wrap {
	border: solid 1px #ccc;
	border-top: none;
}
/* Style the buttons inside the tab */
.tab a {
	background-color: #aaa;
	border: solid 5px #ccc;
	border-bottom: none;
	border-radius: 10px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.2s;
	font-size: 17px;
}

/* Change background color of buttons on hover */
.tab a:hover {
	background-color: #333;
	border-bottom: dotted 5px #fff;
	color: #fff;
}

/* Create an active/current tablink class */
.tab a.active {
	background-color: #900;
	border-bottom: solid 5px #000;
	color: #fff;
	font-weight: 600;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
}
/*END: new tabs*/


/*tabs*/
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	background-color: #fff !important;
	background-image:none !important;
}
.ui-tabs .ui-tabs-nav {
	margin-bottom: 30px;

}
/* .ui-state-active {background-color: #efa !important;} */
.ui-tabs-nav,
.ui-widget-header {

	/* background-color: rgba(0,0,0,.3) !important; */
	 /*background: #1d0907 url('images/bodybg4.png') top left repeat; */
}
.ui-dialog-titlebar {color: #fff;}
.ui-tabs-panel {color: #222 !important;}
/* widget border-right over-ride */
.ui-widget-content {
    border: 0 none;
    background-color: #fff !important;
    color: #222222;
}
.slammin_banner {
	background: #404041 url('images/bannerbg01.png') repeat;
	border-radius: 10px;
	min-height: 150px;
	margin: 10px auto 0 auto;
	max-width: 100%;
	min-width: 300px;
	overflow: hidden;
	width: 98%;
}

.slammin_banner h1 {
	color: #fff;
	/* display: table-cell;	 */
    font-size: min(max(1.7em, 4vw), 2.4em);
    font-weight: 700;
	height: 100%;
    letter-spacing: .065em;
}

h1.p-site-title a.valignmid {
    display: table;
	height: 115px;
	max-height: 115px;
	min-height: 10px;
    /* Your other CSS HERE as well, minus vertial-align */	
}

h1.p-site-title a.valignmid span  {
	display: table-cell;
	text-wrap: balance;
	vertical-align: top;
}
.p-site-title a{ 
	text-decoration: none;
}
.p-site-title a:link,
.p-site-title a:visited {
	/* border-bottom: dotted 2px #fff; */
	text-decoration: underline dotted #fff;
	color: #fff;
}
.p-site-title a:hover,
.p-site-title a:active {
	/* border-bottom: solid 2px #fff; */
	text-decoration: underline #fff;
	color: #fff;
}
.slammin_banner::before,
.slammin_banner::after {
	clear: both;
	content: " ";
	display: block;
	min-height: 35px;
}

.innertabs a { 
	text-decoration: none;
}
.innertabs a:link,
.innertabs a:visited {
	border-bottom: dotted 2px #666;
	color: #666;
}

.innertabs a:hover,
.innertabs a:active {
	border-bottom: solid 2px #666;
	color: #666;
}


.ui-tabs-anchor {font-weight: 900;}
.ui-tabs-anchor:hover {background-color:#991604; color:#fff !important;}
.ui-tabs-anchor:focus {background-color:#333; color:#fff !important;}
ul.nicelist,
dl.nicelist { 
	/* border: dotted 2px #999; */
	list-style-position: inside; 
    margin: 10px;
    padding: 4px;
}
.nicelist li,
.nicelist dt,
.nicelist dd {
	list-style-type: none;
	line-height: 1.5;
	margin:0 !important;
	padding:0 !important;
}

.nicelist li:before,
.nicelist dt:before,
.nicelist dd:before  {
	color: #666;
	content: "\203a ";
	font-family: system-ui;
	font-size: 105%;
	font-weight:800;
	margin-right: 8px;
}
.nicelist li ul {
	font-size: 90%;
	padding-left: 15px;
}
.nicelist ul li:before {
	color: #666;
	/* content: "\00bb\00bb "; */
	content: "\203a\203a ";
	font-size: 105%;
	font-weight:800;
	margin-right: 8px;
}
.nicelist li:nth-of-type(odd),
.nicelist dd {
	background-color: #f8f8f8;
}

ul.infolist,.selected-file,
.selected-file2,
#file2_sel { 
	border: dotted 2px #999;
	margin: 0;
	max-width: 40%;
	padding: 0 !important;
	white-space: pre-line;
	word-wrap: break-word;
}
/* selected file per input[type=file] */
.selected-file,
.selected-file2,
#file2_sel {
	background-color: #ff9;
	padding: 3px !important;
}
.infolist li {
	list-style-type: none;
	line-height: 1.5;
	margin:0 !important;
	padding:0 !important;
}
.infolist li:before {content: "» " ; font-weight:900;}
.infolist li:nth-of-type(odd) {background-color: #ff9;}

.p-when-where-what {line-height: 1.5;}
.p-when-where-what dt {font-weight:900;}
.cta {background-color: #911; cursor:pointer;}


.media_release_info :is(a:link,a:visited) {
	color:#911;
	font-weight:600;
	text-decoration: underline;
}
.media_release_info :is(a:hover,a:active) {
	/* color:#911;
	font-weight:600; */
	text-decoration: underline dotted;
}
#dialog-link {
	padding: 2px 2px 2px 20px;
	text-decoration: none;
	position: relative;
}

.demoHeaders { margin-top: 2em; }

/* inner tab-panel over-ride */
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em .7em;
    background: none;
}
/*
#dialog-link span.ui-icon {
	margin: 0 5px 0 0;
	position: absolute;
	left: .2em;
	top: 50%;
	margin-top: -8px;
}*/
#icons {
	margin: 0;
	padding: 0;
}
#icons li {
	margin: 2px;
	position: relative;
	padding: 4px 0;
	cursor: pointer;
	float: left;
	list-style: none;
}
#icons span.ui-icon {
	float: left;
	margin: 0 4px;
}
.fakewindowcontain .ui-widget-overlay {
	position: absolute;
}
#slammin_rhymes select,
#slammin_rhymes option {
    font-size: 18px;
}
select {
	width: 200px;
}

/* ### submit button ### */
/* Buttons */
.cta,
button,
input[type="checkbox"],
input[type="file"],
/*input[type="file" i],*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #911; /* Old browsers */
	border: none;
	border-bottom: 3px solid #b93207;
	border-radius: 4px;
	color: #fff !important;
	display: inline-block;
	font-weight: 900 !important;
	padding: 11px 24px 10px;
	text-decoration: none;
}
/* === space for upload field === */
input[type="file"].rhymefiles{background-color: #991604 !important; border-bottom: solid 5px #e43c2f !important; font-size: 88% !important; color: #fff !important; max-width: 45% !important;}
input[type="file"].rhymefiles:hover {background-color: #991604 !important; border-bottom: solid 5px #333 !important; color: #fff !important; }

input.aright[type="file"] {margin:0 0 5px 8px; min-width: 45%; max-width:90%;}
input[type="submit"]:disabled,button[type="submit"]:disabled { background: #ddd; color:red !important;}
input:hover[type="submit"]:disabled,button:hover[type="submit"]:disabled { background: #ddd; color:pink !important;}

.cta:hover,
.cta:focus,
/*select:hover,
select:focus,*/
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
	background: #600; /* Old browsers */
	border-bottom: 3px solid #333;
	outline: none;	
}
.cta:active,	
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background: #d94412; /* Old browsers */
	border: none;
	border-top: 3px solid #b93207;
	color: #000;
	padding: 10px 24px 11px; 	}

/* text,textarea inputs */
input[type="text"],
input[type="textarea"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="url"],
select{
border: solid 3px #ccc;
margin-right: 5px !important;
padding: 3px; 	}

/* hover states */
input[type="text"]:hover,
input[type="textarea"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="url"]:hover,
select:hover	{
border: solid 3px #d52b1e;
padding: 3px; 	}	

/* active states ? */
input[type="text"]:active,
input[type="textarea"]:active,
input[type="tel"]:active,
input[type="email"]:active,
input[type="url"]:active,
input[type="number"]:active,
select:active {
background-color: #fac;
border: solid 3px #ccc;
padding: 3px; 	}	

/* focus states ? */
input[type="text"]:focus,
input[type="textarea"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
select:focus {
background-color: #ffa;
border: solid 3px #ccc;
padding: 3px; 	}	

/* group some fields */
fieldset {
	display: block;
	margin-inline-start: 2px;
	margin-inline-end: 2px;
	padding-block-start: 0.35em;
	padding-inline-start: 0.75em;
	padding-inline-end: 0.75em;
	padding-block-end: 0.625em;
	min-inline-size: min-content;
	border-width: 2px;
	border-style: groove;
	border-color: threedface;
	border-image: initial;
}

legend {padding: 0 5px;}


/* ### close "X" pop-up dialog ### */
.ui-widget-header.ui-corner-all.ui-helper-clearfix.ui-draggable-handle > button {display:none !important;}
/* ### "Ok" close button in pop-up dialog ### */
.ui-button-text {font-weight: 900;}
.ui-button-text {background-color:#e43c2f; color:#fff !important;}
.ui-button-text:hover {background-color:#000; color:#fff !important;}
.ui-button-text:focus {background-color:#991604; color:#fff !important;}

.wrapper {height: auto; margin:0; min-width:320px; max-width:660px; padding:0; }
.clearboth {clear: both !important; display:block !important;}
.aahc-presents {color: #333; font-weight: 700; line-height: 1.75; }
.widekern {font-weight: 900; letter-spacing: 5px; margin:0 0 0 15px; }
.wincash {clear: both; color: #FF1313; display:block; font-size: 120%; line-height: 2.5;}
.fallfest,.srcx {line-height: 2.5; }

form#slammin_rhymes .grid-container {
	margin-bottom: 10px;
}
form#slammin_rhymes .grid-container label.grid-45:nth-of-type(1) {
	margin-right: 5%;
}

/* form#slammin_rhymes label {
	display: inline-block;
	min-width:10px;
	max-width:44.6%;
	margin:0 3% 15px 0 !important;
	width: 100%;
} */

label.fullwidth {display:block;min-width:10px; margin:0 3% 5px 0 !important; width:95% !important;}
.grade_picker {max-width: 100%; min-width: 10px;}
.description {
	border: 3px dotted #ddd;
	border-radius: 4px;
    background-color: #fff;
    color: #333;
	margin: 15px;
	padding: 15px 50px !important;
}
.docboxes,.note {
	border: 1px solid #ffcc33;
	border-radius: 4px;
    background-color: #fbf9ee;
    color: #363636;
	margin: 10px;
	padding: 4px;
}
.center-note {
	border: 1px solid #ffcc33;
	border-radius: 4px;
    background-color: #fbf9ee;
    color: #363636;
	display: block;
	margin: 10px auto;
	padding: 4px;
	text-align: center;
}

.releasenote details {
	border-radius: 4px;
    padding: .5em;
}

.releasenote summary {
    background-color: #911;
    border-radius: 4px;
    color: #fff !important;
    cursor: pointer;
    cursor: finger;
    display: grid;
    font-family: arial, san-serif;
    font-size: 15px;
    font-weight: 600;
    gap: 3px;
    grid-template-areas: "i span .";
    grid-template-columns: 20px auto 3fr;
    padding: 3px;
    width: 100%;
}
.releasenote summary span {text-align: left;}
.releasenote details summary::after {
	color: #fff !important;
	cursor: pointer; 
	cursor: finger; 
	content: "(open)";
	display: inline-block;
	font-size: 14px;	
    font-weight: 600;
	text-align: right;
}	

.releasenote details[open] summary::after {
	color: #fff !important;
	content: "(close)";
	cursor: pointer; 
	cursor: finger; 
	display: inline-block;
	font-size: 14px;
    font-weight: 600;
	text-align: right;
}	

.releasenote details[open] .note:before {
    border-top: 3px solid #aaa;
	clear:both;
	height: auto;
	padding: 1.5px 0;
}
	
.releasenote details[open] {
    padding: .5em!important;
}

.about-sponsors {margin: 0 auto; max-width: 60%; min-width: 290px; text-wrap: pretty; width: 100%}
.logos-sponsors {
    display: inline-flex;
    vertical-align: text-top;
    flex-wrap: wrap;
    justify-content: center;
	max-width: 1200px;
	min-width: 290px;
    width: 100%;
}
.logos-sponsors img {
    max-width: 250px;
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 20px;
}	
}
/*
.releasenote details > summary:first-of-type,
section.releasenote details > summary:first-of-type {
    color: #e43c2f!important;
	display: block!important;
	font-family: Neuton, serif!important;	
	margin: 20px 10px!important;
	padding: 4px!important;
}
.releasenote details > summary:first-of-type:hover,
section.releasenote details > summary:first-of-type:hover {
    color: #e43c2f!important;
	display: block!important;
	font-family: Neuton, serif!important;	
	margin: 20px 10px!important;
	padding: 4px!important;
}*/