/*==============================================================================
CSS file: parts/page-banner-standard.css
v2017.05.01
Dependant Pages: all pages 
Dependant Partials: parts/page-banner-standard.htm
Validation 2017.05.01: CSS level 3 + SVG with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
parts/page-banner-standard.css. Part I - General
--------------------------------------------------------------------------------*/
/* Transitions */
.video-banner,
.slide:first-child {
	-webkit-transition: opacity 1.5s ease-in-out;/*S3.1-6.1, C4-25, O12.1+ */
	-moz-transition: opacity 1.5s ease-in-out;/*M4-16*/
	transition: opacity 1.5s ease-in-out;		
}

.video-control,
.video-control-button {
    -webkit-transition: all .35s ease-in-out;/*S3.1-6.1, C4-25, O12.1+ */
    -moz-transition: all .35s ease-in-out;/*M4-16*/
    transition: all .35s ease-in-out;		    
}
/*-------------------------------------------------------------------------------
parts/page-banner-standard.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
/* Banner Container */
.banner {
	position:fixed;
	top:0;
	left:0;	
	height: 100%;
	width:100%;
	margin:0;
	padding:0;
	overflow:hidden; 
}
/* Video container */
.video-banner {
	opacity:1;
	position:absolute;
	top: 50%; 
    left: 50%;		
    min-width: 100%; 
    min-height: 100%;
	width:auto;
	height:auto;
	overflow:hidden;
    /*z-index: -100; causing jerking in IE overcovered with landing media background in IE */
    -ms-transform: translateX(-50%) translateY(-50%); /*IE9*/
    -webkit-transform: translateX(-50%) translateY(-50%); /*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateX(-50%) translateY(-50%); /*M3.5-15*/	
    transform: translateX(-50%) translateY(-50%);
}
/* Slider Container (hidden if video is visible)*/
.slideshow-banner {
	opacity:1;
	position: absolute; 
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	overflow:hidden; 
}
/* Slides */
.slideshow-banner .slide,
.slideshow-banner .static-slide {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
	overflow:hidden;
    background-size: cover;
    background-position: 50% 50%;
	background-repeat: no-repeat;
    z-index: 0
}
.slideshow-banner .slide {
    opacity: 0;
    visibility: hidden;
}
/* Container with static image */
.slideshow-banner .static-slide {
    opacity:1;
    visibility: visible;
}
/* Banner Overlay */
.banner .overlay {
	position: absolute; 
    top: 0px;
    left: 0px;
    width: 100%;
    height:100%;
	background-repeat:repeat;
	background-color: rgba(31, 42, 58, 0.2);	
}
    /* Page title overlay to create uphill cut between sections*/
    .banner .slope-edge {
        position:absolute;
        left:-15%;
        bottom:-15%;
        width:130%;
        height:30%;
        background-color:#fff;
    }
    .banner .slope-edge.anticlockwise {
        -ms-transform: rotate(-2deg);/*IE9*/
        -webkit-transform: rotate(-2deg);/*S3.2-8, C4-35, O15-22, */
        -moz-transformtransform: rotate(-2deg);/*M3.5-15*/    
        transform:rotate(-2deg);
    }
/*-------------------------------------------------
Video Control Classes applied to Banner Container:
VISUAL RULES
*/
.slideshow-off .slide{display:none;}
.slideshow-on .static-slide {opacity:0;}

.animation-on .slide {opacity:0;}

.video-on .video-banner {opacity:1;}
.video-off .video-banner,
.video-disabled .video-banner {opacity:0;}

.control-on + .video-control {opacity:1;}
.control-off + .video-control {opacity:0;}
/*---------
VIDEO CONTROL
---------*/
/*Video control container */
.video-control {
	opacity:0;
	position:absolute;
	left:0;
	bottom:5em;
	z-index:5;
}
/* Video buttons*/
.video-control-button {
	height:36px;
	width:36px;
	border-width: 0px;
	border-radius: 18px;
	padding:0;
	margin: 10px;
	overflow: hidden; 
	background-color:transparent;
}
.video-control-button:hover{background-color: rgba(31, 42, 58, 0.5);}
.video-control-button:focus {outline:0;}	
/*--------------------------------------------------------------------------------
CSS file: parts/page-banner-standard.css - v2017.05.01
=================================================================================*/
/*==============================================================================
CSS file: sections/sections/section-page-title.css
v2018.02.28
Dependant Pages: all pages
Dependant Partials: sections/sections/section-page-title.css.htm
Validation 2017.04.28: CSS level 3 + SVG - @-moz-keyframes and @-webkit-keyframes are not implemented. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
sections/section-page-title.css. Part I - General
--------------------------------------------------------------------------------*/
/*Technical*/

/* Transitions */
.section.title .btn.tour,
.scroll-down .scroll-img,
.section.title .heading {
    -webkit-transition: all .35s ease-in-out;/*S3.1-6.1, C4-25, O12.1+ */
    -moz-transition: all .35s ease-in-out;/*M4-16*/
    transition: all .35s ease-in-out;		    
}
/*-------------------------------------------------------------------------------
sections/section-page-title.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
/* Section Container */
.section.title {
	position:relative;
	top:0;
	left:0;
	height: 100%;
	width:100%;
	margin:0;
	padding:0;
	overflow:hidden;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(31, 42, 58, 0.5);
}
/*--------------------------
TITLE HEADING COMPOSITION
*/
/* Page Title heading composition */
.section.title > .heading-container {
    position:relative;
    position:absolute;
    top:50%;
    -ms-transform: translateY(-50%);/*IE9*/
    -webkit-transform: translateY(-50%);/*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateY(-50%);/*M3.5-15*/
    transform: translateY(-50%);
    width:100%;
    padding:5px;
    text-align:center;
}
/*Page Title Heading and subheading - general */
.section.title h1 {
    margin-top:0;
    margin-bottom:15px;
}
.section.title .heading {
	text-transform: capitalize;
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding-bottom: 5px;
	font-size:0.6em;
	vertical-align:middle;
}
.section.home.title .heading {
    /*text-transform: uppercase; temporary disabled*/
}
/* Special banner styles for links with arrows */
.section.title > .heading-container a {
    display:inline-block;
    text-decoration: none;
    color:#fff;
}
.section.title > .heading-container a:hover .heading {
    background-color:rgba(31, 42, 58, 0.7);
}
.section.title .subheading {
    font-size:1.4em;
    font-weight:300;
    letter-spacing:2px;
}
.section.title .subheading2 {
    font-weight:300;
    color: #E6E6E6;
}
/* Introduction Buttons */
.section.title .btn.tour {
    border:1px solid #E3E6E8;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(31, 42, 58, 0.5);
    -moz-box-shadow: 1px 1px 5px 0px rgba(31, 42, 58, 0.5);
    box-shadow: 1px 1px 5px 0px rgba(31, 42, 58, 0.5);    
	padding:1em;
	margin-top:1em;
	text-transform: uppercase;
	/*color:#E3E6E8;*/
	color:#FFF;
	font-size:2em;
	background-color : rgba(31,42,58,.3)
}
.section.title .btn.tour:hover {
	background-color:#D1A700;
	text-shadow:none;
}

