/* 1200px and up - laptop/desktop */

.L {
	float: left;
}
.R {
	float: right;
}
.CLEAR {
	clear: both;
}

.centered { 
	text-align:center; 
}
.leftalign { 
	text-align:left; 
}
.rightalign { 
	text-align:right; 
}

.FULL {
  width: 98%;
  margin: 0 1%;
}
.HALF {
  width: 48%;
  margin: 0 1%;
}
.THIRD {
  width: 31.3%;
  margin: 0 1%;
}
.THIRDx2 {
  width: 64.6%;
  margin: 0 1%;
}
.QUARTER {
  width: 23%;
  margin: 0 1%;
}
.QUARTERx3 {
  width: 73%;
  margin: 0 1%;
}
.FIFTH {
  width: 18%;
  margin: 0 1%;
}
.SIXTH {
  width: 14.6%;
  margin: 0 1%;
}
.TWELVEx5 {
  width: 39.6%;
  margin: 0 1%;
}

.outerW {
	width:100%;
}
.innerW {
	width: 1380px;
	margin: 0 auto;
	max-width: 96%;
}

.italic {
  font-style: italic;
}
.unbold {font-weight: normal;}
.red { color: #F00 !important; }

body {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
  	background-color: #FFF;
}



img.centered {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
img {
	max-width: 100%;
	height: auto;
} 

a.ANCHOR {
	margin: -240px 0 240px;
	display: inline-block;
}




/* HEADER */
#wHDR {
	background-color: #FFF;
}
#HDR {
	height: 150px;
	position: relative;
	z-index: 1000;
}
#LOGO {
	position: absolute;
	top: 22px;
	left: 0px;
	z-index: 2000;
}
#LOGO img {
	height: 103px;
	width: auto;
}
.SiteWordmark {
	display: none;
}
/*
#PHONE {
	z-index: 2000;
	top: 50%;
	position: absolute;
	right: 0;
	width: max-content;
	transform: translate(0,-50%);
}
#PHONE a {
	color: var(--SBCgreen);
	font-size: 14pt;
	font-weight: bold;
}
*/

/* NAVI */
#NAVI {
	top: 50%;
	position: absolute;
	right: 0;
	width: max-content;
	transform: translate(0,-50%);
	padding-top: 3px;
}
.nav-menu li a {
	text-transform: none;
	font-size: 12pt;
	padding: 15px 15px;
	font-weight: 600;
}
.navbar {
	text-align: left;
}
.main-navigation {
	display: inline-block;
}
.nav-menu li.NAVIbutton a {
	background-color: var(--MRCviolet);
	color: #FFF;
	padding: 15px 30px;
}
.nav-menu li.NAVIbutton a:hover {
	background-color: var(--Black);
	color: #FFF;
	padding: 15px 30px;
}


/* SLIDER */
#wHOME_SLIDER {
	background-color: var(--MRCgray);
	background-image: url("images/BCKslider.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#HOME_SLIDER {
	/*height: calc( 100vh - 200px);*/
}
#HOME_SLIDER #Text {
	padding-right: 7%;
	box-sizing: border-box;
	padding-bottom: 40px;
}
#HOME_SLIDER h1 {
  color: var(--Black);
  font-size: 40pt;
  font-weight: 500;
}
#HOME_SLIDER p {
  font-size: 14pt;
  text-align: left;
  font-weight: 400;
}
#HOME_SLIDER a.Button {
	margin-top: 40px;
	display: block;
	width: max-content;
}


#wINNERBANNER {
  background-size: cover;
  background-position: top center;
}
#INNERBANNER {
  height: 35vw;
}


/* THEME ELEMENTS */

a.Button {
	background-color: var(--MRCviolet);
	color: #FFF;
	font-size: 14pt;
	padding: 20px 20px;
	transition: background-color 0.5s ease;
	line-height: 1;
}
a.Button:hover {
	background-color: var(--Black);
	text-decoration: none;
}





/* AIMATIONS ON SCROLL for Visible items */
body {
	overflow-x: hidden;
}
.HideOverflow{
	_overflow: hidden;
}
.AnimFromRight, .AnimFromLeft, .AnimFromBottom {
  position: relative;
}
.AnimFromRight.Visible {
	animation: _AnimationFromRight_ 1s;	
}
	@keyframes _AnimationFromRight_ {
	  0% { right: -50vw; opacity:0; }
	  33% { right: -50vw; opacity:0; }
	  100% { right: 0vw; opacity:1; }
	}
.AnimFromLeft.Visible {
	animation: _AnimationFromLeft_ 1s;	
}
	@keyframes _AnimationFromLeft_ {
	  0% { left: -50vw; opacity:0; }
	  33% { left: -50vw; opacity:0; }
	  100% { left: 0vw; opacity:1; }
	}
.AnimFromBottom.Visible {
	animation: _AnimationFromBottom_ 1s;	
}
	@keyframes _AnimationFromBottom_ {
	  0% { bottom: -50vh; opacity:0; }
	  33% { bottom: -50vh; opacity:0; }
	  100% { bottom: 0vh; opacity:1; }
	}
