.cci-t-master{} /* CCI-T 2018 */

*, *: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+ */
}

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 {
	background-color: #FFF;
	margin: 0;
	padding: 0;
	width: 100%;
	position: fixed;
	top:0;
	z-index:7777;
	box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.2);
	-ms-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.2);
	-o-box-shadow: 0px 1px 7px 0px rgba(0,0,0,0.2);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
} 
#header:hover {	
	background-color: #FFF;
	box-shadow: 0px 1px 41px 0px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0px 1px 41px 0px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 1px 41px 0px rgba(0,0,0,0.6);
	-ms-box-shadow: 0px 1px 41px 0px rgba(0,0,0,0.6);
	-o-box-shadow: 0px 1px 41px 0px rgba(0,0,0,0.6);
    -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;
} 

#header .inner.top {
	overflow:show;
	height:133px;
}

#logo {
	background-image: url(../images/CCI-Toronto-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;
	width: 259px;
	height: 87px;
	position:absolute;
	left:10px;
	top:2px;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

/* ========================= SOCIAL LINKS ======================== */
#social {
	position:absolute;
	right:5px;
	bottom:48px;
    margin: 0;
	padding: 0;
	color:#6592b1;
	font-family: 'Lato', sans-serif;
	font-size:18px;
}
#social li {
   list-style: none;
	margin: 0 0 0 20px;
   padding: 0;
   float: right;
   white-space:nowrap;
}
#social li:last-child {
	margin: 0;
}

#social li a, #social li a:visited {
	color: #00437e;
    font-size: 16px;
    text-transform: uppercase;
}
#social li a:hover {
	color: #6390b2;
}

#social img {opacity: 0.7}
#social img:hover {opacity: 1}



/* ====================== MAIN NAV ====================== */
.navbar {
	position:absolute;
	bottom:0;
	width:100%;
	text-align:center;
	border-top:1px solid #f2f2f2;
}

