/*
* Full Documentation can be found at https://foundation.zurb.com/sites/docs/.
*
* Grid Width is 1200px as standard. To change this, open foundation.min.css, and find and replace all 1200px values.
*
* To clear floats, add the .clearfix class to the parent element.
*/
.cf:before,
.cf:after,
.arconix-faq-content.faq-open:before,
.arconix-faq-content.faq-open:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.cf:after,
.arconix-faq-content.faq-open:after { 
    clear: both;
}
.cf,
.arconix-faq-content.faq-open {
    *zoom: 1;
}
/* CUSTOMISING ANIMATE.CSS TO REDUCE THE DISTANCE OF fadeInUp */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 5%, 0); 
    /*ABOVE LINE IS THE MAGIC*/
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-5%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(5%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
/* END: CUSTOMISING ANIMATE.CSS */
.font-changer{
	display: none;
}
.font-changer span:hover{
	cursor: pointer;
}
.js-font-decrease {
	font-size: 75%;
}
.js-font-increase {
	font-size: 125%;
}

/***** Global. *****/
/***** Always hide Horizontal Scroller. *****/
html, body {
	max-width: 100%;
	overflow-x: hidden;
	font-family: 'Lato', sans-serif;
	/*background: #f3f3ee;*/
}
svg{
	max-width: 100%;
	/*height: auto;*/
}
h1 {
	margin: 50px 0px 50px 0px;
}


hr {
	width: 100%;
}
#main{
	padding-top: 10px;
}

/* custom layout for WPFD */
.single-wpfd_file #main {
    padding-top: 10px;
    max-width: 1170px;
    margin: 20px auto;
}
.wpfd-single-file {
    padding: 40px!important;
}
/* END: custom layout for WPFD */


.whiteback{
	background: #fff;
}

.screen-reader-text,
.searchbox span.screen-reader-text {
	display: none;
}
.acf-map {
	width: 100%;
	height: 400px;
	border: #ccc solid 1px;
	margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
   max-width: inherit !important;
}
/* FIX FOR MAPS, VIDEOS & IMAGES ON MOBILE */
iframe,
.whiteback.mainbody img{
	max-width: 100%!important;
}
/***** iPod/iPhone/iPad Safari Phone Number Fix. *****/
a[href^=tel] {
	color: inherit ;
	font-size: inherit ;
	text-decoration: none ;
}
a{
	font-weight: 700;
}
a:hover{
	text-decoration: underline;
}
/* Images */
.alignleft {
	/*float: left;*/
	display: inline-block;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

figure.wp-caption.alignleft,
img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

figure.wp-caption.alignright,
img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0 0 24px;
}

div.wp-caption.alignright img[class*="wp-image-"] {
	float: right;
}

div.wp-caption.alignright .wp-caption-text {
	padding-left: 10px;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
	list-style-position: inside;
}

/***** Small. *****/
/***** Header. *****/
.deskonly,
.headerdesk,
.desktel,
.gtranslatewidth label,
.screen-reader-text{
	display: none;
}
.small-navigation {
	height: 75px;
}

.hamburger,
.hamburger-box,
.hamburger--slider,
.is-active {
    outline: 0 !important;
}

.hamburger {
    padding: 15px 0px 0px 0px;
    position: relative;
    z-index: 4;
}

.hamburger .hamburger-box {
    width: 25px;
    height: 25px;
}

.hamburger .hamburger-box .hamburger-inner,
.hamburger .hamburger-box .hamburger-inner:before,
.hamburger .hamburger-box .hamburger-inner:after {
    width: 25px;
    height: 2px;
    background-color: #0A0A0A;
    border-radius: 0;
}

.hamburger--slider .hamburger-inner:before {
    top: 8px;
}

.hamburger--slider .hamburger-inner:after {
    top: 16px;
}

.hamburger--slider.is-active .hamburger-inner:after {
    transform: translate3d(0,-16px,0) rotate(-90deg);
}

.navigation-overlay {
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	padding: 0.9375rem;
	position: fixed;
	z-index: 3;
	background-color: #FEFEFE;
	border-right: 1px solid #40B1E4;
	overflow-y: auto;
	overflow-x: hidden;
	visibility: hidden;
	opacity: 0;
       -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
	text-align: left;
}

.navigation-overlay .navigation-overlay-container {
	top: 170px;
	position: relative;
}

.navigation-overlay .navigation-overlay-container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.navigation-overlay .navigation-overlay-container ul li {
	position: relative;
	display: block;
	overflow: hidden;
	white-space: nowrap;
}

.navigation-overlay .navigation-overlay-container ul li.page_item_has_children:before {
	top: 3.5px;
	right: 0;
	position: absolute;
	display: block;
	color: #5C5D5F;
	font-family: 'FontAwesome';
	font-size: 14px;
	content: '\f107';
	cursor: pointer;
	z-index: -1;
}
.navigation-overlay .navigation-overlay-container ul li.page_item_has_children ul li.page_item_has_children:before,
.navigation-overlay .navigation-overlay-container ul li.page_item_has_children ul li ul {
	display: none;
}
.navigation-overlay .navigation-overlay-container ul li a {
	padding: 0.46875rem 0rem 0.46875rem 0rem;
	display: inline-block;
	border-bottom: 1px solid #F2F2F2;
	color: #5C5D5F;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	text-transform: capitalize;
	letter-spacing: 1px;
}

.navigation-overlay .navigation-overlay-container ul li a:hover {
	color: #5C5D5F;
}

.navigation-overlay-is-open .navigation-overlay {
	width: 350px;
	visibility: visible;
	opacity: 1;
}

