/*************** Webflow Styles *****************/
/***********************************************/
/* --- Force Safari to keep phone numbers original styling --- */
a[href^=tel] { text-decoration: inherit; color: inherit; }
/* --- Font smoothing --- */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* --- Text selection --- */
::-moz-selection { background-color: #26215E; color: #ffffff; }
/* --- Reset Webflow's body font size --- */
body { font-size: initial; line-height: initial; color: initial; }
/* --- Form Placeholder --- */
/* --- Mobile Friendly Image --- */
@media (max-width: 767px) {
  .mobile-friendly-image {
    display: block;
    float: none !important;
  }
}
/* ---------------------------- */
/* NAVIGATION
/* ---------------------------- */
/* --- Sticky Header --- */
.sticky .navbar { border-bottom: 3px solid #F7BD00; }
.sticky .nav-menu { border-top: 0; background-color: #FF661C; }
.sticky .nav-link-a { color: #fff; }
@media screen and (min-height: 500px ) { /* custom */
  .sticky { position: fixed; z-index: 5; transition: all 500s ease; }
}
@media screen and (min-width: 992px) { /* desktop only */
	.sticky .header-flexwrap {
		max-height: 0;
		padding: 0;
   opacity: 0;
   overflow: hidden;
 }
}
/* --- Reset dropdown button wrapping --- */
.dropdown-label { white-space: normal; }
/* --- Search Field Highlight --- */
.search-field.w-input:focus { border-color: #ffffff; }

/* --- Custom Breakpoint for Nav --- */
@media screen and (max-width: 1300px) and (min-width: 992px ) { /* custom */
  .header-flexwrap { display: flex; }
  .quick-links { width: 55%; justify-content: flex-end; padding-right: 0; border: none; }
  .search-field { width: 150px; }
}
/* ---------------------------- */
/* BODY
/* ---------------------------- */
/* --- Read More Link Animation --- */
@media screen and (min-width: 992px) { /* desktop only */
  .quick-link:after {
   content: '';
   position: absolute;
   bottom: 0; left: 0;
   width: 0; height: 2px;
   background-color: #F7BD00;
   transition: all 400ms ease;
 }
 .quick-link:hover:after { width: 100%; transition: all 700ms ease; }
}
/* --- Language Button Animation --- */
@media screen and (min-width: 992px) { /* desktop only */
  .button.language-button:before, .button.language-button:after {
   content: '';
   position: absolute;
   width: 0; height: 3px;
   background-color: #ffdca5;
   transition: all 400ms ease;
 }
 .button.language-button:before { top: 0; left: 0; }
 .button.language-button:after { bottom: 0; right: 0; }
 .button.language-button:hover:before,
 .button.language-button:hover:after { width: 100%; transition: all 700ms ease; }
}
/* --- Style Nav Slider Dots --- */
/* .w-num .w-round or omit for square*/
.inside-slideshow .w-slider-nav.w-round>div { background-color: #005f48; }
.inside-slideshow .w-slider-nav.w-round>div:hover { background-color: #edb761; }
.inside-slideshow .w-slider-dot.w-active { background-color: #edb761 !important; border: 1px solid #edb761; }
/* --- Left Nav Link Animation --- */
@media screen and (min-width: 992px) { /* desktop only */
  .left-nav-a:after,
  .left-nav-a.current:after {
  	content: '';
   position: absolute;
   left: 0; bottom: 0;
   width: 0; height: 3px;
   background-color: #edb761;
   transition: all 400ms ease;
 }
 .left-nav-a:hover:after,
 .left-nav-a.current:after,
 .left-nav-a.w--current:after {  width: 100%; transition: all 700ms ease; }
}

/*************** Print *************************/
/***********************************************/
#printFooter{
  display: none;
  visibility: hidden;
}

#printHeader{
  display: none;
  visibility: hidden;
}

/*************** Header ***********************/
/**********************************************/
.search-button{
	border: 0px;
	cursor: pointer;
}

.quick-link.current:after{
  transition: all 700ms ease 0s;
  width: 100%;
}

/* drop dwon navigation */
.dropdown-wrap{
  text-align:center;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: vertical;
  -webkit-box-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;

}

.dropdown-wrap .nav-link-a{
  text-decoration: none;
  position: relative;
  width: 100%;
  text-align: center;

  flex-grow: 1;
  -webkit-flex-grow: 1;

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link-a:before,
.nav-link-a:after {
  content: '';
  position: absolute;
  width: 0; height: 3px;
  background-color: #F7BD00;
  transition: all 400ms ease;
}

.nav-link-a:before {
  top: 0;
  left: 0;
}

.nav-link-a:after {
  bottom: 0;
  right: 0;
}

.nav-link-a.current::before,
.nav-link-a.current::after,
.nav-link-a:hover:before,
.nav-link-a:hover:after{
  transition: all 700ms ease 0s;
  width: 100%;
}

.sticky .nav-link-a:before,
.sticky .nav-link-a:after {
  background-color: #edb761;
}

/*************** Mobile Navigation ************/
/**********************************************/
@media (min-width: 992px) {
  .mobile-navigation-menu.mm-opened{
    display: none;
  }

  .mobile-navigation-menu{
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-navigation-menu.mm-opened{
    display: block;
  }

  .mobile-navigation-menu{
    display: none;
  }
}

.mobile-navigation-menu{
  height: 3202px;
  background-color: #fff;
}

.mm-menu .mm-list{
	padding:0px;
}

.mm-menu .mm-list > li::after {
  border-color: white;
}

.mm-menu .mm-list > li:hover::after {
  border-color: transparent;
}

.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-search):not(.mm-noresults)::after {
  margin-left: 0px;
}

.mobile-navigation-menu li{
	margin-left: 10px;
	margin-right: 10px;
}

.mobile-navigation-menu li a{
	-moz-box-align: center;
  -moz-box-flex: 0;
  -moz-box-pack: center;
  align-items: center;
  flex: 0 1 auto;
  font-family: Montserrat,sans-serif;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  text-decoration: none;
  color: #FF661C;
  display: block;
  font-weight: 400;
  padding: 15px 15px 15px 15px;
  text-align: left;
  font-size: initial;
  line-height: initial;
}

.mobile-navigation-menu li:hover,
.mobile-navigation-menu li.mm-opened{
	background-color: #FF661C;
}

.mobile-navigation-menu li:hover a,
.mobile-navigation-menu li.mm-opened a{
	color: #fff;
  transition:none;
}

.mobile-navigation-menu li a{
  transition:none;
}

.mm-menu .mm-list > li > a.mm-subopen::after, .mm-menu .mm-list > li > a.mm-subclose::before {
  border-color: #FF661C;
}

.mobile-navigation-menu li:hover > a.mm-subopen::after,
.mobile-navigation-menu li.mm-opened > a.mm-subopen::after,
.mm-menu .mm-list > li:hover > a.mm-subclose::before,
.mm-menu .mm-list > li.mm-opened > a.mm-subclose::before{
 border-color: #fff;
}

.mm-menu .mm-list > li > a.mm-subopen::before {
  border-color: white;
}

.mm-list a.mm-subclose {
  margin-top: -19px;
  padding-top: 33px;
}

.mm-menu .mm-list > li > a.mm-subclose{
	background: none;
	border-bottom: 1px solid white;
}

.mm-list a.mm-subclose::before {
  left: 15px;
  margin-bottom: -13px;
}

.mm-menu .mm-list > li > a.mm-subclose{
	color: #FF661C
}

.mm-menu .mm-list li.mm-subtitle:hover a{
	color: #fff;
  transition:none;
}


.mm-menu .mm-list > li.mm-selected > a:not(.mm-subopen), .mm-menu .mm-list > li.mm-selected > span {
  background: none;
}

/*************** Homepage ***********************/
/************************************************/
.cb-card-title{
  color: #008266;
}

.cb-title a{
  color: inherit;
  text-decoration: none;
}

.cb-card-desc p{
  margin-bottom: 20px;
}

.news-cb .news_cb_container .news_cb_1_title{
  font-family: Montserrat, sans-serif;
  font-size: 1.1em;
  margin-bottom: 10px;
  margin-top: 10px;
}

.news-cb .news_cb_container .news_cb_1_title a{
  text-decoration: none;
}

.news-cb .news_cb_container .news_cb_1_title a:hover{
  color: #F7BD00;
}

.news-cb .news_cb_container .news_cb_1_date{
  background-image: url("/20150114134215/images/icon-news-date.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 20px 18px;
  font-size: 0.9em;
  margin-bottom: 15px;
  margin-left: 2px;
  padding-left: 25px;
  text-transform: none;
}

.news-cb .news_cb_container .news_cb_1_description{
  font-size: 1em;
  font-weight: 400;
  line-height: 1.375em;
}

.content-box-more-link a:hover{
  color:#F7BD00;
}

@media (max-width: 767px) {
  .news-cb .news_cb_container .news_cb_1_description{
    font-size: 1em;
    line-height: 1.45em;
  }
}

/*************** Slideshow ***********************/
/************************************************/
.homepage-section .rotator {
  height: 60vh !important;
}

.homepage-section .rotator .slide{
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.homepage-section .slide-nav{
  display: block;
}

.homepage-section .slide-nav{
  padding-top: 20px;
  font-size: 50px;
}

.homepage-section .slide-nav span{
  cursor: pointer;
  color: #d19434;
}

.homepage-section .slide-caption-p{
  display: block;
  font-family: Montserrat,sans-serif;
  font-size: 1.7rem;
  line-height: 1.45em;
  padding: 15px;
}

.homepage-section .image-link{
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .homepage-section .rotator .slide{
    height: 350px;
  }

  .homepage-section .rotator {
    height: auto !important;
  }

  .homepage-section .slide-caption-p{
    font-size: 1.5em;
    line-height: 1.25em;
  }
}

@media (max-width: 767px) {
 .homepage-section .rotator .slide{
  height: 300px;
}

.homepage-section .slide-caption-p{
  font-size: 1.6em;
}
}

@media (max-width: 479px) {
  .homepage-section .slide-caption-p{
    font-size: 1.4em;
  }
}

/*************** Inside Page *******************/
/**********************************************/
.content-col, .content-wf{
  width: 100%;
}

.breadcrumbs-div a{
	border-right: 2px solid #F7BD00;
  color: #008266;
  font-weight: 400;
  display: inline-block;
  font-weight: 400;
  margin-right: 10px;
  padding-right: 10px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumbs-div a:hover {
  color: #F7BD00;
  text-decoration: none !important;
}

.breadcrumbs-div .breadcrumbCurrent {
  font-weight: bold;
}

#navcontainer ul{
  border-right: 6px none #edb761;
  margin: 92px 0px 0px 0px;
  padding-bottom: 10px;
  padding: 0px;
  list-style-type: none;
}

#navcontainer ul li{
  margin: 0px;
  padding: 0px;
}

#navcontainer ul li a{
  border-bottom: 1px solid #FF661C;
  color: #FF661C;
  display: block;
  font-size: 1em;
  line-height: 1.35em;
  margin-left: 20px;
  margin-right: 20px;
  padding: 12px 10px;
  position: relative;
  text-decoration: none;
}

#navcontainer ul li a:hover {
  background-color: transparent;
  color: #FF661C;
  border-bottom: 1px solid transparent;
}

#navcontainer ul li a:after {
  background-color: #008266;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transition: all 400ms ease 0s;
  width: 0;
}

#navcontainer ul li a#current:after{
  width: 100%;
  background-color: #FF661C;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
}

#navcontainer ul li a:hover:after,
.left-nav-a.current:after {
  transition: all 700ms ease 0s;
  width: 100%;
}

#navcontainer ul ul{
  margin:0px 20px 0px 20px;
  overflow: hidden;
  padding-left: 0;
}
#navcontainer ul ul ul {
  margin-right: 0px;
}

#navcontainer ul li.has-children-current ul {display:none}

#navcontainer ul li.has-children-current > a,
#navcontainer ul li.no-children-current> a {
  color: #008266;
  border-bottom: 0px;
}

#navcontainer ul li.has-children-current > a#current:after,
#navcontainer ul li.no-children-current> a#current:after {
  background-color: #008266;
}