.Visible.Delay1 {
	animation-delay: calc( var(--AnimationDelay) * 1s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay2 {
	animation-delay: calc( var(--AnimationDelay) * 2s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay3 {
	animation-delay: calc( var(--AnimationDelay) * 3s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay4 {
	animation-delay: calc( var(--AnimationDelay) * 4s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay5 {
	animation-delay: calc( var(--AnimationDelay) * 5s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay6 {
	animation-delay: calc( var(--AnimationDelay) * 6s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay7 {
	animation-delay: calc( var(--AnimationDelay) * 7s );
	animation-fill-mode: forwards;
	opacity: 0;
}
.Visible.Delay8 {
	animation-delay: calc( var(--AnimationDelay) * 8s );
	animation-fill-mode: forwards;
	opacity: 0;
}




/* HOME BARS */
#wBOXES {
  background-color: var(--MRCviolet);
}
#BOXES {
  padding: 60px 0;
}
#BOXES h2 {
  color: var(--White);
  font-size: 36pt;
  text-align: center;
  margin-top: 0;
}
#BOXES p {
  color: var(--White);
  text-align: center;
  font-size: 14pt;
}
#BOXES .FIFTH {
	text-align: center;
	margin: 10px 10px 0;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 5px;
}
#BOXES .FIFTH h4 {
  color: var(--White);
  margin: 10px 0;
}
#BOXES .FIFTH p {
  font-size: 12pt;
}
#BOXES .FIFTH:hover {
  background-color: #FFF2;
  transition: all 0.5s;
}
#BOXES .FIFTH:hover h4, #BOXES .FIFTH:hover p {
  text-decoration: none;
}

#wTESTIMONIALS {
  background-color: var(--MRCgray);
}
#TESTIMONIALS {
	padding: 60px 0 0;
	position: relative;
	overflow: hidden;
}
#TESTIMONIALS > .L {
	position: absolute;
	bottom: -3px;
}
.wp-block-image.size-full {
  text-align: inherit;
}
.wp-block-image.size-full.NoMargin {
	margin: 0;
}
#TESTIMONIALS > .R {
  padding-bottom: calc( 80px + 60px );
}
#TRANSLUCID {
	background-color: #f5f5f5CC;
	position: absolute;
	bottom: 0;
	padding: 20px 0;
}
#TRANSLUCID > div {
	background-repeat: no-repeat;
	background-size: 70px;
	background-position: top left;
}
#TRANSLUCID h4, #TRANSLUCID p {
  margin: 0;
  text-align: left;
  font-weight: 600;
  margin-left: 80px;
}
#TT1 {
	background-image: url("images/icons2_1.png");
}
#TT2 {
	background-image: url("images/icons2_2.png");
}
#TT3 {
	background-image: url("images/icons2_3.png");
}

#wLETSTAKE {
  background-color: var(--MRCviolet);
}
#LT1 {
	background-repeat: no-repeat;
	background-size: 70px;
	background-position: center left;
	background-image: url("images/Testi_calendar.png");
	padding-left: 70px;
	box-sizing: border-box;
}
#LT2 {
  padding-top: 20px;
}
#LT2 p {
	text-align: right;
}
#LETSTAKE h2, #LETSTAKE p {
  color: var(--White);
  margin: 10px;
}
#LETSTAKE {
  padding: 30px 0;
}
#LETSTAKE a.Button {
  background-color: var(--White);
  color: var(--MRCviolet);
  font-weight: 500;
}
#LETSTAKE a.Button:hover {
  background: var(--MRCgray2);
  color: var(--White);
}















/*
#BOXES {
  padding: 60px 0 90px;
}
#BOXES h2 {
	font-size: 36pt;
	text-align: center;
	margin-top: 0;
}
#BOXES a.THIRD {
	background-color: var(--SBCviolet);
	height: 330px;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	border-radius: 10px;
	box-shadow: 0 8px 16px #0003;
	background-image: url("images/BOX01.jpg");
	background-color: #69418a52;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transition: all 200ms ease;
}
#BOXES a.THIRD:hover {
	background-blend-mode: overlay;
	transition: all 200ms ease;
	text-decoration: none;
	box-shadow: 0 2px 4px #0003;
}
#BOXES a.THIRD h3 {
	color: var(--White);
	text-shadow: 0 2px 4px #000;
}
#BOXES #BOX1 {
	background-image: url("images/BOX01.jpg");
}
#BOXES #BOX2 {
	background-image: url("images/BOX02.jpg");
}
#BOXES #BOX3 {
	background-image: url("images/BOX03.jpg");
}
#BOXES #BOX4 {
	background-image: url("images/BOX04.jpg");
}
#BOXES #BOX5 {
	background-image: url("images/BOX05.jpg");
}
#BOXES #BOX6 {
	background-image: url("images/BOX06.jpg");
}


#wGUIDANCE {
	background-color: var(--SBCgreen);
	background-image: url("images/bckGUIDANCE.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
#GUIDANCE {
  padding: 90px 0 90px;
}
#GUIDANCE h1 {
  color: var(--White);
  word-break: keep-all;
}
#GUIDANCE p {
  color: var(--White);
}


#LOGOS {
  padding: 40px 2%;
  text-align: center;
}
#LOGOS img {
  height: 7vw;
  max-height: 125px;
}

#wDEDICATED {
	background-color: var(--SBCgreen2);
	background-image: url("images/bckDANDELION.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 70px 0;
}
#DEDICATED {
	padding: 40px;
	background-color: #FFF8;
	border-radius: 10px;
}
#DEDICATED h2 {
	margin-top: 0;
	font-size: 30pt;
}
#DEDICATED h2, #DEDICATED h3, #DEDICATED p {
  color: var(--Black);
  text-shadow: 0 0 10px #FFF;
}
div.OurFirmTable > div {
  margin: 0 20px;
}
div.OurFirmTable .wp-block-image.size-large {
  margin-bottom: 0;
  border-bottom: solid 1px var(--SBCgreen2);
}
div.OurFirmTable p {
	margin-top: 4pt;
}
div.OurFirmTable small {
	text-align: center;
	display: block;
	margin: -15pt 0 20pt;
	font-weight: lighter;
	color: var(--SBCgreen);
}
*/