.secondary-menu .children{
	height: 0;
	visibility: hidden;
	opacity: 0;
	margin-bottom: 0;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
}

.secondary-menu .children.sub-menu-is-active{
	height: 100%;
	visibility: visible;
	opacity: 1;
	margin: 10px 0px 0px 0px;
	   -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
}
.featboxcapheight .featthumbhold{
	height: 41.25%;
}
#sidemenu{
  position: relative;
}
#sidemenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#sidemenu ul li {
  display: block;
  float: left;
  position: relative;
  width: 100%;
  border-bottom: solid 1px #f2f2f2; 
}
#sidemenu ul li.page_item_has_children:before{
	content: "\f067";
    font: normal normal normal 14px/49px FontAwesome;
    transition: .25s ease-in-out;
	cursor: pointer;
	display: block;
	float: right;
	position: relative;
	width: 20%;
	height: 49px;
	background: #f6f6f6;
	text-align: center;
}

#sidemenu ul li a {
  float: left;
  font-size: 13px;
  overflow: hidden;
  padding: 14px 22px;
  position: relative;
  text-decoration: none;
  /*white-space: nowrap;*/
  width:80%;
}

#sidemenu ul li a i {
  float: left;
  font-size: 16px;
  line-height: 18px;
  text-align: left;
  width: 34px;
}

#sidemenu ul li .menu-label {
  background: #f0f0f0;
  border-radius: 100%;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  min-width: 20px;
  padding: 1px 2px 1px 1px;
  position: absolute;
  right: 18px;
  text-align: center;
  top: 14px;
}

#sidemenu ul .children {
  display: none;
  position: static;
  width: 100%;
  background: #fafafa;
  float: left;
}

#sidemenu ul .children .submenu-indicator { line-height: 16px; }

#sidemenu ul .children li {
  clear: both;
  width: 100%;
  border-bottom: solid 1px #f2f2f2;
}
#sidemenu ul .children > li:last-child {
  border-bottom:0px;
}

#sidemenu ul .children li ul.children {
  display: none;
  position: static;
  width: 100%;
  overflow: hidden;
  background: #fcfcfc;
}

#sidemenu ul .children li a {
  border-left: solid 6px transparent;
  border-top: none;
  float: left;
  font-size: 11px;
  position: relative;
  width:80%;
}

#sidemenu ul .children li:hover > a { border-left-color: #F2F2F2; }

#sidemenu ul .children li .menu-label {
  background: #f0f0f0;
  border-radius: 100%;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  min-width: 20px;
  padding: 1px 2px 1px 1px;
  position: absolute;
  right: 18px;
  text-align: center;
  top: 12px;
  top: 14px;
}

#sidemenu ul .children > li > a { padding-left: 30px; }

#sidemenu ul .children > li > ul.children > li > a { padding-left: 45px; }

#sidemenu ul .children > li > ul.children > li > ul.children > li > a { padding-left: 60px; }

#sidemenu .submenu-indicator {
  -moz-transition: "transform .3s linear";
  -o-transition: "transform .3s linear";
  -webkit-transition: "transform .3s linear";
  transition: "transform .3s linear";
  float: right;
  font-size: 20px;
  line-height: 19px;
  position: absolute;
  right: 22px;
}

#sidemenu .submenu-indicator-minus > .submenu-indicator {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#sidemenu > ul > li.active > a {
  background: #f2f2f2;
  /*color: #ffffff;*/
}

#sidemenu > ul > li:hover > a {
  background: #f2f2f2;
  /*color: #ffffff;*/
}



/* CONDITIONAL LOGIC... */
#sidemenu ul li.page_item_has_children.parentopen:before,
#sidemenu ul li.page_item_has_children.childrenopen:before  {
	content: "\f068";
}
/*#sidemenu ul li.page_item_has_children.current_page_item > .children,*/
#sidemenu ul li.childrenopen > .children,
#sidemenu ul li.page_item_has_children.parentopen > .children,
#sidemenu ul .children li.page_item_has_children.childrenopen > .children {
	display: block;
}
#sidemenu ul li.childrenclosed > .children  {
	display: none;
}



.ink {
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  display: block;
  position: absolute;
  transform: scale(0);
}

.animate-ink {
  -moz-animation: ripple .3s linear;
  -ms-animation: ripple .3s linear;
  -o-animation: ripple .3s linear;
  -webkit-animation: ripple .3s linear;
  animation: ripple .3s linear;
}
@-moz-keyframes 'ripple' {
 100% {
 opacity: 0;
 transform: scale(2.5);
}
}
@-webkit-keyframes 'ripple' {
 100% {
 opacity: 0;
 transform: scale(2.5);
}
}
@keyframes 'ripple' {
 100% {
 opacity: 0;
 transform: scale(2.5);
}
}


/***** Full Screen Search. *****/
.search-overlay-trigger {
	top: -7px;
	right: 20px;
	position: relative;
	z-index: 3;
}

.search-overlay-trigger .fa {
	color: #0A0A0A;
	font-size: 25px;
	line-height: 25px;
}

.search-overlay {
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	z-index: 11;
	background-color: rgba(254, 254, 254, 0.9);
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
       -moz-transition: .5s ease-in-out;
	    -ms-transition: .5s ease-in-out;
	     -o-transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	        transition: .5s ease-in-out;
}

.search-overlay .fa-times-circle {
	top: 22.5px;
	right: 25px;
	position: absolute;
	color: #000;
	font-size: 25px;
	line-height: 25px;
}

.search-overlay .fa-times-circle:hover {
	color: #000;
	opacity: 0.9;
	cursor: pointer;
}