#navcontainer ul li li a{
  color: #FF661C;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.35em;
  padding-bottom: 12px;
  padding-top: 12px;
  margin-right: 0px;
}

#navcontainer ul li li li a{
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-left: 10px;
  margin-right: 0;
}

.share-this-container{
  text-align: right;
}

/*************** Right Sidebar *****************/
/**********************************************/
.associations_container {
  margin-left: 30px;
  width: auto;
  float: none;
}

.association_section_resources,
.association_section_files,
.association_contentboxes_container	{
 margin-top: 20px;
}

.association_title_resources,
.association_title_files,
.association_contentboxes_title,
.association_title_contentboxes {
	color: #008266;
	font-size: 1.25em;
	line-height: 1.45em;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 700;
	font-family: Montserrat,sans-serif;
}

@media (max-width: 991px) {
	.associations_container {
   border-top: 1px solid #edb761;
   margin-left: 0;
   padding-top: 0px;
   width: 100%;
   margin-top: 0px;
 }
}

/*************** Inside Page Slideshow ***********/
/************************************************/
.inside-slideshow {
  background-color: transparent;
  height: auto;
  margin-bottom: 40px;
  width: 100%;
}

.inside-slideshow .rotator{
  background:none;
}

.inside-slideshow .slide-caption{
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: #fff;
  left: 0;
  min-width: 50%;
  padding: 15px 20px 10px;
  position: absolute;
  text-align: left;
  margin-left: 0px;
  margin-right: 0px;
  width: auto;
  float:left;
  right:auto;
}