/* Video - 16:9 Full Width */
.FullWVideo169 {
  max-width: initial;
  width: 100%;
  float: none;
  margin: 0 0 30px;
  clear: both;
  position: relative;
  padding-bottom: 56.25%;
}
.FullWVideoContainer {
  position: absolute;
  width: 100%;
  height: 100%;
}
.FullWVideoContainer iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}










#wFORM {
	background-color: var(--SBCviolet);
	background-image: url("images/bckFORM.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#FORM {
	padding: 90px 0;
	width: 960px;
}
#FORM h2 {
  color: var(--White);
  font-size: 36pt;
  text-align: center;
}
#FORM p {
  color: var(--White);
  text-align: center;
}
#FORM a {
  color: var(--White);
  text-align: center;
  font-weight: bold;
}
.g-recaptcha {
	margin: 20px auto;
	display: block;
	width: fit-content;
}
#FORM .button {
  margin: 20px auto;
  display: block;
  border-radius: 5px;
}
#Frame_Front {
	width: 100%;
	display: none;
	border: solid 3px var(--SBCgreen);
	border-radius: 10px;
	background: #FFF3;
	height: 250px;
}


div.wp-block-column.ColumnSidebar {
	background-color: #deeee185;
	padding: 0 20pt 20pt;
	box-sizing: border-box;
	margin-left: 20pt;
	border-radius: 10px;
}

.is-layout-flex > :is(*, div) {
	margin: 20px;
}








/* FORM STYLES */
.FORM {
	/* background: var(--HACredtransp); */
	/* padding: 30px; */
	/* border-radius: 5px; */
	/* width: 360px; */
	/* margin: 0 auto; */
}
#CONTACT .L h2 {
	color: #FFF;
	font-size: 36pt;
	font-weight: 200;
	margin-top: 0;
}
.FORM p {
	color: #FFF;
	margin: 0 0 20pt;
	/* font-size: 10pt; */
}
.FORM input, .FORM #Comments, .FORM #ServiceNeeded {
    font-family: var(--BodyFont); 
	color: var(--FormFieldTextColor);
	font-size: 14pt;
	background-color: var(--FormFieldBckColor);
	padding: 6pt 8pt;
	width: 100%;
	box-sizing: border-box;
	display: inline-block;
	border: none;
	margin: 0 0 10px 0;
	font-weight: normal;
	border-radius: 3px;
}
.FORM .button {
    font-family: var(--TitlesFont); 
	margin-top: 20px;
	background-color: var(--FormButtonBckColor);
	color: var(--FormButtonTextColor);
	font-weight: 700;
	font-size: 24px;
	padding: 10px 50px;
	border-radius: 1px;
	width: initial;
}
.FORM .button:hover {
	border: none;
	color: var(--FormButtonTextColorHover);
	background-color: var(--FormButtonBckColorHover);
	cursor: pointer;
	box-shadow: none;
}
#Frame_Block, #Frame_Slider  {
	width: 100%;
	margin-top: -50px;
	display: none;
	/* background-color: #FFF; */
	/* padding: 20px 0; */
	box-sizing: border-box;
	height: 260px;
	/* border: solid 2px #C00; */
}



/* COLUMNS */
:where(.wp-block-columns.is-layout-flex) {
	gap: 0;
}



.Map {
	margin-bottom: -5px;
	filter: grayscale(1);
}

#wMAPS {
	background-color: #000;
}
#MAPS {
	padding: 60px 0;
}
#MAPS h3, #MAPS p {
	text-align: center;
	color: #FFF;
}
iframe.gMap {
	border: solid 1px var(--JSGred2) !important;
	box-sizing: border-box;
}

.BlackBox {
  background-color: #000;
}
#MAIN .BlackBox h2 {
  color: var(--DMPred2);
  margin: 20pt;
}
#MAIN .GrayBox {
	background-color: var(--DMPgray);
	padding: 20pt;
	margin: 40px auto;
	max-width: 1024px;
	box-shadow: 0 10px 20px #0003;
}
.GrayBox p {
  margin: 20pt;
  text-align: left;
}
.GrayBox p strong {
  color: var(--DMPred);
  font-weight: 700;
}




/* MAIN */
#MAIN {
	padding: 60px 2% 80px;
	box-sizing: border-box;
}
#MAIN.InnerFullWPage {
	padding: 40px 0% 80px;
	box-sizing: border-box;
}
#MAIN.CompanyPage {
	padding: 40px 0;
}
#MAIN.NoBottomMargin {
	padding-bottom: 0;
}

