.IHM-Canada-2021 {} /* IHM */

/* :::::::::::::::::::::::::: VARIABLES  ::::::::::::::::::::::::::*/
:root {
	--primary: #1d422d;
	--secondary: #e6bd00;
	--tertiary: #aeb7a7;

	--lightgrey: #e5e5e5;
	--grey: #777;
	--red: #ff3340;

}
/* :::::::::::::::::::::::::: VARIABLES  ::::::::::::::::::::::::::*/

/* :::::::::::::::::::::::::: COMMON  ::::::::::::::::::::::::::*/
*, *:before, *:after { 
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

.bg-primary {
	background: var(--primary);
}
.bg-secondary {
	background: var(--secondary);
}
.bg-tertiary {
	background: var(--tertiary);
}
.bg-lightgrey {
	background: var(--lightgrey);
}
.bg-grey {
	background: var(--grey);
}
.bg-white {
	background: #fff;
}
.bg-fade {
	border:1px solid #F2F2F2;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80f9f9f9', endColorstr='#e6f7f7f7',GradientType=0 );
}
.align-bottom {
	position:absolute;
	bottom:1%;
}	
.align-vertical {
	display: grid;
	place-content: center;
}

.content img, .box-1 img, .box-1-2 img, .box-1-3 img,  .box-1-4 img, .box-1-5 img, .box-1-6 img, .box-2-3 img, .box-3-4 img,
.box-1of2 img, .box-1of3 img,  .box-1of4 img, .box-1of5 img, .box-1of6 img .box-2of3 img, .box-3of4 img {
	max-width:100%;
	height:auto !important;
}

/* :::::::::::::::::::::::::: END COMMON ::::::::::::::::::::::::::*/

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #FFF;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	/*
	/// Non System Font Stack ///
	font-family: Verdana, "Helvetica Neue", Helvetica, Arial, Gotham, Geneva, "sans-serif";
	/// Non System Font Stack ///
	*/
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.6;
	position: relative;
}

img {
	border: none;
    background: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE8 */   
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);   /* IE6 & 7 */ 
	outline:0;
}

 img, button, input {
    outline: none;
}

.inner {
	margin: 0 auto; 
	padding: 0;
	max-width:1366px;
	position: relative;
}
.center {
	text-align: center;
/*
	margin-left:auto;
	margin-right:auto;
*/
}

#header {
	width:100%;
	margin: 0 auto;
	padding: 0;
	position: fixed;
	top:0;
	z-index:7777;
/*	height:133px;*/
	background: rgb(3,48,31);
	background: -moz-linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	background: -webkit-linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	background: linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#03301f",endColorstr="#033c26",GradientType=1);
}  
#header.nobackground {
	background: transparent;
}
#header .inner.top {
	overflow:show;
	height:140px;
}

#logo {
	background-image: url(../svg/ihm-canada-logo-w.svg);
	background-repeat:no-repeat;
	-webkit-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-o-background-size: 100% auto;
	background-size: 100% auto;
	width: 140px;
	height: 87px;
	position:absolute;
	left:10px;
	top:5px;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
    transition: all .2s ease 0s;
}

/* ====================== STICKY ====================*/
#header.sticky {
	height: 118px;
	backdrop-filter: blur(6px);
	background: rgb(3,48,31);
	background: -moz-linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	background: -webkit-linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	background: linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#03301f",endColorstr="#033c26",GradientType=1);
	-webkit-box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.3);
	-ms-box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.3);
	-o-box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.3);
	
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

#header .inner.top.sticky {
	overflow:show;
	height:118px;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}
#logo.sticky {
	width: 103px;
	height:64px;
	top: 2px;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}

#social.sticky {
    bottom: 45px;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	transition: all 0.1s ease 0s;
}
#social2.sticky {
	top:3px;
}

/* ========================= SOCIAL LINKS ======================== */
#social, #social2 {
	position:absolute;
	right:10px;
	bottom:50px;
    margin: 0;
	padding: 0;
	color:#ffca03;
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size:18px;
}
#social2 {
	top:7px;
    margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: .97rem;
}
#social li, #social2 li {
   list-style: none;
	margin: 0 0 0 30px;
   padding: 0;
   float: right;
   white-space:nowrap;
	color: #fff;
}
#social2 li {
	margin: 0 0 0 20px;
}
#social li:last-child, #social2 li:last-child  {
	margin: 0;
}

#social2 li a:link, #social2 li a:visited {
	color: #fff;
}
#social2 li a:hover {
	color: #ffca03;
}
#social2 li a.buttonsmall {
    margin: 0px 0;
}
#social2 li a.buttonsmall:hover {
	color: #fff;
}


#social li a, #social li a:visited {
	color: #ffca03;
    font-size: 16px;
    text-transform: uppercase;
}
#social li a:hover {
	color: #fff;
}

#social2 img {opacity: 1; margin: 2px 0 0 0;}
#social2 img:hover {opacity: .8; margin: 0 0 3px 0;}



/* ====================== MAIN NAV ====================== */
.navbar {
	position:absolute;
	bottom:0;
	width:100%;
	text-align:center;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
}

ul.nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width:100%;

	display: flex;
	flex-flow: space-between;
}
ul.nav li {
	font-family: 'Lato', sans-serif; 
	font-size: 18px;
	font-weight:400;
	color: #fff;
	text-align: center;
	white-space:nowrap;
	display: inline-block;
	/*position: relative;*/
	padding: 7px 11px;
	cursor: pointer;

	flex-shrink: 0;
    flex-grow: 1;
	
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}



ul.nav li  a {
	color: #fff;
/*
	display: block;
	width:100%;
	height: 100%;
	margin: 0;
	padding: 0;
*/
	text-transform: uppercase;
}
ul.nav li:hover a {
	color: #fff;
}
ul.nav li:hover, ul.nav li:active {
	color: #FFF;
	background-color: #ffca03;
}

ul.nav li ul  {
	padding: 0 10% ;
	position: absolute;
	top: 42px;
	left: 0;
	width: 100%;
	/*right: -50px;
	min-width: 250px;*/
	display: block;
	visibility: hidden;
	filter:alpha(opacity=0);
	opacity: 0;
    min-height:0;

    border-top: 5px solid #ffca03;
    border-bottom: 1px solid #ffca03;
	background: #f7f7f7;
	background: -moz-linear-gradient(top, #f7f7f7 0%, #eeeeee 100%);
	background: -webkit-linear-gradient(top, #f7f7f7 0%,#eeeeee 100%);
	background: linear-gradient(to bottom, #f7f7f7 0%,#eeeeee 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#eeeeee',GradientType=0 );
	
	/* k-J  attempt v1 */
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	column-gap: 70px;

	/*
		-webkit-column-rule: 1px dotted #ccc;
		-moz-column-rule: 1px solid #ccc;
		column-rule: 1px solid #ccc;
	*/
	
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	
	z-index: 999999;
}

ul.nav li:hover ul {
	padding: 30px 10% ;
	visibility: visible;
	filter:alpha(opacity=100);
	opacity: 1;
	display:block;
	min-height:230px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.4);
	
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

ul.nav li:hover ul li {
	margin-top:3px;
	padding: 5px 10px;
	display: /* block */ contents;
	color: #444;
	text-align: left;
	white-space: normal;
	float:left;
	
	width: 48%;
	width: calc(100% / 2);
	break-inside: avoid-column;
	-webkit-column-break-inside:avoid;
	-moz-column-break-inside:avoid;
	column-break-inside:avoid;
	
	position:relative;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

ul.nav li:hover ul li ul li {
	margin-top:1px;
	line-height: 1.2;
}
ul.nav li:hover li a {
	color: #444;
	width: 100%;
	display: block;
    margin-top: 15px;
    margin-bottom: 5px;
	padding: 5px;
    text-transform: initial;
}
/*
ul.nav li:hover li:first-child a {
    margin-top: 0;
}
ul.nav li:hover li li a {
    margin-top: 0;
    margin-bottom: 0;
}
ul.nav li:hover ul li li {
    padding-top: 0;
}
*/

ul.nav li li a {
    text-transform: initial;
}
ul.nav li li li a {
    text-transform: initial;
	font-weight: 400 !important;
}
ul.nav li li li li a {
    font-size: .8em;
    margin: 0 0 0 10px;
}
ul.nav li:hover li:first-child a {
    margin-top: 0;
}
ul.nav li:hover li li a {
    margin-top: 0;
    margin-bottom: 0;
}
ul.nav li:hover ul li li {
    padding-top: 0;
}



/* ---- START ---- Special addition to avoid ul from breaking to next column */
ul.nav li:hover li a, ul.nav li:hover li li a, ul.nav li:hover li li li a {
	break-inside: avoid-column;
	-webkit-column-break-inside:avoid;
	-moz-column-break-inside:avoid;
	column-break-inside:avoid;
}
/* ---- END ---- Special addition to avoid ul from breaking to next column */


ul.nav li li > a:hover, ul.nav li li.has-submenu li a:hover, ul.nav li li li.has-submenu li a:hover   {
	color: #0D3A00;
/*	background-color: #e8e8e8;
	border-bottom: 1px dotted green;*/
	font-weight: 700;
}

ul.nav li:hover ul li ul  {
	visibility: visible;
	filter:alpha(opacity=100);
	opacity: 1;
	display:contents;
	background-color: transparent;
	border-top: none;
	min-height: inherit;
	/*position: absolute;
	left:0;*/
}
ul.nav li:hover li ul>li  {
	visibility: visible;
	filter:alpha(opacity=100);
	opacity: 1;
/*	display:block;*/
	width:100%;
/*	padding: 3px 0 3px 3px;*/
}
ul.nav li.has-submenu {
	background: url(../png/sub-arrow.png) no-repeat 98% 50%;
}
ul.nav li.has-submenu:hover {
	background: #ffca03 url(../png/sub-arrow.png) no-repeat 98% 75%;
}
ul.nav li.has-submenu li {
	background: none;
	padding-right: inherit;
}
ul.nav li li.has-submenu a {
	margin-bottom: 0;
}
ul.nav li li.has-submenu li a {
	color:#666;    
	font-size: 16px;
	margin-bottom: 0;
}
ul.nav li:hover li li li  {
	margin-top:0;
	padding: 1px 0 1px 9px;
}
ul.nav li li li.has-submenu li a {
	    font-size: 16px;
	color:#777;
}



/* ========================== SUB NAV ========================= */

#subnavbar {
	margin: 0 auto;
	padding: 0;
	background-color: #aeb7a7;
	width: 100%;
	max-width: 1366px;
	text-align: center;
	overflow: visible;
	color:#fff;
}

ul.sub-nav {
/*  display: inline;*/
  margin: 0;
  padding: 0;
  list-style: none;
  right:0;
	
	display: flex;
	flex-flow: space-between;
}
ul.sub-nav li {
	font-size: 18px;
	font-weight:400;
	color: #fff;
	white-space:nowrap;
	display:inline-block;
    margin: 0;
    padding: 5px 10px;
	cursor: pointer;
	position: relative;
	
    flex-shrink: 0;
    flex-grow: 1;
}
ul.sub-nav li:hover {
	background-color: #8E9688;
}
ul.sub-nav li>a {
	color: #FFF;
}
ul.sub-nav li:hover >a {
	color: #333;
}

ul.sub-nav li ul {
  padding: 0;
  position: absolute;
  top: 34px;
	left:-10%;
  min-width: 220px;
  display: none;
  opacity: 0;
  visibility: hidden;
  line-height:1.2;
}
ul.sub-nav li:hover>ul {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

ul.sub-nav li ul li { 
	background-color: #8E9688; 
	display: block; 
	text-align:left;
	white-space: normal;
	width: 240px;
	border-top:1px solid rgba(255,255,255,0.5);
	font-size: .93em;
	padding:  7px 10px;
}
ul.sub-nav li ul li:hover {
	background-color: #BCC5B5;
}

ul.sub-nav .has-submenu>a {
	background: url(../png/sub-arrow.png) no-repeat right;
	padding-right:18px;
}




/* =============================== logo scroller =================================== */
.simply-scroll-container { 
	position: relative;
}
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
}
.simply-scroll-list { 
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}	
.simply-scroll-list li {
	padding: 0;
	margin: 0 30px;
	list-style: none;
}	
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Custom - adds to / overrides above .simply-scroll is default base class */
.simply-scroll { 
	max-width: 100%;
	height: 160px;
	margin-top: 20px;
	margin-bottom: 1px;
}
.simply-scroll .simply-scroll-clip {
	max-width: 100%;
	height: 160px;
}
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: 360px;
	height: 160px;
	text-align:center;
	background: #fff;
	border-radius: 40px;
	padding: 10px 0 0 0;
	position: relative;
}
.simply-scroll-list li img {
	width: auto !important;
    max-width: 85%;
    height: auto;
    max-height: 110px !important;
    position: absolute;
    top: 10%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.simply-scroll-list li p, .simply-scroll-list li h2, .simply-scroll-list li h3, .simply-scroll-list li h4, .simply-scroll-list li h5, .simply-scroll-list li h6 {
    font-size: 1.1rem;
    position: absolute;
    top: 2%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #999;
}

/* ===================== FADING LOGOS ===================== */

.slideshow { width: 100%; height: 130px; }
.slideshow div { width: 100%; height: 130px; }
.slideshow div img { margin: auto; display: block; border: none; }



/* ================================ SEARCH ================================= */
#search {

}

#search input[type="text"] {
    background: rgba(0,0,0,0.1) url(../png/icon-search.png)  3px  no-repeat;
    margin:0;
    padding: 5px 5px 3px 25px;
	border: 0;
    font: 12px Arial,Helvetica,Sans-serif;
    color: #fff;
    height:26px;
	width: 110px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    }

#search input[type="text"]:focus {
    width: 170px;
	color: #fff;
    background: rgba(0,0,0,0.5) url(../png/icon-search.png)  3px  no-repeat;
}