.inside-slideshow .slide-caption-p{
 margin-bottom: 11px;
 padding-top: 1px;
}

.inside-slideshow .w-slider-arrow-left,
.inside-slideshow .w-slider-arrow-right{
  width: 50px;
}

.inside-slideshow .rotator-arrow{
  opacity: 0.5;
}

.inside-slideshow .slide-nav{
  display: block;
  height: 40px;
  left: 0;
  margin: auto;
  padding-top: 3px;
  position: absolute;
  right: 0;
  text-align: center;
  top: auto;
  z-index: 2;
  bottom: -40px;
  font-size: 0.8em;
}

.inside-slideshow .slide-nav span{
 background-color: #9a5107;
 border-radius: 100%;
 cursor: pointer;
 display: inline-block;
 height: 13px;
 margin: 0 3px 0.5em;
 position: relative;
 transition: background-color 100ms ease 0s, color 100ms ease 0s;
 width: 13px;
 font-size: 0px;
 line-height: 13px;
}

.inside-slideshow .slide-nav span:hover,
.inside-slideshow .slide-nav span.cycle-pager-active{
  background-color: #edb761
}

.inside-slideshow .w-slide {
  height: 0;
  padding: 0 0 40%;
  width: 100%;
}

.inside-slideshow .rotator{
  height: auto !important;
  min-height: 0 !important;
}

