/* 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%;
}

.wrapW {
	width:100%;
}
.pageW {
	width:1380px;
	margin:0 auto;
}

.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: #000;
}



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;
}

/* FIXED TOP+HEADER */
body {
	padding-top: 128px;
}
#wrapTOP {
	position: fixed;
	top: 0px;
}
#wrapHDR {
	position: fixed;
	top: 28px;
	box-shadow: 0 6px 6px #0002;
  	z-index: 1002;
}



/* HEADER */
#wrapTOP {
	background-color: var(--ILLyellow1);
	z-index: 1002;
}
#TOP {
	height: 28px;
	display: flex;
	flex-direction: row;
}
#TOP .THIRD {
	display: flex;
	flex-grow: 1;
	width: auto;
	margin: auto;
}
#TOP .THIRD h3 {
	font-weight: 400;
	color: #000;
	font-size: 16px;
	text-align: center;
	width: 100%;
	margin: 0;
}

#wrapHDR {
	background-color: #000;
}
#HDR {
	height: 100px;
	position: relative;
	z-index: 1000;
}
#LOGO {
	position: absolute;
	top: 9px;
	left: 0;
	z-index: 2000;
}
#LOGO img {
	height: 82px;
	width: auto;
}



/* NAVI */
#NAVI {
	top: 37px;
	position: absolute;
	right: 170px;
	width: max-content;
}
.navbar {
	text-align: center;
}
.main-navigation {
	display: inline-block;
}

#BIGBUTTONS {
	top: 0;
	position: absolute;
	right: 0;
	width: 150px;
}
#BIGBUTTONS a {
	background-color: var(--ILLorange);
	color: #FFF;
	width: 100%;
	display: block;
	font-size: 18px;
	padding: 10px 0;
	border: solid 1px #000;
	text-align: center;
}
#BIGBUTTONS a:hover {
	background-color: var(--ILLyellow1);
	color: #000;
	text-decoration: none;
}


a.Button {
	padding: 10px 30px;
	font-size: 14pt;
	border: solid 1px var(--CMBblue);
	background-color: #FFF;
	box-shadow: 0px 5px 8px #0003;
	display: inline-block;
}
a.Button:hover {
	box-shadow: none;
	text-decoration: none;
	background-color: var(--CMBbluelight);
	color: #FFF;
	border-color: var(--CMBbluelight);
}

#MAIN a.OrangeButton,
#MAIN p.OrangeButton a {
	padding: 10px 20px;
	font-size: 18pt;
	background-color: var(--ILLorange);
	box-shadow: 0px 5px 8px #0003;
	display: inline-block;
	color: #FFF;
	text-decoration: none !important;
}
#MAIN a.OrangeButton:hover,
#MAIN p.OrangeButton:hover a {
	box-shadow: none;
	text-decoration: none;
	background-color: var(--ILLyellow1);
	color: #FFF;
}




/* SLIDER */
#wrapHOMEVIDEO {
	position: relative;
	overflow: hidden;
	background-color: #000;
	height: 44vw;
}
#wrapHOMEVIDEO #videoslider {
	transform: translateY(-50%);
	top: 50%;
	position: absolute;
}
#wrapHOMEVIDEO h1 {
	position: absolute;
	bottom: 10%;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	font-weight: 600;
	font-size: 40pt;
	color: #FFF;
	text-shadow: 0px 5px 6px #0008;
	animation: TitleAnim 3s;
	font-size: 2.5vw;
}
@keyframes TitleAnim {
  0% { bottom: -15%; opacity:0; }
  30% { bottom: -15%; opacity:0; }
  100% { bottom: 10%; opacity:1; }
}

#wrapINNERBANNER {
	background-color: #000;
	background-position: center center;
	background-size: cover;
}
#INNERBANNER {
	height: 33vw;
}
#INNERVIDEOBANNER {
  position: relative;
  width: 100%;
  height: 33vw;         /* altura proporcional al ancho del viewport */
  min-height: 240px;    /* opcional para pantallas chicas */
  overflow: hidden;
  background: #000;     /* evita bordes blancos al cargar */
}
#INNERVIDEOBANNER video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;         /* rellena todo el contenedor sin distorsión */
  object-position: center;   /* centra */
}