input {
    outline: none;
}

/* ---------------- BANNER ----------------- */
.banner-override {
	margin-top:85px;
}

#banner {
	margin: 0 auto;
	padding: 0;
	width:100%;
	min-height:900px;
	height: 90vh;
	/*height: 500px;*/
	position:relative;
	text-align: center;
/*	overflow:hidden;*/

    background: linear-gradient(176deg, #033c26, #92b07c);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 22s ease infinite;
    -moz-animation: AnimationName 22s ease infinite;
    -o-animation: AnimationName 22s ease infinite;
    animation: AnimationName 22s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:29% 0%}
    50%{background-position:72% 100%}
    100%{background-position:29% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:29% 0%}
    50%{background-position:72% 100%}
    100%{background-position:29% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:29% 0%}
    50%{background-position:72% 100%}
    100%{background-position:29% 0%}
}
@keyframes AnimationName {
    0%{background-position:29% 0%}
    50%{background-position:72% 100%}
    100%{background-position:29% 0%}
}

#banner.short {
    height: 260px;
    padding: 160px 0 0 0;
    min-height: 240px;
}
#banner.no-height {
	width: 100%;
	max-width: 1366px;
    height: inherit;
/*	max-height: 300px;*/
	min-height: 260px;
    margin: 160px auto 0 auto;
    padding: 0;
	line-height: 1;
}

#banner.no-height img {
	width: 100% !important;
	height: auto !important;
}
#banner p, #banner div  {
	margin:0;
	padding:0;
}

#banner.no-background {
    background:  transparent;
}

.down-circle {
	background:  url(../svg/down-circle.svg);
	background-size: cover;
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

#banner .background {
	background:  url(../png/background.png);
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	right:0;	
	bottom:0;
	left:0;
}

#banner .dots {
	background:  url(../svg/dot-background.svg);
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	right:0;	
	bottom:0;
	left:0;
}

#banner .innertext {
	/*width: 960px;*/
	width: 100%;
	margin:0;
	padding:0 10%;
	z-index:5554;
	position:absolute;
	bottom:5%;
	text-align:center;
}
#banner H2, #banner h3, #banner H4, #banner h5, #banner H6 {
	color: #fff;
	letter-spacing: -1;
	margin:0;
	text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
#banner h4, #banner h4 a:link, #banner h4 a:visited, 
#banner h5, #banner h5 a:link, #banner h5 a:visited, 
#banner h6, #banner h6 a:link, #banner h6 a:visited 
{
    color: #FFF;
}
#banner H2 {
	font-size:55px;
}
#banner H3 {
	font-size: 22px;
}
		
#banner .mainball {
	position: absolute;
	top: 34%;
    left: 50%;
    transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	background-color: #FFD100;
	
	width: 350px;
	height: 350px;	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border:3px solid #FFF;
	color: #000;
	padding:40px 10px 0;
	line-height: 1.4;
	overflow: hidden;
	text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#banner .mainball:hover {
	background-color: #ffd908;
    box-shadow: 0 0 23px rgb(0 0 0 / 40%);
}
#banner .mainball h2{
	color:#fff;
	line-height: 1;
    font-size: 44px;
	font-weight:700;
	text-shadow: none;
    margin-bottom: 20px;
}

#banner .mainball a:link, #banner .mainball a:visited {
	color:#000;
}
#banner .mainball a:hover {
	color:#FFF;
}

.gps_ring {
	position: absolute;
	top: 34%;
    left: 50%;
    transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	
    height: 350px;
    width: 350px;  
    margin-left: -175px !important;
	
	border: 3px solid #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

    -webkit-animation: pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0;
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(1, 1); opacity: 0.0;}
    50% {opacity: 0.2;}
    100% {-webkit-transform: scale(1.3, 1.3); opacity: 0.0;}
}

#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
	width: 280px;
	height: 280px;
	position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#banner .ball-1:hover, #banner .ball-2:hover, #banner .ball-3:hover, #banner .ball-4:hover {
	width: 287px;
	height: 287px;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
#banner .ball-1, #banner .ball-2 {
	top: 160px;
}	
#banner .ball-3, #banner .ball-4 {
	bottom: 230px;
}

#banner .ball-1 {
	background:  url(../png/ball-1.png);
	background-size: cover;
/*	top:18%;*/
	left:22%;
}
#banner .ball-2 {
	background:  url(../png/ball-2.png);
	background-size: cover;
/*	top:18%;*/
	right:22%;
}
#banner .ball-3 {
	background:  url(../png/ball-3.png);
/*	background:  url(../images/ball-3-conf2023.png);*/
	background-size: cover;
/*	bottom:25%;*/
	left:10%;
}
#banner .ball-4 {
	background:  url(../png/ball-4.png);
	background-size: cover;
/*	bottom:25%;*/
	right:10%;
}


/* ======================== SLIDER ========================== */

/*! http://responsiveslides.com v1.54 by @viljamis */

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  /*height: 500px;*/
  left: 0;
  top: 0;
	max-height: 300px;
}
.rslides.home li {
  max-height: inherit;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  float: left;
  width: 100%;
  height: auto;
  border: 0;
  margin:0 auto;
  }

#banner .callbacks_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  top: 60%;
  left: -20px;
  opacity: 0.3;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  width: 20px;
  height: 30px;
  background: transparent url(../png/arrows-banner.png) no-repeat left top;
  margin-top: -45px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#banner .callbacks_nav.next {
  left: auto;
  background-position: right top;
  right: -20px;
  }

#banner:hover .callbacks_nav {
  left: 10px;
  opacity: 0.5;
}
#banner:hover .callbacks_nav.next {
  left: auto;
  background-position: right top;
  right: 10px;
  opacity: 0.5;
}

#banner .callbacks_nav:hover, #banner .callbacks_nav:active, #banner .callbacks_nav.next:hover, #banner .callbacks_nav.next:active {
  opacity: 1.0;
  }

/* ============================== BODY ================================ */

.content {
	margin:0 auto;
	padding: 50px 40px 60px 40px;
	max-width: 1366px; 
	min-height:300px;
	z-index: 1;
	position: relative;
} 
.content.topmargin{
	margin-top:160px;
}
.content ul { 
	margin: 0 10px;
	padding: 0 20px;
}
.content li {
	padding: 0 0 7px 0;
}

.content img, .box-1 img, .box-1-2 img, .box-1-3 img, .box-2-3 img {
	max-width:100%;
	height:auto !important;
}

.content p {
	/* margin-after:2em;*/
	margin: 15px 0;
}

.content.fullwidth {
	max-width:100%;
	width:100%;
	overflow: auto;
}

.content .columns3 {
  column-count: 3;
  column-gap: 40px;
  column-width: 180px;
}
.content .columns3 p {
	page-break-inside: avoid; /* For Firefox. */
	-webkit-column-break-inside: avoid; /* For Chrome & friends. */
	break-inside: avoid; /* For standard browsers like IE. :-) */
	margin: 0 0 1px 0;
	height: 240px;
}

.content .biopic.biolarge, .biopic.biolarge {
	min-height: 200px;
	max-height:280px;
	max-width:200px;
}
.content .biopic  img, .biopic  img {
	width: 100%; 
	height:auto !important;  
    margin: auto;
}
.content .biopic.biolarge img, .biopic.biolarge  img {
	width:100% !important;
}

.content .biopic, .biopic{
	max-width: 110px;
/*	height:120px;*/
	overflow: hidden;
	margin-top: 30px;
	padding:0 5px;
}

.content .biopic.biolarge,  .biopic.biolarge {
	min-height: 270px;
/*	max-height:280px;*/
	max-width:200px;
}


.content .biopic  img, .biopic  img {
	width: 100%; 
	height:auto !important;  
    margin: auto;
}
.biopic.biolarge   img {
	width:100% !important;
}


.audiojs p {
	margin: 0;
}

/* ============================= LINKS ============================ */
a:link {
	color: #009900;
	text-decoration: none;
	-webkit-transition: color .1s ease-in-out;
	-moz-transition: color .1s ease-in-out;
	-o-transition: color .1s ease-in-out;
	transition: color .1s ease-in-out;
}
a:visited {
	color: #009900;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #ffca03;
	text-decoration: none;
	outline:0;
}

a.anchor {
    display: block;
    position: relative;
    top: -200px;
    visibility: hidden;
}



/* ============================= CONDOVOICE ============================ */
.condovoice-issue, .condovoice-thumb {
	padding: 0;
	height:350px;
	width:100%;
	text-align: center;
	vertical-align:middle;
	position: relative;
	min-height: 150px;
	overflow: hidden;
	background: rgb(250,250,250);
	background: -moz-linear-gradient(top, rgb(255,255,255) 6%, rgb(249,249,249) 98%);
	background: -webkit-linear-gradient(top, rgb(255,255,255) 6%,rgb(249,249,249) 98%);
	background: linear-gradient(to bottom, rgb(255,255,255) 6%,rgb(249,249,249) 98%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 );
}

.condovoice-thumb {
	height:170px;
	min-height: 100px;
	display:table-cell;
}

.condovoice-issue img, .condovoice-thumb img { 
	width: 100%; 
	height:auto;  
    margin: auto;
	position: absolute;  
    top: 0;
   	/*bottom: 50px;*/
    left: 0;  
    right: 0;  
}
.content .condovoice-thumb.box-1-3 img { 
	width: auto !important;
	width: 100%; 
	height:auto;  
	max-width: 150%;
	max-height: 100%; 
	position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
}

.intro-text-container p {margin-top: 5px;}





/* ============================= FOOTER ============================ */

#footer {
	background-color: #aeb7a7;
	width: 100%;
	padding: 40px 0 60px 0;
	font-size: 13px;
	color: #555;
	line-height: 1.1;
	position: relative;
	border-top: 1px solid rgba(255,255,255,0.3);
} 
#footer a:link, #footer a:visited {
	color: #555;
	text-decoration: none; 
	font-size: 13px;
	padding: 0;
}
#footer a:hover {
	color: #fff;
}
#footer ul {
	display: block;
	width: 17%;
	margin: 0 1% 0 0;
	padding: 0;
	float: left;
}

#footer ul.special {
	display: block;
	width: 20%;
	margin: 0;
	padding: 0;
	float: right;
}
#footer ul.special li {
	margin: 0;
	padding: 3px 0 7px 0;
	list-style: none;
}
#footer ul.special li a {
	font-family: 'Lato', sans-serif; 
	font-weight:400;
	text-decoration:none;
	color: #FFF;
}
#footer ul.special li a:hover {
	color: #FFF;
}

#footer li {
	margin: 0;
	padding: 3px 0 7px 0;
	list-style: none;
}
#footer li li {
	margin: 0;
	padding: 0 0 3px 5px;
	list-style: none;
}
#footer .header, #footer li.header a {
	margin: 15px 0 5px 0;
	padding: 0;
	font-family: 'Lato', sans-serif; 
	font-weight:400;
	font-size : 20px;
	color: #FFF;
}

#footer li.header:hover a {
	color:#1d422d;
}
#footer ul.special li.header, #footer ul.special li.header a {
	margin: 5px 0;
	padding: 0;
	font-family: 'Lato', sans-serif; 
	font-size : 22px;
	color: #FFF;
}
#footer ul.special li.header:hover a {
	color:#1d422d;
}

#footer ul.special .header.blue {
	font-size : 16px;
	color: #1d422d;
	font-weight:400;
}
#footer .logo {
	margin: 0 auto;
	width: 140px;
	height: 87px;
	background-image: url(../svg/ihm-canada-logo.svg);
	background-repeat:no-repeat;
	-webkit-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-o-background-size: 100% auto;
	background-size: 100% auto;

}
#footer .footerelement {
	margin: 0 0 -2px -2px;
	padding:0;

	/*background-image: url(../images/footer-element.svg);*/
	
	background-repeat: no-repeat;
	background-size: cover;
	position:absolute;
	bottom: 0;
	width: 102%;
	height: 178px;
}