@media (max-width: 767px) {
  .inside-slideshow .w-slide  {
    padding: 0 0 50%;
  }

  .inside-slideshow .slide-caption {
    background-color: #9a5107;
    width: 100%;
    position: static;
    margin-top: 50%;
  }

  .inside-slideshow .slide-caption-p {
    font-size: 1rem;
    line-height: 1.42rem;
  }

  .inside-slideshow .slide-caption-title{
    padding-left: 0px;
    padding-right: 0px;
  }

}

@media (max-width: 479px) {
  .inside-slideshow .w-slide  {
    margin-bottom: 0;
  }

  .inside-slideshow .rotator-arrow{
    display: block;
    font-size: 1em;
    width: 50px;
  }
}


/*************** Footer ***********************/
/**********************************************/
.newsletter-sign-up-field::-webkit-input-placeholder {
 color: #333333 !important;
}

.newsletter-sign-up-field:-moz-placeholder { /* Firefox 18- */
 color: #333333 !important;
}

.newsletter-sign-up-field::-moz-placeholder {  /* Firefox 19+ */
 color: #333333 !important;
}

.newsletter-sign-up-field:-ms-input-placeholder {
 color: #333333 !important;
}

.newsletter-sign-up-button{
	border: 0px;
	cursor: pointer;
}

.phone-number.desktop{
	display: inline;
}

.phone-number.mobile{
	display: none;
}

#GRIPFooterLogo{
  line-height: 11px;
  padding-top: 0px !important;
}

.footer-link.current{
  color: #ffdca5;
}

@media (max-width: 991px) {
	.phone-number.desktop{
		display: none;
	}

	.phone-number.mobile{
		display: inline;
	}

	#GRIPFooterLogo{
		margin-bottom: 30px;
	}
}

/*************** Styles ***********************/
/**********************************************/
/*images*/
.imgCaption {
  font-style: italic;
  background-color: white;
}

.imgDescription {
  background-color: #efefef;
  font-style: italic;
  font-size: 0.925rem;
  padding: 5px;
}

.imgClass {
  border: 1px solid #ccc;
  padding: 2px;
}

table.styled thead tr th,
table.styled.striped thead tr th{
  background-color: #F7BD00;
  border-bottom: 0 none;
  color: #753d05;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  text-align: left;
}

table.styled tbody tr th,
table.styled.striped tbody tr th{
  background-color: #9a5107;
  border-bottom: 2px solid #F7BD00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
  text-align: left;
}