/*-------------------------------------------
 INTRO BOTTOM OVERLAY */
.section.title .bottom-overlay {
    position:absolute;
    bottom:0;
    width:100%;
    height:9.5em;/*132px*/ 
    background: linear-gradient(to top, rgba(31, 42, 58, 1.0), rgba(31, 42, 58, 0.7), rgba(31, 42, 58, 0.4), rgba(31, 42, 58, 0.2), rgba(31, 42, 58, 0.0));    
} 

/*-------------------------------------------
 SCROLL DOWN IMAGE COMPOSITION */
.scroll-down {
    position:absolute;
    bottom:5em;
    left:50%;
    margin-left:-3em;
    width:6em;
    height:5em;
    padding: 1em 1em 0 1em;
    text-decoration:none;
    color: #fff;
}
.scroll-down:hover {
    color: #D1A700;
}    
.scroll-down .scroll-img {
    position:absolute;
    bottom:1em;
    left:50%;
    margin-left:-2em;
    width:4em;
    height:1.5em;
    stroke: currentColor;
    stroke-width: 18px;
}
/* Set animation for one of images */
.scroll-down .scroll-img:first-child {
    -webkit-animation: bounce 3s infinite; 
    -moz-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}
/*Moz 5 compatibility 2012 */
@-moz-keyframes bounce {
    0%, 10%, 25%, 40%, 50%, 100% {bottom:1em;}
    20% {bottom:0;}
    30% {bottom:0.5em;}
}
@-webkit-keyframes bounce {
    0%, 10%, 25%, 40%, 50%, 100% {bottom:1em;}
    20% { bottom:0;}
    30% { bottom:0.5em;}
}
@keyframes bounce {
    0%, 10%, 25%, 40%, 50%, 100% {bottom:1em;}
    20% {bottom:0;}
    30% {bottom:0.5em;}
}

/*-------------------------------------------------------------------------------
sections/section-page-title.css. Part III - Small Screen Styles (480px/30em)
--------------------------------------------------------------------------------*/
@media(min-width:30em) {
/* Page Title Heading and subheading */
    .section.title .heading {
    	font-size:0.88em;
    }
    .section.title .subheading {
        font-size:1.8em;
    }   
	/* Introduction Buttons */
	.section.title .btn.tour {
		/*font-size:0.8em;*/
		font-size:2em;
		padding:1em;
	}    
}
/* Special for landscape 480px screens*/
@media (max-device-width: 47.9375em) and (orientation: landscape){
/* Page Title heading composition */
    .section.title > .container-wrapper {
        top:45%;
    } 	
/* Introduction Buttons */
	.section.title .btn.tour {
		display:none;
	}     
}
/*-------------------------------------------------------------------------------
sections/section-page-title.css. Part IV - Medium Screen Styles (768px/48em)
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
/* Page Title Heading and subheading */
    .section.title .heading {
    	font-size:1.1em;
    }
    .section.title .subheading {
        font-size:1.85em;
    }     
	.section.title .btn.tour {
		/*font-size:0.9em;*/
		font-size:1.9em;
	}
}
/*-------------------------------------------------------------------------------
sections/section-page-title.css. Part V - Medium Screen Styles (992px/62em)
--------------------------------------------------------------------------------*/
@media(min-width:62em) {
/* Page Title Heading and subheading */
    .section.title .heading {
    	font-size:1.2em;
    }
    .section.title .subheading {
        font-size:1.9em;
    } 
    .scroll-down {
        bottom:3.7143em;/*52px*/
    }   
	.section.title .btn.tour {	
		/*padding:13px;*/
		/*font-size:1em;*/
		font-size:1.8em;
	}	    
}
/*-------------------------------------------------------------------------------
sections/section-page-title.css. Part VI - Large Screen Styles (1200px/75em)
--------------------------------------------------------------------------------*/
@media(min-width:75em) {
/* Page Title Heading and subheading */
    .section.title .heading {
    	font-size:1.3em;
    }
    .section.title .subheading {
        font-size:1.95em;
    }
	.section.title .btn.tour {	
		padding:1em;
		/*font-size:1.1em;*/
		font-size:1.7em;
	}	    
}
/*-------------------------------------------------------------------------------
Section Events. Part VII - Extra Large Screen Styles (1440px/90em - indefinite)
--------------------------------------------------------------------------------*/
@media(min-width:90em) {
/* Page Title Heading and subheading */
    .section.title .heading {
    	font-size:1.4em;
    }
    .section.title .subheading {
        font-size:2em;
    }
	.section.title .btn.tour {	
		padding:1em;
		font-size:1.6em;
	}	    
}
/*--------------------------------------------------------------------------------
CSS file: sections/sections/section-page-title.css.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: parts/page-menu.css
v2017.04.28
Dependant Pages: home, learning, international, parents 
Dependant Partials: n/a
Validation 2017.04.28: CSS level 3 + SVG with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
--------------------------------------------------------------------------------
parts/page-menu.css. Part I - General
--------------------------------------------------------------------------------*/
/* Transitions */
.page-menu nav a,
.dropup-nav .dropdown-menu,
.dropup-nav button svg {
    -webkit-transition: all .35s ease-in-out;/*S3.1-6.1, C4-25, O12.1+ */
    -moz-transition: all .35s ease-in-out;/*M4-16*/
    transition: all .35s ease-in-out;		
}
/*-------------------------------------------------------------------------------
parts/page-menu.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */

/* Intro links container */
.page-menu {
    position:absolute;
    bottom:0;
    width:100%;
    height:10%;
    height:70px;
    text-align:center;
    border-top:1px solid #D1A700;
}
/* Intermediate BS and nav containers */
.page-menu .container-fluid {
    height:100%;
    max-width:1920px;
    margin:auto;
    overflow:visible;
}
.page-menu nav {
   height:100%; 
}
/* Hyperlink styling */
.page-menu nav a {
    display:inline-block;
    font-size:16px;
    color:#B7BCC2;
    text-transform:uppercase;
    text-decoration:none;
}
.page-menu nav a:hover {
    color:#D1A700;
    background-color:rgba(31, 42, 58, 0.4);
}

/*------------------------------ 
STRIP NAVIGATION */
.page-menu .strip-nav {
    position:relative;
    top:50%;
    -ms-transform: translateY(-50%);/*IE9*/
    -webkit-transform: translateY(-50%);/*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateY(-50%);/*M3.5-15*/    
    transform:translateY(-50%);   
} 
.page-menu .strip-nav a {
    line-height:70px;
    padding:0 5px;
}
.page-menu .strip-nav ul svg {
    width:25px;
    height:25px;
    vertical-align:middle;
    margin: 0 5px 0 0;
    fill:currentColor;
}
.page-menu .strip-nav ul span {
    vertical-align:middle;
}