#footer2 {
	background-color: #173323;
	width: 100%;
	padding: 10px 0 20px 0;
	font-size: 14px;
	font-weight:600;
	color: #fff;
	position: relative;
	overflow: auto;
} 

#footer2 ul {
   margin: 0 auto;
   padding:0;
    /*max-width: 600px;
  float:left;*/
	text-align: center;
}
#footer2 li {
   list-style: none;
   display: inline-block;
   margin: 0 0 0 0;
   padding: 0 20px;
}
#footer2 li a {
	color: #ffca03;
}
#footer2 li a:hover {
	color: #fff;
}


#footer .youtube { background: transparent url(../page-not-found.html) no-repeat; width: 23px; height: 21px; display:inline-block; margin:3px 5px; }
#footer .youtube:hover { opacity: 0.7; }
#footer .youtube:active { opacity: 1; }

#footer .facebook { background: transparent url(../png/icon-facebook-w.png) no-repeat; width: 23px; height: 21px; display:inline-block; margin:3px 5px; }
#footer .facebook:hover { opacity: 0.7; }
#footer .facebook:active { opacity: 1; }

#footer .twitter { background: transparent url(../png/icon-twitter-w.png) no-repeat; width: 23px; height: 21px; display:inline-block; margin:3px 5px; }
#footer .twitter:hover { opacity: 0.7; }
#footer .twitter:active { opacity: 1; }

#footer .instagram { background: transparent url(../page-not-found.html) no-repeat; width: 23px; height: 21px; display:inline-block; margin:3px 5px;}
#footer .instagram:hover { opacity: 0.7; }
#footer .instagram:active { opacity: 1; }

#footer .linkedin { background: transparent url(../png/icon-linkedin-w.png) no-repeat; width: 23px; height: 21px; display:inline-block; margin:3px 5px;}
#footer .linkedin:hover { opacity: 0.7; }
#footer .linkedin:active { opacity: 1; }


#mailinglist input[type="text"] {
    background: #FFF url(../page-not-found.html) no-repeat 0;
    margin:-4px 0 0 0;
    padding: 5px 15px 3px 45px;
	border: 1px solid #ccc;
    font: 12px Arial,Helvetica,Sans-serif;
    color: #ccc;
    height:21px;
	width: 100px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    }

#mailinglist input[type="text"]:focus {
	width: 180px;
	color: #333;
    }


/* =============================== TEXT FORMATTING ============================== */
H1, H2, H3, H4, H5, H6 {
	margin: 20px 0 10px 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
	font-weight:400;
	color:#1d422d;
	line-height:1.2;
}
h1, h1 a:link, h1 a:visited {
	font-size : 58px;
	color: #d7b100;
	margin: 0 0 10px 0;
	letter-spacing: -1px;
}
h2, h2 a:link, h2 a:visited  {
	font-size : 40px;
	color: #1d422d;
}
h3, h3 a:link, h3 a:visited {
	font-size : 40px;
	color: #d7b100;
}
h4, h4 a:link, h4 a:visited {
	font-size : 30px;
	color: #1d422d;
	margin-top: 10px;
}
h5, h5 a:link, h5 a:visited {
	font-size : 30px;
	color: #d7b100;
	margin-top: 10px;
}
h6, h6  a:link, h6 a:visited {
	font-size : 22px;
	color: #1d422d;
	margin: 0;
		line-height:1.4;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, 
a h1:hover, a h2:hover, a h3:hover, a h4:hover, a h5:hover, a h6:hover {
	color: #009900;
}

h1 a:link:after, h1 a:visited:after, h2 a:link:after, h2 a:visited:after,
h3 a:link:after, h3 a:visited:after, h4 a:link:after, h4 a:visited:after,
h5 a:link:after, h5 a:visited:after, h6 a:link:after, h6 a:visited:after,
a:link h1:after, a:visited h1:after, a:link h2:after, a:visited h2:after, 
a:link h3:after, a:visited h3:after, a:link h4:after, a:visited h4:after, 
a:link h5:after, a:visited h5:after, a:link h6:after, a:visited h6:after  {
	background-image: url(../svg/arrow-diagonal.svg);
	background-size: 18px 18px;
	content: "";
	width:18px;
	height:18px;
	margin: 0 4px 0 10px;
	display: inline-block;
	opacity: .2;
	
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
h6 a:link:after, h6 a:visited:after {
	background-image: url(../svg/arrow-diagonal.svg);
	background-size: 12px 13px;
	content: "";
	width:12px;
	height:13px;
}
h1 a:hover:after, h1 a:active:after, h2 a:hover:after, h2 a:active:after,
h3 a:hover:after, h3 a:active:after, h4 a:hover:after, h4 a:active:after,
h5 a:hover:after, h5 a:active:after, h6 a:hover:after, h6 a:active:after,
a:hover h1:after, a:active h1:after, a:hover h2:after, a:active h2:after, 
a:hover h3:after, a:active h3:after, a:hover h4:after, a:active h4:after, 
a:hover h5:after, a:active h5:after, a:hover h6:after, a:active h6:after {
	margin: 0 0 2px 14px;
	opacity: 1;
}


.biobox h4, .biobox h5, .biobox h4 a:link, .biobox h5 a:link { font-size: 1.1em;}
.biobox h6, .biobox h6 a:link { font-size: 1.2em;}
.biobox p, .biobox p a:link { font-size: .95em;}


hr {
	border: none 0;
	border-top: 1px solid #CCC;
	height: 1px;
	margin: 30px 0;
	width:100%;
	text-decoration: none;
}

hr.grey {
	border: none 0;
	border-top: 1px solid rgba(100,100,100,0.2);
	height: 1px;
	margin: 30px 0;
	padding: 0;
	width:100%;
	text-decoration: none;
}
hr.whiteline {
	border: none 0;
	border-top: 3px solid #FFF;
	height: 3px;
	margin: 10px 0;
	padding: 0;
	width:100%;
	text-decoration: none;
}
hr.yellow {
	border: none 0;
	border-top: 3px solid #ffca03;
	height: 3px;
	margin: 10px auto;
	padding: 0;
	width:80%;
	text-decoration: none;
}
.verticalline {
	margin: 0;
	padding: 0;
  border-left: 3px solid #ffca03;
}

.blue, .blue-text {
	color : #1d422d;
}
.lightblue, .lightblue a:link  {
	color : #9fcceb;
}
.lightblue a:hover  {
	color : #7697BE;
}
.bergundy {
	color: #9e2533;
}
.yellow {
	color: #ffca03;
}
.orange {
	color: #db8327;
}
.green {
	color : #173323;
}
.purple {
	color : #663399;
}
.red, a.red, a.red:visited {
	color : #CC0000;
}
a.red:hover {
	color : #173323;
}
.white, a.white, h4.white,  a:link h4.white, a h4.white, h5.white,  a:link h5.white, a h5.white, h6.white,  a:link h6.white, a h6.white {
	color : #FFF;
}
a.white:hover, a:hover h4.white, a:hover h5.white, a:hover h6.white {
	color : #BDE0FE;
}
.grey  {
	color : #777;
}
.lightgrey  {
	color : #ccc;
}
.small { font-size : 14px;}
.medium { font-size : 18px;}
.large { font-size : 22px;}
.extralarge { font-size : 28px;}
.message-error {
	color:#C00;
	font-size:14px;
}


/* ================================ VIDEO ======================= */

.video-container {
	position:relative;
	padding-bottom: 56.25%;
	overflow:hidden;
}
.video-container iframe, .video-container object, .video-container embed {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
}

/* =============================== BUTTON ================================ */

a.button, button.button {
	border-radius: 5px;
	border:0;
	color: #fff;
	display: inline-block;
    font-size: 18px;
    margin: 20px 0;
    padding: 15px 23px;
	text-align: center;
	background-color: #3d5749;
	line-height: 1;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}


a.buttonmid, button.buttonmid {
    border-radius: 4px;
	border:0;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	margin: 3px 0;
	padding: 8px 13px;
	text-align: center;
	background-color: #3d5749;
	line-height: 1;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

a.buttonsmall, button.buttonsmall   {
	border-radius: 3px;
	border:0;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	margin: 3px 0;
	padding: 7px 9px;
	text-align: center;
	background-color: #3d5749;
	line-height: 1;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
a.button.white, button.button.white, a.buttonsmall.white, button.buttonsmall.white {
	color: #333;
	background: #fff;
	background-color: #fff;
}
a.button.grey, button.button.grey, a.buttonsmall.grey, button.buttonsmall.grey {
	background: #b4b4b4;
	background-color: #b4b4b4;
}
a.button.darkgrey, button.button.darkgrey, a.buttonsmall.darkgrey, button.buttonsmall.darkgrey {
	background: #555;
	background-color: #555;
}
a.button.lightblue, button.button.lightblue, a.buttonsmall.lightblue, button.buttonsmall.lightblue {
	background: #9fcceb;
	background-color: #9fcceb;
}
a.button.green, button.button.green, a.buttonsmall.green, button.buttonsmall.green {
	background: #97BA24;
	background-color: #97BA24;
}
a.button.yellow, button.button.yellow, a.buttonsmall.yellow, button.buttonsmall.yellow, #social li a.buttonsmall.yellow {
	color: #FFF;
	background: #ffca03;
	background-color: #ffca03;
}
#social li a.buttonsmall.yellow {
    margin: 0;
}
a.button.red, button.button.red, a.buttonsmall.red, button.buttonsmall.red {
	color: #fff;
	background: #990000;
	background-color: #990000;
}

a.button:hover, a.buttonsmall:hover, button.button:hover, button.buttonsmall:hover, a.buttonmid:hover, button.buttonmid:hover, 
a.button.white:hover, button.button.white:hover, a.buttonsmall.white:hover, button.buttonsmall.white:hover,
a.button.grey:hover, button.button.grey:hover, a.buttonsmall.grey:hover, button.buttonsmall.grey:hover,
a.button.lightblue:hover, button.button.lightblue:hover, a.buttonsmall.lightblue:hover, button.buttonsmall.lightblue:hover,
a.button.yellow:hover, button.button.yellow:hover, a.buttonsmall.yellow:hover, button.buttonsmall.yellow:hover,
a.button.red:hover, button.button.red:hover, a.buttonsmall.red:hover, button.buttonsmall.red:hover,
a.button.darkgrey:hover, button.button.darkgrey:hover, a.buttonsmall.darkgrey:hover, button.buttonsmall.darkgrey:hover,
a.button.green:hover, button.button.green:hover, a.buttonsmall.green:hover, button.buttonsmall.green:hover
{
	color: #fff;
	background: #ffca03;
	background-color: #ffca03;
}
a.button.yellow:hover, button.button.yellow:hover, a.buttonsmall.yellow:hover, button.buttonsmall.yellow:hover, #social li a.buttonsmall.yellow:hover {
	color: #555;
	background: #aeb7a7;
	background-color: #aeb7a7;
}


#footer a.button {
	border-radius: 3px;
	border: none;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	margin: 10px 0;
	padding: 7px 32px;
	text-align: center;
	background-color: #3d5749;
}
#footer a.button:hover {
	background-color: #ffca03;
}

#emailsignupbutton:hover .lightgrey {
	color:#333;
}


/* ===================================== NAV =====================================*/
nav#navbar {
	display: inline-block;
	width: 258px;
}
nav#navbar * {
	list-style-type: none;
}
nav#navbar ul li {
	display: block;
	height: auto;
	width: inherit;
	overflow: hidden;
	/* background: #cad5e1; */
	border-bottom: solid 1px #FFF;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	text-shadow: 0px 1px 1px #fff;
}
nav#navbar ul li:last-child {
	border-bottom: none;
}
nav#navbar ul li a, nav#navbar ul li a:visited {
	text-decoration: none;
	text-transform: uppercase;
	color: #216093;
	text-shadow: 0px 1px 1px #fff;
	display: block;
	padding: 10px;
	line-height: 1.5;
}
nav#navbar ul li.has-submenu {
	background: url(../png/sub-arrow.png) right 15px no-repeat !important;
}
nav#navbar ul li a:hover {
	color: #173323;
}
nav#navbar ul li ul {
	display: none;
	margin-left: -12px;
	/*margin-right: -12px;*/
	background: url(../page-not-found.html) repeat-x #e3e3e3;
}
nav#navbar ul li.active>ul {
    display: block;
}
nav#navbar ul li ul li {
	border-bottom: solid 1px #ccc;
	border-left: none;
	background: none;
	padding-left: 19px;
	font-size: 13px;
}
nav#navbar ul li ul li:first-child {
	background: url(../png/arrow.png) 20px 0px no-repeat;
}
nav#navbar ul li ul li:last-child {
	background: url(../page-not-found.html) repeat-x bottom;
}
nav#navbar ul li ul li a, nav#navbar ul li ul li a:visited {
	text-shadow: #FFF 0px 1px 1px;
}
nav#navbar ul li ul li a:hover {
	color: #173323;
}
nav#navbar ul li:hover ul {
	/*display: block;*/
}
nav#navbar ul li.active > a { color: #173323; }