table.styled tr,
table.styled.striped tr{
  border-bottom: 1px solid #F7BD00;
}

table.styled tr td,
table.styled.striped tr td{
  padding: 8px 10px;
}

table.striped tr:nth-child(odd) td {
	background-color: #e4e4e4;
}

@media (max-width: 640px) {
  table.styled.tablesaw tbody tr:not(:last-child) {
    border-bottom: 1px solid #d7d7d7 !important;
  }
}

@media (min-width: 641px) {
	table.styled tr td,
	table.styled.striped tr td{
		border-bottom: 1px solid #F7BD00;
	}
}

form {
	padding: 0px;
	margin: 0px;
}

td {
	vertical-align: top;
}

.content-col a{
	text-decoration: none;
}

.content-col a:hover{
	text-decoration: underline;
}

.tableBorder {
	border: 1px solid #F7BD00;
}

.tableHeader {
	background-color: #F7BD00;
  border-bottom: 0 none;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  text-align: left;
}

.tableHeader a,
.formSection a,
.tableHeader a.w--current,
.tableHeader a:hover,
.formSection a:hover,
.tableHeader a.w--current:hover {
	color: #333;
}

.evenrow {
	background-color: transparent;
	font-weight: normal;
	border-bottom: 1px solid #F7BD00;
}

.oddrow {
	background-color: transparent;
	font-weight: normal;
	border-bottom: 1px solid #F7BD00;
}

.oddrow td,
.evenrow td{
	padding: 8px 10px;
}

.formSection {
	background-color: #F7BD00;
  border-bottom: 0 none;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  text-align: left;
}

.fieldLbl,
.fieldVal {
  padding: 8px 10px;
  vertical-align: middle;
}

.formFieldSet{
	background: none;
}

.redText {
	color: red;
}

.button,
.button-primary,
.module-events.view-year .responsive-filters .searchbutton{
	background-color: #FF661C;
  border-style: none;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.45em;
  padding: 9px 15px;
  text-decoration: none;
  -webkit-appearance: none;
  transition: all 300ms ease;
  border-radius: 0px;
  border-bottom: 1px solid transparent !important;
}

.button:hover,
.button-primary:hover,
.module-events.view-year .searchbutton:hover{
    background-color: #008266;
    color: #fff;
}

.button-secondary{
 background-color: #F7BD00;
 color: #000;
 border-radius: 0;
 border-style: none;
 cursor: pointer;
 font-size: 1em;
 font-weight: 400;
 line-height: 1.45em;
 padding: 9px 15px;
 text-decoration: none;
 -webkit-appearance: none;
 transition: all 300ms ease;
 border-radius: 0;
}

.button-secondary:hover{
 background-color: #F7BD00;
 color: #000;
}

#messages {
	padding: 5px;
	margin-bottom: 10px;
}

.message_warning {
	color: red;
	border-top: 3px solid red;
	border-bottom: 3px solid red;
	border-left: none;
	border-right: none;
	background-image: none;
}

.message_confirm {
	color: green;
	border-top: 3px solid green;
	border-bottom: 3px solid green;
	border-left: none;
	border-right: none;
	background-image: none;
}

.content-col input[type="text"],
.content-col input[type="tel"],
.content-col input[type="email"],
.content-col input[type="password"],
.content-col input[type="file"],
.content-col input[type="number"],
.content-col select,
.content-col textarea,
.content-col select{
	padding: 8px 10px;
	border: 1px solid #666;
}

@media (max-width: 767px) {
	.responsive-table input[type="tel"],
	form.responsive-form input[type="tel"] {
   width: 100% !important;
 }

 form.responsive-form table .fieldLbl{
  text-align: left;
  padding-bottom: 10px;
}
}

h1{
	color: #008266;
}

/********************* Modules *****************************/
/**********************************************************/
/* Conference Speakers */


/* Events */
.module-events .events-filter-form select,
.module-events .responsive-filters select{
  font-size: 13px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  width: auto !important;
  margin-bottom: 8px;
}

.module-events.view-calendar .searchbutton{
	height: auto;
	margin-bottom: 8px;
	padding-top: 4px !important;
	padding-bottom: 4px !important;
	font-size: 13px;
}

.module-events.view-calendar .tableHeader{
  border: 1px solid #005f48;
  position: relative;
  z-index: 500;
}

.module-events.view-calendar .oddrow{
  border: 1px solid #cccccc;
}

