* + html .accordion > dt {
  position: static;
}
* + html .accordion.horizontal > dt,
* + html .accordion.horizontal > dd {
  zoom: 1;
  *display: inline;
}

* + html .accordion > dt {
  position: static;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
textarea, input, button { outline: none; }

a { text-decoration: none; color: #28ade3;}

img { border: none; }

.clear { clear: both; }

html {
  margin: 0;
  padding: 0;
}
body {
  /*max-width: 800px;*/
  margin: 0;
  font-family: "FrutigerLTStd-Roman", sans-serif;
  font-size: 18px;
  color: #2e2e2e;
  /*background: #0066a5;*/
  height: 100%;
  padding: 0;
}

@font-face {
    font-family: FrutigerLTStd-Roman;
    src: url("../_fonts/FrutigerLTStd-Roman.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-Bold;
    font-weight: 700;
    src: url("../_fonts/FrutigerLTStd-Bold.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-BlackItalic;
    src: url("../_fonts/FrutigerLTStd-BlackItalic.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-Black;
    src: url("../_fonts/FrutigerLTStd-Black.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-BoldItalic;
    src: url("../_fonts/FrutigerLTStd-BoldItalic.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-Italic;
    src: url("../_fonts/FrutigerLTStd-Italic.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-Light;
    src: url("../_fonts/FrutigerLTStd-Light.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-LightItalic;
    src: url("../_fonts/FrutigerLTStd-LightItalic.otf") format("opentype");
}
@font-face {
    font-family: FrutigerLTStd-UltraBlack;
    src: url("../_fonts/FrutigerLTStd-UltraBlack.otf") format("opentype");
}


h1 {
  margin: 80px 0;
  font-size: 80px;
  line-height: 45px;
  text-transform: uppercase;
  text-align: center;
  color: #2c3e50;
  letter-spacing: -2px;
}
h1 small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0;
}
dl,
dd,
dt {
  padding: 0;
  margin: 0;
}
p {
  margin: 0 0 22px;
}

.page-txt {
  max-width: 980px;
  margin: 0 auto;
}


/* Blog */
.blog-wrapper {
  display: flex;
  justify-content: space-between;
}
.blog-wrapper .blog-item {
  width: 32%;
}

.blog-item .blog-img {

}
.blog-item .blog-img img {
  width: 100%;
  height: auto;
}

.blog-item .blog-txt {

}
.blog-item .blog-txt p {
  margin: 0;
  padding: 0;
}
.blog-item .blog-txt .blog-title {
  font-weight: 900;
  font-size: 22px !important;
  text-transform: uppercase;
  margin: 20px 0 !important;
}
.blog-item .blog-txt .blog-date {
  font-weight: 100;
  font-size: 13px !important;
  color: #666;
}
.blog-item .blog-txt .blog-lnk a {
  background-color: #28ade3;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 18px !important;
}

@media screen and (max-width: 768px) {
  .blog-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .blog-wrapper .blog-item {
    width: 100%;
  }
}



.accordion {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.accordion > dd {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.5s ease-in-out;
  -moz-transition: height 0.5s ease-in-out;
  -ms-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.accordion > dd.notransition {
  -webkit-transition: all 0s ease-out;
  -moz-transition: all 0s ease-out;
  -ms-transition: all 0s ease-out;
  -o-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.accordion.horizontal {
  padding: 0;
  font-size: 0;
  line-height: 0;
  /*background: #c12018;*/
  background: #fff;
  height: 90vh;
  overflow: hidden;
  position: relative;
}
.accordion.horizontal > dd,
.accordion.horizontal > dt {
  display: inline-block;
  vertical-align: top;
  height: 90vh;
  font-size: 16px;
  line-height: 24px;
}
.accordion.horizontal > dt {
  max-width: 5%;
  width: 5%;
}
.accordion.horizontal > dt div {

}
.accordion.horizontal > dt svg text {
	font-size: 20px;
	color: #fff;
	text-anchor:middle;
}
.accordion.horizontal > dt.active + dd {
  width: 70%;
  max-width: 70%;
  position: relative;
  z-index: 9999;
  /*padding: 20px;*/
}
.accordion.horizontal > dd {
  min-height: 100%;
  width: 0;
  height: 90vh;
  -webkit-transition: width 0.5s ease-in-out;
  -moz-transition: width 0.5s ease-in-out;
  -ms-transition: width 0.5s ease-in-out;
  -o-transition: width 0.5s ease-in-out;
  transition: width 0.5s ease-in-out;
}

.accordion.horizontal dt.active.tab-01s {
	display: none;
}

.accordion.horizontal > dt.active.tab-01s + dd {
	width: 75%;
	max-width: 75%;

}


.accordion {
  padding: 20px;
  /*margin: 0 0 50px;*/
  background: #fff;
  border-radius: 3px;
}
.accordion > dt {
  position: relative;
  padding: 10px;
  cursor: pointer;
  color: #2980b9;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #ecf0f1;
  border-radius: 2px;
  margin-bottom: 10px;
}

.accordion > dt:hover {
  background: #dde4e6;
}
.accordion > dt.active {
  color: #444;
 /* background: #fed813 !important;*/
}
.accordion > dd {
  padding-left: 10px;
  padding-right: 10px;
}
.accordion.horizontal > dt {
  padding: 0;
  border-radius: 0;
  margin: 0;
  background: #28ade3;
  color: #fff;
  position: relative;
}
.accordion.horizontal > dt:hover {
  background: #28ade3;
}
.accordion.horizontal dt.tab-01s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-02s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-03s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-04s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-05s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-06s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-07s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
.accordion.horizontal dt.tab-08s div {
	transform: rotate(90deg);
	transform-origin: top;
	/*margin: 110px -20px 0 0;*/
	margin: 70% 0 0 0;
	font-size: 24px;
	font-weight: bold;
	height: 100%;
}
/*
.accordion.horizontal > dt.active:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 100%;
  margin-top: -6px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #333;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.accordion.horizontal > dt.active:hover:after {
  border-left-color: #666;
}
*/


.accordion.horizontal dd.tab-01 {
	/*background-image: url(../_img/large/tab-01bg.jpg);*/
	background-size:auto;
	background-position: center center;
}



.accordion.horizontal dt.tab-01s {
	/*background-image: url(../_img/large/tab-01bg.jpg);*/
	background-size: cover;
	background-position: center center;
}
.accordion.horizontal dd.tab-02 {
	background-image: url(../_imgNEW/orth-banner.jpg);
	background-size: cover;
	background-position: bottom;
}
.accordion.horizontal dt.tab-02s {
	background-color: #1686af;
	background-size: 50%;
  opacity: 1;
	background-position: center 80%;
	/*background-image: url('../_img/tab-icon-01.png');*/
	background-repeat: no-repeat;
	z-index: 500;
}
.accordion.horizontal dt.tab-02s:hover {
	background-color: #1686af;
  opacity: 0.75;
  color: #ece2a9;
}
.accordion.horizontal dt.tab-02s.tab-active {
	background-image: none;
	background-color: #1686af;
  opacity: 0.75;
  color: #ece2a9;
}
.accordion.horizontal dd.tab-03 {
	background-image: url(../_img/large/tab-03b.jpg);
	background-size: auto;
	background-position: center top;
}
.accordion.horizontal dt.tab-03s {
	background-size: auto;
	background-position: center top;
	background-color: rgba(232, 155, 58, 1);
	background-image: url(../_img/tab-mute30.png);
}
.accordion.horizontal dt.tab-03s:hover {
	background-color: rgba(232, 155, 58, 1);
	background-image: none;
}
.accordion.horizontal dd.tab-04 {
	background-image: url(../_imgNEW/prac-banner.jpg);
	background-size: cover;
	background-position: center center;
}
.accordion.horizontal dt.tab-04s {
	background-color: #ece2a9;
  opacity: 1;
	background-size: 50%;
	background-position: center 80%;
	/*background-image: url('../_img/tab-icon-03.png');*/
	background-repeat: no-repeat;
	z-index: 300;
}
.accordion.horizontal dt.tab-04s:hover {
	background-color: #ece2a9;
  color: #1686af;
  opacity: 0.75;
}
.accordion.horizontal dt.tab-04s.tab-active {
	background-color: #ece2a9;
  color: #1686af;
  opacity: 0.75;
}
.accordion.horizontal dd.tab-05 {
	/*background-image: url(../_imgNEW/banner-1.jpg);*/
	background-size: auto;
	background-position: top top;
}
.accordion.horizontal dt.tab-05s {
	background-color: #28ade3;
	background-size: 50%;
	background-position: center 80%;
	/*background-image: url('../_img/tab-icon-05.png');*/
	background-repeat: no-repeat;
	z-index: 200;
}
.accordion.horizontal dt.tab-05s:hover {
	background-color: #28ade3;
}
.accordion.horizontal dt.tab-05s.tab-active {
	background-color: #28ade3;
}
.accordion.horizontal dd.tab-06 {
	background-image: url(../_imgNEW/contact-us.jpg);
	background-size: cover;
	background-position: center center;
}
.accordion.horizontal dt.tab-06s {
	background-color: #1686af;
	background-size: 50%;
  opacity: 1;
	background-position: center 80%;
	/*background-image: url('../_img/tab-icon-04.png');*/
	background-repeat: no-repeat;
	z-index: 100;
}
.accordion.horizontal dt.tab-06s:hover {
	background-color: #1686af;
  color: #ece2a9;
  opacity:0.75;
}
.accordion.horizontal dt.tab-06s.tab-active {
	background-color: #1686af;
  color: #ece2a9;
  opacity: 0.75;
}
.accordion.horizontal dd.tab-07 {
	background-image: url(../_img/bracing-01.jpg);
	background-size: cover;
	background-position: center center;
}
.accordion.horizontal dt.tab-07s {
	background-color: #1686af;
	background-size: 50%;
  opacity: 1;
	background-position: center 80%;
	/*background-image: url('../_img/tab-icon-02.png');*/
	background-repeat: no-repeat;
	z-index: 400;
}
.accordion.horizontal dt.tab-07s:hover {
	background-color: #1686af;
  opacity: 0.75;
  color: #ece2a9;
}
.accordion.horizontal dt.tab-07s.tab-active {
	background-color: #1686af;
  opacity: 0.75;
  color: #ece2a9;
}


.accordion.horizontal dd.tab-08 {
	background-image: url(../_img/sandal-banner.jpg);
	background-size: cover;
	background-position: center center;
}
.accordion.horizontal dt.tab-08s {
	background-color: #ece2a9;
  opacity: 1;
	background-size: 50%;
	background-position: center 80%;
	/*background-image: url('../_img/tab-icon-02.png');*/
	background-repeat: no-repeat;
	z-index: 400;
}
.accordion.horizontal dt.tab-08s:hover {
	background-color: #ece2a9;
  opacity: 0.75;
  color: #1686af;
}
.accordion.horizontal dt.tab-08s.tab-active {
  background-color: #ece2a9;
  opacity: 0.75;
  color: #1686af;
}


.accordion.horizontal dt.tab-active {
	/*background-image: none;*/
}
.accordion.horizontal > dd {
  padding-left: 0;
  padding-right: 0;
}
.accordion.horizontal > dd.tab-01 h2 {
	color: #fff;
	font-size: 30px;
	line-height: 30px;
	font-family: "FrutigerLTStd-Black", sans-serif;
   color: #000;
	bottom: 110px;
	left: 0;
	position: absolute;
	padding: 20px 0 20px 40px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.65);
	padding-right: 20px;
	display: none;
}
.accordion.horizontal > dt.active.tab-01s + dd.tab-01 h2 {
	display: block;
}
.accordion.horizontal > dt.active.tab-01s + dd.tab-01 div.home-arrows {
	position: absolute;
	top:45%;
	margin-top:-32px;
	width: 100%;
	z-index: 9999;
}
.accordion.horizontal > dd.tab-01 div.home-arrows a.home-arrows-left {
	float: left;
	margin-left: 20px;
	cursor: pointer;
}
.accordion.horizontal > dd.tab-01 div.home-arrows a.home-arrows-right {
	float: right;
	margin-right: 20px;
	cursor: pointer;

}


.accordion.horizontal > dd h2 {

}
.accordion.horizontal > dt.active + dd span {
	background-color:rgba(29,29,35,0.75);
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  padding: 30px 40px;
  display: block;
}
.accordion.horizontal > dt.active + dd span div.tab-text {
	width: 90%;
}
.accordion.horizontal > dt.active + dd span a {
	/*position: absolute;
	/*bottom: 100px;
	top:20px;
	right: 40px;*/
	color: #000;
  font-weight: 700;
  border-radius: 10px;
  background-color:#1270A2;
  padding:10px;
  margin: 0 10px;
}

.accordion.horizontal > dt.active + dd span div.tab-text h3 {
	font-size: 21pt;
	font-family: FrutigerLTStd-Bold;
}

.accordion.horizontal > dt.active + dd.tab-02 span h3 {
	color: #FFF;
}
.accordion.horizontal > dt.active + dd.tab-07 span h3 {
	color: #FFF;
}
.accordion.horizontal > dt.active + dd.tab-08 span h3 {
	color: #FFF;
}
.accordion.horizontal > dt.active + dd.tab-04 span h3 {
	color: #FFF;
}
.accordion.horizontal > dt.active + dd.tab-05 span h3 {
	color: #FFF;
}
.accordion.horizontal > dt.active + dd.tab-06 span h3 {
	color: #FFF;
}

/*
.accordion.horizontal > dt.active.tab-02s + dd span a {
	background-color: rgba(255, 246, 46, 1);
	color: #1d1d23;
}
.accordion.horizontal > dt.active.tab-07s + dd span a {
	background-color: rgba(232, 155, 58, 1);
}
.accordion.horizontal > dt.active.tab-04s + dd span a {
	background-color: rgba(255, 42, 49, 1);
}
.accordion.horizontal > dt.active.tab-05s + dd span a {
	background-color: rgba(175, 124, 232, 1);
}
.accordion.horizontal > dt.active.tab-06s + dd span a {
	background-color: rgba(0, 118, 207, 1);
}
*/
.tab-06 table tr td {
	color: #fff;
}
.accordion.horizontal > dt.active.tab-06s + dd span table a {
	display: inline-block;
	padding: 0;
	border-radius: 0;
	background-color: inherit;
	color: #fff;
	position: inherit;
}

.tab-06 table tr td a{
	display: inherit;
	padding: 0;
	border-radius: 0;
	background-color: inherit;
	color: #fff;
}

.accordion.horizontal > dd p {
  color: #fff;
  font-size: 14px;
}
.accordion.horizontal > dd h3 {
	color: #fff;
	font-size: 21pt;
	font-family: FrutigerLTStd-Bold;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.accordion.horizontal > dd ul {
	list-style: disc;
	margin: 10px 0 10px 30px;
	padding: 0 0 10px 10px;
	color: #fff;
}
.accordion.horizontal > dd ul li {
	padding: 0 0 0 10px;
}
.accordion.horizontal > dd ul li a{
	color: #fff;
	text-decoration: underline;
}

.header {
	background: #fff;
	padding: 10px 40px;
	min-height: 100px;
	display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
	max-width: 150px;
	width: 19%;
	display: inline-block;
}
.logo img {
	max-width: 100%;
	display:block;
	height: auto;
}
.header-nav {
	width: 80%;
	display: inline-block;
	text-align: right;
}
.header-nav a {

}
.header-nav a.social {
	max-width: 30px;
	display: inline-block;
	margin: 0 10px;
}
.header-nav a.social img {
	width: 100%;
	height: auto;
}
.header-nav a.donate {
	max-width: 35px;
	display: inline-block;
	margin: 0 10px;
	/*vertical-align: bottom;*/
}
.header-nav a.donate img {
	width: 100%;
	height: auto;
	display: block;
}
.header-nav a.func {
	max-width: 30px;
	display: inline-block;
	margin: 0 10px;
}
.header-nav a.lang {
	padding: 5px;
	background:#0066a5;
	color: #fff;
	font-weight: 700;
	vertical-align: super;
	display: inline-block;
	margin: 4px 10px 0 10px;
	max-height: 30px;
}

.header-nav a.func img {
	width: 100%;
	height: auto;
}
.header-nav form {
	display: inline-block;
	vertical-align: bottom;
}

input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
	display: none;
}


input[type=search] {
	background-color: #fff;
	background-image: url('../_img/header-icons/search-icon.png');
	background-size: 30px 30px;
	background-position: left center;
	background-repeat: no-repeat;
	border: none;
	padding: 9px 10px 9px 32px;
	width: 55px;

	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 10em;

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
input.inner-search {
	padding-top: 0 !important;
}


input:-moz-placeholder {
	color: #999;
}
input::-webkit-input-placeholder {
	color: #999;
}

/* Demo 2 */
#search-box input[type=search] {
	width: 15px;
	padding-left: 10px;
	color: transparent;
	cursor: pointer;
}
#search-box input[type=search]:hover {
	background-color: #e5e5e5;
}
#search-box input[type=search]:focus {
	width: 130px;
	padding-left: 42px;
	border: solid 1px #000;
	color: #000;
	background-color: #fff;
	cursor: auto;
}
#search-box input:-moz-placeholder {
	color: transparent;
}
#search-box input::-webkit-input-placeholder {
	color: transparent;
}

.tab-nav-list {
	float: left;
	width: 40%;
	display: block;
}
dd span p {
	margin-bottom: 5px;
}


/* CONTENT STYLES */

.page-content-wrapper {
	max-width: 1140px;
	margin: 0 auto;
	background: #fff;
}

.page-nav {
  width: 100%;
  background-color:#0066a5;
}
.page-nav ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}
.page-nav ul li {
  list-style: none;
  flex-grow: 1;
  text-align: center;
  color: #fff;
  border-right: 2px solid white;
}
.page-nav ul li:first-child {
	border-left: 2px solid white;
}
.page-nav ul li a {
  display: block;
  color: #fff;
  padding: 20px 10px;
  text-shadow: 1px 1px 3px rgba(48, 48, 48, 1);
  height: 100%;
}
.page-nav ul li a.pn01 {
	background-color: rgba(255, 246, 46, 1);
}
.page-nav ul li a.pn02 {
	background-color: rgba(204, 85, 0, 1);
}
.page-nav ul li a.pn03 {
	background-color: rgba(255, 42, 49, 1);
}
.page-nav ul li a.pn04 {
	background-color: rgba(175, 124, 232, 1);
}
.page-nav ul li a.pn05 {
	background-color: #0066a5;
	white-space: nowrap;
}


.page-content-header {
	padding: 40px 40px;
	/*background-image: url('../_img/large/tab-02b.jpg');*/
	opacity: .9;
	background-color: #000;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 300px;
	display: flex;
  align-items: center;
  justify-content: center;
}
.pch02 {
	background-image: url('../_img/large/tab-01b.jpg');
}
.pch03 {
	background-image: url('../_img/large/tab-04b.jpg');
	background-position: center center;
}
.pch04 {
	background-image: url('../_imgNEW/banner-1.jpg');
}
.pchd {
	/*background-image: url('../_img/large/tab-01bg.jpg');*/
}

.page-content-header h1 {
	font-size: 75px;
	line-height: 75px;
	color: #fff;
	margin: 0;
	padding: 0;
	text-shadow: 3px 3px 6px rgba(48, 48, 48, 1);
}
.page-content {
	padding: 20px 0px;
	color: #1d1d23;
}
.page-content p {
	  font-family: FrutigerLTStd-Light;
	  font-size: 18px;
  }
.page-content a {
	color: #2b6fa8;
	text-decoration: none;
	font-family: FrutigerLTStd-Light;
}
.page-content h2 {
	font-size: 26px;
	line-height: 28px;
	margin-top: 40px;
}
#slideText {
	line-height: 46px;
}
.page-content p.list-title {
	margin-bottom: 5px;
}


.page-content ul {
	padding-left: 40px !important;
	list-style: none;
}


.page-content ul.list-enable {
	list-style: disc;
	padding-left: 40px !important;
}
.page-content ul.list-enable li {

}
.page-content ul.list-enable li ul {
	list-style: circle;
}




.page-content ol {
	margin-top: 5px;
}
/*.page-content ul li:before { content: "-" };*/
.page-content ul li {
	margin: 5px 0;
	font-family: FrutigerLTStd-Light;
}
.page-content ul li.list-subhead {
	font-family: FrutigerLTStd-Bold;
	font-size: 18px;
	margin: 10px 0 0 0;
}
.page-content ul li.list-subhead ul {
	margin-top: 10px;
}
.page-content ol li {
	margin: 15px 0;
	font-family: FrutigerLTStd-Light;
}
.page-content ol li ol li, .page-content ul li ul li {
	margin: 5px 0;
}
.page-content ul li ol li, .page-content ol li ul li {
	margin: 5px 0;
}
.page-content-breadcrumb {
	padding: 10px 0;
	font-size: 14px;
	margin: 0 0 20px 0;
}
.page-content-breadcrumb a {
	color: rgba(170, 35, 40, 1);
	margin: 0 5px;
}
.page-content-breadcrumb a:hover {
	color: rgba(255, 42, 49, 1);
}


.contact-content-left {
	width: 50%;
	float: left;
}
.contact-content-right {
	width: 50%;
	float: left;
}

table.comp-table {
	width: 100%;
	text-align: left;

}
.comp-table tr {
	transition: 0.2s;
}
.comp-table thead tr { background: none !important;}
.comp-table thead tr th {
	padding: 10px;
}
.comp-table tr:nth-child(odd) {
	background: #e5e5e5;
}

.comp-table tr td {
	padding: 10px ;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
}
.comp-table tr td:nth-child(1) {
	border-left: 1px solid #ccc;
}
.comp-table tbody tr:hover {
	background: #878787;
	color: #fff;
}



.oolab-ortho-wrapper {
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding: 40px;
  border-bottom: 1px solid #0469a8;
}
.oolab-ortho-txt {
	width: 65%;
}
.oolab-ortho-txt h3 {
  color: #0469a8 !important;
  font-size: 20px;
}
.oolab-ortho-txt ul {
  list-style: square;
}
.oolab-ortho-img {
	width: 28%;
}
.oolab-ortho-img h3 {
  color: #0469a8 !important;
  font-size: 20px;
}
.oolab-ortho-img img {
	width: 100%;
	height: auto;
	display: block;
}
.oolab-form-wrapper {
	display: flex;
	justify-content: space-between;
}
.oolab-form-wrapper ul {
	list-style: square;
}
.oolab-form-wrapper ul li {
	margin-left: 20px;
}
.oolab-form-wrapper ul strong {
	margin-top: 20px;
	display: block;
}
.about-banner {
	max-width: 1024px;
	margin: 0 auto;
}
.about-banner img {
	display: block;
	width: 100%;
	height: auto;
}
.contact-wrapper {
	display: flex;

}
.contact-wrapper div {
	margin-right: 40px;
}
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:30%;
    width:100%;
    position:absolute;
}


@media screen and (max-width: 768px) {
	.oolab-ortho-wrapper {
		justify-content: center;
		flex-direction: column-reverse;
		padding-bottom: 60px;
	}
	.oolab-ortho-txt, .oolab-ortho-img {
		width: 100%;
	}
	.oolab-form-wrapper {
		flex-direction: column;
		justify-content: center;
		padding-bottom: 60px;
	}
	.map-responsive iframe{
    left:0;
    top:0;
    height:80%;
    width:100%;
    position:absolute;
}
}


.footer {
	width: 100%;
	text-align: center;
	height: 74px;
	line-height: 60px;
}
.footer a {
	color: #fff;
	display: inline-block;
	margin: 0 60px;
	line-height: 24px;
	font-weight: bold;
	text-transform: uppercase;
}
.footer-fr a {
	font-size: 16px;
	margin: 0 30px;
}
div.legal {
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: 0 0 10px 0;
}
div.legal a {
	color: #fff;
}

.fw-footer {
	background-color: #2b6fa8;
	/*height: 100px;*/
	width: 100%;
	position: fixed;
	bottom: 0;
	color: #fff;
	font-size: 18px;
	padding: 20px 0 20px 40px;
	z-index: 9999;
}
.fw-footer a {
	display: inline-block;
	margin-right: 40px;
	color: #fff;
	font-weight: 300;
}


#tab_Training {
	display: none;
}
.mobile-content {
	display: none;
}
.mbl-menu-lnk { display: none;}
.mbl-menu {display: none;}
.mbl-social {display: none;}





/* Full Width Styles */
.fw-body {
	background: #fff;
	max-width: 100%;
	height: 100vh;
}
.fw-header {
	list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 40px 10px 40px;
}
.fw-header img {
	width: 100%;
	height: auto;
}
.fw-header-logo {
	width: 45.3%;
}
.fw-header-logo a {
	max-width: 140px;
	display: block;
}
.fw-header-home {
	width: 9.3%;
}
.fw-header-home a {
	max-width: 40px;
	display: block;
	margin: 0 auto;
}
.fw-header-social-container {
	width: 45.3%;
	text-align: right;
	align-items: center;
	display: flex;
	justify-content: flex-end;
}
.fw-header-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
	float: right;
}
.fw-header-social li {
	list-style: none;
	float: left;
	margin: 10px 20px;
}
.header-social-smaller li {
  margin: 0 10px;
}
.fw-header-social li a {
	display: block;
	max-width: 30px;
}

.inner-nav {
	display: flex;
	align-items: flex-start;
	align-content: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}
.inner-nav a {
	display: block;
	margin: 10px;
}
.inner-nav a::after {
	content: "|";
	margin-left: 18px;
}
.inner-nav a:last-child::after {
	content: none;
}
.inner-sub-nav {
	display: flex;
	justify-content: center;
	align-items: center;
  flex-wrap: wrap;
}
.inner-sub-nav a {
	font-size: 14px;
	text-transform: uppercase;
	margin: 5px;
}
.inner-sub-nav a::after {
	content: "|";
	margin-left: 10px;
}
.inner-sub-nav a:last-child::after {
	content: none;
}


.inner-nav a.tab-01 {
	background-image: url('../_img/fw/tab-01-off.png');
	background-position: center center;
	background-size: cover;
}
.inner-nav a.tab-01:hover {
	background-image: url('../_img/fw/tab-01-over.png');
}

.inner-nav a.tab-02 {
	background-image: url('../_img/fw/tab-02-off.png');
	background-position: center center;
	background-size: cover;
}
.inner-nav a.tab-02:hover {
	background-image: url('../_img/fw/tab-02-over.png');
}

.inner-nav a.tab-03 {
	background-image: url('../_img/fw/tab-03-off.png');
	background-position: center center;
	background-size: cover;
}
.inner-nav a.tab-03:hover {
	background-image: url('../_img/fw/tab-03-over.png');
}

.inner-nav a.tab-04 {
	background-image: url('../_img/fw/tab-04-off.png');
	background-position: center center;
	background-size: cover;
}
.inner-nav a.tab-04:hover {
	background-image: url('../_img/fw/tab-04-over.png');
}

.inner-nav a.tab-05 {
	background-image: url('../_img/fw/tab-05-off.png');
	background-position: center center;
	background-size: cover;
}
.inner-nav a.tab-05:hover {
	background-image: url('../_img/fw/tab-05-over.png');
}

.pri-sub-header {
	color: #2b6fa8;
	font-size: 18px !important;
	font-family: FrutigerLTStd-Bold !important;
}

.inner-nav a img {
	width: 100%;
	height: auto;
	display: block;
}

.fw-pcontent {
	padding-bottom: 100px;
}
.fw-pcontent-titlebar {
	padding-top: 80px;
	text-align: left;
}
.fw-pctb-01 {
	background-color: #ffdd00;
}
.fw-pctb-02 {
	background-color: #ee8615;
}
.fw-pctb-03 {
	background-color: #de2516;
}
.fw-pctb-04 {
	background-color: #883f88;
}
.fw-pctb-05 {
	background-color: #006bae;
}

.fw-pctb-about {
	background-image: url('../_img/About-Us-Photo.jpeg');
	background-size: cover;
	background-position: center center;
	padding-top: 120px;
}
.fw-pctb-pub {
	background-image: url('../_img/Publications-Photo.jpeg');
	background-size: cover;
	background-position: center 82%;
	padding-top: 120px;
}
.fw-pctb-news {
	background-image: url('../_img/News-Events-Photo.jpeg');
	background-size: cover;
	background-position: center 70%;
	padding-top: 120px;
}
.fw-pctb-priv {
	background-image: url('../_img/Privacy-Photo.jpeg');
	background-size: cover;
	background-position: center center;
	padding-top: 120px;
}
.fw-pctb-legal {
	background-image: url('../_img/privacy.jpg');
	background-size: cover;
	background-position: center center;
	padding-top: 120px;
}
.fw-pctb-donate {
	background-image: url('../_img/donate-banner-bg.jpg');
	background-size: cover;
	background-position: center center;
	padding-top: 120px;
}
.fw-pctb-donate-fr {
	background-image: url('../_img/donate-banner-bg-fr.jpg');
	background-size: cover;
	background-position: center center;
	padding-top: 120px;
}

.fw-pcontent-titlebar h1 {
	margin: 0;
	padding: 0;
	font-family: FrutigerLTStd-Black;
	font-size: 60px;
	line-height: 30px;
	color: #fff;
	text-align: left;
	letter-spacing: 1px;
}
.fw-pctb-priv h1 {
	font-size: 50px !important;
	line-height: 25px;
}


.fw-pcontent-body {
	margin: 0 40px 20px 40px;

}



.fw-footer {
	background-color: #2b6fa8;
	/*height: 100px;*/
	width: 100%;
	position: fixed;
	bottom: 0;
	color: #fff;
	font-size: 18px;
	padding: 20px 0 20px 40px;
}
.fw-footer-left {
	float: left;
}
.fw-footer-right {
	float: right;
	padding-right: 20px;
	font-size: 12px;
}
.fw-footer a {
	display: inline-block;
	margin-right: 40px;
	color: #fff;
	font-weight: 300;
}


button[data-balloon] {
  overflow: visible; }

[data-balloon] {
  position: relative;
  cursor: pointer; }
  [data-balloon]:after {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    -moz-transition: all 0.18s ease-out 0.18s;
    -ms-transition: all 0.18s ease-out 0.18s;
    -o-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    font-family: FrutigerLTStd-Roman !important;
    /*font-family: sans-serif !important;*/
    font-weight: normal !important;
    font-style: normal !important;
    text-shadow: none !important;
    font-size: 14px !important;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 4px;
    color: #fff;
    content: attr(data-balloon);
    padding: 5px 5px 2px 5px;
    position: absolute;
    white-space: nowrap;
    z-index: 10; }
  [data-balloon]:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22https://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.18s ease-out 0.18s;
    -moz-transition: all 0.18s ease-out 0.18s;
    -ms-transition: all 0.18s ease-out 0.18s;
    -o-transition: all 0.18s ease-out 0.18s;
    transition: all 0.18s ease-out 0.18s;
    content: '';
    position: absolute;
    z-index: 10; }
  [data-balloon]:hover:before, [data-balloon]:hover:after, [data-balloon][data-balloon-visible]:before, [data-balloon][data-balloon-visible]:after {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    pointer-events: auto; }
  [data-balloon].font-awesome:after {
    font-family: FontAwesome; }
  [data-balloon][data-balloon-break]:after {
    white-space: pre; }
  [data-balloon][data-balloon-blunt]:before, [data-balloon][data-balloon-blunt]:after {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none; }
  [data-balloon][data-balloon-pos="up"]:after {
    bottom: 100%;
    left: 50%;
    margin-bottom: 11px;
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up"]:before {
    bottom: 100%;
    left: 50%;
    margin-bottom: 5px;
    -webkit-transform: translate(-50%, 10px);
    -moz-transform: translate(-50%, 10px);
    -ms-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up"]:hover:after, [data-balloon][data-balloon-pos="up"][data-balloon-visible]:after {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos="up"]:hover:before, [data-balloon][data-balloon-pos="up"][data-balloon-visible]:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos="up-left"]:after {
    bottom: 100%;
    left: 0;
    margin-bottom: 11px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-left"]:before {
    bottom: 100%;
    left: 5px;
    margin-bottom: 5px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-left"]:hover:after, [data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos="up-left"]:hover:before, [data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos="up-right"]:after {
    bottom: 100%;
    right: 0;
    margin-bottom: 11px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-right"]:before {
    bottom: 100%;
    right: 5px;
    margin-bottom: 5px;
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top; }
  [data-balloon][data-balloon-pos="up-right"]:hover:after, [data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos="up-right"]:hover:before, [data-balloon][data-balloon-pos="up-right"][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down']:after {
    left: 50%;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px); }
  [data-balloon][data-balloon-pos='down']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22https://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    left: 50%;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(-50%, -10px);
    -moz-transform: translate(-50%, -10px);
    -ms-transform: translate(-50%, -10px);
    transform: translate(-50%, -10px); }
  [data-balloon][data-balloon-pos='down']:hover:after, [data-balloon][data-balloon-pos='down'][data-balloon-visible]:after {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos='down']:hover:before, [data-balloon][data-balloon-pos='down'][data-balloon-visible]:before {
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
  [data-balloon][data-balloon-pos='down-left']:after {
    left: 0;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-left']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22https://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    left: 5px;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-left']:hover:after, [data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down-left']:hover:before, [data-balloon][data-balloon-pos='down-left'][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down-right']:after {
    right: 0;
    margin-top: 11px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-right']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22https://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(180 18 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 18px;
    height: 6px;
    right: 5px;
    margin-top: 5px;
    top: 100%;
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px); }
  [data-balloon][data-balloon-pos='down-right']:hover:after, [data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:after {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='down-right']:hover:before, [data-balloon][data-balloon-pos='down-right'][data-balloon-visible]:before {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }
  [data-balloon][data-balloon-pos='left']:after {
    margin-right: 11px;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%); }
  [data-balloon][data-balloon-pos='left']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22https://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(-90 18 18)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    margin-right: 5px;
    right: 100%;
    top: 50%;
    -webkit-transform: translate(10px, -50%);
    -moz-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    transform: translate(10px, -50%); }
  [data-balloon][data-balloon-pos='left']:hover:after, [data-balloon][data-balloon-pos='left'][data-balloon-visible]:after {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-pos='left']:hover:before, [data-balloon][data-balloon-pos='left'][data-balloon-visible]:before {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-pos='right']:after {
    left: 100%;
    margin-left: 11px;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%); }
  [data-balloon][data-balloon-pos='right']:before {
    background: no-repeat url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22https://www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(90 6 6)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
    background-size: 100% auto;
    width: 6px;
    height: 18px;
    left: 100%;
    margin-left: 5px;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    -moz-transform: translate(-10px, -50%);
    -ms-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%); }
  [data-balloon][data-balloon-pos='right']:hover:after, [data-balloon][data-balloon-pos='right'][data-balloon-visible]:after {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-pos='right']:hover:before, [data-balloon][data-balloon-pos='right'][data-balloon-visible]:before {
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  [data-balloon][data-balloon-length='small']:after {
    white-space: normal;
    width: 80px; }
  [data-balloon][data-balloon-length='medium']:after {
    white-space: normal;
    width: 150px; }
  [data-balloon][data-balloon-length='large']:after {
    white-space: normal;
    width: 260px; }
  [data-balloon][data-balloon-length='xlarge']:after {
    white-space: normal;
    width: 380px; }
    @media screen and (max-width: 768px) {
      [data-balloon][data-balloon-length='xlarge']:after {
        white-space: normal;
        width: 90vw; } }
  [data-balloon][data-balloon-length='fit']:after {
    white-space: normal;
    width: 100%; }


.bwlink {
	display: block;
	width: 100%;
	height: 100%;
}


.tshirt-container {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;

}
.tshirt-photo {
	float: left;
	width: 40%;
}
.tshirt-info {
	float: left;
	width: 55%;
	margin-left: 5%;
}



.tshirt-container h4 {
	font-weight: bold;
	font-size: 22px;
	margin: 0;
	padding: 0;
}
.tshirt-container h6 {
	font-size: 20px;
	margin: 15px 0;
	padding: 0;
}
.tshirt-container div p {
	font-size: 16px !important;
}
.tshirt-container p strong {
font-weight: 900;
font-family: "FrutigerLTStd-Roman", sans-serif;
}
.tshirt-container div p.tshirt-size-title {
	margin: 20px 0 0 0 !important;
}
.tshirt-container div p.tshirt-size-btns a, .tshirt-model a {
	margin: 0 10px;
	border: 1px solid #dadce0;
	border-radius: 4px;
	padding: 5px 10px 2px 10px;
	color: #626a72;
	font-weight: bold;
	font-size: 16px;
}
.tshirt-container div p.tshirt-size-btns a:hover, .tshirt-model a:hover {
	background: #dadce0;
	color: #fff;
}
.tshirt-container div p.tshirt-size-btns a.tshit-size-btns-on, .tshirt-model a.tshirt-model-on {
		background: #dadce0;
	color: #fff;
}

.tshirt-model {
	margin-top: 10px;
}


.sizeButton {
	cursor: pointer;
}

.tshirt-container div a.tshirt-buythis {
	padding: 20px 40px;
	border-radius: 4px;
	background: #5e81a5;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	margin: 20px 0;
	display: inline-block;
}

div.tshirt-container form {
	max-width: 980px;
	margin: 0 auto;
}

div.tshirt-container form label, div.tshirt-container form label input {
	display: block;
	width: 100%;
}

div.tshirt-container form label {
	margin-top: 20px;
}
div.tshirt-container form input {
	width: 400px;
	height: 35px;
	text-indent: 10px;
}
div.tshirt-container form select {
	display: block;
	width: 400px;
	height: 35px;
	font-size: 16px;
}

div.tshirt-container form input[type=checkbox] {
	width: 20px;
	vertical-align: middle;
}

div.tshirt-container form input[type=submit] {
	margin: 40px 0 20px 0px;
	border: 1px solid #dadce0;
	border-radius: 4px;
	padding: 5px 10px 5px 10px;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	display: block;
	background: rgba(47, 112, 166, 1.0);
	width: 100px;
	text-indent: 0;
	text-transform: uppercase;
}

div.tshirt-container div.tshirt-disclaimer p {
	font-size: 12px !important;
}

div.tshirt-recap {
	margin: 20px 0;
}


@media screen and (max-width: 768px) {
	.tshirt-photo {
		float: none;
		width: 100%;
		display: block;
	}
	.tshirt-info {
		float: none;
		width: 100%;
		margin-left: 0;
		display: block;
	}
	.tshirt-container video {
		width: 100%;
		height: auto;
		display: block;
		margin: 10px 0;
	}
	#shirtImage {
		width: 100%;
		height: auto;
	}
	.tshirt-container div p.tshirt-size-btns a, .tshirt-model a {
		display: inline-block;
		margin: 10px;
	}
	div.tshirt-container form input, div.tshirt-container form select {
		width: 100%;
	}
}