/* ====================== FANCY TABLE ======================== */
table {
    /*border-collapse: collapse;
    margin-bottom: 3em;*/
    width: 100%;
    /*background: #fff;*/
}
table td, table th, .fancy td, .fancy th {
    padding: 0.65em .75em;
}
.fancy td.err {
	background-color: #aeb7a7;
	color: #fff;
	text-align: center;
	line-height: 1;
	}
.fancy th {
	background-color: #aeb7a7;
	 font-size : 18px;
	font-weight: 700;
	color: #FFF;
}
table th {
	background-color: #e2e2e2;
	font-weight: 700;
	color: #3d5749;
}

.fancy th a, .fancy th a:visited {
	color: #fff;
}
.fancy th a:hover, .fancy th a:active {
	color: #CFF;
}
/*.fancytable tbody th {
	background-color: #336699;
}*/
.fancy tr:nth-child(odd)  {
	background: rgba(0,0,0,0.02);
}
.fancy tr:nth-child(even) {
	background: rgba(0,0,0,0.04);
}
/*
table tr {
	background: rgba(255,255,255,0);
}
*/
/*
tbr:nth-ody tchild(2n-1) {
    background-color: #f2f2f2;
    transition: all .125s ease-in-out;
}
*/
.fancy tbody tr {
	border-bottom:1px dotted #ccc; /* added by K-J */
	background: rgba(235,245,251,0.15);
}
.fancy tbody tr:hover, .fancy tr:hover {
	background: rgba(0,0,0,0.07);
}
.fancy.no-hover tbody tr:hover {
  background-color: inherit;
}

.fancy.simple tr:nth-child(odd) {
    background-color: #fff;
}
.fancy.simple tr:nth-child(even) {
    background-color: #fff;
}
.fancy.simple tbody tr {
	border-bottom:0;
	background: rgba(235,245,251,0.1);
}
.fancy.simple tbody tr:hover {
	background: rgba(235,245,251,0.5);
}



.fancy p, table p { margin-top:0;}
.fancy, table { font-size : 15px;}
.fancy.small, table .small { font-size : 13px;}
.fancy.tiny, table .tiny { font-size : 9px;}

.fancy.center td {text-align: center;}

.form-errors {
    color: #FF0000;
}

/* ====================== SHOW HIDE ========================= */
.expandicon {
	padding:5px;
	float:right;
	margin: -40px 0 0 0;
	color:#FFF;
	font-size: 10px;
	text-align:center;
	background-color:#C00;
}
.expandicon:hover {
	background-color: #333;
}

.expand-title {
	cursor: pointer;
}
.expand-area {
	padding: 3px;
/*	background-color:#fcfcfc;*/
}

.expandicon.carrot {
	float: right;
	margin: -30px 0 0 0;
	width:30px;
	height:30px;
	text-decoration: none;
	color: #FFF;
	background: rgba(0, 0, 0, 0.3) url(../svg/arrow-down-white.svg) 50% 50% no-repeat;
	background-size: 50%;
	font-size: 30px;
	font-weight:300;
	padding: 6px 0 0 10px;
	line-height: 1;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}
.expandicon.carrot:hover {
	background: rgba(255, 202, 3, 1) url(../svg/arrow-down-white.svg) 50% 53% no-repeat;
	background-size: 50%;
}
/* ======================= Go To Top ====================== */
.go-top {
	position: fixed;
	bottom: 1.5em;
	right: 1em;
	width:32px;
	height:32px;
	text-decoration: none;
	color: #FFF;
	background: rgba(0, 0, 0, 0.3) url(../svg/arrow-up-white.svg) 50% 50% no-repeat;
	background-size: 50%;
	font-size: 32px;
	padding: 6px 0 0 9px;
	line-height: 1;
	display: none;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	    z-index: 5;
}
a.go-top {
	color: #FFF;
}

.go-top:hover {
	background-color: rgba(0, 0, 0, 0.6);
}


/* ----------------- CIRCLES ---------------------- */
.circle-200 {
	width: 200px;
	height: 200px;
	/*border:4px solid #099;*/
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
    -ms-border-radius: 100px;
	 -o-border-radius: 100px;
	border-radius: 100px;
	background-size: cover;
}
.circle-150 {
	width: 150px;
	height: 150px;
	overflow:hidden;
	/*border:3px solid #09C;*/
	-webkit-border-radius: 75px;
	-moz-border-radius: 75px;
    -ms-border-radius: 75px;
	 -o-border-radius: 75px;
	border-radius: 75px;
	background-size: cover;
}
.circle-200 img, .circle-150 img {
	width: 100%;
	height: auto;
}
.fltleft, .circle-200.floatleft, .circle-150.floatleft {
	float:left;
	margin:0 20px 20px 0;
}
.fltright, .circle-200.floatright, .circle-150.floatright {
	float:right;
	margin:0 0 20px 20px;
}
	
	
/* ::::::::::::::::::::::::::::::::::::::: BOXES ::::::::::::::::::::::::::::::::::::::: */

.box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-3-4, .box-1-5, .box-1-6,
.box-1, .box-1of3, .box-1of2, .box-2of3, .box-1of4, .box-3of4, .box-1of5, .box-1of6 
{ float:left; margin-top: 10px; margin-bottom: 10px; margin-left:1%; margin-right:1%; padding:15px 20px; position:relative;}

.box-1 { width: 100%; margin-left:0; margin-right:0; float: none; display:block; clear:both; } 

.box-1-3, .box-1of3 { width: 31%; float:left;}
.box-1-3.nomargin, .box-1of3.nomargin { width: 33%; float:left; }
.box-1-3.noresize, .box-1of3.noresize { width: 31%; float:left; }

.box-1-2, .box-1of2 { width: 47.8%; float:left; }
.box-1-2.nomargin, .box-1of2.nomargin { width: 49.8%; float:left; }

.box-2-3, .box-2of3 { width: 64%; float:left; } 
.box-2-3.nomargin, .box-2of3.nomargin { width: 66.9%; float:left; } 
.box-2-3.noresize, .box-2of3.noresize { width: 64%; float:left; }

.box-1-4, .box-1of4 { width: 22.9%; float:left; } 
.box-1-4.nomargin, .box-1of4.nomargin { width: 24.9%; float:left; } 

.box-3-4, .box-3of4 { width: 73.8%; float:left; } 
.box-3-4.nomargin, .box-3of4.nomargin { width: 74.9%; float:left; } 

.box-1-5, .box-1of5 { width: 17.9%; float:left; } 
.box-1-5.nomargin, .box-1of5.nomargin { width: 19.9%; float:left; } 

.box-1-6, .box-1of6 { width: 14.6%; float:left; } 
.box-1-6.nomargin, .box-1of6.nomargin { width: 16.5%; float:left; } 

.l { margin-left:0; }
.r { margin-right:0; }

.floatleft {float:left !important;}
.floatright {float:right !important;}
.floatnone {float:none !important;}

.nomargin { margin:0;}
.nopadding { padding:0;}

.special-padding { padding: 10px 20px 30px 20px; }
.special-padding-right {padding-right:30px}

.border { border: 1px solid var(--grey); }