.search-overlay .search-overlay-container {
	width: 100%;
	top: 50%;
	left: 50%;
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	padding: 0.9375rem;
	position: fixed;
	text-align: center;
}

.search-overlay-is-open .search-overlay {
	width: 100%;
	visibility: visible;
	opacity: 1;
}

/*body.search-overlay-is-open {
	width: 100%;
	position: fixed;
}*/

.search-overlay input[type=search] {
	width: 90%;
	height: auto;
	padding: 0;
	margin: 0;
	display: inline-block;
	background-color: transparent;
	border: none;
	border-radius: 0;
	   -moz-box-shadow: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #0A0A0A;
	font-family: 'Lato', sans-serif;
	font-size: 25px;
	font-weight: 900;
	line-height: 50px;
	text-align: left;
	float: left;
}

.search-overlay input[type=search]::-webkit-input-placeholder,
input[type=search].search-field::-webkit-input-placeholder{
	color: #3e3e3e;
	font-weight: 700;
}

.search-overlay input[type=search]::-moz-placeholder,
.search-field  input[type=search].search-field::-moz-placeholder {
	color: #3e3e3e;
	font-weight: 700;
}

.search-overlay input[type=search]:-ms-input-placeholder,
input[type=search].search-field:-ms-input-placeholder {
	color: #3e3e3e;
	font-weight: 700;
}

.search-overlay input[type=search]:-moz-placeholder,
input[type=search].search-field:-moz-placeholder {
	color: #3e3e3e;
	font-weight: 700;
}

.search-overlay input[type=search]:focus {
	border: none;
	   -moz-box-shadow: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.search-overlay .search-submit {
	float: right;
}
.search-submit {
	cursor: pointer;
}

.search-submit .fa {
	color: #0A0A0A;
	font-size: 25px;
    line-height: 51px;
}

.search-submit .fa:hover {
	color: #0A0A0A;
	opacity: 0.9;
}
.desksearch{
	margin-top: 70px;
}
.search-field{
	background-color: #f3f3ee;
	color: #3e3e3e;
	border: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	box-shadow: none;
	border-radius: 0px;
	width: 100%;
	height: 40px;
	line-height: 40px;
}
.site-header .search-field{
	float: right;
	max-width: 500px;
}
.desksearch .search-field{
	background-image: url('../img/search.svg');
	background-repeat: no-repeat;
	background-position: 98% 45%;
}
.namedatetable{
	margin-bottom: 50px;
}


/************************************************************************************
Header
*************************************************************************************/
header{
	background: #fff;
}
.home-link{
	display: block;
	max-width: 200px;
	position: relative;
	z-index: 10;
	margin-top: 20px;
	margin-bottom: 20px;
}
.toprow{
	padding: 15px 10px;
	display: block;
	width: 100%;
	position: absolute;
}
.site-header .columns {
    padding-right: 0rem;
    padding-left: 0rem;
}
.site-header .columns.mobheadpad{
	padding:0 10px;
}
/*
.gtranslatewidth option:not(:checked) { 
    background-color: #f3f3ee; 
}
.gtranslatewidth option:checked { 
    background-color: #cfcfcf; 
}*/


.styled-select {
   height: 40px;
   overflow: hidden;
   width: 100px;
   text-align: center;
   margin: 0;
   position: relative;
   float: right;
}

.styled-select select {
	background: transparent;
	background-color: #f3f3ee;
	color: #3e3e3e;
	border: none;
	margin: 0;      
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-size: 12px;
	font-weight: 700;
	height: 40px;
	line-height: 2;
	padding: 0px 15px; /* If you add too much padding here, the options won't show in IE */
	width: 270px;
}
.gtranslatewidth:after {
    content: "";
	position: absolute;
	top: 16px;
	right: 16px;
	/*z-index: 999;*/
	background: url('../img/downarrow.png') no-repeat;
	width: 16px;
	height: 9px;
}
.styled-select select option{
   line-height: 2;
}


.sociallinks{
	list-style: none;
	float: left;
	padding: 6px 0px;
	margin: 0;
}
.sociallinks li{
	display: inline-block;
	margin: 0px;
}
.sociallinks li svg{
	height: 15px;
}

.searchhold{
	position: relative;
	margin-top: 20px;
	text-align: right;
	padding-right: 20px;
}
.searchhold .navigation-overlay .navigation-overlay-container ul li{
	text-align: left;
}
.nav-menu ul{
	list-style: none;
}
div#navbar {
    position: relative;
    z-index: 99999;
}






/***** Page Contact. *****/
#map {
	width: 100%;
	height: 500px;
}

/***** Footer. *****/
.footerpad{
	padding: 50px 25px;
}

footer{
	color: #fff;
}
footer .columns {
	padding: 5px 0.9375rem;
}
ul.footmenu{
	list-style: square;
	padding-left: 20px;
	margin:10px 0;
}
ul.footmenu a{
	color: #fff;
}
.hostelcols strong{
	display: block;
	margin-bottom: 5px;
}
.hostelcols {
	position: relative;
}

.footer-column {
	border-bottom: 1px solid #FEFEFE;
}

footer h6 {
	padding-top: 10px;
	margin: 0;
	color: #FFF;
	border-top: 1px solid;
	border-color: rgba(255,255,255,0.25);
}

#colophon h6:after {
	margin-right: 0.9375rem;
	display: inline-block;
	float: right;
	content: "\f067";
    font: normal normal normal 14px/1 FontAwesome;
       -moz-transition: .25s ease-in-out;
	    -ms-transition: .25s ease-in-out;
	     -o-transition: .25s ease-in-out;
	-webkit-transition: .25s ease-in-out;
	        transition: .25s ease-in-out;
	cursor: pointer;
}

