/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 8, 2016, 8:51:11 PM
    Author     : wh
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 24, 2016, 2:45:23 PM
    Author     : wh
*/
body.home .home-page-logo {
  width: 300px;
  position: relative;
  background: #FFF;
  padding: 16px;
  padding-top: 24px;
}
body.home .home-page-logo img {
  margin: 0;
}
body.home header.site-header {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  height: 80vh;
  padding-bottom: 0;
}
body.home header.site-header nav {
  margin-left: 25%;
}
body.home nav ul {
  color: #000;
}
body.home #main .entry-content {
  margin-bottom: 0;
}
body.home .row-type-about {
  font-size: 2rem;
  margin: 30px 0;
}
body.home .row-type-testimonial {
  margin-bottom: 24px;
}
body.home .row-type-featured {
  margin-bottom: 24px;
  color: #FFF;
  font-size: 1rem;
}
body.home .row-type-featured .home-row-column-wrapper {
  display: flex;
  padding-bottom: 30px;
  color: #FFF;
}
body.home .row-type-featured .home-row-column {
  width: 50%;
  position: relative;
}
body.home .row-type-featured .home-row-column-1 {
  padding: 1rem;
  padding-right: 5%;
  padding-left: 3%;
  font-size: 1.25rem;
  line-height: 1.3;
}
body.home .row-type-featured h4 {
  margin-top: 0;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 1rem;
  padding-right: 10%;
}
body.home .row-type-featured img {
  display: block;
  width: 100%;
}
body.home .row-type-featured .image-wrapper {
  margin-bottom: 50px;
}
body.home .row-type-featured a.read-more-link {
  color: #FFF;
  font-size: inherit;
  display: block;
  font-weight: 200;
}
body.home .home-row {
  cursor: pointer;
}
body.home .home-row a.row-link {
  width: 100%;
  display: block;
  height: 15px;
  margin-top: 15px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23FFFFFF' height='1.33em' width='.8em' viewBox='0 0 11.8 20.6' xmlns='http://www.w3.org/2000/svg'%3E %3Cpolygon id='shape-3' data-name='shape' points='1.4,20.6 0,19.2 9,10.2 0.1,1.4 1.5,0 11.8,10.2'/%3E %3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 30px center;
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  bottom: 20px;
}
body.home .home-row .edit-link {
  font-weight: 300;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #000;
}
body.home .home-row:hover {
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
body.home .home-row:hover a.row-link {
  background-position: right 15px center;
}
body.home .home-row-column-wrapper.video .image-wrapper {
  position: absolute;
  z-index: 1;
  padding-bottom: 56%;
  overflow: hidden;
  width: 100%;
}
body.home .home-row-column-wrapper.video .image-wrapper img {
  position: absolute;
}
body.home .home-row-column-wrapper.video .video-button {
  content: "";
  display: block;
  height: 80px;
  max-width: 80px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
body.home .home-row-column-wrapper.video .btn-arrow {
  height: 80px;
  width: 80px;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
body.home .home-row-column-wrapper.video .btn-txt {
  position: absolute;
  visibility: hidden;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  color: #FFF;
  padding: 20px;
  padding-right: 0;
  white-space: nowrap;
}
body.home .home-row-column-wrapper.video .btn-arrow:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-left: 20px solid #DC6B2F;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  bottom: 0;
  right: 0;
  margin-left: 5px;
}
body.home .home-row-column-wrapper.video .image-wrapper:hover .video-button {
  max-width: 200px;
}
body.home .home-row-column-wrapper.video .image-wrapper:hover .btn-arrow:after {
  border-left: 20px solid #FFF;
}
body.home .home-row-column-wrapper.video .image-wrapper:hover .btn-txt {
  position: static;
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
body.home .home-row-column-wrapper.video .video-wrapper {
  margin: 0;
  margin-bottom: 50px;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
}
body.home .home-row-column-wrapper.video.play .image-wrapper {
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  visibility: none;
  pointer-events: none;
}
body.home .home-row-column-wrapper.video.play .video-wrapper {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}
body.home .row-type-featured.display-type-small img {
  width: 66.6666666667%;
}
body.home .row-type-featured.display-type-smallest img {
  width: 41.6666666667%;
}
body.home .row-type-featured,
body.home .row-type-featured.background-color-blue {
  background-color: #6BA4B8;
}
body.home .row-type-featured.background-color-lightblue {
  background-color: rgb(159, 193, 207);
}
body.home .row-type-featured.background-color-gold {
  background-color: #D29F13;
}
body.home .row-type-featured.background-color-orange {
  background-color: #DC6B2F;
}
body.home .row-type-featured.background-color-green {
  background-color: #789D4A;
}
body.home .row-type-featured.background-color-green:hover {
  background-color: rgba(120, 157, 74, 0.9);
}
body.home .row-type-featured.background-color-blue:hover {
  background-color: rgba(107, 164, 184, 0.9);
}
body.home .row-type-featured.background-color-lightblue:hover {
  background-color: rgba(159, 193, 207, 0.9);
}
body.home .row-type-featured.background-color-gold:hover {
  background-color: rgba(210, 159, 19, 0.9);
}
body.home .row-type-featured.background-color-orange:hover {
  background-color: rgba(220, 107, 47, 0.9);
}
body.home .home-row.row-type-blog .home-row-column-wrapper,
body.home .home-row.row-type-news .home-row-column-wrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  border-top: solid 1px #DC6B2F;
}
body.home .home-row.row-type-blog .home-row-column-wrapper .section-label,
body.home .home-row.row-type-news .home-row-column-wrapper .section-label {
  width: 16.6666666667%;
  color: #DC6B2F;
  font-weight: 400;
}
body.home .home-row.row-type-blog .home-row-column-wrapper .section-list,
body.home .home-row.row-type-news .home-row-column-wrapper .section-list {
  width: 83.3333333333%;
}
body.home .home-row.row-type-blog .home-row-column-wrapper .column-1,
body.home .home-row.row-type-blog .home-row-column-wrapper .column-2,
body.home .home-row.row-type-news .home-row-column-wrapper .column-1,
body.home .home-row.row-type-news .home-row-column-wrapper .column-2 {
  width: 40%;
  padding-right: 60px;
}
body.home .home-row.row-type-blog .home-row-column-wrapper .column-2,
body.home .home-row.row-type-news .home-row-column-wrapper .column-2 {
  line-height: 1.3;
}
body.home .home-row.row-type-blog .home-row-column-wrapper .column-3,
body.home .home-row.row-type-news .home-row-column-wrapper .column-3 {
  width: 20%;
}
body.home .home-row.row-type-blog .home-row-column-wrapper .section-row,
body.home .home-row.row-type-news .home-row-column-wrapper .section-row {
  border-color: #DC6B2F;
}
body.home .home-row.row-type-news .home-row-column-wrapper {
  border-bottom: solid 1px #DC6B2F;
}
body.home .home-row.row-type-programs {
  margin: 50px 0;
}
body.home .home-row.row-type-programs h3 {
  font-size: 1.3rem;
  font-weight: 400;
}
body.home .home-row.row-type-programs ul {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
body.home .home-row.row-type-programs li {
  width: 49%;
  font-weight: 300;
  letter-spacing: 0.08rem;
  font-size: 2rem;
  background-color: #fafafa;
  margin-bottom: 1%;
  margin-right: 1%;
  padding: 0 10px;
  -webkit-transition: background-color 0.2s;
  -khtml-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
body.home .home-row.row-type-programs li:before {
  display: none;
}
body.home .home-row.row-type-buttons {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  margin: 50px 0;
}
body.home .home-row.row-type-buttons .button-container {
  width: 33.3333333333%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
}
body.home .home-row.row-type-buttons .text-link-button-container {
  padding-right: 10px;
  width: 66.6666666667%;
}
body.home .home-row.row-type-buttons .text-link-button-container .apg-link-button {
  margin-right: 20px;
  width: calc(50% - 20px);
}
body.home .home-row.row-type-buttons .social-media-button-container {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
body.home .home-row.row-type-buttons .social-media-button-container .apg-link-button {
  width: 10%;
  margin-left: 10px;
}

.panel-grid {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 50px;
}

#row-home-intro-text {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

#row-home-placeholder img {
  width: 100%;
}

#row-home-about {
  color: #7b8baf;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
}
#row-home-about h3 {
  background: #D29F13;
  padding: 10px 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #FFF;
  font-size: 1.8rem;
  margin-bottom: 7px;
}
#row-home-about #pgc-22-row-home-about-0 h3 {
  background-color: #6BA4B8;
}
#row-home-about #pgc-22-row-home-about-1 h3 {
  background-color: #789D4A;
}
#row-home-about .textwidget {
  padding-right: 25%;
}