.borderright {border-right:1px dotted  var(--grey);}
.borderleft {border-left:1px dotted  var(--grey);}
.borderbottom{border-bottom: 5px solid #aeb7a6;}

.box-1 h4, .box-1 h5, .box-1-3 h2, .box-1-3 h3, .box-1-3 h4, .box-1-3 h5, .box-1-2 h2, .box-1-2 h3, .box-1-2 h4, .box-1-2 h5, .box-2-3 h4, .box-2-3 h5,
.box-1of3 h2, .box-1of3 h3, .box-1of3 h4, .box-1of3 h5, .box-1of2 h2, .box-1of2 h3, .box-1of2 h4, .box-1of2 h5, .box-2of3 h4, .box-2of3 h5 { line-height:1.1; margin-top:10px; }

.box-1 p, .box-1-2 p, .box-1-3 p, .box-1-4 p, .box-1-5 p, .box-1-6 p,
.box-1of2 p, .box-1of3 p, .box-1of4 p, .box-1of5 p, .box-1of6 p { margin:0; padding:5px 0; }

.clearfloat, .clearfix { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.whitebox {
	background: #FFF;
	border:1px solid var(--grey);
}
.greybox {
	background-color: #efefef;
	border:1px solid var(--grey);
}
.shadow {
	-webkit-box-shadow: 0px 1px 5px rgba(0,0,0,0.09);
	-moz-box-shadow:    0px 1px 5px rgba(0,0,0,0.09);
	box-shadow:         0px 1px 5px rgba(0,0,0,0.09);
	border:1px solid #f2f2f2;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.shadow:hover {
	-webkit-box-shadow: 0px 2px 11px rgba(0,0,0,0.28);
	-moz-box-shadow:    0px 2px 11px rgba(0,0,0,0.28);
	box-shadow:         0px 2px 11px rgba(0,0,0,0.28);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.boxbackground {
/*	border:1px solid #F2F2F2;*/
	background: -moz-linear-gradient(top, rgba(250,250,250,0.4) 0%, rgba(233, 234, 232,0.9) 100%);
	background: -webkit-linear-gradient(top, rgba(250,250,250,0.4) 0%, rgba(233, 234, 232,0.9) 100%);
	background: linear-gradient(to bottom, rgba(250,250,250,0.4) 0%, rgba(233, 234, 232,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80f9f9f9', endColorstr='#e6f7f7f7',GradientType=0 );
}

.boxbar {
	width: 100%;
	margin: 30px 0 0 0;
	padding: 7px 0 10px 0;
	background-color: #f2f2f2;
	color: #069;
	text-shadow: 0 1px 0 rgba(255,255,255,0.8);
	font-size: 14px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
}
.boxbar a:link, .boxbar a:visited {
	color:#009900;
}
.boxbar:hover a, .boxbar:hover {
	color:#114C00;
	text-shadow:0 -1px 0 rgba(255,255,255,0.8);
}
.boxbar:hover {
	background-color: #E8F4F8;
	color: #114c00;
}
.gradientback {
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(242,242,242,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(242,242,242,1) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 50%, rgba(242,242,242,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f2f2f2",GradientType=1);
}

.pricebox {
	padding:20px 3px 30px !important;
	text-align:center;
	position: relative;
/*	background: #aeb7a7;*/
	background: linear-gradient(334deg, #42761a, #aeb7a7);
    background-size: 100% 100%;
}
.pricebox.bg-olive {background: #aeb7a7}
.pricebox.bg-green {background: #06593d;}
.pricebox:hover {
	padding:15px 3px 35px  !important;
	
/*    background: linear-gradient(358deg, #25275a, #cccce6, #25275a, #484ca7);*/
		background: linear-gradient(334deg, #42761a, #c5e170, #aeb7a7);
	    background-size: 800% 800%;

    -webkit-animation: AnimationName 4s ease infinite;
    -moz-animation: AnimationName 4s ease infinite;
    animation: AnimationName 4s ease infinite;
}
.pricebox h2, .pricebox h3, .pricebox h4, .pricebox h5, .pricebox h6, .pricebox p {
	color:#fff;
}

.pricebox h1 a:link:after, .pricebox h1 a:visited:after, .pricebox h2 a:link:after, .pricebox h2 a:visited:after,
.pricebox h3 a:link:after, .pricebox h3 a:visited:after, .pricebox h4 a:link:after, .pricebox h4 a:visited:after,
.pricebox h5 a:link:after, .pricebox h5 a:visited:after, .pricebox h6 a:link:after, .pricebox h6 a:visited:after {
	background-image: none;
	background-size: 0;
	content: "";
	width:0;
	height:0;
	margin: 0;
}

.pricebox hr{
	margin:0 auto;
	width:80%;
	border-top: 2px solid #e5eda7;
	height: 2px;
}
.pricebox a:link, .pricebox a:visited, .pricebox a {
	color: #FFF;
	width:100%;
	height:100%;
}
.pricebox:hover a:link, .pricebox:hover a {
	color: #FFD600;
}
.pricebox-link, .pricebox-link a {
	position: absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	color: #FFF;
	font-size: 4rem;
    line-height: 3;
}
.pricebo hr{
	border: none 0;
	border-top: 3px solid #FFF;
	height: 3px;
	margin: 10px auto;
	padding: 0;
	width:60%;
	text-decoration: none;
}

@-webkit-keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
@keyframes AnimationName {
    0%{background-position:49% 0%}
    50%{background-position:52% 100%}
    100%{background-position:49% 0%}
}
	

/* ========= For Event Posts ======== */

.logobox {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
	-moz-box-shadow:    0px 0px 5px rgba(0,0,0,0.2);
	box-shadow:         0px 0px 5px rgba(0,0,0,0.2);
	border: 1px solid #eaeaea;
	padding: 0;
	min-width:110px;
	min-height: 200px;
/*	height:130px;*/
	text-align: center;
	display:table-cell;
	vertical-align:middle;
	position: relative;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.logobox:hover {
	-webkit-box-shadow: 0px 2px 11px rgba(0,0,0,0.35);
	-moz-box-shadow:    0px 2px 11px rgba(0,0,0,0.35);
	box-shadow:         0px 2px 11px rgba(0,0,0,0.35);
	
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.logobox img, .content .logobox img { 
	width: auto !important;
	max-width: 90%; 
	height:auto;  
	max-height: 160px !important; 
	position: absolute;  
    top: 10%;   
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
}
.logobox img:hover  { 
	max-width: 92%; 
	max-height: 162px !important; 
}
/*
.level-1.logobox img { 
	max-width: 350px; 
	max-height: 150px !important; 
}
.level-1.logobox img:hover  { 
	max-width: 352px; 
	max-height: 152px !important; 
}
.level-2.logobox img { 
	max-width: 330px; 
	max-height: 140px !important; 
}
.level-2.logobox img:hover  { 
	max-width: 332px; 
	max-height: 142px !important; 
}
.level-3.logobox img { 
	max-width: 300px; 
	max-height: 130px !important; 
}
.level-3.logobox img:hover  { 
	max-width: 302px; 
	max-height: 132px !important; 
}
*/

.box-1.logobox, .box-1.logobox:hover {
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
	border:0;
}
.box-1-2.logobox img, .box-1-4.logobox img, .content .box-1-2.logobox img, .content .box-1-4.logobox img { 
	max-width: 60%; 
	max-height: 130px !important; 
}
.box-1-2.logobox img:hover, .box-1-4.logobox img:hover, .content .box-1-2.logobox img:hover, .content .box-1-4.logobox img:hover  { 
	max-width: 61%; 
	max-height: 132px !important; 
}
.box-1-3.logobox img, .box-1-4.logobox img, .content .box-1-3.logobox img, .content .box-1-4.logobox img { 
	max-width: 60%; 
	max-height: 120px !important; 
}
.box-1-3.logobox img:hover, .box-1-4.logobox img:hover, .content .box-1-3.logobox img:hover, .content .box-1-4.logobox img:hover  { 
	max-width: 62%; 
	max-height: 122px !important; 
}
.logobox h4, .logobox h5, .logobox h6, .logobox p, .content .logobox h4, .content .logobox h5, .content .logobox h6, .content .logobox p { 
	font-size: 1.1rem;
	position: absolute;  
    top: 2%;  
/*    bottom: 0;  */
    left: 0;  
    right: 0;  
    margin: auto;
	color: #999;
}

.logobox h4:nth-child(2), .logobox h5:nth-child(2), .logobox h6:nth-child(2), .logobox p:nth-child(2),
.content .logobox h4:nth-child(2), .content .logobox h5:nth-child(2), .content .logobox h6:nth-child(2), .content .logobox p:nth-child(2) {
	position: absolute;
    top: 13%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.logobox p img, .content .logobox p img { 
    top: 0;   
}



.exhibitor {border: 1px solid #ccc;}
.exhibitor img {
	width: auto !important;
	max-width: 90%; 
	height:auto;  
	max-height: 66%; 
	margin: 3px 0 0 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.exhibitor img:hover {
	margin: 0 0 3px 0;
}
.exhibitor.visited {border: 1px solid #9dd3f9; background-image: url(../png/badge.png); background-position: 97% 100%; background-repeat: no-repeat}


.hotbox h4, .hotbox h4 a, .hotbox h5, .hotbox h5 a {
	font-size: 28px;
}
.hotbox:hover h4, .hotbox:hover h4 a, .hotbox:hover h5, .hotbox:hover h5 a {
	color: #37AAE8;
}

.imagebox {
	background-color: #001F4B;
	color:#fff;
	text-align: center;
	display:table-cell;
	vertical-align:middle;
	position: relative;
	min-height: 180px;
	overflow: hidden;
}

.imagebox img {
	width:  100%; 
	height: 100%; 
	position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
	opacity: .55;
	z-index:1;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.imagebox:hover img {
	opacity: .3;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.imagebox h4, .imagebox h4 a, .imagebox h5, .imagebox h5 a {
	color:#FFF;
	font-size: 28px;
	position: absolute;  
	top:25%;
	width: 100%;
	text-align: center;
	z-index:2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.imagebox:hover h4, .imagebox:hover h4 a, .imagebox:hover h5, .imagebox:hover h5 a {
	color: #aeb7a7;
	top:23%;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.imagebox p, .imagebox p a {
	color:#FFF;
	font-size: 20px;
	position: absolute;  
	bottom:15%;
	opacity: 0;
	visibility: hidden;
	width: 100%;
	text-align: center;
	z-index:2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.imagebox:hover p, .imagebox:hover p a {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}


/* ========= IMAGE EFFECTS START ============= */
.image-jump {  
    padding-top:5px;
	padding-bottom:0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.image-jump:hover {  
   padding-top:0;
	padding-bottom:5px;
}

/* Flashing */
img.flashing:hover  {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}


/* --------------------------------------- FLIP CARDS START ----------------------------------------- */
.btn:hover,
.btn:focus,
.btn:active{
    outline: 0 !important;
}
/* entire container, keeps perspective */
.card-container {
	-webkit-perspective: 800px;
	-moz-perspective: 800px;
	-o-perspective: 800px;
	perspective: 800px;
    width: 31.2%;
    float: left;
    /* display: block; */
    height: 320px;
    margin: 5px 1%  20px 1%;
}
.card-container.logobiobox {
	-webkit-perspective: 800px;
	-moz-perspective: 800px;
	-o-perspective: 800px;
	perspective: 800px;
    width: 31.2%;
    float: left;
    /* display: block; */
    height: 370px;
    margin: 10px 1%;
}
/* flip the pane when hovered */
	.card-container:not(.manual-flip):hover .card,
	.card-container.hover.manual-flip .card{
	-webkit-transform: rotateY( 180deg );
	-moz-transform: rotateY( 180deg );
	-o-transform: rotateY( 180deg );
	transform: rotateY( 180deg );
	}


	.card-container.static:hover .card,
	.card-container.static.hover .card {
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
}
/* flip speed goes here */
.card {
	-webkit-transition: -webkit-transform .5s;
	-moz-transition: -moz-transform .5s;
	-o-transition: -o-transform .5s;
	transition: transform .5s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: relative;
	    width: 100%;
    height: 100%;
}

/* hide back of pane during swap */
.front, .back {
	-webkit-backface-visibility: hidden;
   -moz-backface-visibility: hidden;
     -o-backface-visibility: hidden;
        backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFF;
    box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.2);
	width:100%;
	height: 100%;
}
.front.noshadow, .back.noshadow {
    box-shadow: none;
}
.front:hover, .back:hover {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

/* front pane, placed above back */
.front {
	z-index: 2;
}

/* back, initially hidden pane */
.back {
	overflow: hidden;
	-webkit-transform: rotateY( 180deg );
	-moz-transform: rotateY( 180deg );
	-o-transform: rotateY( 180deg );
	transform: rotateY( 180deg );
	z-index: 3;
}

/*        CARD Style       */
.card{
    border-radius: 4px;
    color: #444444;
}

.card .cover {
    height: 200px;
    overflow: hidden;
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 41%, rgba(86, 131, 179,1) 100%);
}
.card .cover.nobackground {
	background: 0;
}
.card .speaker{
    border-radius: 50%;
    display: block;
    width: 150px;
   height: 150px;
    margin: -180px auto 0;
    overflow: hidden;
    border: 4px solid #FFFFFF;
	background-color: #F2f2f2;
}
.card .speaker img{
    background: none repeat scroll 0 0 #FFFFFF;
    width: 100%;
}

.card .logo {
    padding: 0;
	height:200px;
	width:100%;
	text-align: center;
/*	display:table-cell;display:table-cell;*/
	vertical-align:middle;
	position: relative;
	min-height: 100px;
	background-color: #fff;
}
.card .logo img {
    width: auto !important;
	max-width: 90%; 
/*	min-width: 200px;*/
	height:auto;  
	max-height: 66%; 
	position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
}

.card hr {
	border: none 0;
	border-top: 2px solid #ccc;
	height: 2px;
	margin: 10px auto;
	padding: 0;
	width:72%;
	text-decoration: none;
}
.card .contentarea{
    box-shadow: none;
    padding: 10px;
	margin:0;
}
.card .contentarea .main {
/*    height: 120px;*/
	overflow: hidden;
}
.card .back .contentarea .main {
/*  height: 280px;*/
	height: 100%;
    overflow: auto;
    position: absolute;
	padding-bottom: 70px;
}

.card .name {
    font-size: 22px;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}
.card .profession{
    color: #69405c;
    font-size: 15px;
    text-align: center;
    margin: 0 0 20px 3px;
}
.card p {
    color: #a0b7c6;
    text-align: center;
	margin:9px 0;
}
.card .back p {
    color: #444444;
    text-align: left;
	margin:5px 0;
}

.card .cardfooter {
/*
    border-top: 1px solid #EEEEEE;
*/
	background-color: #FFF;
    color: #999999;
    margin: 0;
    padding: 20px 0;
    text-align: center;
	font-size: 14px;
	position: absolute;
	bottom:0;
	width:100%;
    height: 60px;
}
.card .cardfooter .btn-simple{
    margin: 0 auto 10px auto;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.card .cardheader {
    padding: 15px 20px;
    height: 90px;
}

/*      Just for presentation        */
.btn-simple{
	padding:10px 15px;
    color: #3B8BBE;
    background-color: #f2f2f2;
	cursor: pointer;
	border:1px solid #ccc;
	border-radius: 20px;
}

.btn-simple:hover,
.btn-simple:focus{
    box-shadow: none;
	background-color: #0099CC;
	border:1px solid #0099CC;
	color:#fff;
}
.btn-simple i{
    font-size: 16px;
}

/*       Fix bug for IE      */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .front, .back{
        -ms-backface-visibility: visible;
        backface-visibility: visible;
    }

    .back {
        visibility: hidden;
        -ms-transition: all 0.2s cubic-bezier(.92,.01,.83,.67);
    }
    .front{
        z-index: 4;
    }
    .card-container:not(.manual-flip):hover .back,
    .card-container.manual-flip.hover .back{
        z-index: 5;
        visibility: visible;
    }
}
/* --------------------------------------- FLIP CARDS END ----------------------------------------- */


/* ========= IMAGE EFFECTS START ============= */

.control-group  { display: flex;}
.control-group .controls { flex: 1; }
.control-group .controls input, .control-group .controls textarea { flex: 1;}

.height100, .height-100 { height:100px; overflow:hidden }
.height150, .height-150 { height:150px; overflow:hidden }
.height180, .height-180 { height:180px; overflow:hidden }
.height200, .height-200 { height:200px; overflow:hidden }
.height225, .height-225 { height:225px; overflow:hidden }
.height250, .height-250 { height:250px; overflow:hidden }
.height275, .height-275 { height:275px; overflow:hidden }
.height300, .height-300 { height:300px; overflow:hidden }
.height350, .height-350 { height:350px; overflow:hidden }
.height400, .height-400 { height:400px; overflow:hidden }
.height450, .height-450 { height:450px; overflow:hidden }
.height500, .height-500 { height:500px; overflow:hidden }
.height600, .height-600 { height:600px; overflow:hidden }
.height700, .height-700 { height:700px; overflow:hidden }


.content.fullwidth.taupe-back {
	padding:0;
	position: relative;
	line-height: 1.4;
    min-height: 350px;
    overflow: hidden;
	background-color: #e7e9e4;
}
.content.fullwidth.taupe-back a:link, .content.fullwidth.taupe-back a:visited  {
	color:#7c8474;
}
.content.fullwidth.taupe-back a:hover  {
	color:#fff;
}

.darktaupe-back  {
	background-color: #aeb7a7;
	color:#333;
	font-size: 18px;
}
.darktaupe-back a:link, .darktaupe-back a:visited  {
	color:#fff;
}
.darktaupe-back a:hover  {
	color:#000000;
}


.content.fullwidth.taupe-back h2, .content.fullwidth.taupe-back h3 { color: #1d422d; font-size: 44px; font-weight: 700; }

.content.fullwidth.taupe-back h4, .content.fullwidth.taupe-back h5, .content.fullwidth.taupe-back h6,
.content.fullwidth.taupe-back h4 a:link, .content.fullwidth.taupe-back h5 a:link, .content.fullwidth.taupe-back h6 a:link,
.content.fullwidth.taupe-back h4 a:visited, .content.fullwidth.taupe-back h5 a:visited, .content.fullwidth.taupe-back h6 a:visited {
	margin:0;
	font-size: 24px;
	font-weight: 400;
	color:#1d422d;
}

.content.fullwidth.taupe-back h4:hover, .content.fullwidth.taupe-back h5:hover, .content.fullwidth.taupe-back h6:hover,
.content.fullwidth.taupe-back h4 a:hover, .content.fullwidth.taupe-back h5 a:hover, .content.fullwidth.taupe-back h6 a:hover {
	color:#848484;
}

.content.fullwidth.taupe-back .darktaupe-back {
	line-height: 1.4;
}
.content.fullwidth.taupe-back .darktaupe-back h2, .content.fullwidth.taupe-back .darktaupe-back h3 { color: #FFF; font-size: 44px; font-weight: 700;  }

.content.fullwidth.taupe-back .darktaupe-back h4, .content.fullwidth.taupe-back .darktaupe-back h5, .content.fullwidth.taupe-back .darktaupe-back h6,
.content.fullwidth.taupe-back .darktaupe-back h4 a:link, .content.fullwidth.taupe-back .darktaupe-back h5 a:link, .content.fullwidth.taupe-back .darktaupe-back h6 a:link,
.content.fullwidth.taupe-back .darktaupe-back h4 a:visited, .content.fullwidth.taupe-back .darktaupe-back h5 a:visited, .content.fullwidth.taupe-back .darktaupe-back h6 a:visited {
	margin:20px 0 0 0;
	font-size: 22px;
	font-weight: 700;
	color:#fff;
}

.content.fullwidth.taupe-back .darktaupe-back h4 a:hover, .content.fullwidth.taupe-back .darktaupe-back h5 a:hover, .content.fullwidth.taupe-back .darktaupe-back h6 a:hover,
.content.fullwidth.taupe-back .darktaupe-back a h4:hover, .content.fullwidth.taupe-back .darktaupe-back a h5:hover, .content.fullwidth.taupe-back .darktaupe-back a h6:hover{
	color:#333;
}
/*
.content.fullwidth.taupe-back .darktaupe-back p {
	margin:5px 0 0 0;
}
*/

.taupe-back a.button, .darktaupe-back a.button {
	z-index:5555;
	font-size: 14px;
	margin: 0 auto;
	padding: 5px 9px;
	color: #333;
	background:rgba(174, 183, 167,0.1);
	border-radius: 3px;
	border:2px solid #aeb7a7;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.darktaupe-back a:link.button.white, .darktaupe-back a:visited.button.white {
/*	padding: 7px 11px;*/
	color: #333;
	background:#fff;
	border:0;

/*
	position: absolute;
	bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
*/
}
.darktaupe-back a:link.button.white:hover {
	color: #fff;
	background:#ffca03;
}

.taupe-back a.button:hover, .darktaupe-back a.button:hover {
	color: #FFF;
	background:rgba(174, 183, 167,1);
}

.taupe-back a.white:hover, .darktaupe-back a.white:hover, .darktaupe-back a:hover.button.white {
	color : #FFF;
	background:#ffca03;
}

.home-button {
	position: absolute;
	top:20px;
	right:0;
}

.button-top-right {
	position: absolute;
	top:35px;
	right:15px;
    z-index: 2;
}


/* =================== QUOTE SECTION ================= */
.quotesection {
  min-height: 550px;
  margin:0;
  padding:80px 0 20px 0;
  overflow:auto;
  background-image: url("../jpg/quotesection-pic.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.quotesection p, .quotesection {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	line-height: 1.8;
}
.quotesection h1, .quotesection h2, .quotesection h3, .quotesection h4, .quotesection h5, .quotesection h6 {
	font-size: 44px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0px;
	line-height: 1.2;
}


/* =================== Modern FANCYBOX ================= */
.fancybox-slide--iframe .fancybox-content {
    width  : 800px;
    height : 600px;
    max-width  : 80%;
    max-height : 80%;
    margin: 0;
}

/* =================== Search Title toggle ================= */
.active, .news-search:hover {
  color: #727272;
}

.news-search:after {
  content: '\002B';
  color: #727272;
  font-weight: bold;
/*  float: right;*/
  margin-left: 10px;
}

.news-search.active:after {
  content: "\2212";
}

/* =================== Flex container ================= */
.flex-container {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;  /* create a flex layout context */
	padding: 0;
	margin: 0;
	list-style: none;
	-webkit-flex-flow: row wrap;
	justify-content: center;
	flex-wrap: wrap;
}

.flex-item {
	align-items:stretch;
}
/* ================== END  Flex container =============== */



/* :::::::::::::::::::::::::::::::::::::::::: DATE as CALENDAR ::::::::::::::::::::::::::::::: */

.calendar h4 {  margin-top: -20px;}

.date-as-calendar {
  font-variant: normal;
  font-style: normal;
  font-weight: normal;
  font-family: 'Lato', sans-serif;

  /* It seems vertical-align: baseline does not work correctly with display: inline-flex. */
  vertical-align: top;

  /* margin: 1ex; */

  color: #333;
  background: white;
  background : linear-gradient(to bottom right, #FFF 0%, #EEE 100%);

  border: 1px solid #fefefe;
  border-radius: 5px;
  overflow: hidden;

  /*box-shadow: 2px 2px 2px -2px black;*/
	
	float:left;
	margin:10px 20px 0 0;
	clear: both;
}
.date-as-calendar .weekday,
.date-as-calendar .day,
.date-as-calendar .month,
.date-as-calendar .year {
  text-align: center;
  line-height: 1.0;
}
.date-as-calendar .month {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	background-color: #3d5749;
	color: #FFFFFF;
}
.date-as-calendar .year {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	color: #3d5749;
}


/*  :::: CALENDAR ::::  Layout rules using position: absolute and pixels. */
.position-pixels.date-as-calendar {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.position-pixels.date-as-calendar .weekday,
.position-pixels.date-as-calendar .day,
.position-pixels.date-as-calendar .month,
.position-pixels.date-as-calendar .year {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1em;
}
.position-pixels.date-as-calendar .month {
  top: 0px;
  font-size: 12px;
  padding: 2px 0;
}
.position-pixels.date-as-calendar .weekday {
  top: 16px;
  font-size: 10px;
}
.position-pixels.date-as-calendar .day {
  top: 26px;
  font-size: 24px;
}
.position-pixels.date-as-calendar .year {
  top: 50px;
  font-size: 14px;
}

/*  :::: CALENDAR ::::  Layout rules using position: absolute and relative dimensions using em. */
.position-em.date-as-calendar {
  display: inline-block;
  position: relative;
  
  width: 4.2em; 
  height: 4em; 
}
.position-em.date-as-calendar .weekday,
.position-em.date-as-calendar .day,
.position-em.date-as-calendar .month,
.position-em.date-as-calendar .year {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1em;
}
.position-em.date-as-calendar .month {
  top: 0px;
  font-size: 0.65em;
  padding: 0.3em 0 1em 0;
}
.position-em.date-as-calendar .weekday {
  top: 1.6em;
  font-size: 0.6125em;
}
.position-em.date-as-calendar .day {
  top: 1.1em;
  font-size: 1.5em;
 font-weight:700;
}
.position-em.date-as-calendar .year {
  bottom: 0px;
  font-size: 0.87750em;
}

/* :::: CALENDAR :::: Multiple sizes. */
.date-as-calendar.size0_5x {
  font-size: 8px;
}
.date-as-calendar.size0_75x {
	font-size: 12px;
	margin:2px 10px 5px 0;
}
.date-as-calendar.size1x {
  font-size: 16px;
}
.date-as-calendar.size1_25x {
  font-size: 20px;
}
.date-as-calendar.size1_5x {
  font-size: 24px;
}

/* ======================== LOGIN FORMS ======================== */
.login {
  border-radius: 2px 2px 5px 5px;
  margin:20px auto;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 640px;
  background: #f2f2f2;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
.login.loading button {
  max-height: 100%;
  padding-top: 50px;
}
.login.loading button .spinner {
  opacity: 1;
  top: 40%;
}
.login.ok button {
  background-color: #8bc34a;
}
.login.ok button .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}
.login input {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
}
.login input + i.login-icon {
  color: #fff;
  position: absolute;
  margin-top: -47px;
  opacity: 0;
  left: 0;
  transition: all 0.1s ease-in;
}
.login input:focus {
  outline: none;
  color: #444;
  border-color: rgba(0, 85, 165, 0.85);
  border-left-width: 35px;
}
.login input:focus + i.login-icon {
  opacity: 1;
  left: 23px;
  transition: all 0.25s ease-out;
}
.login a {
  font-size: 0.9em;
  color: rgba(20, 80, 244, 0.85);
  text-decoration: none;
}
.login a:hover {
  color: rgba(20, 180, 255, 0.95);
}
.login .title {
  color: #444;
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 20px 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.login button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: rgba(0, 85, 165, 0.85);
  color: #fff;
  display: block;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 7px;
	font-size: 132%;
}
.login button .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.login:not(.loading) button:hover {
  box-shadow: 0px 1px 3px rgba(61, 102, 150, 0.85);
}
.login:not(.loading) button:focus {
  border-bottom-width: 4px;
}
.login-icon.user {
	background: url(../svg/login-icon-user.svg);
	width:28px;
	height:28px;
}
.login-icon.key {	
	background: url(../svg/login-icon-key.svg);
	width:28px;
	height:28px;
}

::-webkit-input-placeholder { /* Chrome, Safari */
   color: #bbb;
   font-size: 14px;
}

:-moz-placeholder {           /* Firefox 18- */
   color: #bbb;
   font-size: 14px;
}

::-moz-placeholder {          /* Firefox 19+ */
  color: #bbb;
  font-size: 14px;
}

:-ms-input-placeholder {      /* Internet Explorer */
  color: #bbb;
  font-size: 14px;
}


/* ============================= BURGER ============================ */
.nav-icon {
  display: block;
  /*position: absolute;
	  top: 50px;
  left: 40px;*/
  width: 30px;
  height: 25px;

  cursor: pointer;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
	z-index: 1;
}
.nav-icon.open .burger {
  background: none;
}
.nav-icon.open .burger:before, .nav-icon.open .burger:after {
  top: 0;
}
.nav-icon.open .burger:before {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-icon.open .burger:after {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-icon:hover:not(.open) .burger:before {
  top: -11px;
}
.nav-icon:hover:not(.open) .burger:after {
  top: 11px;
}

.burger, .burger:before, .burger:after {
  width: 25px;
  height: 4px;
	left:0;
  background: rgba(255,255,255,0.9);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.burger {
  position: relative;
  margin: 11px auto 0;
}
.burger:before, .burger:after {
  content: "";
  position: absolute;
}
.burger:before {
  top: -9px;
}
.burger:after {
  top: 9px;
}



/* ========== FORM ELEMENTS ==========  */
.styled-select {
	margin:10px auto;
   background: url(../page-not-found.html) no-repeat 96% 0;
   height: 34px;
   overflow: hidden;
   width: 250px;
}

.styled-select select {
   border: 1px solid #ccc;
   font-size: 16px;
   height: 34px;
   width: 250px;
}


select {width:60%; font-size: 1.13em;}
label input {width:25px;}
input {width:60%; font-size: 1.13em; line-height: 1.6;}
input[type="radio"] { width: 5%; }
input[type='checkbox'] {width:30px; }
input[type='button'] {width:220px; background: #688722; color:#fff; border: 0;}
input[type='button']:hover {background: #91A41B; color:#fff; border: 0;}
input[type="submit"] {width:100%;}


/* ::::::::::::: START  DIALOGUE TOOL TIP :::::::::::::::: */

.fancytip {display: none;}

.ui-widget-header {
	border: 0 !important; 
    background: none !important;
}


/* ::::::::::::::: PRINTBLE AREA :::::::::::::::: */
@media print {
	  body * {
		visibility: hidden;
	  }
	#noPrint, #banner, #header, #subnav, #subnav *, #footer {display:none;}
	  #printArea, #printArea * {
		visibility: visible;
	  }
	  #printArea {
		position: absolute;
		left: 0;
		top: 0;
	  }
	#printArea.box-2-3 {width:100%}
}


/* ===================== LIST SUB PAGES ============================ */
#listsubpages {
	margin: 0;
    padding: 0;

	display: flex;

	-webkit-flex-flow: row wrap;
	justify-content: center;
	flex-wrap: wrap;
}

#listsubpages  li, #listsubpages li a {
	list-style: none;
/*	color:#fff;*/
}
/*
#listsubpages ul li a {
	display: none;
	color:#fff;
}
*/
#listsubpages  li  {
	float:left; margin-top: 15px; margin-bottom: 15px; margin-left:1%; margin-right:1%; padding:0; position:relative;  width: 31%; float:left;
	text-align: center; 	
	align-items:stretch;
		background-color: #f5f5f5;
	border:1px solid #ccc;
}

#listsubpages  li a {
	color: var(--grey);
	display: block;
	width: 100%;
	height: 100%;
    font-size: 1.5rem;
	padding: 40px 10px;
/*
	border-radius: 3px;
	border:0;
    padding: 15px 30px;
	text-align: center;
	background-color: #5d5277;
*/
	line-height: 1;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
#listsubpages  li a:link:after, #listsubpages  li a:after, #listsubpages  li a:visited:after {
	background-image: url(../svg/arrow-diagonal.svg);
	background-size: 12px 13px;
	content: "";
	width:12px;
	height:13px;
	margin: 0 4px 0 10px;
	display: inline-block;
	opacity: .2;
}

#listsubpages li a:hover, #listsubpages  li:hover
{
	color: #fff;
	background: var(--tertiary);
	background-color: var(--tertiary);
}



/* ||||||||||||| MOBILE MENUBAR START ||||||||||||| */
	#menubar {
	padding: 0;
	width: 100%;
	height: 41px;
	position: fixed;
	top: 0;
	z-index: 9999;
	box-shadow: 0 1px 7px rgba(0,0,0,0.4);
	background: rgb(3,48,31);
	background: -moz-linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	background: -webkit-linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	background: linear-gradient(180deg, rgba(3,48,31,1) 16%, rgba(3,60,38,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#03301f",endColorstr="#033c26",GradientType=1)
	}

	#menubar ul {
		margin: 0 auto;
		padding: 0;
		display: inline-block;
	}
	#menubar li {
		list-style: none;
		display: block;
		padding: 12px 5px;
		float: left;
		white-space:nowrap;
	}
	#menubar li:first-child {
		padding-left:0;
	}
	#menubar li:last-child {
		padding-right:0;
	}
	#menubar li a {
		padding: 10px 0 0 0;
		color: #FFF;
		font-size: 13px;
		font-family: Verdana, Arial, sans-serif;
		text-decoration: none;
	}
	#menubar li a:hover {
		color: #ffca03;
	}
	#menubar li a:active {
		color: #ffca03;
	}
	.menucontainer {
		text-align: center;
		margin: 0 auto;
	}
/* ||||||||||||| MOBILE MENUBAR END ||||||||||||| */


/* ===================================== MOBILE NAV =====================================*/

	#menuhead {
		display: block;
		width: 97%;
		margin:0 auto;
		padding: 10px;
		background-color: #173323;
		color:#FFF;
		font-size:14px;
		text-align:left;
		min-width:300px;
	}
	
	nav#mobilenav {
		display: inline-block;
		width: 97%;
		margin:36px auto 0;
		text-align: left;
		min-width:300px;
	}
	nav#mobilenav * {
		list-style-type: none;
		margin:0;
		padding:0;
	}
	nav#mobilenav ul li {
		display: block;
		min-height: 32px;
		line-height: 32px;
		height: auto;
		width: inherit;
		overflow: hidden;
		background-color: #173323;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		font-family: 'Lato', sans-serif;
		font-size: 14px;
	}
	nav#mobilenav ul li:last-child {
		border-bottom: none;
	}
	nav#mobilenav ul li a, #mobilenav ul li a:visited {
		text-decoration: none;
		text-transform: uppercase;
		color: #FFF;
		display: block;
		padding-left: 12px;
		padding-right: 12px;
	}
	nav#mobilenav ul li.has-submenu {
		background: #173323 url(../png/sub-arrow.png) 280px 10px no-repeat;
	}
	nav#mobilenav ul li.has-submenu:hover {
		background: rgba(255,255,255,0.2) url(../png/sub-arrow.png) 280px 10px no-repeat;
	}	
	nav#mobilenav ul li>a:hover {
		color: #ffca03;
	}
	nav#mobilenav ul li ul {
		display: none;
		margin-left: -12px;
		margin-right: -12px;
		background: #173323 /*url(../images/shadow.png) repeat-x*/;
		-webkit-box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.4);
		-moz-box-shadow:    inset 0 10px 10px -10px rgba(0,0,0,0.4);
		box-shadow:         inset 0 10px 10px -10px rgba(0,0,0,0.4);
	}
	nav#mobilenav ul li.active>ul {
		display: block;
	}
	nav#mobilenav ul li ul li {
		border-bottom: solid 1px rgba(255,255,255,0.2);
		border-left: none;
		background: rgb(0 0 0 / 30%);
		padding-left: 20px;
		font-size: 12px;
	}
	nav#mobilenav ul li ul li:first-child {
		-webkit-box-shadow: inset 0px 10px 10px -10px rgba(0,0,0,0.4);
		-moz-box-shadow: 	inset 0px 10px 10px -10px rgba(0,0,0,0.4);
		box-shadow: 		inset 0px 10px 10px -10px rgba(0,0,0,0.4);
	}
	nav#mobilenav ul li ul li:last-child {
		-webkit-box-shadow: inset 0 -10px 10px -10px rgba(0,0,0,0.4);
		-moz-box-shadow:    inset 0 -10px 10px -10px rgba(0,0,0,0.4);
		box-shadow:         inset 0 -10px 10px -10px rgba(0,0,0,0.4);
	}
	nav#mobilenav ul li ul li a:hover {
	color: #ffca03;
	}
	nav#mobilenav ul li:hover ul {
		/*display: block;*/
	}

	#fancybox-bio img {
		max-width: 800px;
		max-height: 600px;
	}


.fancybox-close.special-map {
  position: absolute;
    top: -1px !important;
    right: -2px !important;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8060;
}

.fancybox-wrap, .fancybox-wrap * {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
}

.field-label-first {
  font-weight: bold;
  text-align:center;
  width:18%;
}

.field-label {
  font-weight: bold;
  text-align:center;
}

.letter-table {
  margin-bottom:15px;
}

.letter-table a, .letter-search {
  margin-right:10px;
  margin-left:10px;
  line-height: 33px;
}

.letter-table a:first-child, .letter-search-first {
  margin-right:20px;
  margin-left:10px;
}

.active-letter {
  background-color: #006699;
  padding: 5px;
  color: #FFF !important;
}

.contact-info-block {
  width:67%;
}

.fancybox-map {
  width:41px;
  height:40px;
  float:right;
  margin: -15px 0 15px 10px;
}



.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

#search-filters label {
  display: inline;
  font-size: 14px;
  margin-right: 7px;
}

#search-filters input[type='checkbox'] {
  display: inline;
}