ul.nav {
/*  display: inline;*/
  list-style: none;
  width:100%;
  margin:0;
  padding:0;
	
	display: flex;
  	flex-flow: space-between;
}
ul.nav li {
	font-family: Verdana, Geneva, Arial, sans-serif; 
	font-size: 18px;
	font-weight:300;
	color: #7A7A7A;
	white-space:nowrap;
	display:inline-block;
/*	min-width: 18.7%;*/
	position: relative;
	padding: 7px 11px;
	text-align:center;
	cursor: pointer;
		
	flex-shrink: 0;
    flex-grow: 1;
}
ul.nav li > a {
	color: #7A7A7A;
	display: block;
	width:100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
ul.nav li:hover >a {
	color: #00447c;
}
ul.nav li:hover, ul.nav li:active {
  background-color: #becdda;
  color: #FFF;
}
ul.nav li ul {
  padding: 0;
  position: absolute;
  top: 41px;
  left: 0;
  min-width: 280px;
  display: block;
  opacity: 0;
  visibility: hidden;
  line-height:1.2;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
ul.nav li ul li { 
  background-color: #becdda; 
  color: #fff;
  text-align:left;
  float:left;
	white-space: normal;
	width: 100%;
	min-width: 280px;
  padding: 9px 11px;
  border-top:1px solid rgba(255,255,255,0.4);
}
ul.nav li li ul li { 
  background-color: #e2eaef;
}
ul.nav li li a { color: #fff; font-size:15px; width: 100%; display: block; }
ul.nav li li:hover { background-color:#e2eaef; }

ul.nav li li li a { color: #00447c; font-size:14px; width: 100%; display: block; }
ul.nav li li li:hover, ul.nav li li li:hover a { background-color:#becdda; color: #E7F5FB}
ul.nav li:hover>ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
ul.nav .has-submenu>a {
	background: url(../images/sub-arrow.png) no-repeat /*right -- ORIG SETTING */ 98% 50%;
	padding-right:9px;
}
ul.nav li li ul, ul.nav li:first-child li ul { top:0; left: -9999px; -webkit-transition: all 0s ease; -moz-transition: all 0s ease; -ms-transition: all 0s ease; -o-transition: all 0s ease; transition: all 0s ease; }
ul.nav li li:hover ul { top: -1px; left: 255px; z-index: 2;}
ul.nav li:last-child li:hover ul { top: 0; left: -255px; }


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

#subnavbar {
	margin: 0 auto;
	padding: 0;
	background-color: #bbb;
	max-width: 100%;
	text-align: center;
	overflow: visible;
	color:#fff;
}
#subnavbar.blue {
	background-color: #00447c;
}
#subnavbar.lightblue {
	background-color: #bdced9;
}


ul.sub-nav {
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  right:0;
}
ul.sub-nav li {
	font-size: 16px;
	font-weight:300;
	color: #fff;
	text-shadow: 0 1px 5px rgba(0,0,0,0.4);
	white-space:nowrap;
	display:inline-block;
    margin: 0 10px;
    padding: 5px 20px;
	cursor: pointer;
	position: relative;
}
ul.sub-nav li>a {
	color: #FFF;
}
ul.sub-nav li:hover >a {
	color: #DAEFF7;
}

ul.sub-nav li ul {
  padding: 0;
  position: absolute;
  top: 34px;
	left:0;
  min-width: 240px;
  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: #bbb; 
	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: #bbb;
}

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

ul.sub-nav .has-submenu>a {
	background: url(../images/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;
	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: 150px;
	margin-top: 20px;
	margin-bottom: 1px;
}
.simply-scroll .simply-scroll-clip {
	max-width: 100%;
	height: 150px;
}
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: 380px;
	height: 150px;
	text-align:center;
}
.simply-scroll .simply-scroll-list li img {
	text-align:center;
	margin:0 auto;
    max-height: 120px;
    padding-top: 10px;
}

/* ===================== 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: #F2f2f2 url(../images/icon-search.png) no-repeat 3px;
    margin:-4px 0 0 0;
    padding: 5px 15px 3px 35px;
	border: 1px solid #ddd;
    font: 12px Arial,Helvetica,Sans-serif;
    color: #999;
    height:29px;
	width: 100px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 3px;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
    }

#search input[type="text"]:focus {
    width: 170px;
	color: #666;
    }

#search input[type="text"] .white {
    background: #fff url(../images/icon-search.png) no-repeat 3px;
}
/* ---------------- BANNER ----------------- */
#banner {
	margin: 132px 0 0 0;
	padding: 0;
	width:100%;
	/*height: 500px;*/
	background-color: #F5F5F5;
	position:relative;
	text-align: center;
	overflow:hidden;
}
#banner .innertext {
	/*width: 960px;*/
	width: 100%;
	margin:0;
	padding:0 10%;
	z-index:5554;
	position:absolute;
    bottom: 7%;
	text-align:center;
}

.imghelper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#banner img {
	display: inline-block;
	text-align:center;
}

#banner H2, #banner H3 {
	font-family: 'Lato', sans-serif;
	font-weight:400;
	font-size:68px;
	color:#FFF;
	line-height:1.1;
	margin: 0;
	padding: 0;
	z-index:5555;
	/*left:0;*/
	text-shadow: 0 2px 7px rgba(0,0,0,0.6);
	letter-spacing:-2px;
}
#banner H2.blue, #banner H3.blue {
	color:#00457c;
	text-shadow: 0 1px 7px rgba(255,255,255,0.4);
}

#banner H3 {
	font-weight:400;
	font-size:26px;
	margin-top: 5px;
	letter-spacing:0;
}
#banner .button {
	z-index:5555;
	bottom:10px;
	font-size: 20px;
	margin: 20px 0 0 0;
	padding: 11px 36px;
	color: #444;
	background: rgba(255,255,255,0.85);
	background-color:rgba(255,255,255,0.85);
	border-radius: 5px;
	border-bottom: 1px solid #fff;
    -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;
}
#banner .button:hover {
	color: #0564b3;
	background: rgba(255,255,255,1);
	background-color: rgba(255,255,255,1);
    -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 .fade {
	position: absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:0;
background: rgb(0,0,0, 0);
background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
background: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}


/* ======================== 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: 360px;
}
.rslides li.event img, .rslides.home li.event img {
  max-width: 1366px;
	margin:0 auto;
	  float: none !important; 
/*	max-height: 340px;*/
}
.rslides.home li {
  max-height: 440px;
}
.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(../images/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: 30px 20px 60px 20px;
	max-width: 1366px; 
	min-height:200px;
	z-index: 5;
	position: relative;
} 

.content ul { 
	/*margin: 0;*/
	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;
	padding:0;
}