/* Set list sizes */
.page-menu .strip-nav ul {
    padding-left:0;
}
.page-menu .strip-nav ul>li {
    display:inline-block;
}

/*------------------------------ 
DROPUP NAVIGATION */
.page-menu .dropup-nav {
    display:inline-block;
    position:relative;
    top:50%;
    -ms-transform: translateY(-50%);/*IE9*/
    -webkit-transform: translateY(-50%);/*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateY(-50%);/*M3.5-15*/       
    transform:translateY(-50%);   
}
/* Dropup button */
.page-menu button {
    padding:5px 15px;
    background-color:transparent;
    border:1px solid rgba(31, 42, 58, 0.2);
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size:15px;
    color:#B7BCC2;
    text-transform:uppercase;
}
.dropup-nav button span {
    vertical-align: middle; 
}
.dropup-nav button svg {
    width:20px;
    height:20px;
    fill: currentColor;
    vertical-align: middle;
    margin:0;
}
.open button svg {
    transform:rotate(45deg);
}
/* Dropup menu */
.dropup-nav .dropdown-menu {
    display:none;
    opacity:0;
    left:50%;
    -ms-transform: translateX(-50%);/*IE9*/
    -webkit-transform: translateX(-50%);/*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateX(-50%);/*M3.5-15*/     
    transform:translateX(-50%);
    min-width:100%;
    border:1px solid rgba(31, 42, 58, 1.0);
    background-color:rgba(31, 42, 58, 0.9);
}
.open .dropdown-menu {
    opacity:1;
    display:block;
}
.dropup-nav .dropdown-menu a {
    padding:10px 20px;
    font-size:16px;
    color:#B7BCC2!important;
    text-transform:uppercase;  
}

/*-------------------------------------------------------------------------------
parts/page-menu.css. Part IV - Medium Screen Styles (768px+)
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
/* Change sizes of strip menu */
    #home-title .page-menu nav a {
        font-size:15px;
    }   
}

/*-------------------------------------------------------------------------------
parts/page-menu.css. Part V - Medium Screen Styles (992px+)
--------------------------------------------------------------------------------*/
@media(min-width:62em) {
/* Change sizes of strip menu */
    .page-menu {
        height:52px;
    }
    .page-menu .strip-nav a {
        padding: 0 10px;
        line-height:51px;
    }    
    .page-menu nav a {
        font-size:17px;
    }      
}
/*-------------------------------------------------------------------------------
parts/page-menu.css. Part VI - Large Screen Styles (1200px+)
--------------------------------------------------------------------------------*/
@media(min-width:75em) {
/* Change sizes of strip menu */
    .page-menu .strip-nav a {
        padding: 0 15px;
    }
    .page-menu nav a {
        font-size:18px;
    }    
}
/*-------------------------------------------------------------------------------
parts/page-menu.css. Part VII - Extra Large Screen Styles (1440px - indefinite)
--------------------------------------------------------------------------------*/
@media(min-width:90em) {
/* Change sizes of strip menu */
    .page-menu nav a {
        font-size:19px;
    } 
}
/*-------------------------------------------------------------------------------
parts/page-menu.css. Part VIII - Special fixes for the Chrome issue with the last pixel before BS breakpoints
--------------------------------------------------------------------------------*/
/*767 (47.9375em) - 47.95 */
@media(min-width:47.9375em) and (max-width:47.95em) {
    .page-menu .strip-nav {
        display:none;
    }
}
/*991 (61.9375em) - 61.95*/
@media(min-width:61.9375em) and (max-width:61.95em) {
    .page-menu .dropup-nav {
        display:none;
    }
}
/*1199 (74.9375em) - 74.95em */
@media(min-width:74.9375em) and (max-width:74.95em) {
    .page-menu .dropup-nav {
        display:none;
    }
}
/*--------------------------------------------------------------------------------
CSS file: parts/page-menu.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: css/sections/section-info-events.css
v2017.04.28
Dependant Pages: parents 
Dependant Partials: sections/section-info-events.htm
Validation 2017.04.28: CSS level 3. 
http://jigsaw.w3.org/css-validator/
*/
/*Set gray background for small screens only < 767.68px */
@media (max-device-width:47.98em) {
    #info-events {background-color:#EDF0F2;}
}
/*--------------------------------------------------------------------------------
CSS file: css/sections/section-top-news-and-events.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: parts/sly-horizontal-list.css
v2017.04.27
Dependant Pages: home, news, parents 
Dependant Partials: parts/sly-news-and-events-list.htm
Validation 2017.04.27: CSS level 3 + SVG with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
-------------------------------------------------------------------------------
parts/sly-horizontal-list.css. Part I - General
--------------------------------------------------------------------------------*/

/* Transitions */
.item-list.scale .sly-item,
.item-list.scale .item-image,
.sly-item .overlay {
    -webkit-transition: all .35s ease-in-out;/*S3.1-6.1, C4-25, O12.1+ */
    -moz-transition: all .35s ease-in-out;/*M4-16*/
    transition: all .35s ease-in-out;		    
}

/*-------------------------------------------------------------------------------
parts/sly-horizontal-list.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
.sly-horizontal-list-partial-wrap {
    padding-left:0;
    padding-right:0;
}
/*-------------
Sly Wrap Container (sm screens and larger)*/
.sly-wrap {
    padding-left:0;
    padding-right:0;
    padding-top:1.07143em;
}
.sly-wrap.mobile {
    padding-left:0.1428571428571429em;/*2px*/
    padding-right:0.1428571428571429em;    
}
/* -------------------------
Sly Scrollbar */
.scrollbar {
	margin: 0 0 1.07143em 0;
	height: 0.5em;/*7px*/
	line-height: 0;
}
.scrollbar .handle {
	width: 100px;
	height: 100%;
	cursor: pointer;
}
.scrollbar .handle .mousearea {
	position: absolute;
	top: -1em;
	left: 0;
	width: 100%;
	height: 2.5em;
}

/* ----------------------
Sly frame */
.item-list {
    overflow: hidden;
}

/*Sly container for events */
.item-list .slidee {
	margin: 0;
	padding: 0;
	height: 100%;
}  
.mobile .item-list .slidee {
	width: 200%; /*trick to force initial 50% width items to take the screen width */
}  

/* ------------------------------
Sly List Items and links */
.item-list .sly-item,
.sly-item-block {
	-position:relative;
	float: left;
}    
.sly-item-block {
	width: 50%; /*initial 50% width from 200% width of slidee, see trick above */
}    
.sly-mobile-item {
    padding:0;
    background-color:#fff;
}
.item-list a {
    display:block;
    position:relative;
    overflow:hidden;   
    width:100%;
    height:100%;    
} 