#wrapMAPBANNER {
	position: relative;
	margin-bottom: -7px;
	overflow-y: hidden;
}
/* B/W gray map */
#wrapMAPBANNER iframe {
	filter: grayscale(1);
}
/* COLOR locator */
#MapLocator {
	position: absolute;
	left: 50%;
	top: 44%;
	transform: translate(-20px, -20px);
}


/* HOME BARS */

#wrapVANINTRO {
	background-color: #FFF;
}
#VANINTRO {
	padding: 60px 0;
}
#VANINTRO .L {
	text-align: center;
}
#VANINTRO img {
	max-width; 100%
}
#VANINTRO .R p {
	font-size: 16pt;
}

#BOXES {
	padding: 60px 0;
}
#BOXES .QUARTER {
	width: 25%;
	margin: 0;
}

#BOXES .QUARTER a {
	/* width: max-content; */
	text-align: center;
	display: inline-block;
	position: relative;
}
#BOXES .QUARTER a .AnimatedInnerFrame {
	position: absolute;
	border: solid 1px var(--ILLyellow1);
	top: 50%;
	left: 50%;
	height: calc(100% - 24px);
	width: calc(100% - 24px);
	transform: translate(-50%,-50%);
	transition: 500ms;
	height: 0;
	width: 0;
	opacity: 0;
	/* background-color: var(--ILLyellow1); */
}
#BOXES .QUARTER a:hover .AnimatedInnerFrame {
 height:calc(100% - 24px);
 width:calc(100% - 24px);
 opacity:1
}




#wrapREVIEWS {
	background-color: #FFF;
	background-image: url("images/BCKreviews.jpg");
	background-position: top center;
	background-size: cover;
	background-attachment: fixed;
}
#REVIEWS {
	padding: 90px 0;
	box-sizing: border-box;
}
#REVIEWS h2 {
	text-align: center;
	text-shadow: 0 0 6px #FFF;
	margin-bottom: 30px;
	color: #000;
}
#REVIEWS p.What {
	font-size: 16pt;
	font-style: italic;
}
#REVIEWS p.Who {
	text-align: right;
	font-weight: bold;
}

#CAROUSEL {
	padding: 60px 0;
	text-align: center;
}
#CAROUSEL h3 a {
	color: var(--ILLyellow1);
}
#CAROUSEL #rev_slider_1_2_wrapper {
	overflow: hidden !important;
}

#wrapAFFILIATIONS {
	background-color: #000;
	background-image: url("images/BCKwecreate.jpg");
	background-position: top center;
	background-size: cover;
	background-attachment: scroll;
}
#AFFILIATIONS {
	padding: 120px 0;
}
#AFFILIATIONS h2 {
	font-size: 36pt;
	text-align: center;
	font-weight: 100;
	margin-top: 50pt;
}
#AFFILIATIONS #KichlerBadge {
	height: 216px;
	display: block;
	margin: -110px auto 0;
	z-index: 1000;
	position: relative;
}

#FEATNEWS {
	padding: 60px 0;
}
#FEATNEWS h2 {
	text-align: center;
	margin-bottom: 30px;
}
.BlogPost {
	padding: 10px;
	box-sizing: border-box;
	height: 300px;
}
.BlogPost h4 {
	font-size: 16pt;
	color: #FFF;
}
.R.THIRD.BlogPost:hover {
	/* filter: grayscale(100); */
	transition-duration: 500ms;
	background-blend-mode: luminosity;
	background-color: var(--ILLyellow1);
}
.R.THIRD.BlogPost:hover h4 {
	/*color: var(--ILLyellow1);*/
}