/* ----------------------------
		PAGINATION
------------------------------ */


#pagination li          { border:0; margin:0; padding:0; font-size:11px; list-style:none; /* savers */ float:left; }
#pagination a           {
  border:1px solid #CCC;
  margin-right:2px;
  color: #00769D;
}
#pagination .previous-off,
#pagination .next-off   {
  border:solid 1px #DEDEDE;
  color:#888888;
  display:block;
  float:left;
  font-weight:bold;
  margin-right:2px;
  padding-top: 6px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 8px;
}
#pagination .next a,
#pagination .previous a { font-weight:bold; }
#pagination a:link,
#pagination a:visited   {
  color:#00769D;
  display:block;
  float:left;
  text-decoration:none;
  padding-top: 6px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 8px;
}
#pagination a:hover     { border:1px solid #00769D;}
#pagination a.active     {
  color:#FFFFFF;
  font-weight:bold;
  display:block;
  float:left; /* savers */
  margin-right:2px;
  background-color: #00769D;
  padding-top: 6px;
  padding-right: 8px;
  padding-bottom: 6px;
  padding-left: 8px;
}

/*Pagination Centered*/

#pagination-centered {
	text-align: center;
}
#pagination-centered * {
	padding: 8px 16px 8px 16px;
	border:1px solid var(--tertiary);
	color: black !important;
}