.audiojs p {
	margin: 0;
}

/*
.social-add {
	position: absolute;
	bottom: 20px;
	width:100%
} 
*/

/* ============================= LINKS ============================ */
a:link {
	color: #2b75b3;
	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: #2b75b3;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	color: #73b4e0;
	text-decoration: none;
	outline:0;
}


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

/* ============================= CONDOVOICE ============================ */
.condovoice-issue, .condovoice-thumb {
	padding: 0;
	height:400px;
	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: 20px;
    left: 0;  
    right: 0;  
}
.content .condovoice-thumb.box-1-3 img { 
	width: auto !important;
	width: 100%; 
	height:auto;  
	max-width: 150%;
	max-height: 105%; 
	position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
}

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




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

#footer {
	background-color: #beceda;
	width: 100%;
	padding: 40px 0 60px 0;
	font-size: 14px;
	color: #555;
	line-height: 1.1;
	position: relative;
} 
#footer a:link, #footer a:visited {
	color: #555;
	text-decoration: none; 
	font-size: 14px;
	padding: 0;
}
#footer a:hover {
	color: #fff;
}
#footer ul {
	display: block;
	width: 18%;
	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 : 22px;
	color: #FFF;
}

#footer li.header:hover a {
	color:#00457c;
}
#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:#00457c;
}

#footer ul.special .header.blue {
	font-size : 16px;
	color: #00457c;
	font-weight:400;
}
#footer .logo, #footer2 .logo {
	background-image: url(../images/CCI-Toronto-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;
	width: 216px;
	height: 72px;
}
#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: #beceda;
	width: 100%;
	padding: 10px 0 20px 0;
	font-size: 14px;
	font-weight:600;
	color: #00457c;
	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: #00457c;
}
#footer2 li a:hover {
	color: #fff;
}


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

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

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

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

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

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


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


#mailinglist input[type="text"] {
    background: #FFF url(../images/icon-join.png) 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.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s 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:300;
	color:#FFF;
	line-height:1.2;
}
h1, h1 a:link, h1 a:visited {
	font-size : 58px;
	color: #6592b1;
	margin: 0 0 10px 0;
	letter-spacing: -1px;
}
h2, h2 a:link, h2 a:visited  {
	font-size : 44px;
	color: #00457c;
}
h3, h3 a:link, h3 a:visited {
	font-size : 44px;
	color: #6592b1;
}
h4, h4 a:link, h4 a:visited {
	font-size : 30px;
	color: #00457c;
	margin-top: 10px;
}
h5, h5 a:link, h5 a:visited {
	font-size : 30px;
	color: #6592b1;
	margin-top: 10px;
}
h6, h6  a:link, h6 a:visited {
	font-size : 22px;
	color: #6592b1;
	margin: 0;
}

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: #006ec8;
}

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

hr.grey {
	border: none 0;
	border-top: 1px solid #e5e5e5;
	height: 1px;
	margin: 5px 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.blue {
	border: none 0;
	border-top: 3px solid #6592b1;
	height: 3px;
	margin: 5px auto;
	padding: 0;
	width:80%;
	text-decoration: none;
}


.blue, .blue-text {
	color : #00457c;
}
.lightblue, .lightblue a:link  {
	color : #9fcceb;
}
.lightblue a:hover  {
	color : #7697BE;
}
.bergundy {
	color: #9e2533;
}
.yellow {
	color: #6592b1;
}
.orange {
	color: #db8327;
}
.green {
	color : #90d139;
}
.purple {
	color : #663399;
}
.red, a.red, a.red:visited {
	color : #CC0000;
}
a.red:hover {
	color : #90d139;
}
.white, a.white, h6.white,  a:link h6.white, a h6.white {
	color : #FFF;
}
a:hover h6.white {
	color : #BDE0FE;
}
.grey  {
	color : #777;
}
.lightgrey  {
	color : #ccc;
}
.small { font-size : 12px;}
.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%;
}

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

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