.content-area article .widget_apg-home-newsroom-widget a {
  color: inherit;
}

.so-panel h3 {
  color: #FFF;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 0;
}
.so-panel h4 {
  margin: 0;
  color: #000;
  font-weight: 600;
}
.so-panel .content {
  font-weight: 400;
  font-size: 1.5rem;
}

.widget_apg-home-newsroom-widget {
  background-color: rgb(159, 193, 207);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
.widget_apg-home-newsroom-widget .content-row {
  border-bottom: 1px solid #FFF;
  padding: 10px;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
}
.widget_apg-home-newsroom-widget ul {
  margin: 0;
}
.widget_apg-home-newsroom-widget li a {
  padding: 1rem 40px 1rem 0;
  display: inline-block;
}
.widget_apg-home-newsroom-widget li:after {
  content: "";
  border-bottom: 1px solid #78919C;
}
.widget_apg-home-newsroom-widget li:before {
  background-color: #FFF;
  position: absolute;
  margin-left: -1rem;
  top: 13px;
  display: none;
}
.widget_apg-home-newsroom-widget i.material-icons {
  font-size: inherit;
  display: block;
  position: absolute;
  top: 1rem;
  right: 10px;
  color: #FFF;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_apg-home-newsroom-widget .read-more-text {
  display: none;
  color: #FFF;
  font-weight: 300;
}
.widget_apg-home-newsroom-widget li:hover i.material-icons {
  right: 0;
}
.widget_apg-home-newsroom-widget .column-1 {
  width: 25%;
  font-size: 1.5rem;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
}
.widget_apg-home-newsroom-widget .column-2 {
  width: 70%;
  padding-right: 30px;
  position: relative;
  overflow: hidden;
}
.widget_apg-home-newsroom-widget .column-2 li {
  width: 100%;
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.widget_apg-home-newsroom-widget .column-2 li:hover {
  background-color: #8eb9c9;
}
.widget_apg-home-newsroom-widget .column-2 li:hover a {
  color: #000;
}
.widget_apg-home-newsroom-widget .content-row.row-2 li:after {
  display: none;
}
.widget_apg-home-newsroom-widget .column-3.panel-nav {
  width: 5%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}
.widget_apg-home-newsroom-widget .column-3.panel-nav .panel-button {
  border: 1px solid #555;
  width: 10px;
  height: 10px;
  margin: 5px 0;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.widget_apg-home-newsroom-widget .column-3.panel-nav .panel-button.active {
  background: #555;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}
.widget_apg-home-newsroom-widget .featured-content-panel {
  visibility: hidden;
  position: absolute;
  padding-right: 50px;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
  -webkit-transition: 0s;
  -khtml-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  -webkit-transform: translateY(20px);
  -khtml-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}
.widget_apg-home-newsroom-widget .featured-content-panel.active {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  -webkit-transform: translateY(0);
  -khtml-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  -webkit-transition: 0.8s;
  -khtml-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.widget_apg-home-newsroom-widget .featured-content-panel.fadeout {
  -webkit-transform: translateY(0px);
  -khtml-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  -webkit-transition: 0.6s;
  -khtml-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.widget_apg-home-newsroom-widget .content-row.blog .column-2,
.widget_apg-home-newsroom-widget .content-row.news .column-2 {
  width: 50%;
}
.widget_apg-home-newsroom-widget .content-row.featured h4 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}
.widget_apg-home-newsroom-widget .content-row.featured p {
  font-size: 1.5rem;
  line-height: 1.2;
}
.widget_apg-home-newsroom-widget .content-row.featured .column-2 {
  height: 200px;
}

.widget_apg-home-signature-programs {
  border-top: 1px solid #D29F13;
  border-bottom: 1px solid #D29F13;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  padding-top: 1rem;
}
.widget_apg-home-signature-programs h3 {
  color: #555;
  font-size: 2rem;
  font-weight: 600;
}
.widget_apg-home-signature-programs ul {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #D29F13;
}
.widget_apg-home-signature-programs ul a {
  color: inherit;
}
.widget_apg-home-signature-programs ul li {
  width: 49%;
  font-weight: 300;
  letter-spacing: 0.08rem;
  font-size: 1.8rem;
  background-color: #fafafa;
  margin-bottom: 1%;
  margin-right: 1%;
  padding: 0;
  -webkit-transition: background-color 0.2s;
  -khtml-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.widget_apg-home-signature-programs ul li a {
  padding: 5px 8px;
  display: block;
}
.widget_apg-home-signature-programs ul li i {
  float: right;
  margin-right: 10px;
  -webkit-transition: 0.3s;
  -khtml-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_apg-home-signature-programs ul li:before {
  display: none;
}
.widget_apg-home-signature-programs ul li:hover {
  background-color: #D29F13;
}
.widget_apg-home-signature-programs ul li:hover a {
  color: white;
}
.widget_apg-home-signature-programs ul li:hover i {
  margin-right: 0;
  color: white;
}

.widget_sow-editor {
  padding-right: 20%;
  font-size: 2rem;
}
.widget_sow-editor strong {
  font-weight: 600;
}

.widget_sow-editor.panel-first-child {
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.widget_apg-home-yellow-box {
  background-color: #D29F13;
}
.widget_apg-home-yellow-box .widget-content {
  padding: 1rem 10px;
  background-repeat: no-repeat;
  background-position: 0 center;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
}
.widget_apg-home-yellow-box .widget-content h3 {
  width: 50%;
  padding-right: 2rem;
}
.widget_apg-home-yellow-box .widget-content .content {
  width: 50%;
  padding-right: 2rem;
}
.widget_apg-home-yellow-box .quotes {
  padding-right: 40px;
  padding-left: 40px;
  position: relative;
}
.widget_apg-home-yellow-box .quotes h3 {
  font-weight: 800;
  text-transform: none;
  font-size: 6rem;
  padding-right: 60px;
  line-height: 0.8;
  padding-bottom: 2rem;
}
.widget_apg-home-yellow-box .quotes .content {
  font-size: 2rem;
}
.widget_apg-home-yellow-box .quotes .content a {
  color: inherit;
  text-decoration: underline;
}
.widget_apg-home-yellow-box .quotes .content a:hover {
  color: #000;
}
.widget_apg-home-yellow-box .quotes:before {
  display: block;
  position: absolute;
  width: 100px;
  height: 80px;
  background: url(../images/homepage-quotes.svg);
  left: 20px;
  background-repeat: no-repeat;
  top: 26px;
  background-size: cover;
}
.widget_apg-home-yellow-box .quotes:after {
  display: block;
  position: absolute;
  width: 100px;
  height: 80px;
  background: url(../images/homepage-quotes.svg);
  right: 20px;
  background-repeat: no-repeat;
  top: 26px;
  background-size: cover;
  background-position: right top;
}

.widget_apg-home-buttons .widget-content {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.widget_apg-home-buttons .button-container {
  width: 33.3333333333%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex;
}
.widget_apg-home-buttons .social-media-button-container {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.widget_apg-home-buttons .text-link-button-container {
  width: 66.6666666667%;
}
.widget_apg-home-buttons .apg-link-button.text-link {
  width: 50%;
  margin-right: 20px;
}
.widget_apg-home-buttons .apg-link-button.social-media {
  width: 60px;
  margin-left: 20px;
}

@media screen and (max-width: 1100px) {
  body.home .row-type-about,
  body.page-home-revision .row-type-about {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  body.home header.site-header .header-content {
    padding: 20px 4% 10px;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
  }
  body.home header.site-header .menu-toggle,
  body.home header.site-header .search-button {
    position: static;
    margin: 0;
    margin-left: 20px;
  }
  body.home .row-type-featured .home-row-column-1 {
    padding-left: 4%;
  }
  body.home .home-row.row-type-programs,
  body.home .home-row.row-type-blog .home-row-column-wrapper,
  body.home .home-row.row-type-news .home-row-column-wrapper {
    padding: 0 4%;
  }
  body.home .row-type-about,
  body.page-home-revision .row-type-about {
    padding: 4%;
  }
  body.home .so-panel h3,
  body.page-home-revision .so-panel h3 {
    line-height: 0.9;
    width: auto;
    padding: 20px 0 10px;
  }
  body.home #primary,
  body.page-home-revision #primary {
    padding: 0;
  }
  body.home .widget_apg-home-yellow-box .widget-content,
  body.page-home-revision .widget_apg-home-yellow-box .widget-content {
    display: block;
  }
  body.home .widget_apg-home-yellow-box .widget-content .content,
  body.page-home-revision .widget_apg-home-yellow-box .widget-content .content {
    width: auto;
  }
  body.home .so-panel.widget_sow-editor,
  body.home .widget-content,
  body.page-home-revision .so-panel.widget_sow-editor,
  body.page-home-revision .widget-content {
    padding: 0 5%;
  }
  body.home .widget_apg-home-signature-programs ul li,
  body.page-home-revision .widget_apg-home-signature-programs ul li {
    padding-left: 0;
  }
  body.home .widget_apg-home-signature-programs ul,
  body.page-home-revision .widget_apg-home-signature-programs ul {
    display: block;
  }
  body.home .widget_apg-home-signature-programs ul li,
  body.page-home-revision .widget_apg-home-signature-programs ul li {
    width: auto;
  }
  body.home .widget_apg-home-newsroom-widget .content-row,
  body.page-home-revision .widget_apg-home-newsroom-widget .content-row {
    padding: 0;
    display: block;
  }
  body.home .widget_apg-home-newsroom-widget .content-row .column,
  body.page-home-revision .widget_apg-home-newsroom-widget .content-row .column {
    width: auto;
  }
  body.home .widget_apg-home-newsroom-widget .content-row .column-3,
  body.page-home-revision .widget_apg-home-newsroom-widget .content-row .column-3 {
    display: none;
  }
  body.home .widget_apg-home-newsroom-widget .content-row li,
  body.page-home-revision .widget_apg-home-newsroom-widget .content-row li {
    padding: 0;
  }
}
@media screen and (max-width: 414px) {
  body.home .row-type-featured .home-row-column-wrapper {
    display: block;
  }
  body.home .row-type-featured .home-row-column-1,
  body.home .row-type-featured .home-row-column {
    width: 100%;
  }
  body.home .row-type-featured.display-type-small img,
  body.home .row-type-featured.display-type-smallest img {
    width: 100%;
  }
  body.home .home-row.row-type-programs ul {
    display: block;
  }
  body.home .home-row.row-type-programs ul li {
    width: 100%;
    line-height: 1.1;
    padding: 5px;
  }
  body.home .home-row.row-type-blog .home-row-column-wrapper,
  body.home .home-row.row-type-news .home-row-column-wrapper {
    display: block;
  }
  body.home .home-row.row-type-blog .home-row-column-wrapper .column-1,
  body.home .home-row.row-type-blog .home-row-column-wrapper .column-2,
  body.home .home-row.row-type-news .home-row-column-wrapper .column-1,
  body.home .home-row.row-type-news .home-row-column-wrapper .column-2 {
    width: 100%;
    padding-right: 0;
  }
  body.home .home-row.row-type-blog .home-row-column-wrapper .section-list,
  body.home .home-row.row-type-news .home-row-column-wrapper .section-list {
    width: 100%;
  }
  body.home .home-row.row-type-blog .home-row-column-wrapper .column-3,
  body.home .home-row.row-type-news .home-row-column-wrapper .column-3 {
    width: 50%;
    margin-top: 1rem;
  }
  body.home .home-row.row-type-buttons {
    display: block;
  }
  body.home .home-row.row-type-buttons {
    margin: 4%;
  }
  body.home .home-row.row-type-buttons .button-container {
    width: 100%;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    padding-right: 0;
    margin-bottom: 20px;
  }
  body.home .home-row.row-type-buttons .text-link-button-container .apg-link-button {
    margin: 0;
    min-width: 0;
    width: calc(50% - 10px);
    line-height: 1;
  }
  #pg-22-0 {
    margin: 0 !important;
  }
  #pg-22-0 .panel-grid-cell {
    padding: 0 !important;
  }
  body.home .so-panel,
  body.home .so-panel.widget_sow-editor {
    padding-left: 12%;
    padding-right: 12%;
  }
  body.home .so-panel h3,
  body.home .so-panel.widget_sow-editor h3 {
    font-size: 2rem;
    line-height: 0.9;
    width: auto;
    padding: 20px 0 0px;
  }
  body.home .widget-content {
    padding: 0;
  }
  body.home .so-panel.widget_apg-home-signature-programs {
    padding: 0 5%;
  }
  body.home .so-panel.widget_apg-home-signature-programs h3 {
    font-size: 2rem;
  }
  body.home .so-panel.widget_apg-home-signature-programs ul li {
    letter-spacing: normal;
    font-size: 1.4rem;
  }
  body.home .so-panel.widget_apg-home-signature-programs i {
    position: relative;
    top: 5px;
  }
  body.home header.site-header .header-content.search {
    padding: 0 4%;
  }
  body.home .widget_apg-home-buttons div {
    display: block;
  }
  body.home .widget_apg-home-buttons .text-link-button-container,
  body.home .widget_apg-home-buttons .apg-link-button.text-link {
    width: 100%;
    margin-bottom: 20px;
  }
  body.home .widget_apg-home-buttons .social-media-button-container {
    width: auto;
    margin-bottom: 30px;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  body.home .widget_apg-home-buttons .social-media-button-container .apg-link-button.social-media {
    margin: 0;
  }
  body.home .widget_apg-home-yellow-box {
    padding: 0;
  }
  body.home .widget_apg-home-yellow-box .widget-content {
    padding: 0 12%;
  }
  body.home .widget_apg-home-yellow-box .quotes {
    padding: 1rem 0;
  }
  body.home .widget_apg-home-yellow-box .quotes .widget-content h3 {
    font-size: 3rem;
    padding: 0;
    padding-bottom: 30px;
  }
  body.home .widget_apg-home-yellow-box :before,
  body.home .widget_apg-home-yellow-box :after {
    width: 52px;
    height: 40px;
  }
  body.home .widget_apg-home-yellow-box .widget-content {
    padding-bottom: 0.01rem;
  }
  body.home .widget_apg-home-yellow-box .widget-content h3 {
    font-size: 2rem;
  }
  body.home .widget_apg-home-yellow-box .content {
    padding-right: 0;
    font-size: 1.2rem;
  }
  body.home .search-button,
  body.home .menu-toggle {
    margin: 20px 0;
  }
  body.home header.site-header nav {
    margin-left: 0;
  }
  body.home .so-panel.widget_apg-home-newsroom-widget {
    padding: 0 5%;
  }
  body.home .so-panel.widget_apg-home-newsroom-widget .column-2 {
    padding-right: 0;
  }
  body.home .widget_sow-editor {
    font-size: 1.2rem;
  }
}
.home-page-featured-text-box {
  background: #D29F13;
  display: inline-block;
  padding: 10px;
  position: absolute;
  bottom: 120px;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.1;
}
.home-page-featured-text-box p {
  margin: 0;
}
.home-page-featured-text-box .name {
  font-weight: 600;
  font-size: 3rem;
}
.home-page-featured-text-box .date {
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 1px;
}
.home-page-featured-text-box .links {
  font-size: 1.2rem;
  text-transform: none;
  margin-top: 1rem;
}
.home-page-featured-text-box .links a {
  text-decoration: underline;
}

@media screen and (max-width: 390px) {
  body.home .widget_apg-home-yellow-box :before,
  body.home .widget_apg-home-yellow-box :after {
    width: 32px;
    height: 26px;
  }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 12, 2016, 5:58:31 PM
    Author     : wh
*/
header.site-header .search-button {
  background-repeat: no-repeat;
  margin-top: 40px;
  order: 3;
  cursor: pointer;
  background-size: contain;
  background-position: right 0;
}
header.site-header .header-content.search {
  max-height: 0px;
  visibility: hidden;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
header.site-header .header-content.search form {
  opacity: 0;
  -webkit-transition: 0.2s;
  -khtml-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  border: 1px solid #999;
  position: relative;
  overflow: hidden;
}
header.site-header .header-content.search input[type=search] {
  width: 100%;
  font-size: 1.5rem;
  padding: 10px 13px;
  border: none;
}
header.site-header .header-content.search label {
  display: none;
}
header.site-header .header-content.search input[type=submit] {
  background: #fff;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
  width: auto;
  position: absolute;
  right: -100px;
  margin-top: 14px;
  border-left: 1px solid #000;
  -webkit-transition: 1s;
  -khtml-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
header.site-header .header-content.search input {
  outline: none;
}
header.site-header .header-content.has-value input[type=submit] {
  right: 0;
}

body.show-search .header-content.search {
  visibility: visible;
  max-height: 120px;
  padding: 30px;
}
body.show-search .header-content.search form {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  -webkit-transition: 0.7s 0.2s;
  -khtml-transition: 0.7s 0.2s;
  -moz-transition: 0.7s 0.2s;
  -ms-transition: 0.7s 0.2s;
  -o-transition: 0.7s 0.2s;
  transition: 0.7s 0.2s;
}
body.show-search .search-button {
  color: #000;
}

body.search #main {
  margin-left: 25%;
}
body.search .section-list .list {
  width: 100%;
}
body.search .section-list .section-row .column-2 {
  width: 75%;
}
body.search .not-found {
  padding-top: 2rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 900px) {
  body.home .search-button {
    color: #fff;
  }
  body.home .search-button span {
    position: relative;
    top: -5px;
  }
  body.home.show-search .search-button {
    color: #000;
  }
}
/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 13, 2016, 11:00:20 AM
    Author     : wh
*/
@media screen and (max-width: 1110px) {
  header.site-header .search-button {
    background-size: 100%;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
  }
  nav ul li {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  nav ul li.menu-item {
    font-size: 1.2rem;
  }
  body {
    color: #000;
  }
  header.site-header .site-branding {
    padding-right: 0;
  }
  header.site-header .site-branding a {
    padding-bottom: 55px;
  }
  nav ul li {
    padding-top: 40px;
  }
  .home-page-featured-text-box .beloved {
    font-size: 1.8rem;
  }
  .home-page-featured-text-box .name {
    font-size: 2.2rem;
  }
  .home-page-featured-text-box .date {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  body.page-template-page_standalone-tpl #primary .top {
    padding-left: 0;
  }
  .member-tiles {
    display: block;
    margin-right: 0;
  }
  .member-tiles .member-tile {
    width: 100%;
  }
  .member-tiles .member-tile.type-double-wide {
    display: block;
  }
  .member-tiles .member-tile.type-double-wide .tile-column, .member-tiles .member-tile .tile-column-1 {
    width: 100%;
  }
  header.site-header .site-branding {
    padding-right: 4%;
  }
  header.site-header nav {
    width: 69%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
  }
  header.site-header nav > div {
    width: 100%;
  }
  header.site-header nav ul {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  header.site-header nav ul li {
    padding-right: 0px;
  }
  header.site-header nav .search-button {
    margin: 0;
    margin-bottom: 20px;
  }
  header.site-header .header-content.search.show {
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  #main-sections section {
    padding: 1rem 0;
  }
  .side-nav.page-links {
    border-bottom: 4px solid;
    width: auto;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .side-nav.page-links ul {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .side-nav.page-links li {
    width: 50%;
    padding-right: 10px;
  }
  .side-nav.no-content {
    border: none;
    margin-bottom: 0;
  }
  .side-nav.side-nav-actions {
    width: 100%;
  }
  .side-nav.side-nav-actions ul.actions {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  .side-nav.side-nav-actions ul.actions li {
    margin: 0 2%;
  }
  .side-nav.side-nav-actions .contact-links {
    margin-left: 0;
  }
  .side-nav.blog-filters {
    display: none;
  }
  .content-area {
    padding: 0 5%;
  }
  .content-area .top {
    display: block;
  }
  #main-sections h3 {
    position: static;
    margin-bottom: 1rem;
    width: auto;
  }
  .section-list .section-category {
    display: block;
  }
  .section-list .section-category h3 {
    width: auto;
  }
  .section-list .section-category .list {
    width: auto;
  }
  body.bucket-get-involved #main-sections {
    padding-left: 0;
  }
  body.post-type-archive-post .section-list {
    width: auto;
  }
  body.single article {
    width: auto;
    padding-left: 0;
  }
  header.site-header .header-content {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header.site-header .site-branding {
    padding-right: 0;
    width: 100%;
    padding-bottom: 8px;
  }
  header.site-header .site-branding a {
    padding-bottom: 75px;
  }
  header.site-header .menu-toggle {
    display: block;
    border: 1px solid #555;
    border-left: none;
    border-right: none;
    background: transparent;
    height: 14px;
    width: 24px;
    padding: 0;
    margin-top: 36px;
    position: absolute;
    right: 100px;
  }
  header.site-header .menu-toggle:after {
    content: "";
    display: block;
    border-top: 1px solid #555;
    width: 100%;
  }
  header.site-header .search-button {
    width: 24px;
    height: 24px;
    margin-top: 34px;
  }
  header.site-header nav {
    width: 100%;
    order: 4;
  }
  header.site-header nav .menu-main-navigation-2016-container {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: 0.8s;
    -khtml-transition: 0.8s;
    -moz-transition: 0.8s;
    -ms-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
  }
  header.site-header nav ul {
    margin: 10px 0;
    display: block;
  }
  header.site-header nav ul .rollover-menu {
    position: relative;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    visibility: visible;
    border: none;
    background: transparent;
    padding: 0;
  }
  header.site-header nav ul .rollover-menu li {
    border-bottom: 1px solid;
  }
  header.site-header nav li {
    padding: 10px 20px 10px 0;
    font-size: 1.4rem;
  }
  header.site-header nav li.has-links:hover {
    border: none;
  }
  header.site-header nav.open .menu-main-navigation-2016-container {
    max-height: 3000px;
  }
  header.site-header .header-content.search form.search-form {
    margin: 0;
    width: 100%;
  }
  .sub-navigation.subnav-links .content-area {
    display: block;
  }
  .sub-navigation.subnav-links .content-area h2, .sub-navigation.subnav-links .content-area h1 {
    width: 100%;
  }
  .sub-navigation.subnav-links .content-area .page-shortcuts {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.2rem;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sub-navigation.subnav-links .content-area .page-shortcut {
    width: 33.3333333333%;
    padding: 8px 0;
  }
  body.page-template-default #main {
    width: auto;
  }
  body.page-template-page-section-tpl #main {
    width: auto;
    padding-left: 0;
  }
  #main-sections .section-list.resources-list .section-title, #main-sections .section-list.resources-list .resource-content {
    width: 100%;
  }
  #main-sections .section-list.resources-list .section-row {
    display: block;
    margin-bottom: 30px;
  }
  .section-list .section-row .column-1 {
    width: 100%;
  }
  body.section-resources.sub-section-databases #main {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  body.page-home-revision nav ul li.menu-item:first-child {
    padding-top: 0;
  }
  header.site-header nav ul .rollover-menu.rollover-menu.programs {
    display: block;
  }
  header.site-header nav ul .rollover-menu .nav-column {
    width: 100%;
  }
  header.site-header .menu-toggle {
    right: 80px;
  }
  header.site-header .header-nav {
    padding-bottom: 6px;
  }
  header.site-header .header-content.search.show {
    padding-left: 5%;
    padding-right: 5%;
  }
  header.site-header .header-content {
    padding: 0 5%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header.site-header .site-branding {
    width: 50%;
    margin-right: 30%;
  }
  header.site-header .site-branding .site-title {
    padding-bottom: 52px;
    margin-left: 2px;
    min-width: 200px;
  }
  header.site-header .search-button {
    right: 5%;
  }
  body.page-template-page-section-tpl #main {
    padding-left: 0;
  }
  body.page-template-page-section-tpl #main-sections section {
    padding-left: 0;
  }
  #main-sections section {
    padding-left: 0;
    padding-right: 0;
  }
  #main-sections h3 {
    position: static;
    width: auto;
  }
  body.bucket-get-involved #main-sections, body.bucket-resources #main-sections {
    padding-left: 0;
  }
  body.bucket-get-involved #main-sections section, body.bucket-resources #main-sections section {
    display: block;
  }
  body.bucket-get-involved #main-sections section h3, body.bucket-resources #main-sections section h3 {
    width: auto;
    margin-bottom: 0.5rem;
  }
  .sub-navigation.subnav-links .content-area {
    padding: 0.5rem 5%;
    display: block;
  }
  .sub-navigation.subnav-links .content-area .page-shortcuts {
    width: auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-top: 10px;
  }
  .sub-navigation.subnav-links .content-area .page-shortcut {
    padding: 10px 0;
    width: 50%;
  }
  .sub-navigation.subnav-links .content-area .section-title {
    width: auto;
    float: none;
  }
  .section-list .section-category {
    display: block;
  }
  .section-list h3 {
    width: auto;
  }
  .section-list .list {
    width: auto;
  }
  .section-list .section-row {
    display: block;
  }
  .section-list .section-row .column {
    width: auto;
    padding-right: 0;
  }
  #main div.staff-photo, #main-sections div.staff-photo, #primary div.staff-photo {
    min-width: 80px;
  }
  #main div.staff-photo img, #main-sections div.staff-photo img, #primary div.staff-photo img {
    height: 80px;
  }
  #main div.staff-member-listing .staff-member-info-wrap, #main-sections div.staff-member-listing .staff-member-info-wrap, #primary div.staff-member-listing .staff-member-info-wrap {
    padding-left: 10px;
    margin-right: 0;
  }
  .section-list .column.event-info {
    margin-bottom: 1rem;
  }
  body.single article {
    padding-left: 0;
  }
  body.post-type-archive-post .section-list {
    width: auto;
  }
  body.post-type-archive-post .excerpt {
    margin-bottom: 20px;
  }
  .home-page-featured-text-box {
    display: block;
    position: relative;
    bottom: auto;
    margin-top: 35vh;
  }
  .home-page-featured-text-box .beloved, .home-page-featured-text-box .name {
    font-size: 1rem;
  }
  .home-page-featured-text-box .date {
    font-size: 0.8rem;
  }
  body.single #page-content {
    display: block;
  }
  .side-nav.social-media {
    width: auto;
    padding-right: 0;
  }
  .side-nav.social-media ul {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
  .side-nav.social-media li {
    margin: 0 10px;
  }
  .side-nav.social-media li:before {
    display: block;
    margin-bottom: 10px;
    text-align: center;
  }
  .side-nav.social-media li:hover a {
    display: none;
  }
  .side-nav.social-media a {
    position: absolute;
  }
  body.single #content #page-content {
    flex-direction: column-reverse;
  }
  body.single #content article {
    width: auto;
  }
  body.single #content img {
    max-width: 100%;
  }
  body.single #content img.alignleft {
    float: none;
  }
  body.single #content .wp-caption {
    max-width: 100%;
  }
}
@media screen and (max-width: 360px) {
  html {
    font-size: 16px;
  }
  .side-nav.side-nav-actions ul.actions {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
  .side-nav.side-nav-actions ul.actions li {
    margin: 0;
  }
}
.close-button {
  display: none;
}

body.home.show-search header.site-header .header-nav {
  background: #fff;
}

@media screen and (max-width: 900px) {
  .main-menu-link {
    font-weight: 600;
  }
  body.home header.site-header .menu-toggle {
    border-color: #fff;
  }
  body.home header.site-header .menu-toggle:after {
    border-color: #fff;
  }
  body.home header.site-header nav {
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
  }
  body.home .home-page-logo {
    max-width: 60%;
  }
  body.home header.site-header .header-nav {
    position: absolute;
    background: transparent;
    width: 100%;
  }
  body.page-home-revision nav ul .menu-item .rollover-menu {
    transform: none;
  }
  header.site-header nav {
    position: fixed;
    width: 100vw;
    top: 0px;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    left: 0;
    border-top: 8px solid #D29F13;
    display: block;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s;
  }
  header.site-header nav .menu-main-navigation-2016-container {
    width: 100vw;
    margin-top: 20px;
    left: 0;
    padding: 5%;
    height: calc(100% - 20px);
    max-height: none;
    overflow-y: scroll;
  }
  header.site-header nav .menu-main-navigation-2016-container ul,
  header.site-header nav .menu-main-navigation-2016-container li {
    display: block;
  }
  header.site-header nav .close-button {
    text-transform: uppercase;
    text-align: right;
    padding: 10px 5%;
    font-size: 0.8rem;
    display: block;
    cursor: pointer;
  }
  header.site-header nav.open {
    max-height: none;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}/*# sourceMappingURL=apg-home.css.map */