/* SONG PAGE */
body.single-ro245_song,
body.page-template-page-song,
body.page-template-front-page,
body.home,
body.page {
	background-color: var(--ro245-white);
	font-family: var(--BodyFont);
}
.SongPage {
	overflow: visible;
}
.SongLayout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
	gap: 48px;
	align-items: start;
}
.SongContent,
.SongSidePanel {
	min-width: 0;
	align-self: start;
}
.SongSidePanel {
	background-color: var(--ro245-black);
}
.SongPlayerSticky {
	position: sticky;
	top: 24px;
	max-height: calc(100vh - 48px);
	overflow: auto;
}
.SongSidePanel .ro245-localplayer {
	max-width: none;
}
.SongSideLabel {
	color: var(--ro245-white);
	font-family: var(--UIFont);
	font-size: 9pt;
	font-weight: 700;
	letter-spacing: 3px;
	line-height: 1;
	margin: 0 0 12px;
	text-transform: uppercase;
}
.SongCredits p {
	margin-top: 12px;
	color: var(--ro245-white) !important;
	font-size: 9.5pt;
	line-height: 1.5em;
}
.SongCreditsIntro {
	margin: 0 0 28px;
}
.SongCreditsIntro p {
	color: var(--ro245-black) !important;
	font-size: 8.5pt;
	margin: 0 0 6px;
	text-align: left;
}
.SongFacts {
	background: rgba(22, 22, 22, 0.06);
	border-radius: 0;
	color: var(--ro245-black);
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin: 28px 0 0;
	padding: 14px 20px;
}
.SongCreditsInFacts {
	border-bottom: 0;
	margin: 0;
	padding: 0;
}
.SongFacts .SongCreditsInFacts p {
	color: var(--ro245-black) !important;
	font-family: var(--UIFont);
	font-size: 10pt;
	line-height: 1.45;
	margin: 0;
}
.SongFactsListen {
	grid-column: 1 / -1;
	margin-top: -10px;
	overflow-wrap: anywhere;
}
.SongFactsTitle {
	/*color: inherit;
	font-family: var(--BodyFont);*/
	font-size: 18pt;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.45;
	margin: 0 0 18px;
}
.SongFacts p,
.SongFacts dl {
	color: inherit;
	font-family: var(--UIFont);
	font-size: 10pt;
	line-height: 1.45;
	margin: 0;
}
.SongFacts dl {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
}
.SongFacts dt {
	font-weight: 700;
	margin: 0;
}
.SongFacts dt::after {
	content: ":";
}
.SongFacts dd {
	margin: 0 0 0 0.35em;
	min-width: 0;
}
.SongFacts strong {
	font-weight: 700;
}
.SongFacts a {
	color: inherit !important;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
.SongFacts a:hover {
	color: var(--ro245-red) !important;
	text-decoration: underline;
}
.SongFactsDetails:only-child {
	grid-column: 1 / -1;
}
body.ro245-global-layout #MAIN .SongFacts p,
body.ro245-global-layout #MAIN .SongFacts dl,
body.ro245-global-layout #MAIN .SongFacts dt,
body.ro245-global-layout #MAIN .SongFacts dd,
body.ro245-global-layout #MAIN .SongFacts a {
	font-family: var(--UIFont);
}
.SongCredits small {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}
.SongCreditsOutro {
  border-top: 1px solid rgba(68, 68, 85, 0.35);
  margin-top: 24px;
  padding-top: 12px;
}

.SongCredits small {
  font-size: 8pt;
}

#FTR, #FTR p, #FTR a {
  font-size: 10pt;
  font-family: var(--UIFont);
}
.SongMeta {
	color: var(--ro245-white);
	font-family: var(--UIFont);
	margin-top: 14px;
	font-size: 9pt;
	line-height: 1.5em;
}
.SongLinksGroup {
	display: grid;
	gap: 8px;
}
.SongLinksLabel {
	color: var(--ro245-white);
	font-family: var(--UIFont);
	font-size: 8.5pt;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	text-transform: uppercase;
}
.SongLinks {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.SongLink {
	align-items: center;
	border-radius: 3px;
	color: #FFF !important;
	display: inline-flex;
	font-family: var(--UIFont);
	font-size: 8.5pt;
	font-weight: 700;
	gap: 6px;
	line-height: 1;
	padding: 8px 10px;
	text-decoration: none;
}
.SongLink:hover {
	color: #FFF !important;
	filter: brightness(0.92);
	text-decoration: none !important;
}
.SongLinks .SongLink:hover,
#MAIN .SongLinks .SongLink:hover {
	text-decoration: none !important;
}
.SongLinkSpotify {
	background-color: #1DB954;
}
.SongLinkAppleMusic {
	background-color: #FA243C;
}
.SongLinkYouTube {
	background-color: #FF0000;
}
.SongLinkSoundCloud {
	background-color: #FF5500;
}
.SongLinkAmazonMusic {
	background-color: #00A8E1;
}
.SongLinkBandcamp {
	background-color: #629AA9;
}
.SongReleaseDate {
	margin-top: 8px;
	color: var(--ro245-white);
	font-family: var(--UIFont);
	font-size: 8.5pt;
}
.PageFeaturedImage {
	margin: 0 0 18px;
	width: 100%;
}
.PageFeaturedImage img {
	display: block;
	height: auto;
	width: 100%;
}
.ContactSidePanel h2,
.ContactSidePanel p,
.ContactSidePanel label {
	color: var(--ro245-white);
	font-family: var(--UIFont);
}
.ContactSidePanel h2 {
	font-size: 16pt;
	line-height: 1.1;
	margin: 0 0 12px;
}
.ContactSidePanel p {
	font-size: 8.5pt;
	line-height: 1.45;
	margin: 0 0 12px;
}
.ContactSidePanel .FORM p {
	display: none;
}
.ContactSidePanel .HALF,
.ContactSidePanel .FULL {
	float: none;
	margin: 0 0 8px;
	width: 100% !important;
}
.ContactSidePanel input,
.ContactSidePanel textarea {
	box-sizing: border-box;
	font-family: var(--UIFont);
	width: 100%;
}
.ContactSidePanel input[type="submit"] {
	background-color: var(--ro245-red);
	border: 0;
	color: #FFF;
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
}
.SongArchiveGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}
.SongArchiveItem a {
	display: block;
	text-decoration: none;
}
.SongArchiveItem img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 12px;
}
.SongArchiveItem h2 {
	margin: 0;
	font-size: 18pt;
}
.MusicSongList {
	display: grid;
	gap: 8px;
	margin-top: 36px;
}
.MusicSongItem {
	align-items: center;
	border-bottom: 1px dotted rgba(22, 22, 22, 0.18);
	border-left: 4px solid rgba(22, 22, 22, 0.18);
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 0 0 0 10px;
}
#MAIN .MusicSongInfo h2 {
	color: var(--ro245-black) !important;
	font-family: var(--TitlesFont);
	font-size: 18pt;
	line-height: 1.05;
	margin: 0;
}
.MusicSongDate {
	color: var(--ro245-black);
	font-family: var(--UIFont);
	font-size: 8.5pt;
	margin-top: 4px;
	text-transform: lowercase;
}
.MusicSongActions {
	display: flex;
	gap: 8px;
}
.MusicSongButton {
	background: transparent;
	border: 1px solid var(--ro245-black);
	border-radius: 3px;
	box-sizing: border-box;
	color: var(--ro245-black) !important;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--UIFont);
	font-size: 8.5pt;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	padding: 9px 11px;
	text-decoration: none !important;
	text-transform: lowercase;
}
.MusicSongButton i {
	margin-right: 5px;
}
.MusicSongButton:hover,
.MusicSongItem.is-active .MusicSongButtonPlay {
	background: var(--ro245-red);
	border-color: var(--ro245-red);
	color: var(--ro245-white) !important;
	text-decoration: none !important;
}
.MusicPlayerPanel {
	display: none;
}
.MusicPlayerPanel.is-active {
	display: block;
}