#wrapPHONESBAR {
	background-color: var(--ILLyellow1);
}
#PHONESBAR {
	padding: 40px 0;
	display: flex;
	flex-direction: row;
}
#PHONESBAR .THIRD {
	display: flex;
	flex-grow: 1;
	width: auto;
	margin: auto;
}
#PHONESBAR .THIRD h3 {
	font-weight: 100;
	color: #000;
	font-size: 21pt;
	text-align: center;
	width: 100%;
	margin: 0;
}
#PHONESBAR .THIRD h3 a {
	font-weight: 400;
}

#wrapWHYCHOOSE {
	background-color: #000;
	background-image: url("images/BCKwecreate.jpg");
	background-position: top center;
	background-size: cover;
	background-attachment: scroll;
}
#WHYCHOOSE {
	padding: 90px 0;
}
.OrangeShaded {
	background-color: #ffc10055;
	padding: 60px 40px;
	box-sizing: border-box;
}
.OrangeShaded h4 {
	color: var(--ILLyellow1);
	text-transform: uppercase;
	font-size: 16pt;
	font-weight: 600;
	margin: 25pt 0;
}
img.orangeborder {
	border: solid 1px var(--ILLorange);
	box-sizing: border-box;
}
#WHYCHOOSE h2 {
	text-align: center;
	margin-bottom: 60px;
}
#WHYCHOOSE p {
	color: #FFFC;
}

#wrapADDRESSES {
	background-color: var(--ILLyellow1);
}
#ADDRESSES {
	padding: 60px 0;
}
#ADDRESSES h3 {
	color: #000;
	text-align: center; 
	margin-bottom: 40px;
}
#ADDRESSES h4 {
	color: #000;
	text-align: center;
	font-weight: 600;
	line-height: 1.5;
}
#ADDRESSES h4 a {
	font-weight: 400;
}

#REVIEWSLOGOS {
	padding: 60px 0;
	text-align: center;
}
#REVIEWSLOGOS h3 {
	color: var(--ILLyellow1);
	text-align: center;
	margin-bottom: 20pt;
}
#ReviewsLogos .L {
	width: 16.666%;
	float: left;
}
#ReviewsLogos .L img {
	width: 80%;
}
#ReviewsLogos .L p {
	margin: 0 auto;
	text-align: center;
	color: #FFF;
	display: none; /* 220208 - hide */
}




.PostCell .Thumb {
	background-image: url("images/DefaulBlogPic.png");
	background-position: center; ".
	background-size: cover;
	height: 240px;
	margin-bottom: 10px;
}

.PostCell .PostsTit {
	margin-bottom: 30px;
}

.navigation.pagination {
	text-align: center;
	border-top: dotted 1px var(--ILLorange);
	margin-top: 40px;
	padding-top: 20px;
	font-size: 18pt;
}


.wp-block-video video {
	margin: 20px 0 40px;
	box-shadow: 0 10px 20px #0003;
	border-radius: 5px;
}