a.selected {
  z-index:100;
}

.messagepop {
  background-color:#FFFFFF;
  border:none;
  cursor:default;
  display:none;
  margin-top: 15px;
 /* position:absolute;*/
  text-align:left;
  /*z-index:50;*/
  padding: 25px;
}

label.popup {
  display: block;
  margin-bottom: 3px;
  padding-left: 15px;
  text-indent: -15px;
}

.messagepop2 p, .messagepop2.div {
  border-bottom: 1px solid #EFEFEF;
  margin: 8px 0;
  padding-bottom: 8px;
}
.messagepop2 {
  background-color:#FFFFFF;
  border:1px solid #999999;
  cursor:default;
  display:none;
  margin-top: 15px;
  position:absolute;
  text-align:left;
  z-index:50;
  padding: 25px;
}

label.popup2 {
  display: block;
  margin-bottom: 3px;
  padding-left: 15px;
  text-indent: -15px;
}

.messagepop2 p, .messagepop2.div {
  border-bottom: 1px solid #EFEFEF;
  margin: 8px 0;
  padding-bottom: 8px;
}

/* End Full Width Styles */

.cbw {
	display: flex;
  justify-content: space-between;
  width: 100%
}

.cb {
	width: 30%;
}

/* Donate Page styles */

.page-content p {
	margin: 10px 0 !important;
	font-size: 18px !important;
}
.page-content h2 {
	color: #0469a8 !important;
	font-family: FrutigerLTStd-Bold !important;
	font-size: 24px !important;
}
.page-conent h3 {
	font-family: FrutigerLTStd-Bold !important;
	font-size: 21px !important;
	margin: 15px 0 !important;
}