#colophon h6.h6-is-active:after {
	    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    transform-origin: 50% 50%;
}

#colophon .footer-column-content {
	height: 0;
	opacity: 0;
	overflow: hidden;
	   -moz-transition: 1s ease-in-out;
	    -ms-transition: 1s ease-in-out;
	     -o-transition: 1s ease-in-out;
	-webkit-transition: 1s ease-in-out;
	        transition: 1s ease-in-out;
}

#colophon .footer-column-content.footer-column-content-is-active {
	height: auto;
	opacity: 1;
}

footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

footer .fa {
	padding: 5px;
	color: #FFF;
	font-size: 25px;
}

footer .fa:hover {
	color: #FFF;
	opacity: 0.9;
}

.investorlogo img{
	/*margin-top: 20px;*/
	max-height: 50px;
}
.investorlogo.txtcenter img{
	margin:0 auto;
	display: block;
}
/************************************************************************************
HOMEPAGE
*************************************************************************************/
.emergencynotice{
	padding:15px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	margin: 10px auto;
}
.emergencynotice p{
	margin-bottom: 0px;
}
.emergencynotice a{
	color: #fff;
	text-decoration: underline;
}
.emergencynotice a:hover{
	color: #f2f2f2;
}
.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 20px;
     width: auto; 
    right: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #FFF;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
.featthumbhold {
    overflow: hidden;
    display: block;
    position: relative;
    max-width: 100%;
    /*height: 56.25%;*/
}
.featthumb{
	padding-bottom: 56.25%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: block;
    overflow: hidden;
}
.featthumb.tallthumb{
	padding-bottom: 76.25%;
}
.medthumb{
	width: 100%;
	display: block;
	overflow: hidden;
}
.sliderheight.featbox .medthumb{
	max-height: 250px;
}
.featthumb{
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    overflow: hidden;

    /*width: 100%;*/
}
.medthumb .featthumb{
	padding-bottom: 90%;
}
.featthumb:hover{
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden;
}
/*.featbox{
	padding: 1px;
}*/
.featbox a{
	color: #3e3e3e;
}
.maincolorback .featboxpadding{
	color: #fff;
}
.subcolorback .captionpad{
	color:#fff;
	padding: 15px 30px;
}
.subcolorback .captionpad a{
	color:#fff;
	line-height: 1;
	text-decoration: none;
}
.featboxpadding{
	padding:1.5rem;
	max-width: 325px;
	margin: 0 auto;
}
.featbox .featboxpadding.boldlinks a{
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
}
.smalldate{
	display: block;
	line-height: 1;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 5px;
}
.featboxtitle,
.capboxtitle{
	font-weight: 700;
	font-size: 16px;
    font-size: 1em;
	display: block;
	margin-bottom: 18px;
	word-break: break-word;
}
.featboxtitle.lgtitle{
	font-size: 20px;
	font-size: 1.25em;
}
.maincolorback  a.featboxtitle{
	color: #fff;
}
.capboxtitle{
	line-height: 1.25;
	margin-bottom: 0px;
}
.capboxtitle span{
	font-weight: 400;
	display: block;
}
.featbox p,
.featbox li{
	font-size: 14px;
	font-size: 0.875em;
}
.slidermargin,
.featbox{
	margin: 10px auto;
}

.bxslider li{
	position: relative;
	background-size: 0;
	background-repeat: no-repeat;
}
.bxslider li img{
	position: relative;
	z-index: 1;	
}
.slidecaption{
	color: #fff;
	padding: 15px 30px;
}
.slidecaption h1{
	font-weight: 600;
	font-size: 20px;
	font-size: 1.25em;
	margin: 0px 0 5px;
	line-height: 1;
}
.newsstripthumb{
	float: left;
	width: 40%;
	height: auto;
	overflow: hidden;
}
.newsstripthumb .featthumb{
	padding-bottom: 100px;
}
.newsstrip .featboxpadding{
	padding: 1rem;
	float: right;
	width: 55%;
}
/*.newsstrip .featboxpadding{
	float: right;
	width: calc(100% - 220px);
}*/
.newsstrip .featboxtitle{
	line-height: 1;
}
.sliderheight.featbox img{
	/*object-fit: cover;*/
	max-width: 150%;
	height: 250px;
}
.featboxcap.featbox img{
	/*object-fit: cover;*/
	max-width: 150%;
	height: 280px;
}
.featboxcap.featbox .featboxpadding img{
	max-width: 100%;
	height: auto;
	float: none;
	margin:10px auto;
}
.sliderheight.featbox .wysiwygimg img{
	max-width: 100%;
	height: auto;
}
.compat_object_fit{
   background-size: cover;
   background-position: center center;
   max-width: 100%;
}
.featbox.compat_object_fit img{
	display: none;
}
h2.sectiontitle{
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	color: #3e3e3e;
	line-height: 1;
	margin: 30px 0 20px;
}
h2.sectiontitle a{
	color: #3e3e3e;
	text-decoration: none;
}
h2.sectiontitle:before{
	content:"";
	width: 10px;
	height: 10px;
	display: inline-block;
	margin: 0px 10px 2px 0;
}
.nosocialmargintop .ff-stream-wrapper{
	margin-top: 0px;
}
.searchrow{
	margin: 20px auto;
}
.searchbox{
	padding: 20px;
	color: #000;
	font-size: 14px;
}
.searchbox span{
	font-size: 21px;
	font-size: 1.3125em;
	display: inline-block;
}
.searchbox p{
	display: inline-block;
	margin: 0;
	vertical-align: bottom;
}
.search-form{
	margin-top: 17px;
}
.search-form input[type=search]{
	width: 100%;
	border: 0px;
	line-height: 1;
	height: 50px;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
	display: block;
	margin-bottom: 15px;
}
.search-form input.search-submit{
	width: 100%;
	height: 50px;
	color: #fff;
	border: 0px;
	text-align: center;
	font-size: 20px;
	font-size: 1.24em;
	font-weight: 700;
	display: block;
	margin-bottom: 15px;
}

