@charset "UTF-8";
/* Variables
/* ========================================================================== */
/* Animations
/* ========================================================================== */
@-webkit-keyframes modalusFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalusFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes modalusScaleIn {
  from {
    -webkit-transform: scale(0.75);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes modalusScaleIn {
  from {
    opacity: 0;
    -ms-transform: scale(0.75);
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  to {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes modalusPulse {
  0% {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
  }
  50% {
    opacity: 1.0;
    -webkit-transform: scale(1.25);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
  }
}
@keyframes modalusPulse {
  0% {
    opacity: 0.5;
    -ms-transform: scale(0.75);
    -webkit-transform: scale(1.75);
            transform: scale(1.75);
  }
  50% {
    opacity: 1.0;
    -ms-transform: scale(1.25);
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    opacity: 0.5;
    -ms-transform: scale(0.75);
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
/* Styles
/* ========================================================================== */
.modalus-overlay,
.modalus-outer,
.modalus-loading,
.modalus-inner {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modalus-overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
}
.modalus-overlay.is-open {
  display: block;
  -webkit-animation: modalusFadeIn 0.25s;
  animation: modalusFadeIn 0.25s;
}

.modalus-outer {
  display: none;
  position: absolute;
  margin: auto;
  width: 830px;
  height: 630px;
  max-width: 100%;
  max-height: 100%;
  border-top: 15px transparent solid;
  border-left: 15px transparent solid;
  border-right: 15px transparent solid;
  border-bottom: 15px transparent solid;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.modalus-overlay.is-loaded .modalus-outer {
  display: block;
  -webkit-animation: modalusScaleIn 0.25s;
  animation: modalusScaleIn 0.25s;
}

.modalus-inner {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.15);
  overflow: auto;
}
.modalus-inner > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.modalus-inner > iframe {
  max-width: 100%;
}

.modalus-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.25);
  color: #333;
  text-align: center;
  line-height: 30px;
  z-index: 1;
  cursor: pointer;
}
.modalus-close:before {
  display: inline-block;
  content: "×";
  font-size: 25px;
  line-height: 1;
  vertical-align: middle;
}
.modalus-overlay.is-resizing .modalus-close {
  display: none;
}

.modalus-loading {
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.65);
  line-height: 50px;
  border-radius: 10px;
}
.modalus-loading:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 50%;
  background: #999;
  -webkit-animation: modalusPulse 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
  animation: modalusPulse 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}
.modalus-overlay.is-loaded .modalus-loading {
  display: none;
}

/* Poll Styles -------------------------------------------------------------- */
.pv-poll {
  padding-top: 30px;
  border-top: 1px #ccc solid;
}

/* Column Styles ------------------------------------------------------------ */
.pv-items:after {
  content: '';
  display: table;
  clear: both;
}

.pv-item--first {
  clear: left;
}

.pv-item--last {
  clear: right;
}

.pv-items--1 .pv-item {
  width: auto;
  float: none;
}

.pv-items--2 .pv-item {
  width: 50%;
  float: left;
}
.pv-items--2 .pv-item--first {
  padding-right: 20px;
}
.pv-items--2 .pv-item--last {
  padding-left: 20px;
}

.pv-items--3 .pv-item {
  width: 33.333%;
  float: left;
  padding: 0 15px;
}
.pv-items--3 .pv-item--first {
  padding: 0 30px 0 0;
}
.pv-items--3 .pv-item--last {
  padding: 0 0 0 30px;
}

@media only screen and (max-width: 35em) {
  .pv-items--2 .pv-item,
  .pv-items--3 .pv-item {
    width: auto;
    float: none;
    padding: 0;
  }
  .pv-items--2 .pv-item--first,
  .pv-items--2 .pv-item--last,
  .pv-items--3 .pv-item--first,
  .pv-items--3 .pv-item--last {
    padding: 0;
  }
}
/* Individual Items --------------------------------------------------------- */
.pv-item {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.pv-item:after {
  content: '';
  display: table;
  clear: both;
}

.pv-item-cover {
  position: relative;
  margin: 0 0 10px;
}
.pv-poll.has-voted .pv-item-cover {
  opacity: 0.5;
}
.pv-item.is-vote .pv-item-cover {
  opacity: 1.0;
}
.pv-item.is-vote .pv-item-cover:before {
  display: block;
  position: absolute;
  content: "\2714";
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: #2c6;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

.pv-item-image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 2px;
  cursor: pointer;
}

.pv-item-video {
  display: block;
  width: 150px;
  height: 112px;
  margin-bottom: 2px;
}

.pv-item-button {
  display: block;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.pv-item-button .pv-item-button-busy,
.pv-item-button .pv-item-button-hover {
  display: none;
}
.pv-item-button .pv-item-button-normal {
  display: inline;
}
.pv-item-button:hover {
  color: #fff;
}
.pv-item-button:hover .pv-item-button-busy,
.pv-item-button:hover .pv-item-button-normal {
  display: none;
}
.pv-item-button:hover .pv-item-button-hover {
  display: inline;
}
.pv-poll.is-busy .pv-item-button .pv-item-button-hover,
.pv-poll.is-busy .pv-item-button .pv-item-button-normal {
  display: none;
}
.pv-poll.is-busy .pv-item-button .pv-item-button-busy {
  display: inline;
}
.pv-poll.is-touch .pv-item-button:hover .pv-item-button-busy,
.pv-poll.is-touch .pv-item-button:hover .pv-item-button-hover {
  display: none;
}
.pv-poll.is-touch .pv-item-button:hover .pv-item-button-normal {
  display: inline;
}

.pv-item-button--vote {
  background: #fc4f47;
}
.pv-poll.has-voted .pv-item-button--vote {
  display: none;
}
.pv-item-button--vote:hover {
  background: #fb1f15;
}

.pv-item-button--unvote {
  display: none;
  background: #999;
}
.pv-item-button--unvote:hover .pv-item-button-busy,
.pv-item-button--unvote:hover .pv-item-button-hover {
  display: none;
}
.pv-item-button--unvote:hover .pv-item-button-normal {
  display: inline;
}
.pv-item.is-vote .pv-item-button--unvote:hover .pv-item-button-busy,
.pv-item.is-vote .pv-item-button--unvote:hover .pv-item-button-normal {
  display: none;
}
.pv-item.is-vote .pv-item-button--unvote:hover .pv-item-button-hover {
  display: inline;
}
.pv-poll.is-busy .pv-item-button--unvote:hover .pv-item-button-hover,
.pv-poll.is-busy .pv-item-button--unvote:hover .pv-item-button-normal {
  display: none;
}
.pv-poll.is-busy .pv-item-button--unvote:hover .pv-item-button-busy {
  display: inline;
}
.pv-poll.has-voted .pv-item-button--unvote {
  display: block;
}
.pv-poll.is-touch .pv-item-button--unvote:hover .pv-item-button-busy,
.pv-poll.is-touch .pv-item-button--unvote:hover .pv-item-button-hover {
  display: none;
}
.pv-poll.is-touch .pv-item-button--unvote:hover .pv-item-button-normal {
  display: inline;
}

.pv-item-play {
  display: block;
  position: absolute;
  content: "\25BA";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 60px;
  margin: auto;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
  border-radius: 15px;
  opacity: 0.5;
  cursor: pointer;
}
.pv-item-play:before {
  content: "\25BA";
}
.pv-item-play:hover {
  opacity: 0.75;
}

.pv-item-title {
  margin: 10px 0;
}

.pv-item-subtitle {
  margin: 10px 0;
  color: #999;
  font-style: italic;
}

.pv-item-date {
  margin: 10px 0;
  font-size: 12px;
}

.pv-item-content {
  float: left;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