/*---------------------------------
ITEM DATE */
.mobile .item-date {
    float:left;
    -height:120px;
    height:100%;
    -width:120px;
    color:#fff;
    -line-height:120px;
}
.mobile .date-positioner {
    display:inline-block;
    vertical-align:middle;
    line-height:1;
}
.mobile .days {
    font-size:3.5em;/*49px*/
}
.mobile .thru.days {
    font-size:3em;/*42px*/
}
.mobile .month {
    margin-top:5px;
    font-size:2em;/*28px*/
    font-weight:bold;
}
/*------------------------
ITEM IMAGE */
.sly-mobile-item .item-image {
    display:none;
}
/*------------------------
ITEM TITLE */
.sly-mobile-item .item-title {
    width:61%;
    padding:5px 0 5px 5px;
    text-align:left;
    line-height:1;
    font-size:1.5em;/*21px*/
    color:#1F2A3A;
}
/*------------------------
ITEM TIME */
.sly-mobile-item .item-time {
    position:absolute;
    bottom:3%;
    right:1%;
    font-size:1.5em;/*21px*/
    color:#1F2A3A;
}

/* --------------------------------
Sly Pagination */
.sly.pagination {
    height:4em;/*56px*/
    margin-top:2em;/*28px*/
    margin-bottom:4em;/*56px*/
}
.sly.pagination>li {
    display:inline-block;
    min-width:2.6667em;/*56px*/
    padding: 0;
    text-align: center;
    font-size:1.5em;/*21px*/
    line-height:2.6667em;/*56px*/    
    cursor:pointer;
}

/*-------------------------------------------------------------------------------
parts/sly-horizontal-list.css. Part III - Small Screen Styles (480px/30em)
--------------------------------------------------------------------------------*/
@media(min-width:30em) {
    .sly-mobile-item .item-image {
        display:block;
        float:left;
        background-size:cover;
    }
    .sly-mobile-item .item-title {
        width:49%;
    }
}
/*-------------------------------------------------------------------------------
parts/sly-horizontal-list.css. Part IV - Medium Screen Styles (768px/48em)
Events are presented as a horizontal Sly scroller
slidee > div = .sly-item
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
    /*STYLE SCALE*/
    /* highlight article on hover */
    .item-list.scale .sly-item:hover {
        -webkit-filter: brightness(120%); /* C18+, S6-9, O15+ */
        filter: brightness(120%);    
    }
    /* Containers for event image and content*/
    .item-list .item-image,
    .item-list .item-details {
    	display:block;
    	position:absolute;
    	left:0;
    	width:100%;
    }
/*------------------------------
IMAGE AREA
-------------------------------*/    
    .item-list .item-image {
        top:0;
    }
    /* Special image and filter hover state for style SCALE */
    .item-list.scale .sly-item:hover .item-image {
    	-ms-transform: scale(1.05,1.05);/*IE9*/
    	-moz-transform: scale(1.05,1.05);
    	-webkit-transform: scale(1.05,1.05);/*S3.2-8, C4-35, O15-22 */
    	transform: scale(1.05,1.05);
    }    
    .item-list .item-image .overlay {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-repeat: repeat;
        opacity:1;
    }
    .item-list .sly-item:hover .overlay {
        opacity:0;   
    }    
    /* Image Filter */
    .item-list .item-image .img-filter {
    	position:absolute;
    	width:100%;
    	height:100%;
    	left:0;
    	bottom:-1px; /*to mitigate opening gap when scaling on hover */
    }    
    .item-list .item-details {
        bottom:0;
    	height:66%;	
    }
/*------------------------------
POST DETAILS AREA
-------------------------------*/
    /* Article title */
    .item-list .item-details .title {
        display:block;
        position:absolute;
        left:0;
        bottom:50%;
        width:100%;
        line-height:1;
    }
    /* post container for technical data*/
    .item-list .item-details .technical {
        position:absolute;
        bottom:20%;
        left:0;
        width:100%;
        height:30%;
    }
    .item-list .item-details .days-years,
    .item-list .item-details .month {
        font-size:2em; 
        letter-spacing:-2px;    
    }
    /* Container for article pointer link */
    .item-list .item-details .pointer {
        position:absolute;
        bottom:0;
        left:0;
        width:100%;
    }
    /* Pointer Link image */
    .item-list .item-details .pointer svg {
        display:inline-block;
        vertical-align: middle;
        width:6em; /* big screen */
        stroke:currentColor;
        stroke-width:8px;
    }
}
/*-------------------------------------------------------------------------------
layout-top-navigation.css. Part VIII - Special fixes for the Chrome issue with the last pixel before BS breakpoints
--------------------------------------------------------------------------------*/
/*767 (47.9375em) - 47.97 767.52px */
@media(min-width:47.9375em) and (max-width:47.97em) {
    .sly-wrap.full-size {
        display:none;
    }
}
/*991 (61.9375em) - 61.97 991.52 */
@media(min-width:61.9375em) and (max-width:61.97em) {
    .sly-wrap.mobile {
        display:none;
    }
}
/*1199 (74.9375em) - 74.97em 1199.52 */
@media(min-width:74.9375em) and (max-width:74.97em) {
	.sly-wrap.mobile {
	    display: none;
	} 	
}
/*--------------------------------------------------------------------------------
CSS file: parts/sly-horizontal-list.css - v2017.04.27
=================================================================================*/
/*==============================================================================
CSS file: parts/quote-splitter.css
v2017.04.28
Dependant Pages: home, learning, international, parents
Dependant Partials: parts/quote-splitter.htm
Validation 2017.04.28: CSS level 3 with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
Quote Splitter. Part I - General
--------------------------------------------------------------------------------*/
/* Transitions */
.splitter blockquote {
    -moz-transition: all .35s ease;/*M4-16*/
	-webkit-transition: all .35s ease;/*S3.1-6.1, C4-25, O12.1+ */
	transition: all .35s ease;	
}
/*-------------------------------------------------------------------------------
Quote Splitter. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
/* Splitter Section*/
.splitter {
    position:relative;
    background-size: cover;
	background-position: 50% 50%;
	padding:1em;
	text-align:center;
}
/* Overlay Dotted Pattern*/
.splitter .overlay {
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height:100%;
	background-repeat:repeat;
	background-color: rgba(31, 42, 58, 0.4);	
}
/* Blockquote itself, before and after */
.splitter blockquote {
    display:inline-block;
    position:relative;
	margin: 0;
	padding: 1em 3.5em;	
    max-width:36.8em;/*644*/	
    border-left: 1em solid #D1A700;
    border-right: 0.15em solid #D1A700;
    color:#fff;
    text-align:justify;
}
.splitter blockquote:hover {
    background-color: rgba(31, 42, 58, 0.2);
}
.splitter blockquote::before,
.splitter blockquote::after {
    position: absolute;
    top:5px;    
    font-size: 60px;
    font-weight: bold;
    color: #D1A700;    
}
.splitter blockquote::before {
    left: 10px;
    content: "\201C"; /*Unicode for Left Double Quote*/
}    
.splitter blockquote::after {
    right: 10px;
    content: "\201D"; /*Unicode for Right Double Quote*/
}
.splitter blockquote footer {
    text-align:right;
	color:#D1A700;
    font-weight:bold;
}