.site-header .search-form input.search-submit{
	display: none;
}
.sidesearchlinks{
	padding: 20px 30px;
}
.sidesearchlinks ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
}
.sidesearchlinks ul li{
	line-height: 60px;
}
.sidesearchlinks ul li:first-child{
	border-bottom: 1px solid #fff;
}
.sidesearchlinks ul li a{
	color:#fff;
	font-size: 14px;
	display: block;
	padding-left: 45px;
}
.catsidelink{
	background: url('../img/boxes.svg') 0 50% no-repeat;
}
.faqsidelink{
	background: url('../img/like.svg') 0 50% no-repeat;
}
.alternboxes,
.alternboxes a{
	color: #fff;
}
.alternboxes{
	font-size: 14px;
}
.featboxpadding.alternboxes{
	margin-bottom: 20px;
}
.alternboxes h4{
	font-size: 18px;
	font-size: 1.285714em;
	font-weight: 700;
	line-height: 1;
	margin: 25px 0;
}
.featicon{
	height: 50px;
	display: block;
	margin-top: 1rem;
}
.featicon img{
	width: auto;
	max-height: 100%;
	display: block;
}
.colslider{
	padding: 1px;
}
.colslider .bx-wrapper{
	margin: 30px auto;
}
.colslider .bx-wrapper ul{
	margin: 0px;
}
.bx-controls-direction{
	display: none;
}
/* DIRECTION CONTROLS (NEXT / PREV) */

.colslider .bx-wrapper .bx-prev {
	left: -40px;
	background: url(../img/controls.png) no-repeat 0 -34px;
}

.colslider .bx-wrapper .bx-next {
	right: -40px;
	background: url(../img/controls.png) no-repeat -34px -34px;
}

.colslider .bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.colslider .bx-wrapper .bx-next:hover {
	background-position: -34px 0;
}
.colslider .bx-wrapper .bx-controls-direction a {
	position: absolute;
	bottom: 18%;
	/*margin-top: -18px;*/
	outline: 0;
	width: 34px;
	height: 34px;
	text-indent: -9999px;
	z-index: 99;
}
.pagetitlebar{
	padding: 30px;
	margin-bottom:30px;
}
.pagetitlebar h1{
	margin: 0px;
	line-height: 1;
	text-transform: inherit;
	font-size: 20px;
	font-size: 1.25em;
	font-weight: 700;
	color: #fff;
}
.pagetitlebar .smalldate{
	margin: 10px 0 0;
	color: #fff;
}
.mainbody{
	padding: 2rem 1rem;
	font-size: 14px;
	margin-bottom: 20px;
}
/*.mainbody p:first-of-type{
	font-size: 18px;
	font-size: 1.2857em;
}*/
.mainbody h1,
.mainbody h2,
.mainbody h3,
.mainbody h4,
.mainbody h5,
.mainbody h6{
	font-weight: 700;
}
.mainbody h1{
	font-size: 22px;
	margin: 40px 0 40px;
}
.mainbody h2{
	font-size: 20px;
	margin: 40px 0 25px;
}
.mainbody h3{
	font-size: 19px;
	margin: 40px 0 15px;
}
.mainbody h4{
	font-size: 18px;
	margin: 30px 0 15px;
}
.mainbody h5{
	font-size: 17px;
	margin: 30px 0 15px;
}
.mainbody h6{
	font-size: 16px;
	margin: 30px 0 15px;
}


.mainbody ul{
	list-style: circle;
	margin-left: 35px;
	line-height: 2;
}
.mainbody hr{
	margin: 3.25rem auto;
	border-bottom: 1px solid #cccccc;
}
.mainbody table{
	overflow-x: auto;
}
.socialpad{
	padding: 2.5rem;
}
.ff-stream {
    background: transparent!important;
}
.commentsbody{
	margin-top:20px; 
	margin-bottom:20px; 
	display: block;
}
.commentsbody .mainbody h2 {
    margin: 0px 0 25px;
}
#commentform .form-submit input[type=submit] {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    font-family: inherit;
    padding: .85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: background-color .25s ease-out,color .25s ease-out;
    font-size: .9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    /*background-color: #2ba6cb;*/
    color: #fefefe;
}
/*
 * BREADCRUMBS
 **************************************************/