.module-events.view-calendar .event-calendar thead th{
  font-size: 13px;
  background-color: #005f48;
}

.module-events.view-calendar .event-calendar tbody td.selected,
.module-events.view-calendar .event-calendar tbody td:active{
 background-color: #005f48;
}

.module-events.view-details .events_detail_items > div {
  background-position: 0 3px;
}

.module-events.view-details .events_detail_items .siteviz_icon_email{
  margin-top: 3px;
}

.module-events.view-details .events_detail_items .siteviz_icon_container{
  padding-bottom: 1px;
}

@media (max-width: 991px) {
	.module-events.view-calendar .calendar-view-options{
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
  .module-events.view-details .events_detail_items .siteviz_icon_email {
    margin-top: 0;
  }
  .module-events.view-details .events_detail_items .siteviz_icon_image {
    top: 3px;
  }

  .module-events.view-details .events_detail_items .events_calendar{
    margin-bottom: 0.4rem;
  }
}


/* FAQs */
.module-faqs .faq_number {
  top: -2px;
}

.module-faqs .page_search_box .page_search_keywords {
  font-size: inherit;
  height: auto;
}

.module-faqs .page_search_box ~ div{
	width: calc(100% - 220px);
}

.module-faqs .page_search_form{
	padding: 0px;
}

@media (max-width: 767px) {
	.module-faqs .category-link, .module-faqs .faq_category {
   margin-bottom: 0.5em;
 }

 .module-faqs .page_search_box{
  width: 100%;
  margin-bottom: 10px;
  float: none;
  margin-left: 0px;
}

.module-faqs .page_search_form{
  padding-bottom: 8px;
}

.module-faqs .page_search_box .page_search_button{
  margin-top: 10px;
}

.module-faqs .page_search_box ~ div{
  width: 100%;
}
}

/* Membership module */
.module-member .photoForm td {
  padding-left: 1%;
  padding-right: 1%;
  width: 23%;
  vertical-align: bottom;
}

@media (max-width: 991px) {
	.module-member .listForm .evenrow td:first-child,
	.module-member .listForm .oddrow td:first-child{
		padding-top: 10px;
	}

	.module-member .listForm .oddrow td:last-child,
	.module-member .listForm .evenrow td:last-child{
		padding-bottom: 10px;
	}
}

@media (max-width: 479px) {
	.module-member .photoForm td {
		padding-right:0px;
		padding-left: 0px;
		width: 100%;
	}
}

/* Members directory */
.module-memberdirectory td.letterlist  {
  padding: 8px 10px;
}

@media (max-width: 991px) {
  .module-memberdirectory tr td:nth-child(3){
    word-wrap: break-word;
    word-break: break-all;
  }

  .module-memberdirectory .fieldLbl{
    text-align: left;
  }

  .module-memberdirectory input[type="text"],
  .module-memberdirectory select{
    width: 100% !important;
  }

  .module-memberdirectory .paging td,
  .module-memberdirectory .searchCriteria td{
    padding-left: 10px;
    padding-right: 10px;
  }

  .module-memberdirectory .tablesaw-stack tbody tr {
   border-bottom: 1px solid #F7BD00 !important;
 }

 .module-memberdirectory .tablesaw-stack td .tablesaw-cell-label,
 .module-memberdirectory .tablesaw-stack th .tablesaw-cell-label{
  width: 100% !important
}
}

@media (max-width: 767px) {
  .module-memberdirectory .tablesaw-stack td .tablesaw-cell-label,
  .module-memberdirectory .tablesaw-stack th .tablesaw-cell-label{
    display: none;
  }

  .module-memberdirectory .oddrow td,
  .module-memberdirectory .evenrow td{
    padding-top:0px;
    padding-bottom: 0px;
  }

  .module-memberdirectory .oddrow td:first-child,
  .module-memberdirectory .evenrow td:first-child{
    padding-top:10px;
  }

  .module-memberdirectory .oddrow td:last-child,
  .module-memberdirectory .evenrow td:last-child{
    padding-bottom:10px;
  }
}

/* Members profile */
.module-rspmemberprofile .profile {
  border: 0px solid;
}
.module-rspmemberprofile .profile .formSection td{
  padding:10px;
}
.module-rspmemberprofile .profile td.form_buttons{
  padding-top:20px;
}

/* News and Press releases */
.module-news .page_search_box ~ div,
.module-news .page_search_box ~ form,
.module-news .page_search_box ~ p{
	width: calc(100% - 220px);
}

.module-news .page_search_box .page_search_form{
	padding: 0px;
}

.module-news .page_search_box .page_search_form .page_search_keywords {
  font-size: inherit;
  height: auto;
  width: 100%;
}

.module-news .news_list_item small{
  font-size: 100%;
}

.module-news .news_list_item .news_list_date{
  font-weight: bold;
}

.module-news form.responsive-form table .fieldLbl,
.module-news form.responsive-form table .fieldVal{
  padding-left: 8px;
  padding-right: 8px;
}

.module-news .associated-data > div {
  background-position: 0 3px;
}

@media (max-width: 767px) {
	.module-news .page_search_box{
		width: 100%;
		margin-bottom: 10px;
		float: none;
		margin-left: 0px;
	}

	.module-news .page_search_box ~ div,
	.module-news .page_search_box ~ form,
	.module-news .page_search_box ~ p{
		width: 100%;
	}

	.module-news .page_search_box .page_search_form{
		padding-bottom: 15px;
	}
}

/* Partners and Sponsors */
.module-partners h3{
  margin-top: 0px;
}

.module-partners .spacer td{
  padding-bottom: 8px;
}

@media (max-width: 767px) {
  .module-partners .partners-detail-logo img{
   margin-bottom: 16px
 }
}

/* Photo Albums */
.module-albums.view-album .image-container .image{
  margin-left: 2px;
  margin-right: 2px;
}

.module-albums.layout-list.view-albums .albums_list_entry{
  background-position: 0 2px;
}

.module-albums.layout-list.view-image .imgCaption p{
	margin-bottom: 0px
}


@media (max-width: 520px) {
  .module-albums.layout-detailed.view-album.single-image .image-container.limited-caption{
   margin: 40px 0 0;
 }

 .module-albums.layout-detailed.view-album.single-image .image-container.limited-caption .imgClass.image{
  margin-top: 0px;
  margin-bottom: 0px;
}

.module-albums.layout-detailed.view-album.single-image .image-container.limited-caption .imgClass.image a{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;

  align-items: center;
  height: 100% !important;
}

.module-albums.layout-detailed.view-album.single-image .image-container.limited-caption .imgClass.image img{
  vertical-align: middle;
  display: inline;
  height: auto !important;
  margin: 0 auto;
}
}

/* Resources and Links*/
.module-resources.resource-list .resource{
  line-height: 17px;
}

.module-resources.resource-list .rss_feed{
	background-position: 0px 3px;
}

.module-resources .page_search_box ~ div,
.module-resources .page_search_box ~ h2{
	width: calc(100% - 220px);
}

.module-resources .page_search_box .page_search_form{
	padding: 0px;
}

.module-resources .page_search_box .page_search_form .page_search_keywords {
  font-size: inherit;
  height: auto;
  width: 100%;
}

@media (max-width: 767px) {
	.module-resources .page_search_box{
		width: 100%;
		margin-bottom: 10px;
		float: none;
		margin-left: 0px;
	}

	.module-resources .page_search_box ~ div,
	.module-news .page_search_box ~ h2{
		width: 100%;
	}

	.module-resources .page_search_box .page_search_form{
		padding-bottom: 15px;
	}
}

/* Rss Aggregator*/
.module-rss div a{
  margin-bottom: 20px;
  display: inline-block;
  float: left;
}

.module-rss div a:last-child {
  margin-left: 5px;
  margin-top: 2px;
}

/* Search */
.search-container input[type="text"]{
	padding-bottom: 10px;
	padding-top: 10px;
}

@media (max-width: 767px) {
	.search-container form div strong{
		display: block;
	}
}

/* Testimonials */
.module-testimonials.layout-line-separated .testimonial-wrapper.evenrow{
  background-color: #fff4e3;
}

.module-testimonials .evenrow,
.module-testimonials .oddrow{
	border-bottom: none;
}

/* Virtual Tour */


/* Submission Forms */
.module-submissionforms .ui-datepicker,
.module-submissionforms .helpcontent,
.module-submissionforms input[type="file"]{
	font-size: 13px !important;
}

@media (max-width: 767px) {
	.module-submissionforms input[type="text"],
	.module-submissionforms input[type="tel"],
	.module-submissionforms input[type="email"],
	.module-submissionforms input[type="password"],
	.module-submissionforms input[type="file"],
	.module-submissionforms input[type="number"],
	.module-submissionforms select,
	.module-submissionforms textarea,
	.module-submissionforms select{
		width: 100% !important;
		max-width: 100% !important;
	}

	.module-submissionforms input[type="text"].hasDatepicker{
		width: 96% !important;
		max-width: 96% !important;
	}
}

@media (max-width: 479px) {
  .module-submissionforms input[type="text"].hasDatepicker{
    width: 91% !important;
    max-width: 91% !important;
  }
}

/* sitemap */
.module-sitemap {
 word-wrap: break-word
}

@media (max-width: 479px) {
	.module-sitemap ul{
		padding-left: 20px;
	}
}

/***************** Content Boxes ***************************/
/**********************************************************/
/* Partners */
.partners_cb_container .partners_cb_title a{
  color: black;
  text-decoration: none;
}

/* RSS */
.rss_cb_container .rss_cb_date{
  width: 85px;
  padding-right: 0px;
}

.rss_cb_container .rss_cb_title{
  width: calc(100% - 85px);
}

.rss_cb_container .rss_cb_title a{
  color: #008266;
}

.rss_cb_container .rss_cb_title a:hover {
  color: #F7BD00;
}

/* News */
.right-side-div .news_cb_container .news_cb_1_date{
  font-weight: bold;
}

.right-side-div .news_cb_container .news_cb_1_row {
  padding-bottom: 15px;
}

.right-side-div .news_cb_container .news_cb_1_description{
 word-break: break-all;
}

/* Speakers */

.module-speakers table td p{
  padding-top: 5px;
}

@media (max-width: 991px) {
  .module-speakers input[type="text"],
  .module-speakers select{
    width: 100% !important;
  }

  .module-speakers input[name="city"]{
    width: 50% !important;
    margin: 0;
  }
  .module-speakers select[name="state"]{
    width: 20% !important;
    margin: 1% 0;
  }
  .module-speakers input[name="zipcode"]{
    width: 27% !important;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .module-speakers input[name="city"],
  .module-speakers input[name="zipcode"]{
    width: 100% !important;
    margin: 0;
  }

  .module-speakers select[name="state"]{
    width: 70px !important;
  }

  .module-speakers.speakers-list table td img{
    float: none;
    display: block;
    margin: 0px !important;
  }
}


/* RSS */
@media (max-width: 767px) {
  .module-rss>table td,
  .module-rss>table tr {
    display: block;
  }

  .module-rss>table tr {
    margin-bottom: 10px;
  }

  .module-rss table tr:last-child {
    display: table-row;
  }

  .module-rss table tr:last-child td {
    display: table-cell;
  }
}


/* Locations */
.locations_search_feature {
  width: 100%;
}

.locations_results {
  width: 100%;
}

.locations_results .locations_google_map {
  height: 500px;
}

.locations_detail .location_info {
  display: block;
  float: none;
  width: auto;
}

.locations_detail .location_map {
  display: block;
  float: none;
  width: auto;
}

.locations_search_feature .search_option label {
  font-size: 14px;
}

.locations_results h6.map-country {
  font-size: 1.2em;
  margin: 0px 0px 10px;
}

.wfp-marker-info p {
	margin-bottom: 0px;
}

@media (min-width: 767px) {
  .locations_search_feature table tr {
    display: inline-block;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .locations_search_feature {
    display: block;
    float:none;
    width: auto;
  }

  .locations_results {
    display: block;
    float:none;
    width: auto;
  }

  .locations_results .locations_google_map {
    height: 400px;
  }

}

@media (max-width: 479px) {
  .locations_results .locations_google_map {
    height: 300px;
  }
}

.location_info .categories {
  padding-bottom: 8px;
  font-weight: bold;
}

.location_info .address,
.location_info .phones,
.location_info .web,
.location_info .directions {
  padding-bottom: 8px;
}

table.responsive {
  width: 100%;
}

table.responsive.map tr{
  float: left;
  width: 20%;
}

table.responsive.map tr td{
  display: block;
}

@media (max-width: 767px) {
  table.responsive td {
    display: block;
  }

  table.responsive.map tr{
    float: none;
    width: 100%;
  }
}


/******************** Fancy Box ***************************/
/**********************************************************/
.fancybox-title-float-wrap{
  margin-bottom: 0px !important;
  bottom: auto !important;
}

.fancybox-title-float-wrap .child{
 white-space: normal !important;
 margin-top: 20px;
}