a.buttonmid, button.buttonmid {
    border-radius: 2px;
	border:0;
	color: #fff;
	display: inline-block;
	font-size: 15px;
	margin: 3px 0;
	padding: 9px 12px;
	text-align: center;
	background-color: #6592b1;
	line-height: 1;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

a.buttonsmall, button.buttonsmall   {
	border-radius: 2px;
	border:0;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	margin: 3px 0;
	padding: 7px 9px;
	text-align: center;
	background-color: #6592b1;
	line-height: 1;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}
a.button.grey, button.button.grey, a.buttonsmall.grey, button.buttonsmall.grey {
	background: #b4b4b4;
	background-color: #b4b4b4;
}
a.button.lightblue, button.button.lightblue, a.buttonsmall.lightblue, button.buttonsmall.lightblue {
	background: #9fcceb;
	background-color: #9fcceb;
}
a.button.blue, button.button.blue, a.buttonsmall.blue, button.buttonsmall.blue, a.buttonmid.blue, button.buttonmid.blue {
	background: #3f74a5;
	background-color: #3f74a5;
}
a.button.green, button.button.green, a.buttonsmall.green, button.buttonsmall.green {
	background: #97BA24;
	background-color: #97BA24;
}
a.button.red, button.button.red, a.buttonsmall.red, button.buttonsmall.red, #banner .button.red {
		color: #fff;
	background: #CC0000;
	background-color: #cc0000;
}


a.button:hover, a.buttonsmall:hover, button.button:hover, button.buttonsmall:hover, a.buttonmid:hover, button.buttonmid: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.red:hover, button.button.red:hover, a.buttonsmall.red:hover, button.buttonsmall.red:hover, #banner .button.red:hover,
a.button.blue:hover, button.button.blue:hover, a.buttonsmall.blue:hover, button.buttonsmall.blue:hover,
a.button.green:hover, button.button.green:hover, a.buttonsmall.green:hover, button.buttonsmall.green:hover
{
	color: #fff;
	background: #00457c;
	background-color: #00457c;
}

a.button.darkgrey, button.button.darkgrey, a.buttonsmall.darkgrey, button.buttonsmall.darkgrey {
	background: rgba(0,0,0,0.4);
	background-color: rgba(0,0,0,0.4);
}
a.button.darkgrey:hover, button.button.darkgrey:hover, a.buttonsmall.darkgrey:hover, button.buttonsmall.darkgrey:hover {
	color: #00457c;
	background: #9fcceb;
	background-color: #9fcceb;
}

#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: #6592b1;
}
#footer a.button:hover {
	background-color: #00457c;
}

.flashingbutton {
	animation-name: flash;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-delay: 4s;
}

@keyframes flash {  
	0% { background-color:#6592b1; }
	50% { background-color: #99cc99; }
	100% { background-color:#6592b1; }
}



/* ===================================== 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: Verdana, Arial, 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(../images/sub-arrow.png) right 15px no-repeat !important;
}
nav#navbar ul li a:hover {
	color: #90d139;
}
nav#navbar ul li ul {
	display: none;
	margin-left: -12px;
	/*margin-right: -12px;*/
	background: url(../images/shadow.png) 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(../images/arrow.png) 20px 0px no-repeat;
}
nav#navbar ul li ul li:last-child {
	background: url(../images/shadow2.png) 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: #90d139;
}
nav#navbar ul li:hover ul {
	/*display: block;*/
}
nav#navbar ul li.active > a { color: #90d139; }


/* ====================== 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: #6592b1;
	color: #fff;
	font-size: 0.75em;
	text-align: center;
	line-height: 1;
	}
.fancy th {
	background-color: #6592b1;
	font-weight: 700;
	color: #FFF;
}
table th {
	background-color: #f2f2f2;
	font-weight: 700;
	color: #6592b1;
}

.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.015);
}
.fancy tr:nth-child(even) {
	background: rgba(0,0,0,0.03);
}
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.2);
}
.fancy tbody tr:hover, .fancy tr:hover {
	background: rgba(245,245,245,0.8);
}
.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 : 12px;}
.fancy.tiny, table .tiny { font-size : 10px;}

.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: #999999;
	border-radius: 3px;
}
.expandiconfull {
	padding:0;
	margin:0;
	height:41px;
	color: #069;
	font-size: 14px;
	text-align: center;
	background: #ebebeb url(../images/expand-arrow.gif) center bottom no-repeat;
}
.expandicon:hover {
	background-color: #6592b1;
}

.expand-title {
	cursor: pointer;
}
.expand-area {
	padding: 3px;
	background-color:#fcfcfc;
	background-image: -webkit-linear-gradient(rgba( 255, 255, 255, 1), rgba( 252, 252, 252, 1));
	background-image: linear-gradient(rgba( 255, 255, 255, 1),rgba( 252, 252, 252, 1));
}

/* ======================= 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(../images/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);
}
/* ====================== STICKY ====================*/
#header .inner.top.sticky {
	height:116px; /*shorter than original */
	-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;
}
#logo.sticky {
	width: 190px;
	height:65px;
	top: 2px;
	-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;
}