.breadcrumb{
	font-size: 14px;
	font-size: 0.875em;
	margin: 25px 0 20px;
}
.breadcrumb a{
	color: #3e3e3e;
	text-decoration: none;
}
.breadcrumb .fa{
	margin: 0 16px;
	color: #3e3e3e;
}
.sidebarnav,
#sidemenu{
	padding: 2rem;
	font-size: 14px;
	margin-bottom: 20px;
}
#sidemenu{
	padding: 2rem 0;
}
.sidebarnav h3,
#sidemenu h3{
	font-size: 20px;
	font-size: 1.25em;
	margin: 0 0 25px;
	line-height: 1;
	font-weight: 900;
}
#sidemenu h3{
	margin: 0 2rem 25px;
}
h3.expanding-archives-title {
    margin: 0;
    border-bottom: 1px solid #ccc;
}
.sidebarnav ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.sidebarnav li{
	border-top: 1px solid #cccccc;
	padding: 15px 20px 15px 10px;
	line-height: 1;
	position: relative;
}
.sidebarnav .expanding-archives-section li{
	border-top: 0px;
	line-height: 1.5;
}
.sidebarnav li.page_item_has_children:after{
    content: "\f107";
    font-family: "FontAwesome";
	font-size: 1.5rem;
	position: absolute;
	right: 3px;
	top: 10px;
	display: inline-block;
	color: #7d7c7d;
	font-weight: 700;
		    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
}
.sidebarnav li.page_item_has_children.sub-menu-is-active:after,
.sidebarnav li.page_item_has_children.current_page_item:after,
.sidebarnav li.page_item_has_children.current_page_parent:after{
	    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    transform-origin: 50% 50%;
}
.sidebarnav li a,
.sidebarnav li.current_page_item li a{
	color: #3e3e3e;
	font-weight: 700;
}

.sidebarnav li ul li{
	border-top: 0px;
	padding: 15px 10px;
	line-height: 1;
}
.sidebarnav .children{ 
	display: none;  
	/*padding-top: 15px;*/
	font-weight: 400;
}
.sidebarnav .current_page_item .children,
.sidebarnav .current_page_ancestor .children,
.sidebarnav .current_page_parent .children,
.sidebarnav .children.sub-menu-is-active{
	display: block; 
}

.columns.azsearchbox {
    margin: 40px 0 0;
}
.azlist{
	margin-top: 60px
}
.mainbody .azlist ul{
	list-style: none;
	margin: 0 0 60px;
	padding: 0px;
	color: #3e3e3e;
}
.azlist li{
	margin-left: 20px;
	list-style: circle;
}
.azlist .alphatitle{
	border-bottom: 1px solid #cccccc;
	line-height: 1;
	padding-bottom: 15px;
	margin: 0px 0 15px;
	font-weight: 700;
	font-size: 18px;
	display: block;
	padding-left: 0px;
}
.azlist a{
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	color: #3e3e3e;
}
.azlist .alphatitle a{
	font-weight: 700;
	text-transform: capitalize;
}
.azlist a:hover{
	text-decoration: none;
}
.azlist ul:first-of-type{
	display: none;
}
a.tellink, a.maillink{
	font-weight: 700;
	background-repeat: no-repeat;
	height: 32px;
	line-height: 32px;
	display: inline-block;
	background-position: 0 50%;
}
a.tellink svg, a.maillink svg{
	margin-right: 15px;
	vertical-align: middle;
}
/*a.tellink{
	background-image: url('../img/telicon.svg');
}
a.maillink{
	background-image: url('../img/mailicon.svg');
}*/
.gform_wrapper label.gfield_label {
    font-size: 120%!important;
}

.pagination a, .pagination button,
.page-numbers {
    display: inline-block;
    padding: .1875rem .625rem;
    border-radius: 0px;
    color: #0a0a0a;
    margin: 10px 10px 10px 0;
    background: #dadada;
}
.pagination .current,
.page-numbers.current {
    padding: .1875rem .625rem;
    background: #2ba6cb;
    color: #fefefe;
    cursor: default;
    display: inline-block;
    margin: 10px 10px 10px 0;
}
.widget {
	background:#fff;
	margin-bottom: 20px;
	padding: 2em 0;
}
.widget-title{
	padding: 0 20px;
}
.expanding-archives-title {
    background: transparent;
    padding: 10px 15px;
    font-size: 20px;
}
.expanding-archive-month-results,
.expanding-archive-month-results ul{
	padding-left: 5px;
}
.expanding-archive-month-results ul li{
	margin-bottom: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f1f1f1;
	font-size: 14px;
}
/*.expanding-archive-month-results ul li:last-child{
	border-bottom: 0px;
}*/
.csscols{
	-webkit-columns: 2 300px;
     -moz-columns: 2 300px;
          columns: 2 300px;
  -webkit-column-gap: 4em;
     -moz-column-gap: 4em;
          column-gap: 4em;
}


ul.accordion{
	list-style: none;
	padding: 0px;
	margin: 20px 0;
}
.accordion-title {
    position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}
/*.mainbody .accordion-content p:first-of-type{
	font-size: 16px;
	font-size: 1em;
}*/


.box-search-filter button#btnsearch {
    height: 61px;
}
.gform_body [type=checkbox],
.gform_body [type=file],
.gform_body [type=radio],
.gform_body [type=email],
.gform_body [type=number],
.gform_body [type=tel],
.gform_body [type=text],
.gform_body textarea{
    margin: 0 0 5px;
}

.mainbody .wp-post-image{
	margin-bottom: 30px;
}

h3.quicklinksmob{
	display: none;
}