/*-------------------------------------------------------------------------------
Quote Splitter. Part IV - Medium Screen Styles (768px+)
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
/* Blockquote itself, before and after */
    .splitter blockquote {margin: 2em 0;}  
}
/*-------------------------------------------------------------------------------
Quote Splitter. Part V - Medium Screen Styles (992px+)
--------------------------------------------------------------------------------*/
@media(min-width:62em) {
/* Blockquote itself, before and after */
    .splitter blockquote {margin: 3em 0;} 
}
/*-------------------------------------------------------------------------------
Quote Splitter. Part VI - Large Screen Styles (1200px+)
--------------------------------------------------------------------------------*/
@media(min-width:75em) {
/* Blockquote itself, before and after */
    .splitter blockquote {margin: 4em 0;} 
}
/*--------------------------------------------------------------------------------
CSS file: parts/quote-splitter.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: sections/section-enrolment.css
v2017.04.28
Dependant Pages: learning 
Dependant Partials: sections/section-enrichment.htm
Validation 2017.04.28: CSS level 3 with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
sections/section-enrolment.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
#enrolment-list .info-details-content {
    background-color:#1F2A3A;
}

/* INFO TEXT BLOCK */
#enrolment-list .info-title {
    margin:0;
    padding:0;
    border-bottom: 1px solid #D1A700;
    color:#fff;
}
#enrolment-list .info-title h2 {
    font-family: 'Roboto Slab', serif!important;
    font-weight:300;
}
#enrolment-list .info-description {
    padding:1em 2em;
    text-align:justify;
}
#enrolment-list .info-description h4 {
	color:#D1A700;
	margin:5px 0;
}
#enrolment-list .info-description p, #enrolment-list .info-description ul, #enrolment-list .info-description ol {
	color:#BFC7D1;
}
#enrolment-list .info-description a {
	color:#fff;
}
#enrolment-list .info-description a:focus {
	outline:0;
}

/* Adjust font size for text blocks*/
/*
#enrolment-list .info-item:nth-child(1) .info-description p, #enrolment-list .info-item:nth-child(1) .info-description li {
    font-size:105%;
}
#enrolment-list .info-item:nth-child(1) .info-description p {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
#enrolment-list .info-item:nth-child(2) .info-description p, #enrolment-list .info-item:nth-child(2) .info-description li {
    font-size:100%;
}
#enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
    font-size:105%;
}
#enrolment-list .info-item:nth-child(3) .info-description p {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
#enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
    font-size:80%;
} */
#enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
    font-size:85%;
}    

#enrolment-list .info-item:nth-child(6) .info-description p, #enrolment-list .info-item:nth-child(6) .info-description li {
    font-size:80%;
}


/*-------------------------------------------------------------------------------
sections/section-enrolment.css. Part III - Small Screen Styles (480px/30em - 767px)
--------------------------------------------------------------------------------*/
@media(min-width:30em) {
/* Adjust font size for text blocks */
    #enrolment-list .info-item .info-description h4, #enrolment-list .info-item .info-description p, #enrolment-list .info-item .info-description li {
        font-size:120%;
    } 
    #enrolment-list .info-item .info-description p {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:110%;
    }      
    #enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
        font-size:100%;
    }    
    #enrolment-list .info-item:nth-child(6) .info-description p, #enrolment-list .info-item:nth-child(6) .info-description li {
        font-size:85%;
    }    
/*    #enrolment-list .info-item:nth-child(1) .info-description p, #enrolment-list .info-item:nth-child(1) .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item:nth-child(2) .info-description p, #enrolment-list .info-item:nth-child(2) .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:110%;
    }     
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:95%;
    }*/
}
/*-------------------------------------------------------------------------------
sections/section-enrolment.css. Part IV - Medium Screen Styles (768px/48em - 991px)
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
/* Junior School List Container */
    #enrolment-list .info-item {
        margin-bottom:30px;
    }
/* Photo Cells */
    #enrolment-list .info-item:nth-child(odd) .info-img {
        left:3%;
    }   
    #enrolment-list .info-item:nth-child(even) .info-img {
        left:-3%;
    }          
/* Text Cells */
    #enrolment-list .info-details-content {
        top:50%;
        transform:translateY(-50%);
        height:90%;
        background-color:#1F2A3A;
    }
    #enrolment-list .info-item:nth-child(odd) .info-details-content {
        left:-3%;
    }   
    #enrolment-list .info-item:nth-child(even) .info-details-content {
        left:3%;
    }      
/* Adjust font size for text blocks */
    #enrolment-list .info-item .info-description h4, #enrolment-list .info-item .info-description p, #enrolment-list .info-item .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item .info-description p {
        margin-top: 1.2em;
        margin-bottom: 1.2em;
    }
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:100%;
    }  
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:95%;
    }      
    #enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
        font-size:90%;
    }    
    #enrolment-list .info-item:nth-child(6) .info-description p, #enrolment-list .info-item:nth-child(6) .info-description li {
        font-size:80%;
    }    



/*    #enrolment-list .info-item:nth-child(1) .info-description p, #enrolment-list .info-item:nth-child(1) .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item:nth-child(2) .info-description p, #enrolment-list .info-item:nth-child(2) .info-description li {
        font-size:105%;
    }
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:120%;
    }     
    #enrolment-list .info-item:nth-child(4) .info-description p {
        font-size:85%;
    }       
    #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:80%;
    }*/
}
/*-------------------------------------------------------------------------------
sections/section-enrolment.css. Part V - Medium Screen Styles (992px/62em - 1199px)
--------------------------------------------------------------------------------*/
@media(min-width:62em) {
/* Adjust font size for text blocks */
    #enrolment-list .info-item .info-description h4, #enrolment-list .info-item .info-description p, #enrolment-list .info-item .info-description li {
        font-size:115%;
    } 
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:115%;
    }  
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:100%;
    }        
    #enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
        font-size:100%;
    }    
    #enrolment-list .info-item:nth-child(6) .info-description p, #enrolment-list .info-item:nth-child(6) .info-description li {
        font-size:85%;
    }       
     