/* ----------------- 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 {
	float:left;
	margin:0 20px 20px 0;
}
.fltright {
	float:right;
	margin:0 0 20px 20px;
}
	
	
/* ====================== BOXES ========================= */

.box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-1-5 { float:left; margin-top: 10px; margin-bottom: 10px; margin-left:1%; margin-right:1%; padding:10px 15px; line-height:1.5;  position:relative;}

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

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

.box-1-2 { width: 47.5%; float:left; }
.box-1-2.nomargin { width: 50%; float:left; }

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

.box-1-4 { width: 22.1%; float:left; } 
.box-1-4.nomargin { width: 24.9; float:left; } 

.box-3-4 { width: 72.1%; float:left; } 
.box-3-4.nomargin { width: 74.9; float:left; } 

.box-1-5 { width: 17%; float:left; } 

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

.floatleft {float:left}
.floatright {float:right !important}

.nomargin { margin:0;}
.nopadding { padding:0;}
.nomargin-right {margin-right: 0; margin-left: 10%;}
.nomargin-left {margin-left: 0;  margin-right: 10%;}

.border { border: 1px solid #ccc; }

.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 { line-height:1.3; margin-top:10px; }
.box-1 p, .box-1 p, .box-1-3 p, .box-1-3 p, .box-1-2 p { margin:0; padding:4px 0; }

.whitebox {
	background: #FFF;
	border:1px solid #f2f2f2;
}
.greybox {
	background-color: #efefef;
	border:1px solid #f3f3f3;
}
.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 #beceda;
	background: rgb(213,230,243);
	background: -moz-linear-gradient(0deg, rgba(213,230,243,0.5) 0%, rgba(190,206,218,0.2) 91%);
	background: -webkit-linear-gradient(0deg, rgba(213,230,243,0.5) 0%, rgba(190,206,218,0.2) 91%);
	background: linear-gradient(0deg, rgba(213,230,243,0.5) 0%, rgba(190,206,218,0.2) 91%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#beceda",endColorstr="#beceda",GradientType=1);
}

.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:#2b75b3;
}
.boxbar:hover a, .boxbar:hover {
	color:#FFB628;
	text-shadow:0 -1px 0 rgba(255,255,255,0.8);
}
.boxbar:hover {
	background-color: #E8F4F8;
	color: #09C;
}

.logobox {
/*
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.06);
	-moz-box-shadow:    0px 0px 5px rgba(0,0,0,0.06);
	box-shadow:         0px 0px 5px rgba(0,0,0,0.06);
	border:1px solid #eaeaea;
*/
	padding: 0;
	height:200px;
	text-align: center;
	display:table-cell;
	vertical-align:middle;
	position: relative;
	min-height: 100px;

}
/*
.logobox: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;
}
*/
.logobox img { 
	width: auto !important;
	max-width: 85%; 
	height:auto;  
	max-height: 63%; 
	position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
}
.logobox.small-logo img { 
	max-width: 45%; 
	max-height: 50%; 
}


.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 {
	position: absolute;  
	width:  100%; 
	height: 100%; 
	top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
	opacity: .65;
	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;
	text-shadow: 0 1px 9px rgba(0,0,0,0.9);
	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: #beceda;
	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:5%;
	opacity: 0;
	visibility: hidden;
	    background-color: #4DAAF0;
    width: 41%;
    left: 30%;
	   border-radius: 7px;
	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;

	bottom:15%;
}


/* ========= 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: 325px;
    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: 1.4em;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
	line-height: 1.1;
}
.card .profession{
    color: #00457c;
/*    font-size: 16px;*/
    text-align: center;
    margin: 0 0 20px 3px;
	line-height: 1.2;
}
.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;
	z-index: 999;
}
.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.noresize { 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 }


.position-bottom, .position-bottom-80, .position-bottom-120 {
	position: absolute;
	bottom:30px;
	text-align: center;
	width: 100%;
}
.position-bottom-80 {
	width: 80%;
}
.position-bottom-120 {
	width: 80%;
	bottom:60px;
}
.padding-bottom-170 {
	padding-bottom:170px;
}