/*
#wrapFLOATBOXES {
	margin-top: 0px;
}
#FLOATBOXES .THIRD {
	background-color: #FFFC;
	padding: 40px;
	box-sizing: border-box;
	text-align: center;
}
#FLOATBOXES h3 {
	font-size: 21pt;
	font-size: 1.8vw;
	margin-bottom: 30pt;
}

#wrapFLOATBOXES {
	background-color: var(--CMBgray);
	position: relative;
	z-index: 100;
}
#FLOATBOXES {
	position: relative;
	top: -75px;
}
#FLOATBOXES .THIRD {
	background-color: #FFFC;
	padding: 40px;
	box-sizing: border-box;
	text-align: center;
}
#FLOATBOXES h3 {
	font-size: 19pt;
	margin-bottom: 30pt;
	margin-top: 0;
	height: 43pt;
	line-height: 1.3;
}

#wrapBOXES {
	background-color: var(--CMBgraylight);
	background: linear-gradient(180deg, rgba(151,150,152,1) 2%, rgba(225,226,227,1) 31%);
}
#BOXES {
	padding: 0 0 40px;
	text-align: center;
}
#BOXES h2 {
	font-weight: 600;
	color: #FFF;
	text-shadow: 0px 5px 6px #0008;
	font-size: 2.8vw;
	margin-bottom: 60px;
	margin-top: 0;
}
#BOXES .THIRD {
	background-color: #1c5077;
	margin: 20px 1.5%;
	box-sizing: border-box;
	width: 30.3%;
	padding: 20px;
	box-shadow: 0px 5px 8px #0003;
	height: 370px;
	position: relative;
}
	#BOXES .THIRD:hover {
		cursor: move;
	}

#BOXES .THIRD img {
	position: absolute;
	top: 30%;
	transition: 1s;
	left: 50%;
	transform: translateX(-50%);
}
	#BOXES .THIRD:hover img {
		top: 20px;
	}
#BOXES .THIRD h4 {
	color: #FFF;
	font-size: 18pt;
	position: absolute;
	top: 60%;
	transition: 1s;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
}
	#BOXES .THIRD:hover h4 {
		top: 120px;
	}
#BOXES .THIRD p {
	color: #FFF;
	text-align: center;
	position: absolute;
	top: 140px;
	opacity: 0;
	transition: 1s;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
}
	#BOXES .THIRD:hover p {
		top: 140px;
		opacity:1;
	}


#wrapBIGBOXES {
	background-color: var(--CMBgraylight);
}
#BIGBOXES {
	text-align: center;
}
#BIGBOXES .HALF {
	height: 430px;
	position: relative;
}
#BIGBOXES a {
	z-index: 1;
}




#BIGBOXES .L {
	background-image: url("images/BCKparallaxBIGBOX1color.210922.png");
	background-position: top right;
	background-size: cover;
	width: 50%;
	margin: 0;
}
#BIGBOXES .R {
	background-image: url("images/BCKparallaxBIGBOX2color.png");
	background-position: top left;
	background-size: cover;
	width: 50%;
	margin: 0;
}
#BIGBOXES .L h2 {
	position: absolute;
	top: 60px;
	color: var(--CMBblue);
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	text-shadow: 0 0 2px #FFF;
}
#BIGBOXES .L .Button {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
}
#BIGBOXES .R .Button.B1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 21pt;
	width: max-content;
}


#wrapTESTIMONIALS {
	background-color: var(--CMBblue);
}
#TESTIMONIALS {
	padding: 60px 0;
	text-align: center;
}
#TESTIMONIALS h2 {
	color: #FFF;
	margin-bottom: 40px;
}
#TESTIMONIALS p {
	color: #FFF;
	font-size: 16pt;
}
#TESTIMONIALS p i:first-child {
	font-size: 24pt;
	top: -1pt;
	position: relative;
}
#TESTIMONIALS p i:last-child {
	font-size: 24pt;
	top: 9pt;
	position: relative;
}
.HiddenTestimonial {
	display: none;
}

#wrapBLOG {
	background-color: #FFF;
	background-image: url("images/BCKparallaxBlog.210922.jpg");
	background-position: top center;
	background-size: cover;
	background-attachment: fixed;
}
#BLOG {
	padding: 60px 0;
}
#BLOG h2 {
	text-align: center;
	text-shadow: 0 0 6px #FFF;
	margin-bottom: 30px;
}
.BlogPost {
	background-color: #FFFC;
	box-sizing: border-box;
	padding: 20px;
	width: 29.3%;
	margin: 0 2%;
}
.BlogPost h4 {
	margin-top: 0;
	min-height: 44px;
}
.BlogPost a.BlueButton {
	float: right;
}
#MAIN .PostsTit a {
	text-decoration: none;
}
#MAIN .PostsTit a:hover {
	text-decoration: underline;
}

#FLOATINGHOUSE {
	height: 0;
	text-align: right;
}
#FLOATINGHOUSE img {
	transform: translateY(-65%);
}

#wrapLATESTVIDEOS {
	background-color: #FFF;
}
#LATESTVIDEOS {
	padding: 60px 0;
	max-width: 720px;
}
#LATESTVIDEOS h2 {
	text-align: center;
	text-shadow: 0 0 6px #FFF;
	margin-bottom: 30px;
}
.LatestVideo {
	background-color: #FFFC;
	box-sizing: border-box;
	text-align: center;
}
.LatestVideo img {
	max-width: 100% !important;
}
*/