#pagination-centered a:hover, a.active { 
	background-color: var(--grey) !important;
	font-weight:bold;
}


/* ====================== Mailchimp popup override ======================== */

.mc-modal-bg {
    opacity: 0.6 !important;
}


#search-filters .buttonmid {
	margin-left: 8px;
}

span.highlight {
	font-weight:bold;
}


/* :::::::::::::::: PRINT CONTROL SETTINGS ::::::::::::::::::::::::  */
@media print {
	#header, #footer, .nav, nav, #banner, #mobilenav, #menubar, .go-top {
	  display: none !important;
	}
	.noprint {
	  display: none !important;
	}
}


/* ================================================================= 
::::::::::::::::::::::: Responsive settings  :::::::::::::::::::::::
================================================================== */

@media screen and (max-width: 1500px) {
	#banner .mainball {	
		width: 320px;
		height: 320px;	
	}
	.gps_ring {
		height: 320px;
		width: 320px;
		margin-left: -160px;
	}
	#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
		width: 250px;
		height: 250px;
	}
	#banner .ball-1:hover, #banner .ball-2:hover, #banner .ball-3:hover, #banner .ball-4:hover {
		width: 257px;
		height: 257px;
	}

	#banner .ball-1, #banner .ball-2 {
		top: 160px;
	}	
	#banner .ball-3, #banner .ball-4 {
		bottom: 220px;
	}
	#banner .ball-1 {
/*		top:18%;*/
		left:17%;
	}
	#banner .ball-2 {
/*		top:18%;*/
		right:17%;
	}
	#banner .ball-3 {
/*		bottom:25%;*/
		left:5%;
	}
	#banner .ball-4 {
/*		bottom:25%;*/
		right:5%;
	}
	
}
@media screen and (max-width: 1366px) {
	.inner {
		padding:0px 20px;	
	}
/*
	#social {
		right:20px;
	}
*/
	#header .inner {
		padding:0px 1px;	
	}
	#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
		width: 220px;
		height: 220px;
	}
	#banner .ball-1:hover, #banner .ball-2:hover, #banner .ball-3:hover, #banner .ball-4:hover {
		width: 225px;
		height: 225px;
	}
	#banner .innertext {
		bottom:4%;
	}
	#banner H2 {
		font-size:50px;
	}
	#banner H3 {
		font-size: 20px;
		letter-spacing: 0;
	}

	box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-3-4, .box-1-5, .box-1-6 { padding:10px 15px; }
}
@media screen and (max-width: 1280px) {
	.gps_ring {
		height: 320px;
		width: 320px;
		margin-left: -160px;
	}
	.content {
		padding: 30px 30px 60px 30px;
	}
}
@media screen and (max-width: 1024px) {

	#banner H2 {
		font-size:38px;
		letter-spacing: 0;
	}	
	#banner H3 {
		font-size:18px;
	}
	
	H1 {font-size : 42px;}
	H2, h2 a:link, H3, h3 a:link {font-size : 32px;}
	H4, h4 a:link, H5, h5 a:link {font-size : 24px;}
	H6, h6 a:link {font-size : 20px;}	

	.content {
		padding: 30px 20px 60px 20px;
	}
	.content.fullwidth.taupe-back .darktaupe-back h2, .content.fullwidth.taupe-back .darktaupe-back h3,
	.content.fullwidth.taupe-back h2, .content.fullwidth.taupe-back h3 {
		font-size: 38px;
	}
	.content.fullwidth.taupe-back .darktaupe-back {
		font-size: 16px;
	}
	.quotesection p, .quotesection {
		font-size: 20px;
	}
	.quotesection h1, .quotesection h2, .quotesection h3, .quotesection h4, .quotesection h5, .quotesection h6 {
		font-size: 36px;
	}
	.box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-1-5 {padding:10px 15px;}

	#banner .ball-1 {
		left:12%;
	}
	#banner .ball-2 {
		right:12%;
	}
	#banner .ball-3 {
		left:2%;
	}
	#banner .ball-4 {
		right:2%;
	}	
	ul.nav li {
		font-size: 15px;
	}
	ul.sub-nav {
		flex-flow: wrap;
	}
	
}