/*    #enrolment-list .info-item:nth-child(1) .info-description p, #enrolment-list .info-item:nth-child(1) .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item:nth-child(2) .info-description p,  #enrolment-list .info-item:nth-child(2) .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item:nth-child(3) .info-description p,  #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:120%;
    }     
    #enrolment-list .info-item:nth-child(4) .info-description p,  #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:90%;
    }*/
}
/*-------------------------------------------------------------------------------
sections/section-enrolment.css. Part VI - Large Screen Styles (1200px/75em - 1439px)
--------------------------------------------------------------------------------*/
@media(min-width:75em) {
/* Adjust font size for text blocks */
    #enrolment-list .info-item .info-description h4, #enrolment-list .info-item .info-description p, #enrolment-list .info-item .info-description li {
        font-size:125%;
    } 
    #enrolment-list .info-item .info-description p {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    } 
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:125%;
    } 
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:110%;
    }      
    #enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
        font-size:110%;
    }        
/*    #enrolment-list .info-item:nth-child(1) .info-description p, #enrolment-list .info-item:nth-child(1) .info-description li {
        font-size:110%;
    }
    #enrolment-list .info-item:nth-child(1) .info-description p {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }          
    #enrolment-list .info-item:nth-child(2) .info-description p, #enrolment-list .info-item:nth-child(2) .info-description li {
        font-size:110%;
    } 
    #enrolment-list .info-item:nth-child(2) .info-description p {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }          
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:110%;
    }
    #enrolment-list .info-item:nth-child(3) .info-description p {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }      
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:100%;
    }
    #enrolment-list .info-item:nth-child(4) .info-description p {
        margin-top: 1.5em;
        margin-bottom: 1.5em;
    }*/          
}
/*-------------------------------------------------------------------------------
sections/section-enrolment.css. Part VII - Extra Large Screen Styles (1440px/90em - indefinite)
--------------------------------------------------------------------------------*/
@media(min-width:90em) {
    /*#enrolment-list .info-item:nth-child(1) .info-description p:nth-child(1) {
        margin-top: 50px;
    }*/
/* Adjust font size for text blocks */

    #enrolment-list .info-item .info-description h4, #enrolment-list .info-item .info-description p, #enrolment-list .info-item .info-description li {
        font-size:140%;
    } 
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:140%;
    } 
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:130%;
    }       
    #enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
        font-size:130%;
    }  
    #enrolment-list .info-item:nth-child(6) .info-description p, #enrolment-list .info-item:nth-child(6) .info-description li {
        font-size:100%;
    }        

/*    #enrolment-list .info-item:nth-child(1) .info-description p, #enrolment-list .info-item:nth-child(1) .info-description li {
        font-size:135%;
    } 
    #enrolment-list .info-item:nth-child(2) .info-description p, #enrolment-list .info-item:nth-child(2) .info-description li {
        font-size:135%;
    } 
    #enrolment-list .info-item:nth-child(3) .info-description p, #enrolment-list .info-item:nth-child(3) .info-description li {
        font-size:135%;
    }     
    #enrolment-list .info-item:nth-child(3) .info-description p {
        margin-top: 1.5em%;
    }    
    #enrolment-list .info-item:nth-child(4) .info-description p, #enrolment-list .info-item:nth-child(4) .info-description li {
        font-size:135%;
    }
    #enrolment-list .info-item:nth-child(5) .info-description p, #enrolment-list .info-item:nth-child(5) .info-description li {
        font-size:115%;
    }*/    
}
/*--------------------------------------------------------------------------------
CSS file: sections/section-enrolment.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: parts/chess-list-default.css
v2017.04.28
Dependant Pages: home, learning, parents, international 
Dependant Partials: parts/chess-list-default.htm
Validation 2017.04.28: CSS level 3 with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
parts/chess-list-default.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */

/* INFO ITEM BLOCK */
.chess-pattern .info-item {
    position:relative;
    float:left;
}
/* INFO IMAGE BLOCK */
.chess-pattern .info-img {
	position:relative;
	background-size:cover;
	background-position: center;
}
.chess-pattern.vertical-item .info-img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
}
.chess-pattern .info-img-content {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
    height:100%;
	text-decoration:none;
}
.chess-pattern .img-title {
    position:relative;
}
/* INFO TEXT BLOCK */
.chess-pattern .info-details {
	position:relative;
}
.chess-pattern.vertical-item .info-details {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
}
.chess-pattern .info-details-content {
	display:block;
	overflow:hidden;	
	position:absolute;
	top:0;
	left:0;
	width:100%;
    height:100%;
	text-decoration:none;
}
.chess-pattern .details-connector {
	display:block;
	opacity:0.8;
	position:absolute;
	top:-3em;
	left:50%;
	width:6em;
    height:6em;
    -ms-transform: translateX(-50%) rotate(45deg); /*IE9*/
    -webkit-transform: translateX(-50%) rotate(45deg); /*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateX(-50%) rotate(45deg); /*M3.5-15*/    
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
}
/*-------------------------------------------------------------------------------
parts/chess-list-default.css. Part IV - Medium Screen Styles (768px/48em)
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
/* Create chess patter from this screen size */
    .chess-pattern.horizontal-item.one-x-n .info-item:nth-child(even) .info-img {
        float:right;
    }
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(even) .info-img {
        float:right;
    }
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(even) .info-img {
        float:right;
    }    
    .chess-pattern.vertical-item.two-x-n .info-item:nth-child(even) .info-details {
        top:0;
    }     
    .chess-pattern.vertical-item.two-x-n .info-item:nth-child(even) .info-img {
        top:auto;
        bottom:0;
    }
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(even) .info-details {
        top:0;
    }     
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(even) .info-img {
        top:auto;
        bottom:0;
    }    
    .chess-pattern .info-item:nth-child(even) .details-connector {
        top:auto;
        bottom:-3em;
    }
    .chess-pattern.horizontal-item .info-item:nth-child(odd) .details-connector {
        top:50%;
        left:-3em;
        -ms-transform: translateY(-50%) rotate(45deg); /*IE9*/
        -webkit-transform: translateY(-50%) rotate(45deg); /*S3.2-8, C4-35, O15-22, */
        -moz-transform: translateY(-50%) rotate(45deg); /*M3.5-15*/ 
        transform: translateY(-50%) rotate(45deg);
    }    
    .chess-pattern.horizontal-item .info-item:nth-child(even) .details-connector {
        top:50%;
        left:auto;
        right:-3em;
        -ms-transform: translateY(-50%) rotate(45deg); /*IE9*/
        -webkit-transform: translateY(-50%) rotate(45deg); /*S3.2-8, C4-35, O15-22, */
        -moz-transform: translateY(-50%) rotate(45deg); /*M3.5-15*/         
        transform: translateY(-50%) rotate(45deg);
    }        
}
/*-------------------------------------------------------------------------------
parts/chess-list-default.css. Part V - Medium Screen Styles (992px/62em)
--------------------------------------------------------------------------------*/
@media(min-width:62em) {
/* Recover pattern to defaults and then set a new one */    
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(even) .info-img {
        float:left;
    } 
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(even) .info-img {
        float:left;
    }
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(even) .info-img {
        float:left;
    }
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(4n+3) .info-img,
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(4n+4) .info-img {
        float:right;
    }
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(4n+3) .info-img,
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(4n+4) .info-img {
        float:right;
    }    
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(4n+1) .details-connector,
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(4n+2) .details-connector {
        right:auto;
        left:-3em;
    }            
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(4n+3) .details-connector,
    .chess-pattern.horizontal-item.two-x-n .info-item:nth-child(4n+4) .details-connector {
        left:auto;
        right:-3em;
    }
    /* THREE-X-TWO */
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+1) .info-details,
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+2) .info-img,
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+3) .info-details {
        top:auto;
        bottom:0;
    }     
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+1) .info-img, 
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+2) .info-details,
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+3) .info-img {
        top:0;
        bottom:auto;
    }    
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+1) .details-connector,
    .-chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+2) .details-connector,
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+3) .details-connector {
        top:-3em;
        bottom:auto;
    }     
    .chess-pattern.vertical-item.three-x-two .info-item:nth-child(3n+2) .details-connector {
        top:auto;
        bottom:-3em;
    }
}
/*-------------------------------------------------------------------------------
parts/chess-list-default.css. Part VI - Large Screen Styles (1200px/75em)
--------------------------------------------------------------------------------*/
@media(min-width:75em) {
    .chess-pattern.horizontal-item.three-x-two .info-item .info-img {
        float:left!important;
    }
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(6n+4) .info-img,
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(6n+5) .info-img,
    .chess-pattern.horizontal-item.three-x-two .info-item:nth-child(6n+6) .info-img {
        float:right!important;
    }    
}
/*--------------------------------------------------------------------------------
CSS file: parts/chess-list-default.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: sections/section-families-info.css
v2017.04.28
Dependant Pages: parents
Dependant Partials: sections/section-families-info.htm
Validation 2017.04.28: CSS level 3 except @-moz-keyframes and @-webkit-keyframes with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
sections/section-families-info.css. Part I - General
--------------------------------------------------------------------------------*/
/* Transitions */
#families-info-articles .info-details,
#families-info-articles .info-description h4, 
#families-info-articles .info-description p {
	-webkit-transition: all .35s ease-in-out;/*S3.1-6.1, C4-25, O12.1+ */
	-moz-transition: all .35s ease-in-out;/*M4-16*/
	transition: all .35s ease-in-out;	
}	