#wrapFORM {
	background-color: var(--ILLyellow1);
}
#FORM {
	padding: 60px 0;
}
#FORM h2 {
	color: #000;
}
#FORM input, #FORM #Comments, #FORM #Review, #FORM #HearAboutUs {
	font-family: Poppins, Roboto, Helvetica, Arial, "sans-serif";
	color: #000;
	font-size: 12pt;
	background-color: #FFF;
	padding: 7px;
	width: 100%;
	box-sizing: border-box;
	display: inline-block;
	border: none;
	margin: 0 0 10px 0;
	font-weight: 100;
}
#FORM .button {
	border: none;
	color: #FFF;
	background-color: var(--ILLorange);
	font-family: Montserrat, Helvetica, Arial, "sans-serif";
	font-size: 18pt;
	font-weight: 500;
	padding: 10px 40px;
	width: max-content;
	margin-top: 10px;
}
#FORM .button:hover {
	border: none;
	color: #FFF;
	background-color: #000;
	cursor: pointer;
	box-shadow: none;
}
#HorizontalResults {
	width: 100%;
	margin-top: 20px;
	display: none;
	/* background-color: #FFF; */
	/* padding: 20px 0; */
	box-sizing: border-box;
	height: 220px;
	/* border: solid 2px #C00; */
}

#wrapFORM.ReviewsForm {
	background-color: #000;
}
#wrapFORM.ReviewsForm h3 {
	color: var(--ILLorange);
	text-align: center;
	margin-bottom: 20pt;
}


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

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




/* MAIN */
#MAINwrap {
	background-color: #FFF;
}
#MAIN {
	padding: 60px 0 80px;
}
#MAIN.InnerFullWPage {
	padding: 60px 0% 80px;
	box-sizing: border-box;
}
#MAIN h1 {
	font-size: 28pt;
	color: #000;
	line-height: 1.3;
	margin-bottom: 30pt;
}
	
#MAIN h2 {
	font-size: 21pt;
	color: #000;
	line-height: 1.3;
}
#MAIN h3 {
	font-size: 18pt;
	color: var(--ILLorange);
	line-height: 1.3;
}
#MAIN h4 {
	font-size: 15pt;
	color: var(--ILLorange);
	font-weight: 600;
	line-height: 1.3;
}
#MAIN .wp-block-spacer {
	clear: both;
	height: 30pt !important;
}
#MAIN a {
	color: var(--ILLorange);
}
#MAIN.ReviewsPage p {
	margin: 40pt 10%;
	font-size: 15pt;
}


/* VIDEOS */
.wp-block-video {
	width: 100%;
	height: auto;
	max-width: 1000px;
	margin: 0 auto;
}
.wp-block-embed.is-type-video.is-provider-youtube.wp-block-embed-youtube.wp-embed-aspect-16-9.wp-has-aspect-ratio, 
.wp-block-embed.is-type-video.is-provider-youtube.wp-block-embed-youtube.wp-embed-aspect-4-3.wp-has-aspect-ratio {
	text-align: center;
	width: 31%;
	margin: 0 1% 20px;
	float: left;
}
.wp-block-video figcaption {
	margin-top: -7px;
	margin-bottom: 3em;
	text-align: center;
	background-color: #EEE;
	padding: 10px;
}
.wp-block-embed__wrapper { /* 16:9 aspect ratio */
	position: relative;
	padding-top: 56.25%;
}
.wp-block-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* 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, .wp-block-image.NOSHADOW figure {
	box-shadow: none;
}
.wp-block-image.size-large {
	text-align: center;
	margin-bottom: 20pt;
}
.wp-block-image .aligncenter {
	text-align: center;
}




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