.content-flex {
	display: flex;
	justify-content: space-between;
}
.content-flex div.cf01 {
	width: 64%;
}
.content-flex div.cf02 {
	width: 34%;
}
.content-flex div.cfi01 {
	width: 49%;
}
.content-flex div.cfi02 {
	width: 49%;
}


.content-flex div img {
	width: 100%;
	height: auto;
	display: block;
	margin: 10px 0;
}
.cf01 ul li {
	margin: 30px 20px;
}

.page-content p.largeTxt {
	font-size: 30px !important;
}

.small-container {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}
.small-container .sc01 {
	max-width: 270px;
	margin-right: 50px;
}
.small-container .sc01 img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (max-width:768px) {
	.content-flex {
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.content-flex div.cf01 {
		width: 100%;
	}
	.content-flex div.cf02 {
		width: 100%;
	}
	.content-flex div.cfi01 {
		width: 100%;
	}
	.content-flex div.cfi02 {
		width: 100%;
	}
}

/* THIS IS A HEIGHT BASED QUERY */
@media screen and (max-height: 750px) {
	.accordion.horizontal {
		margin-bottom: 60px;
	}
}

/* END HEIGHT BASED MEDIA QUERIES */

@media screen and (max-width: 1350px) {
	.fw-footer-left-fr {
		display: block;
		float: none;
			text-align: center;
	}
	.fw-footer-right-fr {
		display: block;
		float: none;
		text-align: center;
		margin-top: 10px;
	}
}

.part-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.part-logos div {
  max-width: 250px;
  margin: 0 40px;
}
.part-logos div img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .part-logos {
    flex-direction: column;
    padding: 0 20px;
  }
  .part-logos div {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }

  dl {display: none;}
	.header {height: auto;}


	.fw-header-social-container, .fw-header-home, .inner-nav {display: none;}
	.fw-pcontent-body {
		margin: 0;
	}
	.fw-mbl-menu-lnk {
		display: block;
		float: right;
		max-width: 40px;
		display: block;
		margin-top: 10px !important;
	}
	.fw-mbl-menu-lnk img {
		width: 100%;
		height: auto;
	}
	.mbl-menu {
		display: none;
		position: fixed;
		top: 100px;
		margin: 0;
		padding: 0;
		width: 100%;
		z-index: 10000;
		background-color: #0066a5;
	}
	.mbl-menu li {
		text-align: center;
		border-bottom: 1px solid #999 !important;
		display: block;
		width: 100%;
	}
	.mbl-menu li:last-child {
		border-bottom: none;
	}

	.mbl-menu li a {
		display: block;
		padding: 20px 0;
		color: #fff;
		font-size: 23px;
		font-weight: 600;
		background: #1686af;
	}
	.mbl-menu li a:hover {
		background: #ece2a9;
		color: #fff;
	}
  .mbl-menu li.mbl-social-row {
    background-color: #fff;
    border-bottom: solid 4px #0066a5 !important;
  }
  .mbl-menu li.mbl-social-row a {
    display: inline-block;
    background-color: #fff;
  }
	.mbl-menu-social {
		width: 100%;
		text-align: center;
	}
	.mbl-menu-social a {
		display: inline-block !important;
		width: 10%;
		margin: 0 5%;
		background: #0066a5 !important;
	}
	.mbl-menu-social a img {
		width: 100%;
		height: auto;
	}
	.mbl-menu-social form {
		width: 50%;
		display: inline-block;
	}
	.mbl-donate {

	}
	.mbl-donate img {
		max-width: 120px;
	}
	.fw-pcontent-titlebar {
		padding: 20px 20px;
	}
	.fw-pcontent-titlebar h1 {
		line-height: inherit;
		text-align: center;
		font-size: 40px;
	}
	.fw-footer {
		padding: 20px;
		text-align: center;
	}
	.fw-footer a {
		margin:5px 10px !important;
	}


	.mobile-content {
		display: block;
		width: 100%;

	}
	.page-nav ul {
		flex-direction: column;
	}

	.mbl-section-header {
		padding: 15px 0;
		text-align: center;
		color: #fff;
		font-weight: 700;
		font-size: 24px;
	}
	.msh-01 {
		background-color: #1686af;
	}
	.msh-02 {
		background-color: #ece2a9;
	}
	.msh-03 {
		background-color: #1686af;
	}
	.msh-04 {
		background-color: #ece2a9;
	}
	.msh-05 {
		background-color: #1686af;
	}

	.mbl-section-header h3 {
		margin: 0;
		padding: 0 20px;
	}
	.mbl-section-content {
		padding:20px;
		color: #fff;
		background-color: #1d1d23;
	}
  .mbl-section-content p a {
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: bold;
    color: #000;
    background-color: #883f88;
  }

	.mbl-sec-con-05 {
		margin-bottom: 90px;
	}


/*
	.mbl-sec-con-01 a {
		color: #ffd400;
	}
	.mbl-sec-con-02 a {
		color: #ee8615;
	}
	.mbl-sec-con-03 a {
		color: #de2516;
	}
	.mbl-sec-con-04 a {
		color: #883f88;
	}
	.mbl-sec-con-05 a {
		color: #006bae;
	}
*/

	.mbl-sec-con-img-01 {
		background-image: url('../_imgNEW/orth-banner.jpg');
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
		height: 260px;
	}
	.mbl-sec-con-img-02 {
		background-image: url('../_img/bracing.jpg');
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		height: 260px;
	}
	.mbl-sec-con-img-03 {
		background-image: url('../_imgNEW/prac-banner.jpg');
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		height: 260px;
	}
	.mbl-sec-con-img-04 {
		/*background-image: url('../_imgNEW/banner-1.jpg');*/
		background-size: cover;
		background-position: center -100px;
		background-repeat: no-repeat;
		height: 260px;
	}
	.mbl-sec-con-img-05 {
		background-image: url('../_imgNEW/contact-us.jpg');
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
		height: 260px;
	}
	.mbl-sec-con-img-06 {
		background-image: url('../_img/sandal-banner.jpg');
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
		height: 260px;
	}

	.mbl-section-content-img img {
		width: 100%;
		height: auto;
	}

	.page-content {
		padding: 20px;
	}

	.contact-content-left {
		width: 100%;
		float: none;
		display: block;
	}
	.contact-content-right {
		width: 100%;
		float: none;
		display: block;
	}

	.fw-footer-left {
		float: none;
		display: block;
		width: 100%;
		text-align: center;
	}
	.fw-footer-right {
		float: none;
		display: block;
		width: 100%;
		text-align: center;
	}

	.footer {height: auto;}
	.footer a { margin: 0 5%;}
}