@media (min-width: 768px) {
	body.ro245-global-layout {
		background-color: var(--ro245-black);
		padding-right: 30vw;
	}
	body.ro245-global-layout #wHDR {
		background-color: var(--ro245-black);
		bottom: auto;
		box-sizing: border-box;
		font-family: var(--UIFont);
		height: 188px;
		position: fixed;
		right: 0;
		top: 0;
		width: 30vw;
		z-index: 50;
	}
	body.ro245-global-layout #wHDR a,
	body.ro245-global-layout #wHDR li,
	body.ro245-global-layout #wHDR p {
		color: var(--ro245-white);
	}
	body.ro245-global-layout #HDR {
		box-sizing: border-box;
		display: grid;
		grid-template-columns: 124px minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: 18px;
		height: 188px;
		max-width: none;
		padding: 26px 24px 0;
		width: 100%;
	}
	body.ro245-global-layout #LOGO {
		align-items: center;
		column-gap: 18px;
		display: grid;
		grid-column: 1 / 3;
		grid-template-columns: 124px minmax(0, 1fr);
		left: auto;
		position: static;
		top: auto;
	}
	body.ro245-global-layout #LOGO a {
		align-items: center;
		display: inline-flex;
		text-decoration: none;
	}
	body.ro245-global-layout #LOGO img {
		height: 128px;
		width: auto;
	}
	body.ro245-global-layout .SiteMark {
		grid-column: 1;
	}
	body.ro245-global-layout .SiteWordmark {
		color: var(--ro245-white);
		display: inline-block;
		font-family: var(--TitlesFont);
		font-size: 27pt;
		font-weight: 500;
		grid-column: 2;
		letter-spacing: 0;
		line-height: 1;
		margin-top: 0;
		white-space: nowrap;
	}
	body.ro245-global-layout #NAVI {
		border-bottom: 1px solid rgba(245, 242, 234, 0.18);
		box-sizing: border-box;
		grid-column: 1 / 3;
		margin-top: -34px;
		max-width: none;
		padding: 0 0 14px 142px;
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		z-index: 3000;
	}
	body.ro245-global-layout #NAVI .nav-menu,
	body.ro245-global-layout #NAVI div.nav-menu > ul {
		display: flex;
		gap: 26px;
		justify-content: flex-start;
		text-align: left;
		width: 100%;
	}
	body.ro245-global-layout #NAVI .nav-menu li {
		margin: 0;
	}
	body.ro245-global-layout #NAVI .nav-menu li a {
		border-bottom: 2px solid transparent;
		color: var(--ro245-white);
		font-family: var(--UIFont);
		font-size: 9pt;
		font-weight: 700;
		letter-spacing: 1px;
		padding: 0 0 7px;
		text-transform: uppercase;
		white-space: nowrap;
	}
	body.ro245-global-layout #NAVI .nav-menu .current_page_item > a,
	body.ro245-global-layout #NAVI .nav-menu .current-menu-item > a,
	body.ro245-global-layout #NAVI .nav-menu li a:hover {
		border-bottom: 2px solid var(--ro245-red);
		color: var(--ro245-red);
	}
	body.ro245-global-layout #wMAIN {
		background-color: var(--ro245-white);
		width: 100%;
	}
	body.ro245-global-layout #wFTR {
		background-color: var(--ro245-black);
		width: 100%;
	}
	body.ro245-global-layout #MAIN {
		background-color: var(--ro245-white);
		max-width: none;
		width: 88%;
	}
	body.ro245-global-layout #MAIN,
	body.ro245-global-layout #MAIN a,
	body.ro245-global-layout #MAIN h1,
	body.ro245-global-layout #MAIN li,
	body.ro245-global-layout #MAIN p {
		color: var(--ro245-black);
	}
	body.ro245-global-layout #MAIN h2,
	body.ro245-global-layout #MAIN h3,
	body.ro245-global-layout #MAIN h4 {
		color: var(--ro245-red);
	}
	body.ro245-global-layout #MAIN p,
	body.ro245-global-layout #MAIN li {
		font-family: var(--BodyFont);
	}
	body.ro245-global-layout #MAIN h1,
	body.ro245-global-layout #MAIN h2,
	body.ro245-global-layout #MAIN h3,
	body.ro245-global-layout #MAIN h4 {
		font-family: var(--TitlesFont);
	}
	body.ro245-global-layout .SongLayout {
		display: block;
	}
	body.ro245-global-layout .SongContent {
		width: 100%;
	}
	body.ro245-global-layout .SongSidePanel {
		background-color: var(--ro245-black);
		box-sizing: border-box;
		color: var(--ro245-white);
		font-family: var(--UIFont);
		max-height: calc(100vh - 188px);
		overflow: auto;
		position: fixed;
		right: 0;
		top: 188px;
		width: 30vw;
		z-index: 45;
	}
	body.ro245-global-layout .SongSidePanel a:not(.SongLink),
	body.ro245-global-layout .SongSidePanel li,
	body.ro245-global-layout .SongSidePanel p {
		color: var(--ro245-white);
		font-family: var(--UIFont);
	}
	body.ro245-global-layout .SongPlayerSticky {
		box-sizing: border-box;
		max-height: none;
		overflow: visible;
		padding: 16px 24px 24px;
		position: static;
	}
	body.single-ro245_song,
	body.page-template-page-song,
	body.page-template-front-page,
	body.home {
		background-color: var(--ro245-black);
		padding-right: 30vw;
	}
	body.single-ro245_song #wHDR,
	body.page-template-page-song #wHDR,
	body.page-template-front-page #wHDR,
	body.home #wHDR {
		background-color: var(--ro245-black);
		bottom: auto;
		box-sizing: border-box;
		font-family: var(--UIFont);
		height: 188px;
		position: fixed;
		right: 0;
		top: 0;
		width: 30vw;
		z-index: 50;
	}
	body.single-ro245_song #wHDR a,
	body.single-ro245_song #wHDR li,
	body.single-ro245_song #wHDR p,
	body.page-template-page-song #wHDR a,
	body.page-template-page-song #wHDR li,
	body.page-template-page-song #wHDR p,
	body.page-template-front-page #wHDR a,
	body.page-template-front-page #wHDR li,
	body.page-template-front-page #wHDR p,
	body.home #wHDR a,
	body.home #wHDR li,
	body.home #wHDR p {
		color: var(--ro245-white);
	}
	body.single-ro245_song #HDR,
	body.page-template-page-song #HDR,
	body.page-template-front-page #HDR,
	body.home #HDR {
		box-sizing: border-box;
		display: grid;
		grid-template-columns: 124px minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: 18px;
		height: 188px;
		max-width: none;
		padding: 26px 24px 0;
		width: 100%;
	}
	body.single-ro245_song #LOGO,
	body.page-template-page-song #LOGO,
	body.page-template-front-page #LOGO,
	body.home #LOGO {
		display: grid;
		grid-column: 1 / 3;
		grid-template-columns: 124px minmax(0, 1fr);
		column-gap: 18px;
		align-items: center;
		left: auto;
		position: static;
		top: auto;
	}
	body.single-ro245_song #LOGO a,
	body.page-template-page-song #LOGO a,
	body.page-template-front-page #LOGO a,
	body.home #LOGO a {
		align-items: center;
		display: inline-flex;
		text-decoration: none;
	}
	body.single-ro245_song #LOGO img,
	body.page-template-page-song #LOGO img,
	body.page-template-front-page #LOGO img,
	body.home #LOGO img {
		height: 128px;
		width: auto;
	}
	body.single-ro245_song .SiteMark,
	body.page-template-page-song .SiteMark,
	body.page-template-front-page .SiteMark,
	body.home .SiteMark {
		grid-column: 1;
	}
	body.single-ro245_song .SiteWordmark,
	body.page-template-page-song .SiteWordmark,
	body.page-template-front-page .SiteWordmark,
	body.home .SiteWordmark {
		color: var(--ro245-white);
		display: inline-block;
		font-family: var(--TitlesFont);
		font-size: 27pt;
		font-weight: 500;
		grid-column: 2;
		letter-spacing: 0;
		line-height: 1;
		margin-top: 0;
		white-space: nowrap;
	}
	body.single-ro245_song #NAVI,
	body.page-template-page-song #NAVI,
	body.page-template-front-page #NAVI,
	body.home #NAVI {
		border-bottom: 1px solid rgba(245, 242, 234, 0.18);
		box-sizing: border-box;
		grid-column: 1 / 3;
		margin-top: -34px;
		max-width: none;
		padding: 0 0 14px 142px;
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 100%;
		z-index: 3000;
	}
	body.single-ro245_song #NAVI .nav-menu,
	body.single-ro245_song #NAVI div.nav-menu > ul,
	body.page-template-page-song #NAVI .nav-menu,
	body.page-template-page-song #NAVI div.nav-menu > ul,
	body.page-template-front-page #NAVI .nav-menu,
	body.page-template-front-page #NAVI div.nav-menu > ul,
	body.home #NAVI .nav-menu,
	body.home #NAVI div.nav-menu > ul {
		display: flex;
		gap: 26px;
		justify-content: flex-start;
		text-align: left;
		width: 100%;
	}
	body.single-ro245_song #NAVI .nav-menu li,
	body.page-template-page-song #NAVI .nav-menu li,
	body.page-template-front-page #NAVI .nav-menu li,
	body.home #NAVI .nav-menu li {
		margin: 0;
	}
	body.single-ro245_song #NAVI .nav-menu li a,
	body.page-template-page-song #NAVI .nav-menu li a,
	body.page-template-front-page #NAVI .nav-menu li a,
	body.home #NAVI .nav-menu li a {
		color: var(--ro245-white);
		border-bottom: 2px solid transparent;
		font-family: var(--UIFont);
		font-size: 9pt;
		font-weight: 700;
		letter-spacing: 1px;
		padding: 0 0 7px;
		text-transform: uppercase;
		white-space: nowrap;
	}
	body.single-ro245_song #NAVI .nav-menu .current_page_item > a,
	body.single-ro245_song #NAVI .nav-menu .current-menu-item > a,
	body.single-ro245_song #NAVI .nav-menu li a:hover,
	body.page-template-page-song #NAVI .nav-menu .current_page_item > a,
	body.page-template-page-song #NAVI .nav-menu .current-menu-item > a,
	body.page-template-page-song #NAVI .nav-menu li a:hover,
	body.page-template-front-page #NAVI .nav-menu .current_page_item > a,
	body.page-template-front-page #NAVI .nav-menu .current-menu-item > a,
	body.page-template-front-page #NAVI .nav-menu li a:hover,
	body.home #NAVI .nav-menu .current_page_item > a,
	body.home #NAVI .nav-menu .current-menu-item > a,
	body.home #NAVI .nav-menu li a:hover {
		border-bottom: 2px solid var(--ro245-red);
		color: var(--ro245-red);
	}
	body.single-ro245_song #wMAIN,
	body.page-template-page-song #wMAIN,
	body.page-template-front-page #wMAIN,
	body.home #wMAIN {
		background-color: var(--ro245-white);
		width: 100%;
	}
	body.single-ro245_song #wFTR,
	body.page-template-page-song #wFTR,
	body.page-template-front-page #wFTR,
	body.home #wFTR {
		background-color: var(--ro245-black);
		width: 100%;
	}
	body.single-ro245_song #MAIN,
	body.page-template-page-song #MAIN,
	body.page-template-front-page #MAIN,
	body.home #MAIN {
		background-color: var(--ro245-white);
		max-width: none;
		width: 88%;
	}
	body.single-ro245_song #MAIN {
		min-height: calc( 100vh - 280px );
	}
	body.single-ro245_song #MAIN,
	body.single-ro245_song #MAIN a,
	body.single-ro245_song #MAIN h1,
	body.single-ro245_song #MAIN li,
	body.single-ro245_song #MAIN p,
	body.page-template-page-song #MAIN,
	body.page-template-page-song #MAIN a,
	body.page-template-page-song #MAIN h1,
	body.page-template-page-song #MAIN li,
	body.page-template-page-song #MAIN p,
	body.page-template-front-page #MAIN,
	body.page-template-front-page #MAIN a,
	body.page-template-front-page #MAIN h1,
	body.page-template-front-page #MAIN li,
	body.page-template-front-page #MAIN p,
	body.home #MAIN,
	body.home #MAIN a,
	body.home #MAIN h1,
	body.home #MAIN li,
	body.home #MAIN p {
		color: var(--ro245-black);
	}
	body.single-ro245_song #MAIN h2,
	body.single-ro245_song #MAIN h3,
	body.single-ro245_song #MAIN h4,
	body.page-template-page-song #MAIN h2,
	body.page-template-page-song #MAIN h3,
	body.page-template-page-song #MAIN h4,
	body.page-template-front-page #MAIN h2,
	body.page-template-front-page #MAIN h3,
	body.page-template-front-page #MAIN h4,
	body.home #MAIN h2,
	body.home #MAIN h3,
	body.home #MAIN h4 {
		color: var(--ro245-red);
	}
	body.single-ro245_song #MAIN p,
	body.single-ro245_song #MAIN li,
	body.page-template-page-song #MAIN p,
	body.page-template-page-song #MAIN li,
	body.page-template-front-page #MAIN p,
	body.page-template-front-page #MAIN li,
	body.home #MAIN p,
	body.home #MAIN li {
		font-family: var(--BodyFont);
	}
	body.single-ro245_song #MAIN h1,
	body.single-ro245_song #MAIN h2,
	body.single-ro245_song #MAIN h3,
	body.single-ro245_song #MAIN h4,
	body.page-template-page-song #MAIN h1,
	body.page-template-page-song #MAIN h2,
	body.page-template-page-song #MAIN h3,
	body.page-template-page-song #MAIN h4,
	body.page-template-front-page #MAIN h1,
	body.page-template-front-page #MAIN h2,
	body.page-template-front-page #MAIN h3,
	body.page-template-front-page #MAIN h4,
	body.home #MAIN h1,
	body.home #MAIN h2,
	body.home #MAIN h3,
	body.home #MAIN h4 {
		font-family: var(--TitlesFont);
	}
	
	
	
	body.single-ro245_song .SongLayout,
	body.page-template-page-song .SongLayout,
	body.page-template-front-page .SongLayout,
	body.home .SongLayout {
		display: block;
	}
	body.single-ro245_song .SongContent,
	body.page-template-page-song .SongContent,
	body.page-template-front-page .SongContent,
	body.home .SongContent {
		width: 100%;
	}
	body.single-ro245_song .SongSidePanel,
	body.page-template-page-song .SongSidePanel,
	body.page-template-front-page .SongSidePanel,
	body.home .SongSidePanel {
		background-color: var(--ro245-black);
		box-sizing: border-box;
		max-height: calc(100vh - 188px);
		overflow: auto;
		position: fixed;
		right: 0;
		top: 188px;
		width: 30vw;
		z-index: 45;
	}
	body.single-ro245_song .SongSidePanel,
	body.single-ro245_song .SongSidePanel a:not(.SongLink),
	body.single-ro245_song .SongSidePanel li,
	body.single-ro245_song .SongSidePanel p,
	body.page-template-page-song .SongSidePanel,
	body.page-template-page-song .SongSidePanel a:not(.SongLink),
	body.page-template-page-song .SongSidePanel li,
	body.page-template-page-song .SongSidePanel p,
	body.page-template-front-page .SongSidePanel,
	body.page-template-front-page .SongSidePanel a:not(.SongLink),
	body.page-template-front-page .SongSidePanel li,
	body.page-template-front-page .SongSidePanel p,
	body.home .SongSidePanel,
	body.home .SongSidePanel a:not(.SongLink),
	body.home .SongSidePanel li,
	body.home .SongSidePanel p {
		color: var(--ro245-white);
		font-family: var(--UIFont);
	}
	body.single-ro245_song .SongPlayerSticky,
	body.page-template-page-song .SongPlayerSticky,
	body.page-template-front-page .SongPlayerSticky,
	body.home .SongPlayerSticky {
		box-sizing: border-box;
		max-height: none;
		overflow: visible;
		padding: 16px 24px 24px;
		position: static;
	}
}