.blue-back, .lightblue-back, .box-1-2.blue-back, .box-1-2.lightblue-back {background-color: #014d73; position: relative; color: #fff; font-size: 16px; padding-bottom: 120px; line-height: 1.2;}
.lightblue-back, .box-1-2.lightblue-back {background-color: #6592b1;}

.blue-back h2, .lightblue-back h2 { color: #fff; font-size: 48px; }

.blue-back .button, .lightblue-back .button {
	z-index:5555;
	font-size: 20px;
	margin: 0 auto;
	padding: 11px 36px;
	color: #FFF;
	background: rgba(0,0,0,0.05);
	background-color:rgba(0,0,0,0.05);
	border-radius: 5px;
	border:2px solid #ffffff;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
}
.blue-back .button:hover, .lightblue-back .button:hover {
	color: #000;
	background: rgba(255,255,255,1);
	background-color: rgba(255,255,255,1);
	-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;
}

.blue-back a.white:hover, .lightblue-back a.white:hover {
	color : #6592b1;
}

.skyline {
	position: absolute;
	bottom:-1px;
	background-image: url(../images/skyline.svg);
	background-position: bottom center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 100%;
	height:140px;
}

/* =================== Modern FANCYBOX ================= */
.fancybox-slide--iframe .fancybox-content {
    width  : 720px;
    height : 550px;
    max-width  : 70%;
    max-height : 50%;
    margin: 0;
}



/* =================== 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;
/*	min-width:180px;*/
}
/* ================== 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: "Helvetica", "Arial", 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: "Helvetica", "Arial", sans-serif;
	text-transform: uppercase;
	background-color: #00679F;
	color: #FFFFFF;
}
.date-as-calendar .year {
	font-family: "Helvetica", "Arial", sans-serif;
	text-transform: uppercase;
	color: #00679F;
}


/*  :::: 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(../images/login-icon-user.svg);
	width:28px;
	height:28px;
}
.login-icon.key {	
	background: url(../images/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(../images/select-arrow.png) 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="submit"] {width:100%;}


#cms_control ul li a.buttonsmall {color:#fff;}
#cms_control ul li {font: 14px arial,sans-serif !important;}
	
	
	
	
/* ::::::::::::: START  DIALOGUE TOOL TIP :::::::::::::::: */

.fancytip {display: none;}

.ui-widget-header {
    border-bottom: 1px solid #aed0ea;
}


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

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


@media screen and (max-width: 1366px) {
	.inner {
		padding:0px 20px;	
	}
	.content {
		margin:0 auto;
		padding: 30px 40px 60px 40px;
	}
	#social {
		right:20px;
	}
	#header .inner {
		padding:0px 1px;	
	}
	#banner .innertext {
		    bottom: 3%;
	}
	#banner H2 {
		font-size:65px;
	}
	#banner H3 {
		font-size: 24px;
		letter-spacing: 0;
	}
	.condovoice-issue {
		height: 350px;
	}
}
@media screen and (max-width: 1024px) {
	#social li a, #social li a:visited {
		font-size: 15px;
	}
	#banner H2 {
		font-size:42px;
		letter-spacing: 0;
	}	
	#banner H3 {
		font-size:22px;
	}
	
	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 : 18px;}	
	
	.blue-back h2, .lightblue-back h2 {
		color: #fff;
		font-size: 38px;
	}
	.condovoice-issue {
		height: 300px;
	}
}
@media screen and (max-width: 900px) {
	#banner {
		/*max-height:400px;*/
	}
	#logo {
		top:2px;
		left:5px;
		width: 180px;
		height: 60px;
	}
	#social {
		right:20px;
	}
	#social li {
		margin: 0 0 0 10px;
	}
	#social li a, #social li a:visited {
		font-size: 14px;
	}
	#header .inner.top {
		height:99px;
	}	
	.content {
		padding: 20px;
		min-height:100px;
	}
	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 {
		margin: 98px 0 0 0;
	}
	#banner H2 {
		font-size:32px;
		letter-spacing: 0;
	}	
	#banner H3 {
		font-size:18px;
	}
	.hotbox h4, .hotbox h4 a, .hotbox h5, .hotbox h5 a {
		font-size: 20px;
	}
	.condovoice-issue, .condovoice-thumb {
		height: 220px;
	}
	.nomargin-right {margin-right: 0; margin-left: 3%;}
	.nomargin-left {margin-left: 0;  margin-right: 3%;}
	
}
@media screen and (max-width: 850px) {
	#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: 62px;
	}
	#search input[type="text"], #search input[type="text"]:focus, .styled-select, .styled-select select {
	   width: 130px;
	}
	.hide-at-850 {
		display:none;	
	}
}
@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.4;
	}
	.mobile {
		display: block;	
	}
	.desktop {
		display:none;	
	}

	.inner {
		 padding: 0px; 
	}
	.content {
		margin:0;
		padding: 15px 10px;
	}
	.content.fullwidth {
		margin:0;
		padding: 0;
	}
	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, H3, h3 a {font-size : 26px;}
	H4, h4 a, H5, h5 a {font-size : 22px;}
	H6, h6 a {font-size : 18px;}
	
	.hotbox h4, .hotbox h4 a, .hotbox h5, .hotbox h5 a {
		font-size: 18px;
	}
	
	.small { font-size : 10px;}
	.medium { font-size : 14px;}
	.large { font-size : 16px;}
	.extralarge { font-size : 20px;}

	#banner { margin: 40px 0 0 0;	}
	#banner .innertext {
		    bottom: 1%;;
	}
	#banner H2 {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 10px;
		letter-spacing:0;
	}
	#banner H3 {
		display: none;
	}
	#banner .button {
		font-size:12px;
		padding:4px 7px;
	}
	a.button, button.button {
		font-size: 14px;
		margin: 10px 0;
		padding: 10px 20px;
	}
	
	.box-1, .box-1-3, .box-1-2, .box-2-3, .box-1-4, .box-1-5 { margin-top: 5px; margin-bottom: 5px; margin-left:0; margin-right:0; padding:10px 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 { width: 100%;} 
	.box-1-4 { width: 48%; margin-left:1%; margin-right:1%;  } 
	.box-1-5 { 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 { max-width:99%; height:auto;}

	.box-1.nomargin, .box-1-3.nomargin, .box-1-2.nomargin, .box-2-3.nomargin, .box-1-4.nomargin, .box-1-5.nomargin { margin:0;}
	.box-1.nopadding, .box-1-3.nopadding, .box-1-2.nopadding, .box-2-3.nopadding, .box-1-4.nopadding, .box-1-5.nopadding { padding:0;}

	.nomargin-right, .nomargin-left {margin-right:  inherit; margin-left: inherit;}

	
	.width-50 { width: 48%; }
	.width-100 { width: 98%; }

	.logobox {
		-webkit-box-shadow: none;
		-moz-box-shadow:    none;
		box-shadow:         none;
		border: none;
		height:100px;
		min-height: 100px;
	}
	.logobox:hover {
		-webkit-box-shadow: none;
		-moz-box-shadow:    none;
		box-shadow:         none;
	}

	.blue-back, .lightblue-back, .box-1-2.blue-back, .box-1-2.lightblue-back {
		font-size: 14px;
	}
	a.button.special {
		height: 90px;
		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; }

	.height-300.noresize { height:300px}

	
	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 : 9px;}
	
	.go-top {
		font-size: 1px;
		padding: 10px 0 0 9px;
	}
	
	.parallax {
	  padding:20px 0;
	}
	.parallax h1, .parallax h2, .parallax h3, .parallax h4, .parallax h5, .parallax h6, .parallax p, .parallax {
		font-size: 32px;
		letter-spacing: 0px;
	}
	.parallax h4, .parallax h5, .parallax h6, .parallax p, .parallax {
		font-size: 18px;
		letter-spacing: 0px;
	}
	.condovoice-issue, .condovoice-thumb {
		height: 180px;
	}
	
.calendar h4 {  margin-top: -10px;}
	
	.position-bottom-120 {
		bottom:40px;
	}
	.padding-bottom-170 {
		padding-bottom:100px;
	}
	#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(../images/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.7s ease 0s;
		-moz-transition: all 0.7s ease 0s;
		-o-transition: all 0.7s ease 0s;
		transition: all 0.7s ease 0s;
		}
	#search input[type="text"]:focus {
		width: 110px;
		color: #fff;
		background: rgba(0,0,0,0.5) url(../images/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;}

}
/* ||||||||||| END 670  |||||||||||| */