#MAINR h2 {
	color: var(--ILLorange);
	font-size: 24pt;
}
#MAINR ul {
	padding-left: 20px;
}
#MAINR li {
	font-size: 12pt;
}
.widget_block {
	margin-bottom: 60px;
}
.widget_block li, .widget_block p, .widget_block a {
	color: var(--ILLorange);
}





/* 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;
}





/*
	#LEFTMENU {
		background-color: var(--CILgraylightbground);
		padding: 56px 20px 20px 7px;
		margin-bottom: 20px;
	}
	#LEFTMENU ul {
		padding: 0 0 0 10px;
		margin: 0;
	}
	#LEFTMENU li {
		list-style: none;
	}
	#LEFTMENU li a {
		font-family: "BodoniSvtyTwoITCTT-Book", Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
		margin-top: 0;
		font-size: 14pt;
		color: var(--CILgraytext);
		display: block;
		border-bottom: dotted 1px var(--CILgraytext);
		padding: 8px 0 9px;
		line-height: 1;
	}
	#LEFTMENU>li:last-child a {
		border-bottom: none;
	}
*/

	#MAINLinner a.BigBlueButton {
		display: block;
		margin-bottom: 20px;
		padding: 26px 26px;
	}
	#MAINLinner a.BigBlueButton:hover {
		background-color: #000;
		text-decoration: none;
	}
	#NEEDHELP {
		background-color: var(--CILbluemediumbground);
		padding: 20px;
	}
	#NEEDHELP h3 {
		color: #FFF;
		margin-bottom: 16pt;
	}
	#NEEDHELP p {
		color: #FFF;
		text-align: left;
		line-height: 1.2;
	}
	#NEEDHELP:hover {
		background-color: var(--CILbluebutton);
		text-decoration: none;
	}

	/* POSTS */
	#MAINLinner .widget {
		background-color: var(--CILgraylightbground);
		padding: 20px 20px;
		margin-bottom: 20px;
	}
	#MAINLinner .widget:first-child {
		padding-top: 60px;
	}
	#MAINLinner .widget ul {
		padding-left: 0;
	}
	#MAINLinner .widget li {
		list-style: none;
		/* margin-bottom: 10pt; */
		font-size: 12pt;
		padding: 3pt 5pt;
	}
	#MAINLinner .widget li.current-cat {
		font-weight: bold;
		color: var(--CILbluebutton);
		background-color: var(--CILbluelightbground);
	}
	#MAINLinner .widget li a {
		color: var(--CILgraytext);
		display: block;
		border-bottom: dotted 1px var(--CILgraytext);
	}
	#MAINLinner .widget a:last-child {
		border-bottom: none;
	}

#MAINRinner h1 a, #MAINRinner h2 a, #MAINRinner h3 a, #MAINRinner h4 a {
	text-decoration: none;
}

.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;
}


/*
#wrapVIDEOBANNER {
	background-color: var(--CILbluedarkbground);
	background: linear-gradient(180deg, rgba(15,31,49,1) 0%, rgba(0,0,0,1) 50%, rgba(15,31,49,1) 100%);
}
#VIDEOTHUMBS h2 {
	text-align: center;
	border-bottom: solid 1px var(--CILbluelighttext);
	margin-bottom: 10pt;
	padding-bottom: 10pt;
	display: block;
}
.videothumb {
	width: 19%;
	margin: 0 0.5% 10px;
	float: left;
	font-size: 14px;
}
.videothumb a {
	min-height: 60px;
	display: block;
}
.videothumb img {
	width: 100%;
	height: auto;
	border-radius: 3px;
	background-color: var(--CILbluelighttext);
}
*/



#MAIN a {
	text-decoration: none;
}
#MAIN a:hover {
	text-decoration: underline;
}
#MAINL {
	/*padding: 80px 0;*/
}
#MAIN .HALF {
	width: 46%;
	margin: 0 2%;
}