#MAIN h1 {
	font-size: 48pt;
	color: var(--H1color);
	line-height: 1.3;
	/*margin-bottom: -16pt;*/
	/* text-transform: uppercase; */
	font-weight: 400;
}
	

.wp-block-video {
	width: 100%;
	height: auto;
	max-width: 1000px;
	margin: 0 auto;
}


/* Columns & captions */
.wp-block-columns {
	margin-bottom: 0;
}
.wp-block-columns.NOSHADOW .aligncenter.size-full {
	box-shadow: none;
}
.wp-block-image .aligncenter > figcaption, .wp-block-image .alignleft > figcaption, .wp-block-image .alignright > figcaption {
	display: block;
	text-align: center;
}
.wp-block-image.NOSHADOW img {
	box-shadow: none;
}
.wp-block-image.size-large {
	text-align: center;
	margin-bottom: 20pt;
}





#MAINL {
	padding-right: 4%;
	box-sizing: border-box;
}

#MAINR h2 {
	color: var(--CDEblue2);
	font-size: 24pt;
	margin-top: 13pt;
}
#MAINR ul {
	padding-left: 14px;
	list-style: disclosure-closed;
}
#MAINR li {
	font-size: 12pt;
}
#MAIN a {
	color: var(--CDEblue2);
	font-weight: 500;
	text-decoration: none;
}
#MAIN a:hover {
	text-decoration: underline;
}
.widget_block {
	margin-bottom: 60px;
}
.widget_block li, .widget_block p, .widget_block a {
	color: var(--ILLorange);
}