/*@media screen and (max-width: 420px) {

	.condovoice-issue, .condovoice-thumb {
		height: 150px;
	}
	
}*/
/* ||||||||||| END 420  |||||||||||| */

/* ||||||||||||| MOBILE MENUBAR START ||||||||||||| */
	#menubar {
	padding: 0;
	width: 100%;
	height: 41px;
	background-color: #6592b1;
	position: fixed;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 7px rgba(0,0,0,0.4);
	}

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

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

	#menuhead {
		display: block;
		width: 97%;
		margin:0 auto;
		padding: 10px;
		background-color: #6592b1;
		color:#FFF;
		font-size:14px;
		text-align:left;
		min-width:300px;
	}
	
	nav#mobilenav {
		display: inline-block;
		width: 97%;
		margin:0 auto;
		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: #6592b1;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		font-family: Verdana, Arial, sans-serif;
		font-size: 12px;
	}
	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: #6592b1 url(../images/sub-arrow.png) 280px 10px no-repeat;
	}
	nav#mobilenav ul li.has-submenu:hover {
		background: #004c74 url(../images/sub-arrow.png) 280px 10px no-repeat;
	}	
	nav#mobilenav ul li>a:hover {
		color: #fff99c;
	}
	nav#mobilenav ul li ul {
		display: none;
		margin-left: -12px;
		margin-right: -12px;
		background: #6592b1 /*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: none;
		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: #fff99c;
	}
	nav#mobilenav ul li:hover ul {
		/*display: block;*/
	}

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