/************************************************************************************
SMALL SCREENS ONLY
*************************************************************************************/
/***** Small. *****/
@media screen and (max-width: 639px) and (min-width: 100px) {
	.toprow.maincolorback .maincolorsvg svg path{
		fill: #fff!important;
	}
	.cleartoprow{
		min-height: 70px;
	}
	.bx-pager.bx-default-pager{display: none;}
}
/************************************************************************************
SMALL SCREENS ONLY - SIDEBAR NAV ABOVE CONTENT
*************************************************************************************/
/***** Small. *****/
@media screen and (max-width: 1023px) and (min-width: 100px) {
	h3.quicklinksmob{
		background: #d5d5d5;
		position: relative;
		line-height: 50px;
		padding-left:10px;
		display: block;
	}
	h3.quicklinksmob:before, h3.quicklinksmob:after {
	    transition: .1s all ease-in;
	    position: absolute;
	    right: 20px;
	    top:25px;
	    width: 8px;
	    height: 1px;
	    background: #000;
	    content: '';
	}
	h3.quicklinksmob:hover {
	    cursor: pointer;
	}
	h3.quicklinksmob:before {
	    right: 25px;
	    transform: rotate(45deg);
	}
	h3.quicklinksmob:after {
	    transform: rotate(-45deg);
	}
	h3.quicklinksmob.filteractive:before {
	    right: 26px;
	    transform: rotate(-45deg);
	}
	h3.quicklinksmob.filteractive:after {
	    transform: rotate(45deg);
	}
	.sidemob{
		height: 0;

	}
	.sidemob{
    	height: 0px;
		overflow: hidden;
		margin-bottom:0px;
		transition: all .3s ease-in-out;
    }
    .sidemob.show-content{
		height: auto;
		margin-bottom:25px;
		transition: all .3s ease-in-out;
		padding-top:20px;
	}
}
/************************************************************************************
Larger than 520
*************************************************************************************/
/***** Medium. *****/
@media screen and (min-width: 520px) {
/*	.featbox{
		padding: 0px;
	}*/
	.sliderheight.featbox .medthumb{
		float: left;
		margin-right: 2rem;
	}
	.sliderheight.featbox.maincolorback{
		min-height: 250px;
	}
	.sliderheight.featbox .medthumb{
		width: 280px;
	}
	.featboxpadding {
	    max-width: 100%;
	    margin: 0;
	}

}
/************************************************************************************
Larger than 640
*************************************************************************************/
/***** Medium. *****/
@media screen and (min-width: 640px) {
	
	.bxslider li{
		background-size: cover;
	}
	.sliderheight .bx-wrapper,
	.sliderheight .bx-viewport,
	.sliderheight .bxslider,
	.sliderheight .bxslider li{
		min-height: 470px;
	}
	.txtright{
		text-align: right;
	}
	.home-link{
		/*max-width: 340px;*/
		max-width: 500px;
	}
	.toprow.maincolorback{
		background-color: transparent;
	}
	/***** Header. *****/
	.large-navigation {
		min-height: 50px;
	}

	.large-navigation ul {
		margin: 0;
		list-style: none;
	}

	.large-navigation ul li {
		padding: 0rem .75rem 0rem;
		display: inline-block;
		line-height: 50px;
		position: relative;
	}

	.large-navigation ul li:after {
		content: "|";
		color: #fff;
		padding-left: 1.5rem;
	}
	.large-navigation ul li:last-of-type:after {
		content: "";
		padding-left: 0;
	}

	.large-navigation ul li a {
		color: #FFF;
		font-weight: 900;
		text-decoration: none;
	}

	.large-navigation ul li a:hover {
		color: #FFF;
		opacity: 0.9;
	}
	/* SUB MENU */
	.large-navigation ul li .children{
		height: auto;
		top: 55px;
		left: -1rem;
		padding: 0;
		position: absolute;
		text-align: left;
		visibility: hidden;
		opacity: 0;
		z-index: 3;
		   -moz-transition: .5s ease-in-out;
		    -ms-transition: .5s ease-in-out;
		     -o-transition: .5s ease-in-out;
		-webkit-transition: .5s ease-in-out;
		        transition: .5s ease-in-out;
		min-width: 220px;
	}

	.large-navigation ul li:hover .children{
		visibility: visible;
		opacity: 1;
		   -moz-transition: .5s ease-in-out;
		    -ms-transition: .5s ease-in-out;
		     -o-transition: .5s ease-in-out;
		-webkit-transition: .5s ease-in-out;
		        transition: .5s ease-in-out;
	}

	.large-navigation ul li .children li{
		height: auto;
		padding: 1rem 0.9375rem;
		margin-bottom: 0;
		display: block;
		line-height: 1.25;
	}

	.large-navigation ul li .children li:hover{
		color: #FFF;
	}

	.large-navigation ul li .children li a{
		font-size: 15px;
		font-size: 0.9375em;
	}

	.large-navigation ul li .children li a{
		color: #FFF;
	}

	.large-navigation ul li .children li a:after,
	.large-navigation ul li .children li:after,
	.large-navigation ul li .children li .children{
		display: none;
	}

	/***** Full Screen Search. *****/
	.search-overlay input[type=search] {
		width: 500px;
		border-bottom: 5px solid #B3B3B3;
		font-size: 75px;
		line-height: 75px;
	}

	.search-submit .fa {
		font-size: 75px;
		line-height: 75px;
	}

	/***** Footer. *****/
	.footer-column {
		border-bottom: none;
	}

	footer h6 {
		margin-bottom: 10px;
		padding-top: 0px;
		color: #FFF;
		border-top: 0px;
	}
	#colophon h6:after {
		display: none;
		content: '';
	}

	#colophon .footer-column-content {
		height: auto;
		opacity: 1;
	}
	.toprow{
		border-bottom: 0;
		padding: 15px 0px;
	}
	.styled-select {
	   width: 200px;
	}
	.styled-select select {
		font-size: 16px;
	}
	.sociallinks{
		float: right;
	}
	footer .columns {
	    padding: 0.9375rem;
	}
	footer .columns.hostelcols{
		padding-right: 1.5rem;
	}
	.hostelcols:after{
		content: "";
		width: 1px;
		height: 45px;
		background: #fff;
		display: block;
		position: absolute;
		top: 21px;
		right: .75rem;
	}
	footer .columns.hostelcols:last-of-type{
		padding-right: 0rem;
	}
	.hostelcols:last-of-type:after{
		display: none;
	}
	ul.footmenu{
		list-style: none;
		padding: 0px;
	}
	ul.footmenu li{
		display: inline-block;
		padding-right: 15px;
	}
	ul.footmenu li:after{
		content: "|";
		display: inline-block;
		padding-left: 15px;
	}
	ul.footmenu li:last-of-type:after{
		display: none;
	}
	.bordertop{
		border-top: 1px solid #fff;
		margin-top: 30px;
		padding-top: 30px;
	}
	.investorlogo {
	     margin-top: 0px; 
	}
	.slidecaption{
		position: absolute;
		bottom: 30px;
		left: 50px;
		z-index: 2;
		min-width: 50%;
	}
	.mainbody .small-12.medium-6.columns:nth-child(2n+3){
		clear: left;
	}
	.azsearchbox .search-form label{
		width: calc(100% - 100px);
	}
	.azsearchbox .search-form input[type=search]{
		width: calc(90% - 183px);
		max-width: 100%;
		display: inline-block;
	}
	.search-form input.search-submit{
		width: 180px;
		display: inline-block;
	}
	.disflex{
		display: flex;
		flex-direction: column;
	}
	.order-1-md{
		order: 1;
	}
	.order-2-md{
		order: 2;
	}
	.order-3-md{
		order: 2;
	}
}
/************************************************************************************
Larger than 768
*************************************************************************************/
/***** Large. *****/
@media screen and (min-width: 768px) {
	.font-changer{
		font-weight: 700;
		float: right;
		clear: none;
		display: inline-block;
		margin: 0 15px;
	}
	.searchbox{
		padding: 20px 50px;
	}
	.search-form input[type=search]{
		width: 75%;
		/*display: inline-block;*/
		float: left;
		margin-bottom: 15px;
	}
	.site-header .search-form input[type=search]{
		float: right;
	}
	.search-form input.search-submit{
		width: 24%;
		/*display: inline-block;*/
		float: left;
		margin-bottom: 15px;
	}
	.sidesearchlinks ul li{
		width: 45%;
		display: inline-block;
	}
	.sidesearchlinks ul li:first-child{
		border-right: 1px solid #fff;
		border-bottom: 0px;
		margin-right: 5%;
	}
	.mainbody{
		padding: 50px 40px;
	}
	.csscolumns{
		-webkit-column-count: 2; /* Chrome, Safari, Opera */
	    -moz-column-count: 2; /* Firefox */
	    column-count: 2;
	    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
	    -moz-column-gap: 40px; /* Firefox */
	    column-gap: 40px;
	}
	.csscolumns ul{
		-webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
	}
	.smallfeatimg{
		float: right;
		margin: 0 0 20px 20px;
	}

}
/************************************************************************************
Larger than 1024
*************************************************************************************/
/***** Large. *****/
@media screen and (min-width: 1024px) {
	/***** Global. *****/
	.mainbody h1{
		font-size: 28px;
	}
	.mainbody h2{
		font-size: 24px;
	}
	.mainbody h3{
		font-size: 22px;
	}
	.mainbody h4{
		font-size: 20px;
	}
	.mainbody h5{
		font-size: 18px;
	}
	.mainbody h6{
		font-size: 17px;
	}

	.footerpad{
		padding: 50px 80px 10px;
	}

	/***** Full Screen Search. *****/
	.search-overlay-trigger .fa {
		line-height: 37.5px;
	}

	.search-overlay input[type=search] {
		width: 750px;
		font-size: 50px;
		line-height: 50px;
	}

	.search-overlay .fa-times-circle {
		top: 20px;
		font-size: 50px;
		line-height: 50px;
	}

	.search-submit .fa {
		font-size: 100px;
		line-height: 100px;
	}
	.font-changer{
		margin: 0 30px;
	}
	.hostelcols{
		width: 20%;
	}
	.sliderheight .bx-wrapper,
	.sliderheight .bx-viewport,
	.sliderheight .bxslider,
	.sliderheight .bxslider li,
	.sliderheight .bxslider li img{
		min-height: 470px;
	}
	.sliderheight .bx-wrapper img {
	    max-width: 200%;
	}
	.sliderheight.featbox .medthumb{
		float: none;
		margin-right: 0;
		width: 100%;
	}
	.newsstripthumb{
		width: 200px;
		height: 100px;
		margin-right: 20px;
	}
	.newsstrip .featboxpadding{
		padding: 1.5rem;
		float: right;
		width: calc(100% - 220px);
	}
	.whiteback.newsstrip{
		max-height: 100px;
		overflow: hidden;
	}
	.searchbox span{
		padding-right: 17px;
		border-right: 1px solid #000;
		margin-right: 17px;
	}
	.searchbox p{
		line-height: 30px;
	}
	.sidesearchlinks ul li{
		width: 100%;
		display: block;
	}
	.sidesearchlinks ul li:first-child{
		border-bottom: 1px solid #fff;
		border-right: 0px;
		margin-right: 0px;
	}
	.bx-controls-direction{
		display: block;
	}
	.csscolumns:not(.twocols){
		-webkit-column-count: 3; /* Chrome, Safari, Opera */
	    -moz-column-count: 3; /* Firefox */
	    column-count: 3;
	    -webkit-column-gap: 65px; /* Chrome, Safari, Opera */
	    -moz-column-gap: 65px; /* Firefox */
	    column-gap: 65px;
	}
	.mainbody .small-12.medium-6.columns:nth-child(2n+3){
		clear: none;
	}
	.mainbody .small-12.medium-6.columns:nth-child(3n+4),
	.mainbody .small-12.large-3.columns:nth-child(4n+3){
		clear: left;
	}

}