@media screen and (max-width: 900px) {
	.hide900 {
		display:none;	
	}
	#logo {
		top:2px;
		left:5px;
		width: 96px;
		height: 58px;
	}
	#social {
		right: 10px;
		bottom: 36px;
	}
	#social li {
		margin: 0 0 0 10px;
	}
	#social li a, #social li a:visited {
		font-size: 14px;
	}
	#header .inner.top {
		height:99px;
	}	
	.content {
		margin-top: 100px;
		padding: 0 10px;
		min-height:100px;
	}
	
	#banner.no-height {
		margin: 100px 0 0 0;
	}
	
	ul.nav li {
		font-size: 13px;
		padding: 8px 2px;
	}
	.fr-nav ul.nav li {
		font-size: 12px;
	}
	ul.nav li li>a {
		font-size: 12px;
	}
	ul.nav .has-submenu>a {
		background:none;
		padding-right:0;
	}
	ul.nav li ul {
		padding: 0;
		position: absolute;
		top: 34px;
	}	
	#banner  {
		height: 70vh;
	}	
	#banner H2 {
		font-size:32px;
		letter-spacing: 0;
	}	
	#banner H3 {
		display: none;
	}
	
	#banner .mainball {
		width: 300px;
		height: 300px;
	}
	#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
		width: 180px;
		height: 180px;
	}
	#banner .ball-1:hover, #banner .ball-2:hover, #banner .ball-3:hover, #banner .ball-4:hover {
		width: 183px;
		height: 183px;
	}
	#banner .ball-1, #banner .ball-2 {
		top: 100px;
	}	
	#banner .ball-3, #banner .ball-4 {
		bottom: 90px;
	}
	#banner .ball-1 {
		left:10%;
	}
	#banner .ball-2 {
		right:10%;
	}
	#banner .ball-3 {
		left:0.5%;
	}
	#banner .ball-4 {
		right:0.5%;
	}	

	.hotbox h4, .hotbox h4 a, .hotbox h5, .hotbox h5 a {
		font-size: 20px;
	}

	.quotesection p, .quotesection {
		font-size: 18px;
	}
	.quotesection h1, .quotesection h2, .quotesection h3, .quotesection h4, .quotesection h5, .quotesection h6 {
		font-size: 32px;
	}
	box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-3-4, .box-1-5, .box-1-6 { padding:10px 10px; }
	
}
@media screen and (max-width: 850px) {
	#banner {
		min-height: inherit;
	}
	#banner H2 {
		font-size:32px;
		letter-spacing: -1;
	}
	#banner H3 {
		font-size: 20px;
	}
	#banner .button {
		font-size:13px;
		margin:5px 0;
		padding:5px 11px;
	}
	#footer .header, #footer li.header a {
		font-weight: 400;
		font-size: 18px;
	}
	#footer .logo, #footer2 .logo {
		width: 150px;
		height: 90px;
	}
	.card-container {
    	font-size: 12px;
	}
	.card-container.three, .card-container.four {
		width:47%;
	}
	.content .biopic, .biopic {
/*		height: 160px;*/
	}
	
}
@media screen and (min-width: 670px) {
	#menubar {
		display: none;
	}
	.mobile {
		display:none;	
	}
}
@media screen and (max-width: 670px) {
	body {
		font-size: 14px;
		line-height: 1.5;
	}
	.mobile {
		display: block;	
	}
	.desktop {
		display:none;	
	}

	.content.topmargin {
		margin-top: 60px;
	}
	.content {
		margin:0;
		padding: 5px;
	}
	.content.fullwidth {
		margin:0;
		padding: 0;
	}
	.inner {
		padding: 0 5px;
	}
	.banner-override {
		margin-top:35px;
	}
		
	H1, H2, h2 a, H3, h3 a, H4, h4 a, H5, h5 a, H6, h6 a{
		margin: 5px 0;
	}
	H1 {font-size : 28px; letter-spacing: 0px;}
	H2, h2 a:link, H3, h3 a:link {font-size : 24px;}
	H4, h4 a:link, H5, h5 a:link {font-size : 20px;}
	H6, h6 a:link {font-size : 16px;}
	
	.hotbox h4, .hotbox h4 a:link, .hotbox h5, .hotbox h5 a:link {
		font-size: 18px;
	}
	
	.small { font-size : 12px;}
	.medium { font-size : 14px;}
	.large { font-size : 16px;}
	.extralarge { font-size : 20px;}

	#banner { margin: 40px 0 0 0;	}
	#banner .innertext {
		bottom: 3%;
	}
	#banner .innertext {
		padding: 0 1%;
	}
	
	#banner.short {
		height: 60px;
		padding: 1px 0 0 0;
	}

	#banner H2 {
	    font-size: 24px;
	}
	#banner H3 {
		font-size: 16px;
	}
	
	#banner .mainball {
		top: 19%;
	}
	#banner .mainball {
		width: 280px;
		height: 280px;
		padding: 24px 10px 0;
	}
	#banner .mainball h2 {
		font-size: 30px;
		font-weight: 700;
		text-shadow: none;
	}
	
	#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
		width: 160px;
		height: 160px;
	}
	#banner .ball-1 {
		top:3%;
		left:3%;
	}
	#banner .ball-2 {
		top:3%;
		right:3%;
	}
	#banner .ball-3 {
		bottom:25%;
		left:1%;
	}
	#banner .ball-4 {
		bottom:25%;
		right:1%;
	}	

	#banner.no-height {
		margin: 42px 0 0 0;
		min-height: inherit;
	}
	
	ul.sub-nav li ul {
	  top: 30px;
	}
	ul.sub-nav li {
		font-size: 13px;
		margin: 0 2px;
		padding: 5px 9px;
	}
	
	.down-circle,  .gps_ring  {
		display: none;
	}
	.home-button {
		top: 0px;
	}
	.button-top-right {
		top:10px;
	}		
	
	.box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-3-4, .box-1-5, .box-1-6,
	.box-1of3, .box-1of2, .box-2of3, .box-1of4, .box-3of4, .box-1of5, .box-1of6 { margin-top: 5px; margin-bottom: 5px; margin-left:0; margin-right:0; padding:5px;}
	
	.box-1-3, .box-1-3.nomargin, .box-1-2, .box-1-2.nomargin, .box-2-3, .box-2-3.nomargin, .box-3-4, .box-3-4.nomargin,
	.box-1of3, .box-1of3.nomargin, .box-1of2, .box-1of2.nomargin, .box-2of3, .box-2of3.nomargin, .box-3of4, .box-3of4.nomargin { width: 100%;} 
	
	.box-1-4, .box-1of4 { width: 48%; margin-left:1%; margin-right:1%;  } 
	
	.box-1-5,.box-1-6, .box-1of5,.box-1of6 { width: 48%;  margin-left:1%; margin-right:1%; } 
	
	.box-1 img, .box-1-3 img, .box-1-2 img, .box-2-3 img, .box-1-4 img, .box-1-5 img, .box-1-6 img, .box-3-4 img,
	.box-1of3 img, .box-1of2 img, .box-2of3 img, .box-1of4 img, .box-1of5 img, .box-1of6 img, .box-3of4 img { max-width:99%; height:auto;}

	
	.width-33, .nomargin.width-33 { width: 30.66%; }
	
	.width-50, 
	.box-1-2.width-50, .box-1-4.nomargin.width-50, .box-1-5.nomargin.width-50, .box-1-6.nomargin.width-50, .box-1-3.nomargin.width-50, .box-1-2.nomargin.width-50, .box-3-4.nomargin.width-50,
	.box-1of2.width-50, .box-1of4.nomargin.width-50, .box-1of5.nomargin.width-50, .box-1of6.nomargin.width-50, .box-1of3.nomargin.width-50, .box-1of2.nomargin.width-50, .box-3of4.nomargin.width-50 { width: 48%; margin-left: 1%; margin-right: 1%; }
	
	.width-100, 
	.box-1-4.nomargin.width-100, .box-1-5.nomargin.width-100, .box-1-6.nomargin.width-100, .box-1-3.nomargin.width-100, .box-1-2.nomargin.width-100, .box-3-4.nomargin.width-100,
	.box-1of4.nomargin.width-100, .box-1of5.nomargin.width-100, .box-1of6.nomargin.width-100, .box-1of3.nomargin.width-100, .box-1of2.nomargin.width-100, .box-3of4.nomargin.width-100 { width: 100%;  margin-left:0; margin-right:0; }

	
	
	.special-padding-right, .border-left {padding-right:5px; padding-left:5px; border-left:0;}

	.content.fullwidth.taupe-back .darktaupe-back h2, .content.fullwidth.taupe-back .darktaupe-back h3,
	.content.fullwidth.taupe-back h2, .content.fullwidth.taupe-back h3 {
		font-size: 32px;
	}
	.content.fullwidth.taupe-back .darktaupe-back h4, .content.fullwidth.taupe-back .darktaupe-back h5, .content.fullwidth.taupe-back .darktaupe-back h6, .content.fullwidth.taupe-back .darktaupe-back h4 a:link, .content.fullwidth.taupe-back .darktaupe-back h5 a:link, .content.fullwidth.taupe-back .darktaupe-back h6 a:link, .content.fullwidth.taupe-back .darktaupe-back h4 a:visited, .content.fullwidth.taupe-back .darktaupe-back h5 a:visited, .content.fullwidth.taupe-back .darktaupe-back h6 a:visited,
	.content.fullwidth.taupe-back h4, .content.fullwidth.taupe-back h5, .content.fullwidth.taupe-back h6, .content.fullwidth.taupe-back h4 a:link, .content.fullwidth.taupe-back h5 a:link, .content.fullwidth.taupe-back h6 a:link, .content.fullwidth.taupe-back h4 a:visited, .content.fullwidth.taupe-back h5 a:visited, .content.fullwidth.taupe-back h6 a:visited {
		font-size: 20px;
	}
	.content.fullwidth.taupe-back .darktaupe-back {
		font-size: 16px;
	}
	
	.logobox {
		-webkit-box-shadow: none;
		-moz-box-shadow:    none;
		box-shadow:         none;
		border: none;
		height:150px;
		min-height: 150px;
	}
	.logobox:hover {
		-webkit-box-shadow: none;
		-moz-box-shadow:    none;
		box-shadow:         none;
	}
	
	a.button.special {
		height: 90px;
		font-size: 13px;
	}	

	a.button, button.button {
		font-size: 16px;
		margin: 10px 0;
		padding: 11px 18px;
	}
	a.buttonmid, button.buttonmid {
		font-size: 15px;
		padding: 7px 11px;
	}
	a.buttonsmall, button.buttonsmall   {
		font-size: 13px;
	}
	
	#footer {
		padding: 10px 0 20px 0;
	}
	#footer2 .text {
		position: inherit;
		top:2px;
		margin:0 auto;
	}
	#footer2 .inner {
		text-align: center;
	}

	.height100, .height-100, .height150, .height-150, .height180, .height-180, .height200, .height-200, .height225, .height-225, .height250, .height-250, .height275, .height-275, .height300, .height-300, .height350, .height-350, .height400, .height-400, .height450, .height-450, .height500, .height-500, .height600, .height-600, .height700, .height-700, .height800, .height-800 { height: auto; }

	table td, table th, .fancy td, .fancy th { padding: 0.125em; }
	.fancy, table { font-size : 12px;}
	.fancy.small, table .small { font-size : 10px;}
	.fancy.tiny, table .tiny { font-size : 8px;}
	
	.go-top {
		font-size: 1px;
		padding: 10px 0 0 9px;
	}
	
	.content .biopic.biolarge, .biopic.biolarge {
		min-height: 180px;
		margin-top: 0;
	}
	
	.calendar h4 {  margin-top: -10px;}
	
	#search input[type="text"], #search input[type="text"]:focus, .styled-select, .styled-select select {
	   width: 110px;
	}
	#search input[type="text"] {
		background: rgba(0,0,0,0.3) url(../png/icon-search.png)  3px  no-repeat;
		margin:-4px 0 0 0;
		padding: 5px 15px 3px 35px;
		border: 0;
		font: 11px Arial,Helvetica,Sans-serif;
		color: #fff;
		height:29px;
		width: 30px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
		-webkit-transition: all 0.4s ease 0s;
		-moz-transition: all 0.4s ease 0s;
		-o-transition: all 0.4s ease 0s;
		transition: all 0.4s ease 0s;
		}
	#search input[type="text"]:focus {
		width: 110px;
		color: #fff;
		background: rgba(0,0,0,0.5) url(../png/icon-search.png)  3px  no-repeat;
	}
	
	select {width:100%; font-size: 1.03em;}
	label input {width:20px;}
	input {width:100%; font-size: 1.03em; line-height: 1.4;}

	.borderright {border-right:none}
	.borderleft {border-left:none}
	.mobile-fadeup {
		background: -moz-linear-gradient(top, rgba(255,255,255,1) 25%, rgba(230,230,230,0.6) 100%);
		background: -webkit-linear-gradient(top, rgba(255,255,255,1) 25%, rgba(230,230,230,0.6) 100%);
		background: linear-gradient(to bottom, rgba(255,255,255,1) 25%, rgba(230,230,230,0.6) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80f9f9f9', endColorstr='#e6f7f7f7',GradientType=0 );
	}
}
/* ||||||||||| END 670  |||||||||||| */


@media screen and (max-width: 420px) {
	#banner {
		height: 80vh;
	}
	#banner .innertext {
	    bottom: 2%;
	}
	#banner .mainball {
		top: 185px;
	}
	#banner .mainball {
		width: 235px;
		height: 235px;
		padding: 16px 10px 0;
	}
	#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
		width: 140px;
		height: 140px;
	}
	#banner .ball-1, #banner .ball-2 {
		top: 70px;
	}	
	#banner .ball-3, #banner .ball-4 {
		bottom: 5px;
	}
	#menubar li a {
		padding: 10px 0 0 0;
		font-size: 13px;
	}
}
@media screen and (max-height: 420px) {
	#banner .innertext {
	    bottom: 3%;
	}
	#banner H3 {
		display: none;
	}
	#banner .mainball {
		top: 6%;
	}
	#banner .mainball {
		width: 180px;
		height: 180px;
	}
	
	#banner .ball-1, #banner .ball-2, #banner .ball-3, #banner .ball-4 {
		width: 120px;
		height: 120px;
	}
	/*
		#banner .ball-3 {
			bottom:6%;
			left:1%;
		}
		#banner .ball-4 {
			bottom:6%;
			right:1%;
		}	
	*/
	
}
/* ||||||||||| END *****HEIGHT****** 420  |||||||||||| */