/* 220411 - smaller videos */
.wp-block-embed.ILLSmallerVideo.wp-embed-aspect-16-9.wp-has-aspect-ratio {
	width: 50%;
	margin: 0 auto 40px;
	box-shadow: 0 0 24px #0006;
	border: solid 1px var(--ILLorange);
}

/* 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.SpecialtiesRBar {
	background-color: var(--SAAred);
	padding: 74px 20px 30px;
	box-sizing: border-box;
	box-shadow: 4px 4px 12px #0006;
}
.SpecialtiesRBar h4 {
	color: #FFF;
}
.SpecialtiesRBar ul {
	padding: 0;
}
.SpecialtiesRBar li {
	padding-left: 1.3em;
	color: #FFF;
	list-style: none;
	font-size: 11pt;
}
.SpecialtiesRBar li::before {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: inline-block;
	margin-left: -1.3em;
	width: 1.0em;
}
#MAIN .SpecialtiesRBar ul a {
	color: #FFF;
	text-decoration: none;
}
#MAIN .SpecialtiesRBar ul a:hover {
	text-decoration: underline;
}
#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;
}
*/



/* Special pages */
/*
.ProductsPage h1.entry-title {
	display: none;
}
.ProductsPage #LUXXE,
.ProductsPage #CATALINA {
	background-color: var(--VIPgray);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 0;
	margin-bottom: 60px;
}
.ProductsPage #LUXXE .pageW,
.ProductsPage #CATALINA .pageW {
	background-color: #FFFD;
	padding: 50px 50px 100px;
	box-sizing: border-box;
	
	background-image: url("images/LOGOsmall.png");
	background-size: initial;
	background-repeat: no-repeat;
	background-position: right 50px bottom 50px;
}
.ProductsPage #LUXXE .pageW h2,
.ProductsPage #CATALINA .pageW h2 {
	font-weight: 300;
}
.ProductsPage #LUXXE .pageW p,
.ProductsPage #CATALINA .pageW p {
	color: #000;
}
.ProductsPage #LUXXE {
	background-image: url("images/BCKparallaxLUXXE.jpg");
}
.ProductsPage #CATALINA {
	background-image: url("images/BCKparallaxCATALINA.jpg");
}

.wp-block-image figcaption {
	margin-top: -80px;
	margin-left: 90px;
	height: 80px;
}
*/




/* FOOTER */
#FTRwrap {
	background-color: #000;
	background-image: url("images/BCKfooter.jpg");
	background-position: bottom center;
	background-size: cover;
	background-attachment: fixed;
}
#FTR {
	padding: 400px 0 10px;
	text-align: center;
}
#FTR2 {
	padding-top: 20px;
}
#FTR h4 {
	color: var(--ILLorange);
}
#FTR p {
	font-size: 11pt;
	text-align: center;
	color: var(--FTRtxt);
}
#FTR a {
	color: var(--FTRtxt);
}



/* LANDING PAGE */
#MAIN.LandingPg240926 {
	padding: 60px 5% 80px;
}
#MAIN.LandingPg240926 h1 {
  font-size: 36pt;
}
#MAIN.LandingPg240926 h3 {
  font-size: 30pt;
}
#MAIN.LandingPg240926 .wp-block-separator {
	margin: 20pt 0;
}
#MAIN.LandingPg240926 .wp-block-video {
	max-width: 1240px;
	box-shadow: 0px 8px 14px #0006;
}
#MAIN.LandingPg240926 .LOGOS img {
	box-shadow: none;
	height: 160px;
	width: auto;
}
#MAIN.LandingPg240926 #FORM {
	background-color: var(--ILLyellow1);
	padding: 40px;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 20px;
}


/* YOUTUBE 16:9 VIDEO */
#MAIN .wp-block-embed.wp-embed-aspect-16-9 {
	max-width: initial;
	width: 100%;
	float: none;
	margin: 0 0 30px;
}