@media screen and (max-width: 600px) {
  .accordion {
    border-radius: 0;
  }



}
@media screen and (max-width: 500px) {
	.mbl-social {
		display: block;
		float: right;
		margin: 27px 40px 0 0;
	}
	.mbl-social img {
		max-width: 40px;
	}
	.header {
		display: block;
		justify-content: center;
		padding: 0 10px 10px 10px;
		max-height: 100px;
		position: fixed;
		top:0;
		z-index: 9999;
	}
	.header .logo {
		display: inline-block;
		text-align: center;
		margin: 10px auto;
		width: 40%;
	}
	.header .header-nav {
		display: block;
		width: 100%;
		text-align: center;
	}
	.header .header-nav span:nth-child(1) {
		display: none;
	}
	.header .header-nav span {
		display: block;
		margin: 10px 0;
	}
	.header-nav {display: none !important;}
	.mbl-menu-lnk {
		float: right;
		max-width: 40px;
		display: block;
		margin-top: 30px;
	}
	.mbl-menu-lnk img {
		width: 100%;
		height: auto;
	}
	.mbl-menu {
		display: none;
		position: fixed;
		top: 100px;
		margin: 0;
		padding: 0;
		width: 100%;
		z-index: 10000;
		background-color: #0066a5;
	}
	.mbl-menu li {
		text-align: center;
		border-bottom: 1px solid #999 !important;
		display: block;
		width: 100%;
	}
	.mbl-menu li:last-child {
		border-bottom: none;
	}
	.mbl-menu li a {
		display: block;
		padding: 20px 0;
		color: #fff;
		font-size: 23px;
		font-weight: 600;
		background: #1686af;
	}
	.mbl-menu li a:hover {
		background: #ece2a9;
		color: #fff;
	}
	.mbl-menu-social {
		width: 100%;
		text-align: center;
	}
	.mbl-menu-social a {
		display: inline-block !important;
		width: 10%;
		margin: 0 5%;
		background: #0066a5 !important;
	}
	.mbl-menu-social a img {
		width: 100%;
		height: auto;
	}
	.mbl-menu-social form {
		width: 50%;
		display: inline-block;
	}
	.mbl-donate {

	}
	.mbl-donate img {
		max-width: 120px;
	}

	.mbl-sec-con-img-01, .mbl-sec-con-img-02, .mbl-sec-con-img-03, .mbl-sec-con-img-04, .mbl-sec-con-img-05 {
		max-height: 180px;
	}
	.mbl-sec-con-img-04, .mbl-sec-con-img-05 {
		background-position: center top;
	}

	.mobile-content {
		margin-top:100px;
	}

  h1 {
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 45px;
    line-height: 35px;
  }
  .page-content {
	  padding: 20px 20px;
  }

  .page-content-header h1 {
	  font-size: 45px;
	  line-height: 45px;
	  padding: 0 20px;
  }


  .footer a {
	  width: 40%;
	  margin: 0 4%;
	  display: inline-block;
	  text-align: center;
  }
  .mbl-sec-con-05 {
		margin-bottom: 120px;
	}
.mbl-section-header h3 {
  font-size: 20px !important;
}
}

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

}

@media screen and (max-width: 375px) {
	.mbl-section-content p {
		font-size: 16px;
	}

	.fw-footer {
		padding: 0 10px;
	}
	.fw-footer-left a {
		font-size: 16px;
	}
	.fw-footer-left {
		margin: 10px 0;
	}
	.fw-footer-right {
		padding: 0;
	}
}


.home-refer {
  display: block;
  width: 100px;
  position: absolute;
  bottom:20px;
  right:120px;
  z-index: 999999;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin: 0;
}
.home-refer img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 780px) {
  .home-refer {display: none;}
  .home-refer-mbl {
    display: block;
    width: 100px;
    margin: 10px auto;

  }
  .home-refer-mbl img {
    width: 100%;
    height: auto;
    display: block;
  }
}