/*-------------------------------------------------------------------------------
sections/section-families-info.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
/* INFO DETAILS BLOCK */
/* Change default position of the details content to move it close to the middle of details area */	
#families-info-articles .info-details-content {
    height:auto;
    top:50%;
    -ms-transform: translateY(-50%); /*IE9*/
    -webkit-transform: translateY(-50%); /*S3.2-8, C4-35, O15-22, */
    -moz-transform: translateY(-50%); /*M3.5-15*/    
    transform:translateY(-50%);
    text-decoration:none;
}
#families-info-articles .info-description {
    color:#1F2A3A;
}
#families-info-articles .info-description h3,
#families-info-articles .info-description h4 {
    border-bottom: 1px solid #889ebf;
    padding: 15px 15px 15px 5px;
    margin:0;
}
#families-info-articles .info-description p {
    padding: 15px;
    
}
#families-info-articles .info-description p:first-child,
#families-info-articles .info-description p:last-child {
    display:none;
    font-size:0;
    line-height:0;
    margin:0;
    padding:0;
}

/*-------------------------------------------------------------------------------
sections/section-families-info.css. Part V - Medium Screen Styles (992px+)
--------------------------------------------------------------------------------*/
@media(min-width:62em) {
/* ENABLE HOVER EFFECTS FROM THIS SIZE */
/* WHEN HOVERING INFO ITEM */
    #families-info-articles .info-details:hover {
        background:#1F2A3A!important;
    }
    #families-info-articles .info-details:hover .info-description h4{
        color:#fff;
    }
    /* change description when hovering item level link-button */
    #families-info-articles .info-details:hover .info-description p {
        color:#CDD0D5;
    }
}
/*--------------------------------------------------------------------------------
CSS file: sections/section-families-info.css - v2017.04.28
=================================================================================*/
/*==============================================================================
CSS file: sections/section-facilities-gallery.css
v2017.04.28
Dependant Pages: parents
Dependant Partials: sections/section-facilities-gallery.htm
Validation 2017.04.28: CSS level 3 except @-moz-keyframes and @-webkit-keyframes with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
sections/section-facilities-gallery.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
#facilities-gallery .section-header {
    padding:0;
    min-height:20em;
}
#facilities-gallery .section-body {
    padding-left:0px;
    padding-right:0px;
}
/*-------------------------------------------------------------------------------
sections/section-facilities-gallery.css. Part IV - Medium Screen Styles (768px+)
--------------------------------------------------------------------------------*/
@media(min-width:48em) {
    #facilities-gallery .section-header {
        min-height:17em;
    }
}
/*--------------------------------------------------------------------------------
CSS file: sections/section-facilities-gallery.css - v2017.04.28
=================================================================================*/
@charset "UTF-8";.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content{margin:auto;width:auto;height:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:999999;overflow:hidden;background:#000;background:rgba(0,0,0,.9);opacity:0;display:none;direction:ltr;-ms-touch-action:none;touch-action:none}.blueimp-gallery-carousel{position:relative;z-index:auto;margin:1em auto;padding-bottom:56.25%;box-shadow:0 0 10px #000;-ms-touch-action:pan-y;touch-action:pan-y}.blueimp-gallery-display{display:block;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery-carousel>.slides{position:absolute}.blueimp-gallery>.slides>.slide{position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(.645,.045,.355,1);-moz-transition-timing-function:cubic-bezier(.645,.045,.355,1);-ms-transition-timing-function:cubic-bezier(.645,.045,.355,1);-o-transition-timing-function:cubic-bezier(.645,.045,.355,1);transition-timing-function:cubic-bezier(.645,.045,.355,1)}.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;-ms-transition:opacity .2s linear;-o-transition:opacity .2s linear;transition:opacity .2s linear}.blueimp-gallery>.slides>.slide-loading{background:url(../themes/heights/assets/css/img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url(../themes/heights/assets/css/img/error.png) center no-repeat}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery>.next,.blueimp-gallery>.prev{position:absolute;top:50%;left:15px;width:40px;height:40px;margin-top:-23px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-decoration:none;text-shadow:0 0 2px #000;text-align:center;background:#222;background:rgba(0,0,0,.5);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery>.next{left:auto;right:15px}.blueimp-gallery>.close,.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 40px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery>.close{padding:15px;right:15px;left:auto;margin:-15px;font-size:30px;text-decoration:none;cursor:pointer}.blueimp-gallery>.play-pause{position:absolute;right:15px;bottom:15px;width:15px;height:15px;background:url(../themes/heights/assets/css/img/play-pause.png) 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-playing>.play-pause{background-position:-15px 0}.blueimp-gallery>.close:hover,.blueimp-gallery>.next:hover,.blueimp-gallery>.play-pause:hover,.blueimp-gallery>.prev:hover,.blueimp-gallery>.title:hover{color:#fff;opacity:1}.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.play-pause,.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.title{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-left>.prev,.blueimp-gallery-right>.next,.blueimp-gallery-single>.next,.blueimp-gallery-single>.play-pause,.blueimp-gallery-single>.prev{display:none}.blueimp-gallery>.close,.blueimp-gallery>.next,.blueimp-gallery>.play-pause,.blueimp-gallery>.prev,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body:last-child .blueimp-gallery>.slides>.slide-error{background-image:url(../themes/heights/assets/css/img/error.svg)}body:last-child .blueimp-gallery>.play-pause{width:20px;height:20px;background-size:40px 20px;background-image:url(../themes/heights/assets/css/img/play-pause.svg)}body:last-child .blueimp-gallery-playing>.play-pause{background-position:-20px 0}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none}.blueimp-gallery>.indicator>li{display:inline-block;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}.blueimp-gallery>.indicator>.active,.blueimp-gallery>.indicator>li:hover{background-color:#fff;border-color:#fff;opacity:1}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.indicator{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.blueimp-gallery>.slides>.slide>.video-content>img{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:auto;height:auto;max-width:100%;max-height:100%;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.video-content>video{position:absolute;top:0;left:0;width:100%;height:100%}.blueimp-gallery>.slides>.slide>.video-content>iframe{position:absolute;top:100%;left:0;width:100%;height:100%;border:none}.blueimp-gallery>.slides>.slide>.video-playing>iframe{top:0}.blueimp-gallery>.slides>.slide>.video-content>a{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url(../themes/heights/assets/css/img/video-play.png) center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery>.slides>.slide>.video-content>a:hover{opacity:1}.blueimp-gallery>.slides>.slide>.video-playing>a,.blueimp-gallery>.slides>.slide>.video-playing>img{display:none}.blueimp-gallery>.slides>.slide>.video-content>video{display:none}.blueimp-gallery>.slides>.slide>.video-playing>video{display:block}.blueimp-gallery>.slides>.slide>.video-loading>a{background:url(../themes/heights/assets/css/img/loading.gif) center no-repeat;background-size:64px 64px}body:last-child .blueimp-gallery>.slides>.slide>.video-content:not(.video-loading)>a{background-image:url(../themes/heights/assets/css/img/video-play.svg)}/*# sourceMappingURL=blueimp-gallery.min.css.map */
/*==============================================================================
CSS file: parts/gallery-standard.css
v2017.04.28
Dependant Pages: parents, post 
Dependant Partials: parts/gallery-standard.htm
Validation 2017.04.28: CSS level 3 + SVG with some warnings about -ms-, -webkit-, -moz- extensions. 
http://jigsaw.w3.org/css-validator/
*/
/*-------------------------------------------------------------------------------
parts/gallery-standard.css. Part I - General
--------------------------------------------------------------------------------*/
/* Transitions */
.blueimp-gallery > .play-pause,
.blueimp-gallery > .close,
.gallery .filter,
.gallery svg {
    -moz-transition: all .35s ease;/*M4-16*/
	-webkit-transition: all .35s ease;/*S3.1-6.1, C4-25, O12.1+ */
	transition: all .35s ease;	
}
/*-------------------------------------------------------------------------------
parts/gallery-standard.css. Part II - Extra Small Screen Styles (320px/20em - 479px)
--------------------------------------------------------------------------------*/
/* These screens will apply for all screens if applicable or unless overwritten with media queries. The smallest tested size is 320px / 20em. */
/* Gallery container*/
.gallery {
    line-height:0;
}
.gallery-links {
    overflow:hidden;
}
/* Gallery technical data */
.gallery .technical {
    height:50px;
    margin-top:15px;
    margin-bottom:15px;
    overflow:hidden;
    font-size:16px;/*IE compatibility*/    
    font-size:initial;
    line-height:initial;
    color:#889ebf;
}
/* Photo icon */
.gallery .technical svg {
	vertical-align:middle;
    width:50px;
    height:50px;
    fill: currentColor;
}
/*Number of photos*/
.gallery .technical span {
    font-size:2em;
	vertical-align:middle;
}
/* Gallery image link */
.gallery .img-link {
    display:inline-block;
    position:relative;
    color:#fff;
    background-size:cover;
}
.gallery-links .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}
/* Image link filter - initial */
.gallery .img-link .filter {
	position:absolute;
	top:50%;
	left:50%;
	width:0;
	height:0;
	background-color:rgba(31, 42, 58, 0.5);
    color:rgba(255, 255, 255, 0.5);
}
/* Enlarge icon - initial */
.gallery .img-link svg {
	position:absolute;
	top:50%;
	left:50%;    
    width:0px;
    height:0px;
    fill: currentColor;
}
/* Apply filter and svg on link hover */
.gallery .img-link:hover .filter {
	top:0;
	left:0;
	width:100%;
	height:100%    
}
.gallery .img-link:hover .overlay {
	background-image:none;
}
.gallery .img-link:hover svg {
    width:60px;
    height:60px;
    margin-left:-30px;
    margin-top:-30px;
}
/* Overwrite default blueimp gallery styles */
/* change overlay background */
.blueimp-gallery {
    background-color:rgba(31, 42, 58, 0.9);
}
/* change title and description*/
.blueimp-gallery > .title {
    top:30px;
    max-width:360px;
    padding:15px;
    text-align:left;
    opacity:1;
    background-color:rgba(31, 42, 58, 0.2);
}
.blueimp-gallery > .description {
    background-color:red;
}
/* Change play and pause button */
.blueimp-gallery > .play-pause,
body:last-child .blueimp-gallery > .play-pause {
    width: 40px;
    height: 40px;
    background-size: cover;
}
body:last-child .blueimp-gallery-playing > .play-pause {
    background-position: initial;
}
/* Change close button */
.blueimp-gallery > .close {
    width: 36px;
    height: 36px;
    padding: 0;
    right: 15px;
    left: auto;
    margin: 0;
}
/*Change next and prev buttons*/
.blueimp-gallery > .prev, .blueimp-gallery > .next {
    width: 60px;
    height: 60px;
    margin-top: -33px;
    font-size: 90px;
    line-height: 45px;
    -webkit-border-radius: 33px;
    -moz-border-radius: 33px;
    border-radius: 33px;
}
/* add background to the list of indicator thumbnails */
.blueimp-gallery>.indicator {
    background-color: rgba(31, 42, 58, 0.5);    
}
/* enlarge indicator thumbnails */
.blueimp-gallery>.indicator>li {
    width: 39px;
    height: 39px;
}
/*--------------------------------------------------------------------------------
CSS file: parts/gallery-standard.css - v2017.04.28
=================================================================================*/