/* ====================== DIRECTORY TABLE ======================== */

table .directory {
   border: inherit ;
}
.directory td, .directory th {
    padding: 0.5em .75em;
}
.directory td.err {
  background-color: #003399;
  color: #fff;
  font-size: 0.75em;
  text-align: center;
  line-height: 1;
  }
.directory th {
  background-color: #006699;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
}
.directory th a, .directory th a:visited {
  color: #fff;
}
.directory th a:hover, .directory th a:active {
  color: #9CC;
}

.directory tr, .directory tbody td {
  border-bottom:2px solid #ccc;
  background: rgb(242,242,242);

  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMmYyZjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);

  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(242,242,242,1) 100%);

  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(242,242,242,1)));

  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(242,242,242,1) 100%);

  background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(242,242,242,1) 100%);

  background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(242,242,242,1) 100%);

  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(242,242,242,1) 100%);

  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );

}

.directory h4 {
  font-size: 22px;
  color: #0099CC;
  margin: 5px 0 0 0;
  padding:10px;
  text-align:center;
  border-bottom:2px dotted #0099CC;
  width:100%;
}
#content .directory img, .directory img {
  max-width:275px;
  max-height:220px;
  float:right;
  margin:10px 0 10px 10px;
}

@media screen and (max-width: 700px) {
  #content .directory img, .directory img {
    max-width:175px;
    max-height:120px;
    margin:5px 0 5px 5px;
  }
}

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




/* =============================== BEST CONDO =================================== */

.bestcondo-1x1 { display:inline; float:left; margin:0; padding:0; text-align:center; border:1px solid #FFF; width: 33%; height: 0; padding-bottom: 33%;  position:relative; font-size:14px; color: #FFFFFF; text-shadow: 0 1px 2px rgba(0,0,0,0.3);     background-size: auto 100%;
    background-position: 50% 50%; }

.bestcondo-1x1 .hovertext {
	font-size: 14px;
	color: #FFF;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
	background: url(../images/hover-transparency.png);
	padding: 20px 10px 10px;
	position:absolute;
	width:100%;
	height:100%;
	visibility:hidden;
	opacity:0;
	transition:visibility 0s linear 0.5s, opacity 0.5s linear;
  }
.bestcondo-1x1:hover .hovertext { 
	display: block;
	visibility:visible;
	opacity:1;
	transition-delay:0s;
 }

.bestcondo-1x1 form {
	position: absolute;
	bottom:10px;
}


.bestcondo-1x1 .voted {
	position: absolute;
	right:0px;
	top:0px;
	background: url(../images/check.png) no-repeat;
	width: 44px;
	height: 43px;
}

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

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


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

span.highlight {
	font-weight:bold;
}