/* BLOG */
.PostCell {
	margin-bottom: 50pt;
}
.PostCell .Thumb {
	background-color: var(--FPTgreen);
	padding: 40pt 10pt 10pt;
	background-repeat: no-repeat;
	background-position: center;
	border-bottom: solid 3px var(--FPTgreen);
}
#MAIN .PostCell .Thumb h3.PostsTit {
	color: #FFF;
	font-size: 24pt;
	text-shadow: 0 3px 7px #000;
}
#MAIN .PostCell p {
	margin: 5pt 0 0;
}
#MAIN a.morelink {
	color: var(--FPTtourquoise);
	text-align: right;
	display: block;
	font-weight: bold;
}



/* PAGES' TWEAKS */
.wp-block-image.HardShadow .alignleft {
	margin-right: 2em;
}
.wp-block-image.HardShadow img {
	border: none;
	box-shadow: 10px 10px 0px #000;
	border-radius: 0;
}
.wp-block-image.HardShadow figcaption {
	font-size: 11pt;
	text-align: center;
	line-height: 1.4;
	margin-top: 10pt;
}








.PostsInfo {
	border-top: dotted 1px var(--CILbluelighttext);
	margin: -5pt 0 20pt;
	display: block;
	/*text-align: right;*/
	padding-top: 5pt;
}
.PostsDate {
	font-size: 10pt;
	font-weight: bold;
	color: var(--CILbluelighttext);
}

.navigation.post-navigation {
	padding: 30px 0;
	border-top: solid 1px var(--CILbluetext);
	margin-top: 50px;
}
.navigation.post-navigation .L {
	text-align: left;
}
.navigation.post-navigation .R {
	text-align: right;
}

.PostPreview {
	margin-bottom: 40pt;
}
.PostPreview .PostsInfo {
	margin-bottom: 5pt;
}





#MAINL {
	/*padding: 80px 0;*/
}
#MAIN .HALF {
	width: 46%;
	margin: 0 2%;
}


/* FAQs */
/*
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
	margin-top: 10px !important;
	background: none;
	border: none;
}
.ui-accordion .ui-accordion-content {
	border: none;
	padding: 0 0 20px 1.3em;
	border-left: dotted 2px #CCC;
	margin-left: 0.9em;
	border-radius: 0;
	background: #0a436e11;
	margin-bottom: 20px;
}
.ui-accordion-content li {
	list-style: square;
}
*/

/*

#MAINR {
	padding: 80px 0;
}

#recent-posts-2 a {
	text-decoration: none;
}
#recent-posts-2 a:hover {
	text-decoration: underline;
}
#recent-posts-2 ul {
	padding: 0;
}
#recent-posts-2 li {
	padding-left: 1.3em;
	color: var(--Acolor);
	list-style: none;
	font-size: 11pt;
}
#recent-posts-2 li::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
	margin-left: -1.3em;
	width: 1.0em;
}
*/


.wp-block-group.MIL245 {
	padding: 1px 40px 20px;
	background-color: #ff2c6d1a;
	/*border-radius: 10px;*/
}
body.page:not(.page-template-front-page) #MAIN .wp-block-group.MIL245 p {
  color: #992146;
}
body.page:not(.page-template-front-page) #MAIN .wp-block-group.MIL245 a {
  color: var(--ro245-red);
}

mark.has-inline-color {
	padding: 4px 2px 2px;
}



/* FOOTER */
#FTR {
	padding: 40px 0;
	width: 88%;
}
#wFTR {
  background-color: var(--ro245-black);
}
#FTR p {
  text-align: left;
  font-size: 10pt;
  color: var(--ro245-white);
  font-weight: 400;
}
#FTR a {
  color: var(--ro245-white);
}
#FTR h4 {
	margin-top: 20px;
	color: var(--ro245-white);
}
