@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/****** dropdown-select *******/

.wrap-dd-select {
  position: relative;
  width: 200px;
  margin: 0 auto;
  padding: 10px;



  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
      user-select:none;

  background: #fff;
  border-radius: 7px;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 1px rgba(50,50,50,0.1);
  cursor: pointer;
  outline: none;
  font-weight: bold;
  color: #8AA8BD;
}

.wrap-dd-select.disabled {
  cursor: default;
  color: #5B6A7D;
}

/*.wrap-dd-select:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #8aa8bd transparent;
}*/

.wrap-dd-select.disabled:after {
  border: none;
}

.wrap-dd-select .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: white;
  padding: 0;
  border-radius: inherit;
  border: 1px solid rgba(0,0,0,0.17);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  font-weight: normal;
  list-style: none;
  visibility: hidden;
  max-height: 300px;
  overflow-y: auto; /*Provide an auto overflow to display scroll*/
}

.wrap-dd-select .dropdown li.divider {
  padding: 2px 0;
  background: #e6e8ea;
}

.wrap-dd-select .dropdown li.divider-label {
  background: #e6e8ea;
  cursor: default;
  color: #000;
  padding: 10px 0;
}

.wrap-dd-select .dropdown li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #8aa8bd;
  border-bottom: 1px solid #e6e8ea;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1);
  cursor: pointer;
}

.wrap-dd-select .dropdown li i {
  float: right;
  color: inherit;
}

.wrap-dd-select .dropdown li:first-of-type a {
  border-radius: 7px 7px 0 0;
}

.wrap-dd-select .dropdown li:last-of-type a {
  border-radius: 0 0 7px 7px;
  border: none;
}

.wrap-dd-select .dropdown li:hover a {
  background: #f3f8f8;
}

.wrap-dd-select .dropdown:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 15px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: #fff transparent;
}

.wrap-dd-select .dropdown:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 13px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: rgba(0,0,0,0.1) transparent;
}

.wrap-dd-select.active .dropdown {
  visibility: visible;
}

/****** dropdown-menu *******/

.wrap-dd-menu {
  position: relative;
  width: 200px;
  margin: 0 auto;
  padding: 10px;
}

.wrap-dd-menu.disabled {
  cursor: default;
  color: #5B6A7D;
}

.wrap-dd-menu .dropdown {
  position: absolute;
  z-index: 1;
  top: 70%;
  left: 0;
  right: 0;
  background: white;
  padding: 0;
  border-radius: 7px;
  border: 1px solid rgba(0,0,0,0.17);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  font-weight: normal;
  list-style: none;
  visibility: hidden;
}

.wrap-dd-menu .dropdown li.divider {
  padding: 2px 0;
  background: #e6e8ea;
}

.wrap-dd-menu .dropdown li.divider-label {
  background: #e6e8ea;
  cursor: default;
  color: #000;
  padding: 10px 0;
}

.wrap-dd-menu .dropdown li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #8aa8bd;
  border-bottom: 1px solid #e6e8ea;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1);
  cursor: pointer;
}

.wrap-dd-menu .dropdown li i {
  float: right;
  color: inherit;
}

.wrap-dd-menu .dropdown li:first-of-type a {
  border-radius: 7px 7px 0 0;
}

.wrap-dd-menu .dropdown li:last-of-type a {
  border-radius: 0 0 7px 7px;
  border: none;
}

.wrap-dd-menu .dropdown li:hover a {
  background: #f3f8f8;
}

.wrap-dd-menu .dropdown:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 102px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: #fff transparent;
}

.wrap-dd-menu .dropdown:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 100px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: rgba(0,0,0,0.1) transparent;
}

.wrap-dd-menu .dropdown.active {
  visibility: visible;
}

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,figure,footer,header,hgroup,menu,nav,section,menu,time,mark,audio,video{margin:0;padding:0;border:0;vertical-align:baseline;background:transparent}

*{-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}

body{font-size:100%;-webkit-font-smoothing:antialiased}

article,aside,figure,footer,header,hgroup,nav,section{display:block}

img,object,embed{max-width:100%}

img{border-style:none;border-color:transparent;border-width:0}

ol,ul{list-style:none}

blockquote,q{quotes:none}

blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}

a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}

a:focus{text-decoration:underline;outline:none}

del{text-decoration:line-through}

pre{white-space:pre-wrap;word-wrap:break-word}

input[type="radio"]{vertical-align:text-bottom}

input,textarea,select,button{font-family:inherit;font-weight:inherit;background-color:#fff;border:0;padding:0;margin:0}

table{font-size:inherit;font:100%}

sub,sup{font-size:75%;line-height:0;position:relative}

sup{top:-0.5em}

sub{bottom:-0.25em}

pre,code,kbd,samp{font-family:monospace, sans-serif}

.clickable,input[type=button],input[type=submit]{cursor:pointer}

button{cursor:pointer;margin:0;width:auto;overflow:visible}

a.button{display:inline-block}

.ie7 img{-ms-interpolation-mode:bicubic}

a:link{-webkit-tap-highlight-color:#4CB7FF}

ins{background-color:#FFCF47;color:black;text-decoration:none}

mark{background-color:#FFCF47;color:#1a1a1a;font-style:italic;font-weight:bold}

::-moz-selection{background:#dbf1ff;color:#1a1a1a}

::selection{background:#dbf1ff;color:#1a1a1a}

::-moz-selection{background:#dbf1ff;color:#1a1a1a}

@font-face{font-family:"ITC Lubalin Graph";font-style:normal;font-weight:normal;src:url(/collaboration/assets/media/fonts/lubalingraphgi-bk-webfont-0ec0b766.eot);src:url(/collaboration/assets/media/fonts/lubalingraphgi-bk-webfont-0ec0b766.eot?#iefix) format("embedded-opentype"),url(/collaboration/assets/media/fonts/lubalingraphgi-bk-webfont-069142f3.woff) format("woff"),url(/collaboration/assets/media/fonts/lubalingraphgi-bk-webfont-5de75c53.ttf) format("truetype"),url(/collaboration/assets/media/fonts/lubalingraphgi-bk-webfont-3cae173f.svg#lubalingraphgi-bk-webfont) format("svg")}

@font-face{font-family:"ITC Lubalin Graph";font-style:normal;font-weight:500;src:url(/collaboration/assets/media/fonts/lubalingraphgi-md-webfont-a3b4c7cb.eot);src:url(/collaboration/assets/media/fonts/lubalingraphgi-md-webfont-a3b4c7cb.eot?#iefix) format("embedded-opentype"),url(/collaboration/assets/media/fonts/lubalingraphgi-md-webfont-64a2620e.woff) format("woff"),url(/collaboration/assets/media/fonts/lubalingraphgi-md-webfont-96832e28.ttf) format("truetype"),url(/collaboration/assets/media/fonts/lubalingraphgi-md-webfont-31743454.svg#lubalingraphgi-md-webfont) format("svg")}

@font-face{font-family:"ITC Lubalin Graph";font-style:normal;font-weight:bold;src:url(/collaboration/assets/media/fonts/lubalingraphgi-demi-webfont-117c2c08.eot);src:url(/collaboration/assets/media/fonts/lubalingraphgi-demi-webfont-117c2c08.eot?#iefix) format("embedded-opentype"),url(/collaboration/assets/media/fonts/lubalingraphgi-demi-webfont-0b03590a.woff) format("woff"),url(/collaboration/assets/media/fonts/lubalingraphgi-demi-webfont-6d188849.ttf) format("truetype"),url(/collaboration/assets/media/fonts/lubalingraphgi-demi-webfont-9c4883c7.svg#lubalingraphgi-demi-webfont) format("svg")}

@font-face{font-family:"GettyIcons";font-style:normal;font-weight:normal;src:url(/collaboration/assets/media/fonts/GettyIcons-bbeab87e.eot);src:url(/collaboration/assets/media/fonts/GettyIcons-bbeab87e.eot?#iefix) format("embedded-opentype"),url(/collaboration/assets/media/fonts/GettyIcons-29a0c89a.woff) format("woff"),url(/collaboration/assets/media/fonts/GettyIcons-345ae90b.ttf) format("truetype"),url(/collaboration/assets/media/fonts/GettyIcons-b104fb93.svg#GettyIcons) format("svg")}

@font-face{font-family:"Roboto";font-style:normal;font-weight:700;src:url(/collaboration/assets/media/fonts/Roboto-Bold-b52fac2b.woff2) format("woff2");src:url(/collaboration/assets/media/fonts/Roboto-Bold-9f773357.woff) format("woff"),url(/collaboration/assets/media/fonts/Roboto-Bold-ee7b96fa.ttf) format("truetype")}

@font-face{font-family:"Roboto";font-style:normal;font-weight:300;src:url(/collaboration/assets/media/fonts/Roboto-Light-d26871e8.woff2) format("woff2");src:url(/collaboration/assets/media/fonts/Roboto-Light-f8cd0145.woff) format("woff"),url(/collaboration/assets/media/fonts/Roboto-Light-fc84e998.ttf) format("truetype")}

@font-face{font-family:"Roboto";font-style:normal;font-weight:500;src:url(/collaboration/assets/media/fonts/Roboto-Regular-73f0a88b.woff2) format("woff2");src:url(/collaboration/assets/media/fonts/Roboto-Regular-721570e3.woff) format("woff"),url(/collaboration/assets/media/fonts/Roboto-Regular-3e1af3ef.ttf) format("truetype")}

h2,h3,.account_register h1,h4,.form_header,h5,h6,h1{font-size:3.5em;line-height:1.28571em;margin-bottom:.42857em;color:#000;font-weight:bold;font-family:Roboto,sans-serif}

.ja h2,.ja h3,.ja h4,.ja .form_header,.ja h5,.ja h6,.ja h1{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko h2,.ko h3,.ko h4,.ko .form_header,.ko h5,.ko h6,.ko h1{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

h2{font-size:2.66667em;line-height:1.125em;margin-bottom:.5625em}

h3,.account_register h1{font-size:2.33333em;line-height:1.28571em;margin-bottom:.64286em}

h4,.form_header{font-size:2em;line-height:1.5em;margin-bottom:.75em}

h5{font-size:1.5em;line-height:1em;margin-bottom:1em}

h6{font-size:1.33333em;line-height:1.125em;margin-bottom:1.125em}

h1{zoom:1}

h1:before,h1:after{content:"\0020";display:block;height:0;overflow:hidden}

h1:after{clear:both}

h1 span{float:right;font-weight:normal}

.no-generatedcontent .error_container .error_content{float:left;margin-left:1.04167%;margin-right:1.04167%;width:97.91667%}

@media screen and (max-width: 540px){.error_container .error_content{float:left;margin-left:3.125%;margin-right:3.125%;width:93.75%}}

.fieldSetBlock,fieldset ol>li,#site-header,#site-header nav.categories,#site-header nav.actions,.board .asset-grid.horiz-mosaic .asset-container{zoom:1}

.fieldSetBlock:before,fieldset ol>li:before,#site-header:before,#site-header nav.categories:before,#site-header nav.actions:before,.board .asset-grid.horiz-mosaic .asset-container:before,.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{content:"\0020";display:block;height:0;overflow:hidden}

.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{clear:both}

.search_box button{display:inline-block;min-width:1em}

.search_box button:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #cart-icon,.board .toolbar button.move-to-cart{display:inline-block;min-width:1em}

#site-header nav.actions #cart-icon:before,.board .toolbar button.move-to-cart:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #cart-icon:before,.board .toolbar button.move-to-cart:before{content:"";margin-left:-0.04em}

button.board-comments,.board .asset-grid.grid .selection-comments .comments-icon .icon{display:inline-block;min-width:1em}

button.board-comments:before,.board .asset-grid.grid .selection-comments .comments-icon .icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

button.board-comments:before,.board .asset-grid.grid .selection-comments .comments-icon .icon:before{content:"!"}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label{display:inline-block;min-width:1em}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{content:"1"}

.board-management section.column-names .down,section.set-list-headers .set-sort-by .dropdown-container,section.set-list-footers .set-sort-by .dropdown-container{display:inline-block;min-width:1em}

.board-management section.column-names .down:before,section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.column-names .down:before,section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{content:"⋁"}

.board .toolbar .more-actions>a{display:inline-block;min-width:1em}

.board .toolbar .more-actions>a:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .more-actions>a:after{content:"⋁"}

.image_pager .image_pager_left,.board-paging a.pre-page,.board-management-paging a.pre-page,.set-management-paging a.pre-page,.asset-modal .nav-arrows .prev-asset{display:inline-block;min-width:1em}

.image_pager .image_pager_left:before,.board-paging a.pre-page:before,.board-management-paging a.pre-page:before,.set-management-paging a.pre-page:before,.asset-modal .nav-arrows .prev-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.image_pager .image_pager_left:before,.board-paging a.pre-page:before,.board-management-paging a.pre-page:before,.set-management-paging a.pre-page:before,.asset-modal .nav-arrows .prev-asset:before{content:"⟨"}

.image_pager .image_pager_right,.board-paging a.next-page,.board-management-paging a.next-page,.set-management-paging a.next-page,.asset-modal .nav-arrows .next-asset{display:inline-block;min-width:1em}

.image_pager .image_pager_right:before,.board-paging a.next-page:before,.board-management-paging a.next-page:before,.set-management-paging a.next-page:before,.asset-modal .nav-arrows .next-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.image_pager .image_pager_right:before,.board-paging a.next-page:before,.board-management-paging a.next-page:before,.set-management-paging a.next-page:before,.asset-modal .nav-arrows .next-asset:before{content:"⟩"}

.board .toolbar .more-actions .menu{display:inline-block;min-width:1em}

.board .toolbar .more-actions .menu:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .more-actions .menu:after{content:"⟩"}

.board-management section.column-names .up{display:inline-block;min-width:1em}

.board-management section.column-names .up:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.column-names .up:before{content:"⋀"}

.board .toolbar .diag-modal .modalClose,.share-modal .modalBox .modalClose,.board-management section.board-list .board-item .delete-board,.board-management section.board-list .board-item .delete-board-desktop,.board .close,.panel .close,.keywords .keyword .remove-keyword,.board .board-item .remove,.asset-modal .close{display:inline-block;min-width:1em}

.board .toolbar .diag-modal .modalClose:before,.share-modal .modalBox .modalClose:before,.board-management section.board-list .board-item .delete-board:before,.board-management section.board-list .board-item .delete-board-desktop:before,.board .close:before,.panel .close:before,.keywords .keyword .remove-keyword:before,.board .board-item .remove:before,.asset-modal .close:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .diag-modal .modalClose:before,.share-modal .modalBox .modalClose:before,.board-management section.board-list .board-item .delete-board:before,.board-management section.board-list .board-item .delete-board-desktop:before,.board .close:before,.panel .close:before,.keywords .keyword .remove-keyword:before,.board .board-item .remove:before,.asset-modal .close:before{content:")";margin-left:-0.06em}

.board .asset-grid.grid .info-strip .download .download-asset:before{display:inline-block;min-width:1em}

.board .asset-grid.grid .info-strip .download .download-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .asset-grid.grid .info-strip .download .download-asset:before{content:"D"}

.board .play,.asset-modal article .comp .play{display:inline-block;min-width:1em}

.board .play:before,.asset-modal article .comp .play:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .play:before,.asset-modal article .comp .play:before{content:"'"}

.board-management section.tab .plus,.board-content .side-panel .set-metadata .input-container span,.board-content .side-panel .set-metadata input.add-keyword{display:inline-block;min-width:1em}

.board-management section.tab .plus:before,.board-content .side-panel .set-metadata .input-container span:before,.board-content .side-panel .set-metadata input.add-keyword:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.tab .plus:before,.board-content .side-panel .set-metadata .input-container span:before,.board-content .side-panel .set-metadata input.add-keyword:before{content:"+"}

#site-header nav.actions #user #user-icon{display:inline-block;min-width:1em}

#site-header nav.actions #user #user-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #user #user-icon:before{content:","}

.board .toolbar button.clear-all,aside.comments .comment .delete-comment-icon,.delete-comment-icon{display:inline-block;min-width:1em}

.board .toolbar button.clear-all:before,aside.comments .comment .delete-comment-icon:before,.delete-comment-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar button.clear-all:before,aside.comments .comment .delete-comment-icon:before,.delete-comment-icon:before{content:""}

.board-open .panel .open-board,.board-open .panel .back-button,.board-open .board .open-board,.board-open .board .back-button,.board-content .side-panel .status{display:inline-block;min-width:1em}

.board-open .panel .open-board:after,.board-open .panel .back-button:after,.board-open .board .open-board:after,.board-open .board .back-button:after,.board-content .side-panel .status:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-open .panel .open-board:after,.board-open .panel .back-button:after,.board-open .board .open-board:after,.board-open .board .back-button:after,.board-content .side-panel .status:after{content:":"}

.board-content header button.create-set-button,.board-content header button.curation-status-button{display:inline-block;min-width:1em}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{content:"9"}

.board .toolbar .board-view-options label.grid{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.grid:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.grid:before{content:""}

.board .toolbar .board-view-options label.horiz-mosaic{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.horiz-mosaic:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.horiz-mosaic:before{content:""}

.board .toolbar .board-view-options label.vert-mosaic{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.vert-mosaic:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.vert-mosaic:before{content:""}

.add-search-within button.search-icon,.curated-search .tags-wrapper .input-container .search-submit,.add-search-within .search-box button.search-icon{display:inline-block;min-width:1em}

.add-search-within button.search-icon:before,.curated-search .tags-wrapper .input-container .search-submit:before,.add-search-within .search-box button.search-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.add-search-within button.search-icon:before,.curated-search .tags-wrapper .input-container .search-submit:before,.add-search-within .search-box button.search-icon:before{content:'"'}

.board-management section.board-list .board-item .share-board{display:inline-block;min-width:1em}

.board-management section.board-list .board-item .share-board:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.board-list .board-item .share-board:after{content:""}

.board-management section.board-list .board-item .board-summary .board-name .pencil,.board-management section.board-list .board-item .board-summary .pencil{display:inline-block;min-width:1em}

.board-management section.board-list .board-item .board-summary .board-name .pencil:after,.board-management section.board-list .board-item .board-summary .pencil:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.board-list .board-item .board-summary .board-name .pencil:after,.board-management section.board-list .board-item .board-summary .pencil:after{content:""}

#site-header nav.actions #open_board span.icon{display:inline-block;min-width:1em}

#site-header nav.actions #open_board span.icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #open_board span.icon:before{content:""}

.contact_sheet_container .board-contact-sheet .header .site-logo{display:inline-block;min-width:1em}

.contact_sheet_container .board-contact-sheet .header .site-logo:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.contact_sheet_container .board-contact-sheet .header .site-logo:before{content:""}

.board .toolbar button.print-contact-sheet{display:inline-block;min-width:1em}

.board .toolbar button.print-contact-sheet:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar button.print-contact-sheet:before{content:""}

.search_box .search_fields a.button,.search_box .search_fields button{width:auto}

button,a.button{font-size:1.16667em;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

.no-generatedcontent .error_container .error_content{float:left;margin-left:1.04167%;margin-right:1.04167%;width:97.91667%}

.fail{border-color:#ff8c8c !important;color:#ff8c8c !important}

input .fail{background:#fff5f5}

.fail:focus{background:#fff5f5 !important}

.fail label{color:#ff8c8c !important}

.fail select,.fail input[type="text"],.fail input[type="date"],.fail input[type="password"]{background:#fff5f5;border-color:#ff8c8c;color:#ff8c8c}

.fail select::-webkit-input-placeholder,.fail input[type="text"]::-webkit-input-placeholder,.fail input[type="date"]::-webkit-input-placeholder,.fail input[type="password"]::-webkit-input-placeholder{color:#ff8c8c}

.fail select:-moz-placeholder,.fail input[type="text"]:-moz-placeholder,.fail input[type="date"]:-moz-placeholder,.fail input[type="password"]:-moz-placeholder{color:#ff8c8c}

.fail select:-ms-input-placeholder,.fail input[type="text"]:-ms-input-placeholder,.fail input[type="date"]:-ms-input-placeholder,.fail input[type="password"]:-ms-input-placeholder{color:#ff8c8c}

.fail select:focus,.fail input[type="text"]:focus,.fail input[type="date"]:focus,.fail input[type="password"]:focus{background:#fff5f5}

label,legend{display:inline-block;color:#000;margin-bottom:.41667em;font-family:Roboto,sans-serif;font-weight:normal;font-size:1.16667em}

label span,legend span{color:#4d4d4d;font-size:.85714em}

label:first-child,legend:first-child{margin-top:0}

.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{content:" ";display:table;clear:both}

input[type=email],input[type=password],input[type=text],input[type=number],input[type=search],input[type=tel],textarea,select{border-radius:0;border:1px solid #666;font-family:Roboto,sans-serif;font-size:1.5em;height:2em;width:100%;line-height:2em \9;padding:1px 8.5px;-webkit-appearance:none}

input[type=email]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder,input[type=text]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=search]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,textarea::-webkit-input-placeholder,select::-webkit-input-placeholder{color:#b3b3b3}

input:-moz-placeholder[type=email],input:-moz-placeholder[type=password],input:-moz-placeholder[type=text],input:-moz-placeholder[type=number],input:-moz-placeholder[type=search],input:-moz-placeholder[type=tel],textarea:-moz-placeholder,select:-moz-placeholder{color:#b3b3b3}

input:-ms-input-placeholder[type=email],input:-ms-input-placeholder[type=password],input:-ms-input-placeholder[type=text],input:-ms-input-placeholder[type=number],input:-ms-input-placeholder[type=search],input:-ms-input-placeholder[type=tel],textarea:-ms-input-placeholder,select:-ms-input-placeholder{color:#b3b3b3}

input[disabled][type=email],input[disabled][type=password],input[disabled][type=text],input[disabled][type=number],input[disabled][type=search],input[disabled][type=tel],textarea[disabled],select[disabled]{border:none;padding:0}

input:focus[type=email],input:focus[type=password],input:focus[type=text],input:focus[type=number],input:focus[type=search],input:focus[type=tel],textarea:focus,select:focus{border:2px solid #4CB7FF;outline:none;padding:0px 7.5px}

@media (-webkit-min-device-pixel-ratio: 0){select{background-image:url(data:image/gif;base64,R0lGODlhFwAHAOMIAFNTU1xcXGZmZoODg5mZmbm5udvb2/Ly8v///////////////////////////////yH5BAEKAA8ALAAAAAAXAAcAAAQq8AyDajXj2M0HCNQVAANnIgXwUcYIFKdZjAHhwrHZqmse7yBfziAICS0RADs=);background-repeat:no-repeat;background-position:right;padding-right:28px !important}}

@media (-webkit-min-device-pixel-ratio: 0){.board .board-selector,.panel .board-selector{background-image:url(data:image/gif;base64,R0lGODlhFwAHAOMIAFNTU1xcXGZmZoODg5mZmbm5udvb2/Ly8v///////////////////////////////yH5BAEKAA8ALAAAAAAXAAcAAAQq8AyDajXj2M0HCNQVAANnIgXwUcYIFKdZjAHhwrHZqmse7yBfziAICS0RADs=);background-repeat:no-repeat;background-position:right;padding-right:28px !important}}

@media (-webkit-min-device-pixel-ratio: 0){.board .board-selector,.panel .board-selector{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAHCAYAAADj/NY7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkFFA4YSO77yAAAAIdJREFUKM+t0r8NgmAQhvGfdBRs8Q3AArZu4QwuYGIcQ0axtWMG9qA8mzNBA0aIb/Im9y/PXXEioomIc0SUiDDjkv1mob/oCie0uKB4V8l6m3OrVKHPuP5Y8ALXmfdr4buIgAOOCRrxwH4C7nDfCp+7VC66YrBB1SQeEjT+AwxL33H78j0/+wnFY6LMI+ANAwAAAABJRU5ErkJggg==)}}

input[type=radio]{display:inline-block;margin-right:.83333em;vertical-align:baseline;vertical-align:initial}

input[type=radio]+label{display:inline-block;cursor:pointer;font-size:1em}

@media screen and (max-width: 540px){input[type=radio]+label{display:inline-block;visibility:visible}}

@media screen and (max-width: 540px){.error_container .error_content{float:left;margin-left:3.125%;margin-right:3.125%;width:93.75%}}

.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{content:" ";display:table;clear:both}

.fieldSetBlock{float:left;margin-left:2.5%;margin-right:2.5%;width:75%;padding-bottom:1.66667em}

@media screen and (max-width: 540px){.fieldSetBlock{float:left;margin-left:3.125%;margin-right:3.125%;width:93.75%}}

.search_box .search_fields{display:flex}

.search_box .search_fields input{flex:1 1;display:block;margin-right:.75em}

.no-flexbox.no-flexboxlegacy .search_box .search_fields input,.search_box .no-flexbox.no-flexboxlegacy .search_fields input{width:auto}

.search_box .search_fields a.button,.search_box .search_fields button{flex:0 1 auto}

.no-flexbox.no-flexboxlegacy .search_box .search_fields,.search_box .no-flexbox.no-flexboxlegacy .search_fields{display:block;width:100%}

.no-flexbox.no-flexboxlegacy .search_box .search_fields input,.search_box .no-flexbox.no-flexboxlegacy .search_fields input,.no-flexbox.no-flexboxlegacy .search_box .search_fields a.button,.search_box .no-flexbox.no-flexboxlegacy .search_fields a.button,.no-flexbox.no-flexboxlegacy .search_box .search_fields button,.search_box .no-flexbox.no-flexboxlegacy .search_fields button{display:block;float:left}

input.error:not(:focus),select.error:not(:focus){border-color:#FF3F3F}

.error_message{color:red}

input.warning:not(:focus){border-color:#FF3F3F}

input.notice:not(:focus) ~ .notice_message{display:inline}

input.error ~ .notice_message{display:none !important}

.notice_message{display:none;color:#FF3F3F}

input[type="radio"]{background:transparent}

.pager_header:after{content:" ";display:table;clear:both}

.image_pager{position:relative;width:100%}

@media print{.image_pager{display:none}}

.image_pager ul{display:inline-block;white-space:nowrap}

.image_pager ul:first-child:before,.image_pager ul:last-child:after{content:'';display:inline-block;width:57px}

.image_pager li{padding-left:.2em;position:relative;list-style:none;display:inline-block;overflow:hidden}

.image_pager li:first-child{padding-left:0}

.image_pager li img{height:120px;max-width:none}

@media screen and (max-width: 540px){.image_pager li img{height:90px}}

.image_pager li img.panorama{max-height:120px;height:inherit}

.image_pager .scroll_area{overflow:hidden}

.touch .image_pager .scroll_area{overflow-x:scroll;overflow-y:hidden;-ms-overflow-style:none}

.touch .image_pager .scroll_area::-webkit-scrollbar{width:0 !important}

.image_pager .std_nav .image_pager_left,.image_pager .std_nav .image_pager_right{position:absolute;z-index:200;height:120px;width:55px;font-size:18pt;line-height:120px}

.image_pager .std_nav .image_pager_left{left:0}

.image_pager .std_nav .image_pager_right{right:0}

.image_pager .alt_nav{display:none}

@media screen and (max-width: 540px){.image_pager .std_nav{display:none}.image_pager .alt_nav{width:100%;display:block;text-align:right}.image_pager .alt_nav .image_pager_left,.image_pager .alt_nav .image_pager_right{margin-top:7px;width:55px;height:40px;font-size:14pt;line-height:40px;margin-left:20px;display:inline-block}}

.image_pager .image_pager_left,.image_pager .image_pager_right{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:GettyIcons;color:#fff;background-color:#000;opacity:0.7;text-align:center}

.image_pager .image_pager_left:hover,.image_pager .image_pager_right:hover{background-color:#000;opacity:1.0}

.search_box button{padding:0 !important}

.search_box button span{text-indent:100%;white-space:nowrap;overflow:hidden;display:block;width:1px;height:1px}

.search_box button:after{content:'"';display:block}

.search_box button{width:2.4em !important;height:2em !important}

.no-flexbox.no-flexboxlegacy .search_box .search_fields:after{content:" ";display:table;clear:both}

.no-flexbox.no-flexboxlegacy .search_box .search_fields a.button,.no-flexbox.no-flexboxlegacy .search_box .search_fields button{float:right}

.editable-wrap{display:inline-block;white-space:nowrap;margin:0}

.editable-wrap .editable-controls,.editable-wrap .editable-error{margin-bottom:0}

.editable-wrap .editable-controls>input,.editable-wrap .editable-controls>select,.editable-wrap .editable-controls>textarea{margin-bottom:0}

.editable-wrap .editable-input{display:inline-block}

.editable-buttons{display:inline-block;vertical-align:top}

.editable-buttons button{margin-left:5px}

.editable-input.editable-has-buttons{width:auto}

.editable-bstime .editable-input input[type="text"]{width:46px}

.editable-bstime .well-small{margin-bottom:0;padding:10px}

.editable-range output{display:inline-block;min-width:30px;vertical-align:top;text-align:center}

.editable-color input[type="color"]{width:50px}

.editable-checkbox label span,.editable-checklist label span,.editable-radiolist label span{margin-left:7px;margin-right:10px}

.editable-hide{display:none !important}

.editable-empty,.editable-empty:hover,.editable-empty:focus,a.editable-empty,a.editable-empty:hover,a.editable-empty:focus{font-style:italic;color:#4d4d4d;text-decoration:none}

.daterangepicker{position:absolute;color:inherit;background-color:#fff;border-radius:4px;width:278px;padding:4px;margin-top:1px;top:100px;left:20px}

.daterangepicker:before,.daterangepicker:after{position:absolute;display:inline-block;border-bottom-color:rgba(0,0,0,0.2);content:''}

.daterangepicker:before{top:-7px;border-right:7px solid transparent;border-left:7px solid transparent;border-bottom:7px solid #ccc}

.daterangepicker:after{top:-6px;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent}

.daterangepicker.opensleft:before{right:9px}

.daterangepicker.opensleft:after{right:10px}

.daterangepicker.openscenter:before{left:0;right:0;width:0;margin-left:auto;margin-right:auto}

.daterangepicker.openscenter:after{left:0;right:0;width:0;margin-left:auto;margin-right:auto}

.daterangepicker.opensright:before{left:9px}

.daterangepicker.opensright:after{left:10px}

.daterangepicker.dropup{margin-top:-5px}

.daterangepicker.dropup:before{top:auto;top:initial;bottom:-7px;border-bottom:0;border-bottom:initial;border-top:7px solid #ccc}

.daterangepicker.dropup:after{top:auto;top:initial;bottom:-6px;border-bottom:0;border-bottom:initial;border-top:6px solid #fff}

.daterangepicker.dropdown-menu{max-width:none;z-index:3001}

.daterangepicker.single .ranges,.daterangepicker.single .calendar{float:none}

.daterangepicker.show-calendar .calendar{display:block}

.daterangepicker .calendar{display:none;max-width:270px;margin:4px}

.daterangepicker .calendar.single .calendar-table{border:none}

.daterangepicker .calendar th,.daterangepicker .calendar td{white-space:nowrap;text-align:center;min-width:32px}

.daterangepicker .calendar-table{border:1px solid #fff;padding:4px;border-radius:4px;background-color:#fff}

.daterangepicker table{width:100%;margin:0}

.daterangepicker td,.daterangepicker th{text-align:center;width:20px;height:20px;border-radius:4px;border:1px solid rgba(0,0,0,0);white-space:nowrap;cursor:pointer}

.daterangepicker td.available:hover,.daterangepicker th.available:hover{background-color:#eee;border-color:rgba(0,0,0,0);color:inherit}

.daterangepicker td.week,.daterangepicker th.week{font-size:80%;color:#ccc}

.daterangepicker td.off,.daterangepicker td.off.in-range,.daterangepicker td.off.start-date,.daterangepicker td.off.end-date{background-color:#fff;border-color:rgba(0,0,0,0);color:#999}

.daterangepicker td.in-range{background-color:#ebf4f8;border-color:rgba(0,0,0,0);color:#000;border-radius:0}

.daterangepicker td.start-date{border-radius:4px 0 0 4px}

.daterangepicker td.end-date{border-radius:0 4px 4px 0}

.daterangepicker td.start-date.end-date{border-radius:4px}

.daterangepicker td.active,.daterangepicker td.active:hover{background-color:#357ebd;border-color:rgba(0,0,0,0);color:#fff}

.daterangepicker td.hidden{visibility:hidden}

.daterangepicker th.month{width:auto}

.daterangepicker td.disabled,.daterangepicker option.disabled{color:#999;cursor:not-allowed;text-decoration:line-through}

.daterangepicker select.monthselect,.daterangepicker select.yearselect{font-size:12px;padding:1px;height:auto;margin:0;cursor:default}

.daterangepicker select.monthselect{margin-right:2%;width:56%}

.daterangepicker select.yearselect{width:40%}

.daterangepicker select.hourselect,.daterangepicker select.minuteselect,.daterangepicker select.secondselect,.daterangepicker select.ampmselect{width:50px;margin-bottom:0}

.daterangepicker .input-mini{border:1px solid #ccc;border-radius:4px;color:#555;height:30px;line-height:30px;display:block;vertical-align:middle;margin:0 0 5px 0;padding:0 6px 0 28px;width:100%}

.daterangepicker .input-mini.active{border:1px solid #08c;border-radius:4px}

.daterangepicker .daterangepicker_input{position:relative}

.daterangepicker .daterangepicker_input i{position:absolute;left:8px;top:8px}

.daterangepicker.rtl .input-mini{padding-right:28px;padding-left:6px}

.daterangepicker.rtl .daterangepicker_input i{left:auto;right:8px}

.daterangepicker .calendar-time{text-align:center;margin:5px auto;line-height:30px;position:relative;padding-left:28px}

.daterangepicker .calendar-time select.disabled{color:#ccc;cursor:not-allowed}

.ranges{font-size:11px;float:none;margin:4px;text-align:left}

.ranges ul{list-style:none;margin:0 auto;padding:0;width:100%}

.ranges li{font-size:13px;background-color:#f5f5f5;border:1px solid #f5f5f5;border-radius:4px;color:#08c;padding:3px 12px;margin-bottom:8px;cursor:pointer}

.ranges li:hover{background-color:#08c;border:1px solid #08c;color:#fff}

.ranges li.active{background-color:#08c;border:1px solid #08c;color:#fff}

@media (min-width: 564px){.daterangepicker{width:auto}.daterangepicker .ranges ul{width:160px}.daterangepicker.single .ranges ul{width:100%}.daterangepicker.single .calendar.left{clear:none}.daterangepicker.single.ltr .ranges,.daterangepicker.single.ltr .calendar{float:left}.daterangepicker.single.rtl .ranges,.daterangepicker.single.rtl .calendar{float:right}.daterangepicker.ltr{direction:ltr;text-align:left}.daterangepicker.ltr .calendar.left{clear:left;margin-right:0}.daterangepicker.ltr .calendar.left .calendar-table{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.daterangepicker.ltr .calendar.right{margin-left:0}.daterangepicker.ltr .calendar.right .calendar-table{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker.ltr .left .daterangepicker_input{padding-right:12px}.daterangepicker.ltr .calendar.left .calendar-table{padding-right:12px}.daterangepicker.ltr .ranges,.daterangepicker.ltr .calendar{float:left}.daterangepicker.rtl{direction:rtl;text-align:right}.daterangepicker.rtl .calendar.left{clear:right;margin-left:0}.daterangepicker.rtl .calendar.left .calendar-table{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.daterangepicker.rtl .calendar.right{margin-right:0}.daterangepicker.rtl .calendar.right .calendar-table{border-right:none;border-top-right-radius:0;border-bottom-right-radius:0}.daterangepicker.rtl .left .daterangepicker_input{padding-left:12px}.daterangepicker.rtl .calendar.left .calendar-table{padding-left:12px}.daterangepicker.rtl .ranges,.daterangepicker.rtl .calendar{text-align:right;float:right}}

@media (min-width: 730px){.daterangepicker .ranges{width:auto}.daterangepicker.ltr .ranges{float:left}.daterangepicker.rtl .ranges{float:right}.daterangepicker .calendar.left{clear:none !important}}

.daterangepicker.ltr{display:none;border:0.066em solid;background-color:#fff;margin-top:1.27em;width:37.9em;height:24em;border-radius:0;padding:0}

.daterangepicker.ltr .ranges,.daterangepicker.ltr .daterangepicker_input,.daterangepicker.ltr::after{display:none}

.daterangepicker.ltr.short-calendar{height:19em}

.daterangepicker.ltr.opensright:before{left:0}

.daterangepicker.ltr::before{top:0;left:0;width:100%;height:2.3em;z-index:-1;border:none}

.daterangepicker.ltr .calendar-table{background:transparent;border:none;margin-left:0.8em;padding:0}

.daterangepicker.ltr .table-condensed{height:17em}

.daterangepicker.ltr .calendar{width:18em;max-width:none;margin:0.2em 0 0 0.266em}

.daterangepicker.ltr .calendar.right{margin-left:0.8em;padding:0 0.4em}

.daterangepicker.ltr thead tr:nth-of-type(2){margin-top:1em}

.daterangepicker.ltr thead tr:nth-of-type(2) th{width:2.2em;height:1.133em;font-size:0.933em;font-weight:500;text-align:center;line-height:1.133em;padding-top:1.5em}

.daterangepicker.ltr th.prev.available,.daterangepicker.ltr th.next.available{font-size:1.7em}

.daterangepicker.ltr td.off.available{visibility:hidden}

.daterangepicker.ltr td.hidden{display:table-cell}

.daterangepicker.ltr .td,.daterangepicker.ltr td.available,.daterangepicker.ltr td.out-of-range,.daterangepicker.ltr td.off{border-radius:0;width:2.2em;height:1.133em;font-size:0.933em;text-align:center;line-height:1.133em;padding:0.533em 0}

.daterangepicker.ltr td.available{background-color:#fff}

.daterangepicker.ltr th.month{color:#fff;font-weight:100;text-align:center;color:#fff;vertical-align:middle;letter-spacing:0.14em}

.daterangepicker.ltr td.out-of-range{opacity:0.75;filter:alpha(opacity=50)}

.daterangepicker.ltr td.disabled{cursor:auto;text-decoration:none}

.daterangepicker.ltr .glyphicon::after{font-style:normal;font-weight:bold;font-family:GettyIcons;width:0.4666em;height:0.7333em;color:#fff}

.daterangepicker.ltr .glyphicon.glyphicon-chevron-left::after{content:"⟨"}

.daterangepicker.ltr .glyphicon.glyphicon-chevron-right::after{content:"⟩"}

.daterangepicker.ltr .error-text{position:absolute;bottom:3.8em;width:16em;height:1.1em;font-size:1em;line-height:1.4em}

.daterangepicker.ltr .left-side-error{left:1.9em}

.daterangepicker.ltr .right-side-error{right:1.5em}

.daterangepicker.ltr .prev-next-container{position:absolute;bottom:1em;right:4.2em;text-align:center}

.daterangepicker.ltr .prev-next-container>*{float:left}

.daterangepicker.ltr .prev-next-container .prev,.daterangepicker.ltr .prev-next-container .next{border:1px solid;width:12.5em;height:2em;text-align:center}

.daterangepicker.ltr .prev-next-container .prev:hover,.daterangepicker.ltr .prev-next-container .next:hover{cursor:pointer}

.daterangepicker.ltr .prev-next-container .prev{margin-left:1.6em;border-width:1px 0px 1px 1px}

.daterangepicker.ltr .prev-next-container .prev::before{content:"\27e8";font-family:GettyIcons;font-size:1.5em;vertical-align:text-top}

.daterangepicker.ltr .prev-next-container .next::after{content:"\27e9";font-family:GettyIcons;font-size:1.5em;vertical-align:text-top}

.daterangepicker.ltr .prev-next-container span{font-size:0.9em;line-height:2.2em}

.date-container{width:21.0666em;height:3em;background-color:#fff;border:0.1333em solid;padding:0 1.0333em}

.date-container>*{float:left}

.date-container .dp-static-text{margin-top:1.15em;text-transform:uppercase;width:6.3333em;height:0.8em;font-size:0.55em;line-height:0.8em}

.date-container .container{position:relative}

.date-container .selection{transition:all ease 0.5s;position:absolute;top:0;left:0}

.date-container input:focus{outline:none}

.date-container .selection::before{width:4.85em;height:1.2em;position:absolute;content:'';margin:0.275em 0 0 -0.275em}

.date-container .to-selection{left:6.05em}

.date-container .date-value{width:5.94em;height:1.5em;font-size:0.87em;line-height:1.1875em;background:transparent;cursor:pointer}

@media screen and (max-width: 540px){.date-container .date-value{display:none}}

.date-container .date-value.mobile{display:none}

@media screen and (max-width: 540px){.date-container .date-value.mobile{display:table-cell;position:relative}.date-container .date-value.mobile::-webkit-inner-spin-button,.date-container .date-value.mobile::-webkit-clear-button{display:none}.date-container .date-value.mobile::-webkit-calendar-picker-indicator{background:transparent;width:100%;height:100%;position:absolute;opacity:0}}

.date-container .dp-static-text:first-of-type{margin-right:0.8em}

.date-container .from{margin-right:0.866em}

.date-container .range{height:1.2666em;font-size:0.7666em;letter-spacing:0.1em;text-align:right;line-height:1.2666em;white-space:nowrap;float:right;margin:1.3em 0.6em 1.2333em 0em}

.date-container .calendar-icon{background-image:url(/collaboration/assets/media/unisporkal_engine/calendar-5bc0b57a.svg);background-repeat:no-repeat;background-size:contain;width:1.7333em;height:1.6666em;margin-top:0.5666em;margin-bottom:0.8666em;float:right}

datepicker,.datepicker{padding:0px !important;position:relative}

.uni-money{display:inline}

.uni-money .currency-unit,.uni-money .amount,.uni-money .currency-code{display:inline}

#toast-container{position:fixed;bottom:32px;left:50%;margin-left:-150px;width:300px;height:60px;border-radius:2px;background-color:#DBE5E8;box-shadow:0 0 32px rgba(12,13,13,0.25);cursor:pointer;transform:translate3d(0, 0, 0);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000}

#toast-container.ng-hide-add,#toast-container.ng-hide-remove{display:block !important}

#toast-container.ng-hide-remove.ng-hide-remove-active{-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation:0.15s slide-up;animation:0.15s slide-up}

#toast-container.ng-hide-add.ng-hide-add-active{-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation:2s fade-out;animation:2s fade-out}

#toast-container.ng-hide{opacity:0}

@-webkit-keyframes slide-up{from{bottom:-60px}to{bottom:32px}}

@keyframes slide-up{from{bottom:-60px}to{bottom:32px}}

@-webkit-keyframes fade-out{from{opacity:1}to{opacity:0}}

@keyframes fade-out{from{opacity:1}to{opacity:0}}

#toast-container .toast{display:flex}

#toast-container .toast .thumbnail{width:47px;height:39px;margin:12px 12px 0 12px;border:1px solid #ADB9BA;background-color:white;display:flex;align-items:center;justify-content:center;overflow:hidden}

#toast-container .toast .thumbnail img{max-height:100%}

#toast-container .toast .content{margin-top:6px}

#toast-container .toast .content .title{font-size:12px}

#toast-container .toast .content .message{font-size:18px;font-weight:500;line-height:18px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:200px}

.error_container .main_body{margin-top:6.66667em;margin-bottom:8.33333em}

.error_container h1{font-size:2.66667em}

.error_container .error_content{float:left;margin-left:1.04167%;margin-right:0;width:77.08333%}

.error_container .site_footer{display:none !important}

section>.download_form_container{margin:2em}

@media screen and (max-width: 540px){#download_modal{padding:1em}}

.download_form_container table{width:100%;border-collapse:collapse;margin-bottom:2em;margin-top:2em}

.download_form_container label span{color:#1a1a1a;font-size:9pt}

.download_form_container th{font-weight:normal;font-size:9pt;padding-bottom:0.75em;font-weight:bold}

@media screen and (max-width: 540px){.download_form_container th:not(:first-child){display:none}}

.download_form_container thead tr:first-child{border:none;text-align:left}

.download_form_container label{font-size:9pt}

.download_form_container tbody td{vertical-align:top;padding:0.5em}

.download_form_container tbody td .choice{margin-top:.66667em;line-height:1em}

.download_form_container tbody td .productName{font-weight:bold}

@media screen and (max-width: 540px){.download_form_container tbody td{vertical-align:middle}.download_form_container tbody td:first-child{padding-left:1.25em;padding-right:1.25em}.download_form_container tbody td .choice{color:gray}.download_form_container tbody td:nth-last-child(-n+2){display:none}.download_form_container tbody td:first-of-type{display:table-cell}}

.download_form_container tbody td:not(:first-child){padding-left:0}

.download_form_container tbody td label{margin-bottom:0}

.download_form_container tbody td input+label{margin:0;line-height:1.0;padding-left:0.5em;width:90%;vertical-align:middle}

.download_form_container tbody tr{border-bottom:solid 1px #b3b3b3}

@media not screen and (max-width: 540px){.download_form_container tbody tr:first-of-type{border-top:solid 1px #b3b3b3}}

.download_form_container tr.expiration{margin-bottom:0.2em;font-size:8pt;color:#4d4d4d;background-color:#ffecb5;border-bottom:none}

@media screen and (max-width: 540px){.download_form_container table{width:auto}.download_form_container label span{display:block}.download_form_container td:nth-child(2){width:100%}.download_form_container .choice{font-size:9pt}.download_form_container .productName{color:#333}.download_form_container .option-selected{background-color:#EC008B}}

body.modal-visible{overflow:hidden}

.modal,.dropbox-intro-modal,aside.modal.alt-caption-modal,.identify-modal,.share-modal,.more-actions-modal,.choose-board-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:1000;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;display:none;visibility:hidden;pointer-events:none}

.modal:target,.dropbox-intro-modal:target,aside.modal.alt-caption-modal:target,.identify-modal:target,.share-modal:target,.more-actions-modal:target,.choose-board-modal:target{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1;pointer-events:auto;display:block;visibility:visible}

.no-rgba .modal,.no-rgba .dropbox-intro-modal,.no-rgba aside.modal.alt-caption-modal,.no-rgba .identify-modal,.no-rgba .share-modal,.no-rgba .more-actions-modal,.no-rgba .choose-board-modal{background:url(/collaboration/assets/media/images/modalBackground-0826b3f7.png);filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/modalBackground.png',sizingMethod='scale')}

.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{width:80%;max-width:80em;position:relative;margin:2rem auto auto;padding:.83333em 1.66667em 1.66667em;background:#fff}

@media screen and (max-width: 540px){.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;padding-top:4.16667em;margin:0;border:none}.modal .modalBox .assetListing:first-child,.dropbox-intro-modal .modalBox .assetListing:first-child,.identify-modal .modalBox .assetListing:first-child,.share-modal .modalBox .assetListing:first-child,.more-actions-modal .modalBox .assetListing:first-child,.choose-board-modal .modalBox .assetListing:first-child{padding-top:0}}

.modal a.modalClose,.dropbox-intro-modal a.modalClose,.identify-modal a.modalClose,.share-modal a.modalClose,.more-actions-modal a.modalClose,.choose-board-modal a.modalClose{position:absolute;right:0.75em;top:1.5em;color:transparent;cursor:pointer}

.modal a.modalClose:after,.dropbox-intro-modal a.modalClose:after,.identify-modal a.modalClose:after,.share-modal a.modalClose:after,.more-actions-modal a.modalClose:after,.choose-board-modal a.modalClose:after{content:")";text-decoration:none;font-family:GettyIcons;font-size:36px;color:#000}

.modal a.modalClose svg,.dropbox-intro-modal a.modalClose svg,.identify-modal a.modalClose svg,.share-modal a.modalClose svg,.more-actions-modal a.modalClose svg,.choose-board-modal a.modalClose svg{display:none}

.active.modal,.active.dropbox-intro-modal,aside.active.modal.alt-caption-modal,.active.identify-modal,.active.share-modal,.active.more-actions-modal,.active.choose-board-modal{opacity:1;pointer-events:auto;display:block;visibility:visible}

.tooltip{cursor:pointer;display:inline-block;background:url(/collaboration/assets/media/images/tooltip-6060601e.gif) no-repeat 0 0;height:14px;width:14px;margin-left:1em}

@media screen and (max-width: 540px){.tooltip{display:none}}

.tooltip .tooltip_contents{visibility:hidden;position:absolute;opacity:0;transition-delay:.5s;margin:0 !important;padding:1.66667em;width:20em;background-color:#fff;border:gray 1px solid;color:#1a1a1a;font-size:.91667em;z-index:999;-o-box-shadow:rgba(0,0,0,0.5) 0 0 .66667em .08333em;-ms-box-shadow:rgba(0,0,0,0.5) 0 0 .66667em .08333em;box-shadow:rgba(0,0,0,0.5) 0 0 .66667em .08333em}

.tooltip:hover .tooltip_contents{visibility:visible;opacity:1;transition-delay:0s}

.site_header{height:51px;margin:0 auto 1.66667em auto;padding-top:.5em;line-height:51px}

.site_header .site_logo{display:inline-block;margin-bottom:.3em}

.site_header nav a,.site_header nav span{padding-right:.41667em;padding-left:.41667em}

@media screen and (max-width: 800px){.site_header nav span{display:block;max-width:23em;line-height:130%}}

.hide{display:none !important}

[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak{display:none !important}

.ng-hide{display:none !important}

.ng-inactive{display:none !important}

input.spinner_applied{opacity:1;color:#ccc;background-color:#ccc}

.spinner{opacity:1}

.spinner_centroid{opacity:1;position:absolute;width:0;height:0;margin:auto;left:0;right:0;top:0;bottom:0}

.spinner_overlay{position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%}

.spinner_relative .spinner_centroid{position:relative}

.spinner_relative .spinner_overlay{position:relative}

.spinner_button_cooldown{position:relative;width:0;height:0;top:-0.7rem;margin:auto}

@media print{.profiler-results{display:none}#site-header nav.actions,.site_header nav.actions{display:none}}

div.site-width{width:90%;max-width:1036;margin:0 auto}

div.site-width:after{content:"";display:table;clear:both}

h2,h3,.account_register h1,h4,.form_header,h5,h6,h1{font-size:3.5em;line-height:1.28571em;margin-bottom:.42857em;color:#000;font-weight:bold;font-family:Roboto,sans-serif}

.ja h2,.ja h3,.ja h4,.ja .form_header,.ja h5,.ja h6,.ja h1{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko h2,.ko h3,.ko h4,.ko .form_header,.ko h5,.ko h6,.ko h1{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

h2{font-size:2.66667em;line-height:1.125em;margin-bottom:.5625em}

h3,.account_register h1{font-size:2.33333em;line-height:1.28571em;margin-bottom:.64286em}

h4,.form_header{font-size:2em;line-height:1.5em;margin-bottom:.75em}

h5{font-size:1.5em;line-height:1em;margin-bottom:1em}

h6{font-size:1.33333em;line-height:1.125em;margin-bottom:1.125em}

h1{zoom:1}

h1:before,h1:after{content:"\0020";display:block;height:0;overflow:hidden}

h1:after{clear:both}

h1 span{float:right;font-weight:normal}

html{font:.75em Roboto,sans-serif;line-height:1.5em;color:#1a1a1a}

@media screen and (max-width: 540px){html{-webkit-text-size-adjust:none}}

html.ja{font-family:Meiryo,Verdana,Sans-Serif}

html.ko{font-family:Arial Unicode MS,Verdana,Sans-Serif}

html,body{-webkit-font-smoothing:subpixel-antialiased;font-smoothing:subpixel-antialiased;-moz-osx-font-smoothing:auto}

@media (-webkit-min-device-pixel-ratio: 192), (min-resolution: 192dppx){html,body{-webkit-font-smoothing:antialiased;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}}

p{margin-bottom:1.5em;text-indent:0}

a{color:#4CB7FF;text-decoration:none}

a:hover,a:active{text-decoration:underline}

a:visited{color:#4CB7FF}

a.disabled{color:#666;cursor:text}

a.disabled:hover,a.disabled:active{text-decoration:none}

a[href^="tel:"]{display:inline-block !important}

button{-webkit-font-smoothing:antialiased}

.alert_text,.informational_text{line-height:1.5em;margin-bottom:0}

.alert_text{color:#FF3F3F}

.informational_text{color:#333;margin-top:.41667em}

h2,h3,.account_register h1,h4,.form_header,h5,h6,h1{font-family:Roboto,sans-serif;font-weight:200;font-size:3.5em;color:#000;margin-bottom:0;line-height:1}

.ja h2,.ja h3,.ja h4,.ja .form_header,.ja h5,.ja h6,.ja h1{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko h2,.ko h3,.ko h4,.ko .form_header,.ko h5,.ko h6,.ko h1{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

h2{font-size:2.66667em;line-height:1.25}

h3,.account_register h1{font-size:2.33333em;line-height:1.07}

h4,.form_header{font-weight:400;font-size:2em;line-height:1.25}

h5{font-size:1.5em;line-height:1.2}

h6{font-weight:400;font-size:1.33333em;font-weight:500;line-height:1.25}

.search_box .search_fields a.button,.search_box .search_fields button{width:auto}

button,a.button{font-size:1.16667em;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

button,a.button{font-size:1.16667em;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased;width:100%;padding:1em 1.5em;font-family:Roboto,sans-serif;font-weight:bold;text-transform:uppercase;font-weight:700;font-size:1.5em;letter-spacing:.06em}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

a.button{display:inline-block}

a.button:hover{text-decoration:none;cursor:pointer}

.search_box .search_fields a.button,.search_box .search_fields button{padding:0.55em 1.42857em;height:2.5em}

.main_body,.site_header{margin:0 auto;width:100%;min-width:25em;max-width:86.33333em;clear:both}

div.site-width{width:90%;max-width:1036px;margin:0 auto}

div.site-width:after{content:"";display:table;clear:both}

.site_header{margin-bottom:3.75em}

.display-none{display:none}

.fail{border-color:#FF3F3F !important}

.content_wrapper,body>footer{float:left;width:100%;clear:both}

body:after{display:none;content:'desktop'}

@media screen and (max-width: 800px){body:after{content:'tablet'}}

@media screen and (max-width: 540px){body:after{content:'mobile'}}

.no-generatedcontent .error_container .error_content{float:left;margin-left:1.04167%;margin-right:1.04167%;width:97.91667%}

.fail{border-color:#ff8c8c !important;color:#ff8c8c !important}

input .fail{background:#fff5f5}

.fail:focus{background:#fff5f5 !important}

.fail label{color:#ff8c8c !important}

.fail select,.fail input[type="text"],.fail input[type="date"],.fail input[type="password"]{background:#fff5f5;border-color:#ff8c8c;color:#ff8c8c}

.fail select::-webkit-input-placeholder,.fail input[type="text"]::-webkit-input-placeholder,.fail input[type="date"]::-webkit-input-placeholder,.fail input[type="password"]::-webkit-input-placeholder{color:#ff8c8c}

.fail select:-moz-placeholder,.fail input[type="text"]:-moz-placeholder,.fail input[type="date"]:-moz-placeholder,.fail input[type="password"]:-moz-placeholder{color:#ff8c8c}

.fail select:-ms-input-placeholder,.fail input[type="text"]:-ms-input-placeholder,.fail input[type="date"]:-ms-input-placeholder,.fail input[type="password"]:-ms-input-placeholder{color:#ff8c8c}

.fail select:focus,.fail input[type="text"]:focus,.fail input[type="date"]:focus,.fail input[type="password"]:focus{background:#fff5f5}

label,legend{display:inline-block;color:#000;margin-bottom:.41667em;font-family:Roboto,sans-serif;font-weight:normal;font-size:1.16667em}

label span,legend span{color:#4d4d4d;font-size:.85714em}

label:first-child,legend:first-child{margin-top:0}

.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{content:" ";display:table;clear:both}

input[type=email],input[type=password],input[type=text],input[type=number],input[type=search],input[type=tel],textarea,select{border-radius:0;border:1px solid #666;font-family:Roboto,sans-serif;font-size:1.5em;height:2em;width:100%;line-height:2em \9;padding:1px 8.5px;-webkit-appearance:none}

input[type=email]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder,input[type=text]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=search]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,textarea::-webkit-input-placeholder,select::-webkit-input-placeholder{color:#b3b3b3}

input:-moz-placeholder[type=email],input:-moz-placeholder[type=password],input:-moz-placeholder[type=text],input:-moz-placeholder[type=number],input:-moz-placeholder[type=search],input:-moz-placeholder[type=tel],textarea:-moz-placeholder,select:-moz-placeholder{color:#b3b3b3}

input:-ms-input-placeholder[type=email],input:-ms-input-placeholder[type=password],input:-ms-input-placeholder[type=text],input:-ms-input-placeholder[type=number],input:-ms-input-placeholder[type=search],input:-ms-input-placeholder[type=tel],textarea:-ms-input-placeholder,select:-ms-input-placeholder{color:#b3b3b3}

input[disabled][type=email],input[disabled][type=password],input[disabled][type=text],input[disabled][type=number],input[disabled][type=search],input[disabled][type=tel],textarea[disabled],select[disabled]{border:none;padding:0}

input:focus[type=email],input:focus[type=password],input:focus[type=text],input:focus[type=number],input:focus[type=search],input:focus[type=tel],textarea:focus,select:focus{border:2px solid #4CB7FF;outline:none;padding:0px 7.5px}

@media (-webkit-min-device-pixel-ratio: 0){select{background-image:url(data:image/gif;base64,R0lGODlhFwAHAOMIAFNTU1xcXGZmZoODg5mZmbm5udvb2/Ly8v///////////////////////////////yH5BAEKAA8ALAAAAAAXAAcAAAQq8AyDajXj2M0HCNQVAANnIgXwUcYIFKdZjAHhwrHZqmse7yBfziAICS0RADs=);background-repeat:no-repeat;background-position:right;padding-right:28px !important}}

@media (-webkit-min-device-pixel-ratio: 0){.board .board-selector,.panel .board-selector{background-image:url(data:image/gif;base64,R0lGODlhFwAHAOMIAFNTU1xcXGZmZoODg5mZmbm5udvb2/Ly8v///////////////////////////////yH5BAEKAA8ALAAAAAAXAAcAAAQq8AyDajXj2M0HCNQVAANnIgXwUcYIFKdZjAHhwrHZqmse7yBfziAICS0RADs=);background-repeat:no-repeat;background-position:right;padding-right:28px !important}}

@media (-webkit-min-device-pixel-ratio: 0){.board .board-selector,.panel .board-selector{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAHCAYAAADj/NY7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkFFA4YSO77yAAAAIdJREFUKM+t0r8NgmAQhvGfdBRs8Q3AArZu4QwuYGIcQ0axtWMG9qA8mzNBA0aIb/Im9y/PXXEioomIc0SUiDDjkv1mob/oCie0uKB4V8l6m3OrVKHPuP5Y8ALXmfdr4buIgAOOCRrxwH4C7nDfCp+7VC66YrBB1SQeEjT+AwxL33H78j0/+wnFY6LMI+ANAwAAAABJRU5ErkJggg==)}}

input[type=radio]{display:inline-block;margin-right:.83333em;vertical-align:baseline;vertical-align:initial}

input[type=radio]+label{display:inline-block;cursor:pointer;font-size:1em}

@media screen and (max-width: 540px){input[type=radio]+label{display:inline-block;visibility:visible}}

@media screen and (max-width: 540px){.error_container .error_content{float:left;margin-left:3.125%;margin-right:3.125%;width:93.75%}}

.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{content:" ";display:table;clear:both}

.fieldSetBlock{float:left;margin-left:2.5%;margin-right:2.5%;width:75%;padding-bottom:1.66667em}

@media screen and (max-width: 540px){.fieldSetBlock{float:left;margin-left:3.125%;margin-right:3.125%;width:93.75%}}

.search_box .search_fields{display:flex}

.search_box .search_fields input{flex:1 1;display:block;margin-right:.75em}

.no-flexbox.no-flexboxlegacy .search_box .search_fields input,.search_box .no-flexbox.no-flexboxlegacy .search_fields input{width:auto}

.search_box .search_fields a.button,.search_box .search_fields button{flex:0 1 auto}

.no-flexbox.no-flexboxlegacy .search_box .search_fields,.search_box .no-flexbox.no-flexboxlegacy .search_fields{display:block;width:100%}

.no-flexbox.no-flexboxlegacy .search_box .search_fields input,.search_box .no-flexbox.no-flexboxlegacy .search_fields input,.no-flexbox.no-flexboxlegacy .search_box .search_fields a.button,.search_box .no-flexbox.no-flexboxlegacy .search_fields a.button,.no-flexbox.no-flexboxlegacy .search_box .search_fields button,.search_box .no-flexbox.no-flexboxlegacy .search_fields button{display:block;float:left}

input.error:not(:focus),select.error:not(:focus){border-color:#FF3F3F}

.error_message{color:red}

input.warning:not(:focus){border-color:#FF3F3F}

input.notice:not(:focus) ~ .notice_message{display:inline}

input.error ~ .notice_message{display:none !important}

.notice_message{display:none;color:#FF3F3F}

input[type="radio"]{background:transparent}

form{margin:1em 0}

.licenseTo{margin-bottom:2em}

.licenseTo input[type="text"]{margin-bottom:0}

.account ol{margin-bottom:2em}

input[type=checkbox]+label,input[type=checkbox]+legend{display:inline-block}

@media screen and (max-width: 540px){legend{font-family:Roboto,sans-serif}}

.form_header{font-weight:bold;line-height:1;border-bottom:1px solid gray;padding-bottom:0.5em}

.form_header a{display:inline;float:right;font-size:.5em;color:#4CB7FF;font-family:Roboto,sans-serif}

fieldset h5{margin-bottom:.41667em}

fieldset ol{margin-bottom:1.5em}

fieldset ol>li{margin-bottom:1.5em}

@media screen and (max-width: 540px){fieldset ol>li{margin:0 0 inherit 0}}

select{padding:.36111em .41667em}

img[gi-cart-icon]{visibility:hidden}

.alert_box{width:100%;border:1px solid #FF3F3F;background-color:#fff5f5;margin-top:1em;margin-bottom:2em;padding:.83333em}

.alert_box p{width:90%;margin-bottom:0}

.account_register button{margin-bottom:0.5em}

.open_captcha{margin:1em 0}

.open_captcha label{display:block;visibility:visible;font-family:Roboto,sans-serif;font-size:1em;margin-bottom:1em;line-height:1em;color:#1a1a1a}

.site_header{border-bottom:1px solid gray;padding-bottom:.83333em}

.site_header .site_logo img{width:108px;height:19px}

.site_header nav{position:absolute;top:0;right:0}

.site_footer{margin:0 auto;width:97.91667%;max-width:86.33333em;clear:both;color:#999;border-top:1px solid gray;padding-top:1.66667em;margin-top:1.66667em}

.site_footer a{display:block}

@media screen and (max-width: 64em) and (orientation: portrait){.site_footer{margin:0 auto;width:97.5%}.site_footer a{line-height:2em}}

@media screen and (max-width: 540px){.site_footer{margin:0 auto;width:93.75%}.site_footer a{line-height:2em}}

footer :nth-child(1):nth-last-child(2).pop_up_footer,footer :nth-child(2):nth-last-child(1).pop_up_footer{display:none}

@media screen and (max-width: 540px){footer :nth-child(1):nth-last-child(2).pop_up_footer,footer :nth-child(2):nth-last-child(1).pop_up_footer{display:block}footer :nth-child(1):nth-last-child(2).site_footer,footer :nth-child(2):nth-last-child(1).site_footer{display:none}}

.search_box button{display:inline-block;min-width:1em}

.search_box button:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #cart-icon,.board .toolbar button.move-to-cart{display:inline-block;min-width:1em}

#site-header nav.actions #cart-icon:before,.board .toolbar button.move-to-cart:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #cart-icon:before,.board .toolbar button.move-to-cart:before{content:"";margin-left:-0.04em}

button.board-comments,.board .asset-grid.grid .selection-comments .comments-icon .icon{display:inline-block;min-width:1em}

button.board-comments:before,.board .asset-grid.grid .selection-comments .comments-icon .icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

button.board-comments:before,.board .asset-grid.grid .selection-comments .comments-icon .icon:before{content:"!"}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label{display:inline-block;min-width:1em}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{content:"1"}

.board-management section.column-names .down,section.set-list-headers .set-sort-by .dropdown-container,section.set-list-footers .set-sort-by .dropdown-container{display:inline-block;min-width:1em}

.board-management section.column-names .down:before,section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.column-names .down:before,section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{content:"⋁"}

.board .toolbar .more-actions>a{display:inline-block;min-width:1em}

.board .toolbar .more-actions>a:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .more-actions>a:after{content:"⋁"}

.image_pager .image_pager_left,.board-paging a.pre-page,.board-management-paging a.pre-page,.set-management-paging a.pre-page,.asset-modal .nav-arrows .prev-asset{display:inline-block;min-width:1em}

.image_pager .image_pager_left:before,.board-paging a.pre-page:before,.board-management-paging a.pre-page:before,.set-management-paging a.pre-page:before,.asset-modal .nav-arrows .prev-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.image_pager .image_pager_left:before,.board-paging a.pre-page:before,.board-management-paging a.pre-page:before,.set-management-paging a.pre-page:before,.asset-modal .nav-arrows .prev-asset:before{content:"⟨"}

.image_pager .image_pager_right,.board-paging a.next-page,.board-management-paging a.next-page,.set-management-paging a.next-page,.asset-modal .nav-arrows .next-asset{display:inline-block;min-width:1em}

.image_pager .image_pager_right:before,.board-paging a.next-page:before,.board-management-paging a.next-page:before,.set-management-paging a.next-page:before,.asset-modal .nav-arrows .next-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.image_pager .image_pager_right:before,.board-paging a.next-page:before,.board-management-paging a.next-page:before,.set-management-paging a.next-page:before,.asset-modal .nav-arrows .next-asset:before{content:"⟩"}

.board .toolbar .more-actions .menu{display:inline-block;min-width:1em}

.board .toolbar .more-actions .menu:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .more-actions .menu:after{content:"⟩"}

.board-management section.column-names .up{display:inline-block;min-width:1em}

.board-management section.column-names .up:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.column-names .up:before{content:"⋀"}

.board .toolbar .diag-modal .modalClose,.share-modal .modalBox .modalClose,.board-management section.board-list .board-item .delete-board,.board-management section.board-list .board-item .delete-board-desktop,.board .close,.panel .close,.keywords .keyword .remove-keyword,.board .board-item .remove,.asset-modal .close{display:inline-block;min-width:1em}

.board .toolbar .diag-modal .modalClose:before,.share-modal .modalBox .modalClose:before,.board-management section.board-list .board-item .delete-board:before,.board-management section.board-list .board-item .delete-board-desktop:before,.board .close:before,.panel .close:before,.keywords .keyword .remove-keyword:before,.board .board-item .remove:before,.asset-modal .close:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .diag-modal .modalClose:before,.share-modal .modalBox .modalClose:before,.board-management section.board-list .board-item .delete-board:before,.board-management section.board-list .board-item .delete-board-desktop:before,.board .close:before,.panel .close:before,.keywords .keyword .remove-keyword:before,.board .board-item .remove:before,.asset-modal .close:before{content:")";margin-left:-0.06em}

.board .asset-grid.grid .info-strip .download .download-asset:before{display:inline-block;min-width:1em}

.board .asset-grid.grid .info-strip .download .download-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .asset-grid.grid .info-strip .download .download-asset:before{content:"D"}

.board .play,.asset-modal article .comp .play{display:inline-block;min-width:1em}

.board .play:before,.asset-modal article .comp .play:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .play:before,.asset-modal article .comp .play:before{content:"'"}

.board-management section.tab .plus,.board-content .side-panel .set-metadata .input-container span,.board-content .side-panel .set-metadata input.add-keyword{display:inline-block;min-width:1em}

.board-management section.tab .plus:before,.board-content .side-panel .set-metadata .input-container span:before,.board-content .side-panel .set-metadata input.add-keyword:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.tab .plus:before,.board-content .side-panel .set-metadata .input-container span:before,.board-content .side-panel .set-metadata input.add-keyword:before{content:"+"}

#site-header nav.actions #user #user-icon{display:inline-block;min-width:1em}

#site-header nav.actions #user #user-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #user #user-icon:before{content:","}

.board .toolbar button.clear-all,aside.comments .comment .delete-comment-icon,.delete-comment-icon{display:inline-block;min-width:1em}

.board .toolbar button.clear-all:before,aside.comments .comment .delete-comment-icon:before,.delete-comment-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar button.clear-all:before,aside.comments .comment .delete-comment-icon:before,.delete-comment-icon:before{content:""}

.board-open .panel .open-board,.board-open .panel .back-button,.board-open .board .open-board,.board-open .board .back-button,.board-content .side-panel .status{display:inline-block;min-width:1em}

.board-open .panel .open-board:after,.board-open .panel .back-button:after,.board-open .board .open-board:after,.board-open .board .back-button:after,.board-content .side-panel .status:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-open .panel .open-board:after,.board-open .panel .back-button:after,.board-open .board .open-board:after,.board-open .board .back-button:after,.board-content .side-panel .status:after{content:":"}

.board-content header button.create-set-button,.board-content header button.curation-status-button{display:inline-block;min-width:1em}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{content:"9"}

.board .toolbar .board-view-options label.grid{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.grid:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.grid:before{content:""}

.board .toolbar .board-view-options label.horiz-mosaic{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.horiz-mosaic:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.horiz-mosaic:before{content:""}

.board .toolbar .board-view-options label.vert-mosaic{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.vert-mosaic:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.vert-mosaic:before{content:""}

.add-search-within button.search-icon,.curated-search .tags-wrapper .input-container .search-submit,.add-search-within .search-box button.search-icon{display:inline-block;min-width:1em}

.add-search-within button.search-icon:before,.curated-search .tags-wrapper .input-container .search-submit:before,.add-search-within .search-box button.search-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.add-search-within button.search-icon:before,.curated-search .tags-wrapper .input-container .search-submit:before,.add-search-within .search-box button.search-icon:before{content:'"'}

.board-management section.board-list .board-item .share-board{display:inline-block;min-width:1em}

.board-management section.board-list .board-item .share-board:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.board-list .board-item .share-board:after{content:""}

.board-management section.board-list .board-item .board-summary .board-name .pencil,.board-management section.board-list .board-item .board-summary .pencil{display:inline-block;min-width:1em}

.board-management section.board-list .board-item .board-summary .board-name .pencil:after,.board-management section.board-list .board-item .board-summary .pencil:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.board-list .board-item .board-summary .board-name .pencil:after,.board-management section.board-list .board-item .board-summary .pencil:after{content:""}

#site-header nav.actions #open_board span.icon{display:inline-block;min-width:1em}

#site-header nav.actions #open_board span.icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #open_board span.icon:before{content:""}

.contact_sheet_container .board-contact-sheet .header .site-logo{display:inline-block;min-width:1em}

.contact_sheet_container .board-contact-sheet .header .site-logo:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.contact_sheet_container .board-contact-sheet .header .site-logo:before{content:""}

.board .toolbar button.print-contact-sheet{display:inline-block;min-width:1em}

.board .toolbar button.print-contact-sheet:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar button.print-contact-sheet:before{content:""}

body.modal-visible{overflow:hidden}

.modal,.dropbox-intro-modal,aside.modal.alt-caption-modal,.identify-modal,.share-modal,.more-actions-modal,.choose-board-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:1000;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;display:none;visibility:hidden;pointer-events:none}

.modal:target,.dropbox-intro-modal:target,aside.modal.alt-caption-modal:target,.identify-modal:target,.share-modal:target,.more-actions-modal:target,.choose-board-modal:target{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1;pointer-events:auto;display:block;visibility:visible}

.no-rgba .modal,.no-rgba .dropbox-intro-modal,.no-rgba aside.modal.alt-caption-modal,.no-rgba .identify-modal,.no-rgba .share-modal,.no-rgba .more-actions-modal,.no-rgba .choose-board-modal{background:url(/collaboration/assets/media/images/modalBackground-0826b3f7.png);filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/modalBackground.png',sizingMethod='scale')}

.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{width:80%;max-width:80em;position:relative;margin:2rem auto auto;padding:.83333em 1.66667em 1.66667em;background:#fff}

@media screen and (max-width: 540px){.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;padding-top:4.16667em;margin:0;border:none}.modal .modalBox .assetListing:first-child,.dropbox-intro-modal .modalBox .assetListing:first-child,.identify-modal .modalBox .assetListing:first-child,.share-modal .modalBox .assetListing:first-child,.more-actions-modal .modalBox .assetListing:first-child,.choose-board-modal .modalBox .assetListing:first-child{padding-top:0}}

.modal a.modalClose,.dropbox-intro-modal a.modalClose,.identify-modal a.modalClose,.share-modal a.modalClose,.more-actions-modal a.modalClose,.choose-board-modal a.modalClose{position:absolute;right:0.75em;top:1.5em;color:transparent;cursor:pointer}

.modal a.modalClose:after,.dropbox-intro-modal a.modalClose:after,.identify-modal a.modalClose:after,.share-modal a.modalClose:after,.more-actions-modal a.modalClose:after,.choose-board-modal a.modalClose:after{content:")";text-decoration:none;font-family:GettyIcons;font-size:36px;color:#000}

.modal a.modalClose svg,.dropbox-intro-modal a.modalClose svg,.identify-modal a.modalClose svg,.share-modal a.modalClose svg,.more-actions-modal a.modalClose svg,.choose-board-modal a.modalClose svg{display:none}

.active.modal,.active.dropbox-intro-modal,aside.active.modal.alt-caption-modal,.active.identify-modal,.active.share-modal,.active.more-actions-modal,.active.choose-board-modal{opacity:1;pointer-events:auto;display:block;visibility:visible}

.lpInvtCntnr{font-family:Verdana;font-size:10px;width:392px}

.lpInviteBtn{display:block;cursor:pointer}

.lpNoThanks{float:left;height:42px;width:196px;border-left:solid 4px #3B3A26;border-bottom:solid 4px #3B3A26;background-color:#FFF}

.lpNeverAgain{float:left;width:196px;height:42px;border-right:solid 4px #3B3A26;border-bottom:solid 4px #3B3A26;background-color:#FFF}

.lpPTWidthOverride{width:211px}

.lpNTClsDiv{padding-top:10px;padding-left:30px;cursor:pointer}

.lpClsBtn{float:left;padding-right:5px}

.lpNvrTxtDiv{cursor:pointer;padding-right:20px;line-height:34px;vertical-align:middle;text-align:right}

.lpNvrTxtDiv:hover,.lpNTClsDiv:hover{text-decoration:underline;color:#2c46B7}

.uni_footer_live_chat{cursor:pointer;text-decoration:none}

.uni_footer_live_chat a.disabled{color:#CACCBF}

.uni_footer_live_chat a.disabled:hover{color:#CACCBF;text-decoration:none}

.uni_footer_live_chat a.disabled:visited{color:#CACCBF}

.uni_footer_live_chat a.enabled{color:#299505}

.uni_footer_live_chat a.enabled:hover{color:#299505;text-decoration:underline}

.uni_footer_live_chat a.enabled:visited{color:#299505}

.lpFntAvl,a.lpLnkAvl:link,a.lpLnkAvl:visited,a.lpLnkAvl:active,a.lpLnkAvl:hover{font-family:Arial;font-size:11px;font-weight:bold;color:#299505;cursor:pointer}

a.lpLnkAvl:hover .lpFtnAvl{text-decoration:underline}

.lpFntNotAvl,a.lpLnkNotAvl:link,a.lpLnkNotAvl:visited,a.lpLnkNotAvl:active,a.lpLnkNotAvl:hover{color:#CACCBF;cursor:pointer;text-decoration:none}

.lpLnkNotAvl{font-family:Arial !important;font-size:11px;font-weight:bold}

#live-chat .lpLtNotAvl,#live-chat .lpCtNotAvl,#live-chat .lpRtNotAvl,#live-chat .lpLtAvl,#live-chat .lpCtAvl,#live-chat .lpRtAvl,#live-chat a.lpLnkNotAvl:hover .lpCtNotAvl,#live-chat a.lpLnkNotAvl:hover .lpRtNotAvl,#live-chat a.lpLnkNotAvl:hover .lpLtNotAvl,#live-chat a.lpLnkAvl:hover .lpCtAvl,#live-chat a.lpLnkAvl:hover .lpRtAvl,#live-chat a.lpLnkAvl:hover .lpLtAvl{background-image:none}

#live-chat .lpRtTd{display:none}

#live-chat .gntlSeperatorLP{display:none}

#live-chat>#divLpChatButton{text-align:center;margin-bottom:0}

#live-chat .lpLnk{display:inline-block;font-family:Roboto,sans-serif;font-weight:500;font-size:12px;color:#666;text-decoration:none;height:50px;width:auto;text-align:center}

#live-chat .lpLftTd{width:auto}

#live-chat .lpLftTd:before{font-family:GettyIcons;speak:none;line-height:1;font-size:32px;-webkit-font-smoothing:antialiased;color:#666;content:"!";min-width:30px;vertical-align:middle}

#live-chat .lpLtAvl:before{color:#3dcd58}

#live-chat .lpLtNotAvl:before{color:#666}

#live-chat .lpCntrTd{padding:0}

#live-chat .lpFntNotAvl,#live-chat .lpFntAvl{display:inline;margin-left:6px;padding:0;display:inline-block;font-family:Roboto,sans-serif;font-weight:500;font-size:12px;color:#666;height:auto;line-height:50px}

#live-chat .lpLnk>table>tbody>tr{width:30px}

#live-chat>#divLpChatButton:hover .lpFntAvl,#live-chat>#divLpChatButton:hover .lpFntNotAvl{color:#101}

#live-chat>#divLpChatButton:hover .lpLtAvl:before{color:#3dcd58;font-weight:normal}

#live-chat>#divLpChatButton:hover .lpLtNotAvl:before{color:#101}

.bodyContainerFixed #site-header #live-chat .lpFntNotAvl,.bodyContainerFixed #site-header #live-chat .lpFntAvl{display:none}

#divLpChatButton td{text-align:center}

#divLpChatButton td.lpLftTd{width:30px}

#live-chat .lpLftTd:before{min-width:0}

nav#account-menu-container{width:230px;display:inline-block;margin:0 5px}

nav#account-menu-container .menu{margin-bottom:28px;font-weight:bold}

nav#account-menu-container .menu .menu-heading{padding:10px;background-color:#333;color:#ffffff;font-size:14px}

nav#account-menu-container .menu .menu-links hr{display:none}

nav#account-menu-container .menu .menu-links li{border-bottom:1px solid #ccc;font-size:12px;background-color:#fff;margin-bottom:0}

nav#account-menu-container .menu .menu-links li a{padding:5px 10px;display:block;color:black;font-size:12px;font-weight:bold}

nav#account-menu-container .menu .menu-links li .sub-menu li{border-bottom:none}

nav#account-menu-container .menu .menu-links li .sub-menu li a{padding-left:15px;font-weight:normal}

nav#account-menu-container .menu .menu-links li.selected{background-color:#ccc}

nav#account-menu-container.nav a:hover{background-color:#999;text-decoration:none}

.embed-modal *{box-sizing:border-box}

.embed-modal ::-webkit-scrollbar{-webkit-appearance:none;width:7px}

.embed-modal ::-webkit-scrollbar-thumb{border-radius:4px;background-color:rgba(0,0,0,0.5);-webkit-box-shadow:0 0 1px rgba(255,255,255,0.5)}

.embed-modal .contents{display:flex;flex-direction:column;padding:0}

.embed-modal button{padding:0}

.embed-modal header{padding:0 25px}

.embed-modal header h2{font-weight:200;font-size:2.5em;color:#000;line-height:60px;height:60px}

.embed-modal header h2 .learn-more a{font-size:18px;color:#4cb7ff;margin-left:5px}

.embed-modal .contents .snippets{display:flex;height:36px;margin-bottom:15px;padding:0 25px}

.embed-modal .contents .snippets .snippet-types{-webkit-appearance:none;-moz-appearance:none;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAKBAMAAACZNRnKAAAAG1BMVEUAAABmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZ8aTmeAAAACHRSTlMAxg+2Drc1NNWwHtQAAAA5SURBVAjXY4ADdiMgoZzAwMDcqMDAIhHAwMAkIcTgCOQwMCg2qgDZDCAhQZAASKgDKAAWEgQJYAIAKIIFhUphUKsAAAAASUVORK5CYII=) no-repeat 97% 50%;width:20%;border:1px solid #cccccc;border-right:none;background-color:#f9f9f9;color:#666;cursor:pointer}

.embed-modal .contents .snippets .snippet-types::-ms-expand{display:none}

.embed-modal .contents .snippets .embed-code-wrapper{width:80%;border:1px solid #ccc;padding:0 3px;overflow:hidden}

.embed-modal .contents .snippets .embed-code{border:0;font-size:12px;line-height:14px;padding:0;color:#1a1a1a;resize:none;overflow:auto;word-break:break-all;outline:none}

.embed-modal .contents .snippets .embed-code.error{position:relative;top:28px}

.embed-modal .contents .snippets .copy{width:10%}

.embed-modal .contents .caption-checkbox{display:none}

.embed-modal .contents .include-caption-label{display:none}

.embed-modal .contents .caption-checkbox+label:before{font-family:GettyIcons;content:"1";color:white;padding:3px;border:1px solid black;margin-right:10px}

.embed-modal .contents .caption-checkbox:checked+label:before{background-color:black}

.embed-modal .contents .label-embed-option-selector,.embed-modal .contents .embed-option-selector{display:none}

.embed-modal .contents input:focus{outline:none}

.embed-modal .contents label{font-family:Roboto,sans-serif;font-weight:500;line-height:1.3;margin-bottom:1em;margin-top:5px;font-size:15px}

.embed-modal .contents .wrapper{display:flex;flex:1 1;font-size:14px;min-height:0;padding-left:25px}

.embed-modal .contents .wrapper .instruction{font:normal normal 14px sans-serif;margin-bottom:12px}

.embed-modal .contents .wrapper label::before{font-size:10px}

.embed-modal .contents .wrapper label{margin:5px 20px 5px 0;font-size:16px}

.embed-modal .contents .left-wing{flex:1 1;padding-right:5px}

.embed-modal .contents .left-wing .thumb-strip{margin:5px 0 0 0;width:100%;max-height:65.55px;text-align:center;display:table;border-collapse:separate;border-spacing:5px}

.embed-modal .contents .left-wing .thumb-strip img{max-height:65.55px;vertical-align:middle;max-width:100%}

.embed-modal .contents .left-wing .thumb-item{background-color:#fff;border:2px solid #ccc;width:77.33px;max-width:77.33px;height:59px;display:table-cell;vertical-align:middle;position:relative}

.embed-modal .contents .left-wing .thumb-item img:not([src]){display:none}

.embed-modal .contents .left-wing .thumb-item.last{margin-right:0}

.embed-modal .contents .left-wing .thumb-item.first{margin-left:0}

.embed-modal .contents .left-wing .thumb-item.over img{filter:brightness(2)}

.embed-modal .contents .left-wing .thumb-item.target{filter:drop-shadow(0px 0px 5px rgba(0,0,255,0.5))}

.embed-modal .contents .left-wing .thumb-item.target:not(.filled){filter:initial;cursor:no-drop}

.embed-modal .contents .left-wing .thumb-item.target:not(.filled):hover{cursor:no-drop}

.embed-modal .contents .left-wing .thumb-item.source{cursor:move;border:2px dotted #ccc}

.embed-modal .contents .left-wing .thumb-item.filled{background-color:#251f21;border-color:#fff}

.embed-modal .contents .left-wing .thumb-item.filled:hover{cursor:move;filter:drop-shadow(0px 0px 5px rgba(0,0,0,0.5))}

.embed-modal .contents .left-wing .thumb-item.filled:hover .remove{cursor:pointer;position:absolute;right:0;top:0;height:12px;width:12px;z-index:1}

.embed-modal .contents .left-wing .thumb-item.filled:hover .remove:after{content:"\29";font-family:GettyIcons;position:absolute;top:-2px;right:-1px;font-size:18px;line-height:20px;color:#fff;text-shadow:0 2px 2px #000}

.embed-modal .contents .left-wing .thumb-item.target:not(.filled){cursor:no-drop}

.embed-modal .contents .right-wing{display:flex;flex-direction:column;flex:1 1;padding:10px 25px 0 10px;background-color:#f9f9f9}

.embed-modal .contents .right-wing .spinner{top:25%;left:50%}

.embed-modal .contents .right-wing .embed-search h6{margin-bottom:10px}

.embed-modal .contents .right-wing .slideshow-items{margin-top:8px;overflow-y:auto;background-color:#f9f9f9}

.embed-modal .contents .right-wing #embed-search-form .search-box{margin-bottom:8px}

.embed-modal .contents .right-wing #embed-search-form .query{display:inline-block;height:32px;width:calc(100% - 32px);background-color:white;font-size:16px;padding:8px;border:1px solid #ccc;border-radius:0;vertical-align:middle}

.embed-modal .contents .right-wing button{width:32px;height:32px;display:inline-block;vertical-align:middle;background-color:#0099ff;color:#fff;text-transform:uppercase;font-weight:700;letter-spacing:.06em;text-align:center;border:0}

.embed-modal .contents .right-wing button span:after{font-size:32px;font-family:'GettyIcons';content:"\22";display:block}

.embed-modal .contents .right-wing .checkbox{display:none}

.embed-modal .contents .right-wing .checkbox+label:before{color:#fff;border:1px solid #000;font-family:'GettyIcons';content:'\31 ';margin-right:10px;padding:3px}

.embed-modal .contents .right-wing .checkbox:checked+label:before{background-color:#000}

.embed-modal .contents .right-wing label{margin:5px 20px 5px 0;font-size:16px}

.embed-modal .contents .right-wing .results{margin:0 0 10px -2px}

.embed-modal .contents .right-wing .no-results{display:none}

.embed-modal .contents .right-wing .pager{display:none;color:#000;right:20px;white-space:nowrap;font-size:1.1667rem;font-weight:normal;float:right;line-height:1.2}

.embed-modal .contents .right-wing .pager a{text-decoration:none}

.embed-modal .contents .right-wing .pager a.invisible{visibility:hidden}

.embed-modal .contents .right-wing .pager a.previous{display:inline-block;min-width:1em;font-size:1.5em}

.embed-modal .contents .right-wing .pager a.previous span:before{content:"\27e8";font-family:GettyIcons;font-style:normal;vertical-align:middle;font-size:2.5em;line-height:1}

.embed-modal .contents .right-wing .pager a.next{display:inline-block;min-width:1em;font-size:1.5em}

.embed-modal .contents .right-wing .pager a.next span:after{content:"\27e9";font-family:GettyIcons;font-style:normal;vertical-align:middle;font-size:2.5em;line-height:1}

.embed-modal .contents .right-wing .pager a{color:#000}

.embed-modal .contents .right-wing .pager a:hover{text-decoration:none;cursor:pointer}

.embed-modal .contents .right-wing .pager .result-count{float:none;float:initial;font-size:inherit;margin-right:10px}

.embed-modal .contents .right-wing .pager .page-count{margin:0 10px}

.embed-modal .contents .right-wing .pager .total-pages{margin-left:10px}

.embed-modal .contents .right-wing .block-adding .mosaic-asset{opacity:0.5}

.embed-modal .contents .right-wing .block-adding .mosaic-asset .add-image{z-index:-1;cursor:pointer;pointer-events:none}

.embed-modal .contents footer{padding:15px 25px;background-color:#333;color:#a7a7a7;width:100%}

.embed-modal .contents .mosaic-asset{margin:0 2px;position:relative;display:inline-block}

.embed-modal .contents .mosaic-asset .add-image{white-space:nowrap;text-align:center;text-transform:uppercase;font-size:14px;font-weight:200;background-color:#000;color:#fff;position:absolute;top:45%;left:50%;transform:translate(-50%, -50%);border:1px solid #fff;padding:.5rem;opacity:0;cursor:pointer}

.embed-modal .contents .mosaic-asset .add-image.added{display:none}

.embed-modal .contents .mosaic-asset img{height:110px;max-width:100%;padding:0}

.embed-modal .contents .mosaic-asset.added img{opacity:0.5}

.embed-modal .contents .mosaic-asset.added .add-image{z-index:-1;cursor:pointer;pointer-events:none}

.embed-modal .contents .mosaic-asset:not(.added):hover .add-image{opacity:0.9}

.embed-modal .contents .preview{margin:0 auto;max-height:368px;max-width:450px}

.embed-modal .contents .preview .preview-container{text-align:center;vertical-align:top;margin:0 auto}

.embed-modal .contents .preview .preview-container iframe{margin:0 !important}

.embed-modal.modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:1000;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;display:none;visibility:hidden;pointer-events:none}

.embed-modal.active{opacity:1;z-index:10000;pointer-events:auto;display:block;visibility:visible}

.embed-modal .modalBox{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:650px;min-width:960px;max-width:80em;margin:0;background:#fff}

@media screen and (max-width: 540px){.embed-modal .modalBox{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;padding-top:4.16667em;margin:0;border:none}.embed-modal .modalBox .assetListing:first-child{padding-top:0}}

.embed-modal .modalClose{position:absolute;right:0;top:10px;color:transparent;cursor:pointer}

.embed-modal .modalClose:after{content:")";text-decoration:none;font-family:GettyIcons;font-size:36px;color:#000}

@media (max-width: 980px){.embed-modal .modalBox{position:relative;height:auto;height:initial;min-width:90%;top:auto;top:initial;left:auto;left:initial;transform:none;margin:1% auto;padding-bottom:0}.embed-modal .modalBox .wrapper{flex-direction:column}.embed-modal .modalBox .right-wing{margin-top:10px;padding-right:25px;background-color:#f9f9f9}.embed-modal .modalBox .right-wing .slideshow-items{position:static;position:initial;max-height:none;width:auto;width:initial}.embed-modal .modalBox .copyright{margin-top:10px}.embed-modal .modalBox .feedback-container{position:static;position:initial}}

.consumer-gallery .embed-modal .contents .left-wing .thumb-item.filled:hover{cursor:default}

#footer{background:#333;line-height:12px;font-size:12px;width:100%;margin:5em 0 0 0;overflow:visible;left:0;right:0}

#footer .footer-logo{width:78px;margin-right:10px}

#footer>div{max-width:960px;margin:0 auto;padding:0 10px}

@media screen and (max-width: 800px){#footer>div{padding:0 .66667em}}

#footer div>div{padding-top:4.667em;position:relative}

#footer h2{font-family:Roboto,sans-serif;font-weight:500;font-size:1.16666667em;color:#fff;margin-bottom:2.5em;max-width:170px}

#footer a{font-family:Roboto,sans-serif;text-decoration:none;color:#a7a7a7}

#footer a:hover{text-decoration:underline}

#footer .top_link{display:none;position:absolute;top:1.66667em;right:1em;font-family:Roboto,sans-serif;font-weight:500;font-size:1em;color:#4CB7FF}

@media screen and (max-width: 800px){#footer .top_link{display:block}}

#footer>div>div nav{float:left;vertical-align:top;width:20%;margin-bottom:4em}

@media screen and (max-width: 800px){#footer>div>div nav{width:33%;padding:0 .66667em}#footer>div>div nav:nth-child(3n+1){clear:both}}

@media screen and (max-width: 540px){#footer>div>div nav{width:50%}#footer>div>div nav:nth-child(2n+1){clear:both}#footer>div>div nav:nth-child(3n+1){clear:none}}

#footer ul{list-style-type:none}

#footer li{line-height:1em;margin-bottom:1em;word-wrap:break-word}

@media screen and (max-width: 800px){#footer{font-size:125%}}

.footer__social-icons{padding-bottom:1.5rem;margin-top:1.5em}

.footer__social-icons-link{display:inline-block;margin-right:0.5rem}

.footer__icon{fill:#fff}

.footer__icon:active,.footer__icon:focus,.footer__icon:hover:not([disabled]){fill:#080808}

.footer__social-icon{height:37px;width:36px;transition:all .3s ease}

.footer__social-icon--facebook .icons-unisporkal-getty-facebook-svg__foreground{fill:#333}

.footer__social-icon--facebook:active .icons-unisporkal-getty-facebook-svg__foreground,.footer__social-icon--facebook:focus .icons-unisporkal-getty-facebook-svg__foreground,.footer__social-icon--facebook:hover:not([disabled]) .icons-unisporkal-getty-facebook-svg__foreground{fill:#fff}

.footer__social-icon--twitter .icons-unisporkal-getty-twitter-svg__foreground{fill:#333}

.footer__social-icon--twitter:active .icons-unisporkal-getty-twitter-svg__foreground,.footer__social-icon--twitter:focus .icons-unisporkal-getty-twitter-svg__foreground,.footer__social-icon--twitter:hover:not([disabled]) .icons-unisporkal-getty-twitter-svg__foreground{fill:#fff}

.footer__social-icon--instagram .icons-unisporkal-getty-instagram-svg__foreground{fill:#333}

.footer__social-icon--instagram:active .icons-unisporkal-getty-instagram-svg__foreground,.footer__social-icon--instagram:focus .icons-unisporkal-getty-instagram-svg__foreground,.footer__social-icon--instagram:hover:not([disabled]) .icons-unisporkal-getty-instagram-svg__foreground{fill:#fff}

#footer-links{border-top:1px solid #101010;vertical-align:top;padding:1.5em 0;clear:both}

#footer-links li{height:1em;float:left;border-right:1px solid #666;margin:0.5em 1em 1em 0;padding:0 1em 0 0;vertical-align:middle}

#footer-links li:first-child{border:0;margin:0.35em 0;padding:0 1em 0 0}

@media screen and (max-width: 800px){#footer-links li:first-child{margin-bottom:1.5em}}

#footer-links li:last-child{border-right:0}

@media screen and (max-width: 800px){#footer-links li:last-child{margin-bottom:1.5em}}

#footer-links li a{font-family:Roboto,sans-serif;font-size:0.91666667em;color:#a7a7a7;text-decoration:none}

@media screen and (max-width: 800px){#footer-links li:nth-child(2){clear:both}}

#footer-links p.copyright{font-family:Roboto,sans-serif;font-size:0.91666667em;color:#666;margin-left:8em;clear:both}

@media screen and (max-width: 800px){#footer-links p.copyright{margin-left:0}}

@media screen and (max-width: 800px){#footer-links{padding-left:1.33334em}}

#additional-links{clear:both}

#additional-links span{font-family:Roboto,sans-serif;color:#a7a7a7}

@media screen and (max-width: 800px){#additional-links li{height:auto;border:0}}

#footerRegionPickerTrigger{padding-right:15px;background:url(/collaboration/assets/media/images/down_arrow-554ef69d.png) no-repeat center right}

.bodyContainerFixed #footer>div{max-width:960px}

li.pickable_region_group .pickable_region{display:inline;padding-right:1em}

li.pickable_region_group .pickable_region span{background-color:#999}

li.pickable_region_group .pickable_region:hover a{background-color:black;color:#fff;text-decoration:none}

#region_picker_modal h4{color:black}

#region_picker_modal div.left_column{float:left;width:50%}

li.pickable_region_group{margin:0}

li.pickable_region_group a{color:#1a1a1a}

li.pickable_region_group li{margin:0}

li.pickable_region_group li span,li.pickable_region_group li a{border-right:1px black solid;padding-right:1em}

li.pickable_region_group li span.last,li.pickable_region_group li a.last{border-right:none;padding-right:0}

@media print{body>footer{display:none}}

#non-sticky-superstrip,#sticky-superstrip{display:none}

header .superstrip{display:none}

html.superstrip-visible .superstrip{display:flex}

html.superstrip-hidden .superstrip{display:none !important}

.superstrip{padding:8px 0;font-size:14px;font-weight:400;text-align:center;display:flex;color:white;background-color:#3973b1;justify-content:center;align-items:center;position:relative}

.superstrip.consumer{color:black;background-color:white}

.superstrip.consumer.alert{background-color:#FFF5F5}

.superstrip.consumer a{color:#4CB7FF;font-weight:normal}

.superstrip.alert{color:black;background-color:#FFF5F5;font-weight:400}

.superstrip.alert:before{content:'!';display:inline-block;width:1em;height:1em;border-radius:0.5em;border:1px solid black;line-height:1em;margin-right:0.5em;background:white}

.superstrip .close{position:absolute;top:6px;right:10px;cursor:pointer}

.superstrip .close:after{content:'\29';font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;line-height:1}

.superstrip a{text-decoration:none;font-weight:bold;color:white}

super-strip.pa-preview{padding:8px 0;font-size:14px;text-align:center;display:flex;color:white;justify-content:center;align-items:center;position:relative;background-color:#4CB7FF;font-weight:400}

super-strip.pa-preview .exit-preview{margin-left:1.5rem;color:#4CB7FF;background-color:white;width:auto;font-size:1.1rem;padding:4px 15px;text-decoration:none}

super-strip.pa-preview .exit-preview:hover{outline:1px solid #ccc;color:#666}

#site-header{margin:0 auto;width:100%;min-width:25em;display:block;height:51px;font-size:1rem;border-bottom:1px solid #ccc;margin-bottom:1.5em;position:fixed;top:0;z-index:300;background-color:white}

@media screen and (max-width: 800px){#site-header{float:right;margin:0}}

@media screen and (max-width: 540px){#site-header{position:absolute}}

#site-header input[type=checkbox]{display:none}

#site-header .site_logo{float:left;margin-top:19px;margin-right:20px}

#site-header .site_logo img,#site-header .site_logo svg{vertical-align:middle;width:108px;height:19px;margin-left:16px}

@media (max-width: 800px){#site-header .site-width{width:100%}#site-header .site_logo img,#site-header .site_logo svg{margin-left:16px}}

.ja #site-header #istock-menu{display:none}

#fancy-cart:hover .fancy-cart-icon .empty{fill:black}

#fancy-cart .fancy-cart-icon{height:31px;width:23px;margin:10px 8px 0px 8px}

@media screen and (max-width: 540px){#fancy-cart .fancy-cart-icon{margin-top:0px;vertical-align:middle}}

#fancy-cart svg .cart .empty{fill:#666}

@media screen and (max-width: 540px){#fancy-cart svg .cart .empty{fill:#999}}

#fancy-cart svg .cart .full{fill:transparent}

#fancy-cart svg.full .cart .empty{fill:transparent}

#fancy-cart svg.full .cart .full{fill:#666}

@media screen and (max-width: 540px){#fancy-cart svg.full .cart .full{fill:#999}}

@media screen and (max-width: 540px){#fancy-cart .fancy-cart-icon.full{vertical-align:middle}#fancy-cart .fancy-cart-icon.full+.action-label{display:none}}

#fancy-cart .cart-item-count{background-color:#3dcd58;color:white;display:inline-block;padding:0 .5rem;margin:1rem .5rem .5rem .25rem;line-height:2rem;position:relative;font-weight:700;transition:.5s ease-in-out;vertical-align:top}

@media screen and (max-width: 540px){#fancy-cart .cart-item-count{margin:3px 5px}}

#fancy-cart .cart-item-count.adding-item{transform:scale(1.5)}

#fancy-cart .cart-item-count:empty{margin:0;padding:0;background-color:transparent}

#fancy-cart .cart-item-count:before{content:'';position:absolute;left:-1.1rem;top:.5rem;width:8px;height:0;border-right:solid 6px #3dcd58;border-bottom:solid 6px transparent;border-top:solid 6px transparent;transition:.5s ease-in-out}

#fancy-cart .cart-item-count:empty:before{border:none}

@media screen and (min-width: 800px){#fancy-cart:hover .contents,#fancy-cart:focus .contents{display:flex;max-height:1000px;transition-delay:0ms}}

#fancy-cart:hover .contents.empty,#fancy-cart:focus .contents.empty{display:none}

#fancy-cart .contents{max-height:0;transition:max-height 0s ease;transition-delay:500ms;overflow:hidden;top:51px;position:absolute;right:0;background-color:#f7f7f7;width:30rem;box-shadow:rgba(0,0,0,0.5) 0 0 0.75rem;flex-direction:column;z-index:5}

#fancy-cart .contents>*{flex-grow:1}

#fancy-cart .contents .item{display:flex;flex-direction:row;border-top:solid 1px #ccc !important;padding:1.2em}

#fancy-cart .contents .item:last-child{border-bottom:none}

#fancy-cart .contents .item .thumbnail{min-width:18%;line-height:1;background-color:white;padding:1px;height:60px;border:solid #ccc 1px;display:inline-block;min-width:60px}

#fancy-cart .contents .item .thumbnail img,#fancy-cart .contents .item .thumbnail .pulled-from-collection-item{margin:0 auto;max-width:56px;max-height:100%;transform:translateY(-50%)}

#fancy-cart .contents .item .thumbnail .fancy-cart-thumbnail{position:relative;top:50%}

#fancy-cart .contents .item .thumbnail .pulled-from-collection-item{position:inherit;line-height:1.2;font-size:10px}

#fancy-cart .contents .item .thumbnail .data,#fancy-cart .contents .item .thumbnail .price{vertical-align:top;display:inline-block}

#fancy-cart .contents .item .data{text-align:left;padding-left:1rem;min-width:52%;font-size:1rem}

#fancy-cart .contents .item .data .title a{text-decoration:none;color:black;font-weight:bold}

#fancy-cart .contents .item .data .title a:hover{color:#4cb7ff;text-decoration:underline}

#fancy-cart .contents .item .data div{margin-bottom:.4rem}

#fancy-cart .contents .item .price{padding:0 1rem;min-width:34%;text-align:right;position:relative}

#fancy-cart .contents .item .price .original-price,#fancy-cart .contents .item .price .final-price{margin-bottom:1rem}

#fancy-cart .contents .item .price .original-price{color:red;text-decoration:line-through}

#fancy-cart .contents .item .price .calculate-price{cursor:pointer}

#fancy-cart .contents .item .price .original-price+.final-price{margin-top:0}

#fancy-cart .contents .item .price .remove-item{cursor:pointer;height:1rem;position:absolute;bottom:0;right:0;margin-right:1rem;display:none}

#fancy-cart .contents .item div{line-height:100%;cursor:default}

#fancy-cart .contents .item:hover .remove-item{display:block}

#fancy-cart .contents .view-all{background-color:white}

#fancy-cart .contents .view-all p{margin-bottom:0}

#fancy-cart .contents .view-all a{color:#4CB7FF;border-top:none;letter-spacing:normal;font-weight:normal;line-height:inherit}

#fancy-cart .contents .view-all a.hover{border-color:transparent;color:#4CB7FF}

#fancy-cart .contents .cart-summary{background-color:white;border-top:solid 1px #cccccc;display:flex;flex-wrap:wrap}

#fancy-cart .contents .cart-summary>*{padding:1.5rem;flex-grow:1;line-height:normal}

#fancy-cart .contents .cart-summary .needs-pricing{text-align:left;color:orange}

#fancy-cart .contents .cart-summary .subtotal{text-align:right}

#fancy-cart .contents .cart-summary .item-count-message{width:100%;border-bottom:solid 1px #ededed}

#fancy-cart .contents .cart-summary .checkout{margin:1.2rem;padding:.7rem;font-size:1.3em}

.carts_container #fancy-cart .contents{display:none}

#site-header nav.categories{margin:0 .66667rem;float:left}

@media screen and (max-width: 800px){#site-header nav.categories{margin:0;color:#fff;margin-top:12px}}

#site-header nav.categories .nav-root>li{margin:0 .66667rem}

@media screen and (max-width: 800px){#site-header nav.categories .nav-root>li{background-color:#333;margin:0;border-top:none;min-height:3.5rem;position:relative;display:block}}

#site-header nav.categories .nav-root>li>a{font-size:1.2rem}

@media screen and (max-width: 800px){#site-header nav.categories .nav-root>li>a{border-bottom:1px solid #666;line-height:1;padding:1em;border-top:none;display:block}#site-header nav.categories .nav-root>li>a:hover{color:white;background:#000}}

#site-header nav.actions{height:51px;font-family:Roboto,sans-serif;font-weight:500;margin:0;float:right}

@media screen and (max-width: 800px){#site-header nav.actions{position:absolute;top:0;right:0;padding-right:5.5em;width:75%}}

@media screen and (max-width: 540px){#site-header nav.actions{float:none;position:relative;padding-right:0;color:#fff;width:100%}}

@media screen and (max-width: 800px){#site-header nav.actions .nav-root{float:right;text-align:right}}

#site-header nav.actions .nav-root>li{margin:0;text-align:center;vertical-align:middle}

@media screen and (max-width: 800px){#site-header nav.actions .nav-root>li{width:auto}}

@media screen and (max-width: 540px){#site-header nav.actions .nav-root>li{display:block;background-color:#333;margin:0}}

#site-header nav.actions .nav-root>li>a,#site-header nav.actions .nav-root>li>label{min-width:2.5rem;padding:0 0.5em}

@media screen and (max-width: 800px){#site-header nav.actions .nav-root>li>a,#site-header nav.actions .nav-root>li>label{font-size:1.16667em}}

@media screen and (max-width: 540px){#site-header nav.actions .nav-root>li>a,#site-header nav.actions .nav-root>li>label{display:block;line-height:1;padding:0.4em 0.5em;border-top:0;border-bottom:1px solid #666;text-align:left}#site-header nav.actions .nav-root>li>a:hover,#site-header nav.actions .nav-root>li>label:hover{color:#fff;background-color:#000}}

#site-header nav.actions .action-label,#site-header nav.actions #live-chat .lpFntNotAvl,#site-header nav.actions #live-chat .lpFntAvl{display:none}

@media screen and (max-width: 540px){#site-header nav.actions .action-label,#site-header nav.actions #live-chat .lpFntNotAvl,#site-header nav.actions #live-chat .lpFntAvl{display:inline}}

#site-header nav.actions .user-display-name-text,#site-header nav.actions #open_board ~ #user #user-display-name-text{display:inline}

@media screen and (max-width: 540px){#site-header nav.actions .count:before{content:"("}#site-header nav.actions .count:after{content:")"}}

#site-header nav.actions .icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em}

@media screen and (max-width: 540px){#site-header nav.actions .icon:before{line-height:1;color:#999}}

#site-header nav.actions #live-chat{line-height:56px}

@media screen and (max-width: 800px){#site-header nav.actions #live-chat{display:none !important}}

#site-header nav.actions #live-chat #divLpChatButton{float:left}

#site-header nav.actions #live-chat #divLpChatButton a{padding:0 1em}

#site-header nav.actions #open_board span.icon:hover{cursor:pointer}

#site-header nav.actions #open_board span.icon:before{font-size:32px;padding:0 0.125em}

#site-header nav.actions #open_board.has-items span.icon:before{font-size:32px}

#site-header nav.actions #user label{cursor:pointer;margin:0}

@media screen and (min-width: 50em){#site-header nav.actions #user #user-display-name:after{content:"▼";padding-left:0.3em}#site-header nav.actions #user #user-display-name:hover{content:"▲";color:#1a1a1a}}

@media screen and (max-width: 800px){#site-header nav.actions #user #user-display-name{display:none}}

@media screen and (max-width: 540px){#site-header nav.actions #user #user-display-name{display:inline}#site-header nav.actions #user #user-display-name:after{display:none}}

#site-header nav.actions #user #user-display-name-text{font-size:inherit;color:inherit}

@media screen and (max-width: 540px){#site-header nav.actions #user #user-display-name-text{font-size:1.16667rem;color:#fff}}

#site-header nav.actions #user #user-icon:hover{color:#1a1a1a}

#site-header nav{display:inline;color:#666}

@media screen and (max-width: 800px){#site-header nav{display:block;width:100%;clear:both}#site-header nav ul,#site-header nav li{width:100%;margin:0}}

#site-header nav .nav-root>li{height:51px;line-height:4.16667rem;position:relative;display:inline-block}

@media screen and (max-width: 800px){#site-header nav .nav-root>li{position:static;margin:0}}

@media screen and (max-width: 540px){#site-header nav .nav-root>li{height:auto}}

#site-header nav .nav-root>li>a,#site-header nav .nav-root>li>label{border-top:.25rem solid transparent;display:inline-block;font-family:Roboto,sans-serif;font-weight:200;letter-spacing:0.02em;text-decoration:none;color:inherit}

.ja #site-header nav .nav-root>li>a,#site-header nav .ja .nav-root>li>a,.ja #site-header nav .nav-root>li>label,#site-header nav .ja .nav-root>li>label{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko #site-header nav .nav-root>li>a,#site-header nav .ko .nav-root>li>a,.ko #site-header nav .nav-root>li>label,#site-header nav .ko .nav-root>li>label{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

#site-header nav .nav-root>li>a:hover,#site-header nav .nav-root>li>label:hover{border-color:#1a1a1a;color:#1a1a1a}

@media screen and (min-width: 800px) and (max-width: 900px){#site-header nav .nav-root .unfiltered-nav .news-unfiltered{display:none}}

#site-header nav .nav-root .unfiltered-nav .unfiltered{display:none}

@media screen and (min-width: 800px) and (max-width: 900px){#site-header nav .nav-root .unfiltered-nav .unfiltered{display:block}}

#site-header nav.actions .nav-root .menu{right:0;top:51px}

@media screen and (max-width: 800px){#site-header nav.actions .nav-root .menu{left:0;position:absolute}}

#site-header nav.actions .nav-root .menu:before{margin:0 30px 0 auto}

@media screen and (max-width: 800px){#site-header nav.actions .nav-root .menu li:last-child a{background-color:#333;font-family:Roboto,sans-serif;font-weight:500;padding-left:1rem}#site-header nav.actions .nav-root .menu li:last-child a:hover{background:#000}}

#site-header nav.actions .nav-root .menu .username{display:none}

@media screen and (max-width: 800px){#site-header nav.actions .nav-root .menu .username{background:#333;font-size:1.16667em;padding-left:1rem;line-height:46px;display:block}#site-header nav.actions .nav-root .menu .username:hover{background:#000}}

@media screen and (max-width: 540px){#site-header nav.actions .nav-root .menu .username{display:none}}

#site-header nav.categories .nav-root .menu{left:0}

#site-header nav.categories .nav-root .menu:before{margin:0 0 0 27px}

#site-header nav .nav-root .menu{list-style:none;padding:14px 0;margin:0;display:none;position:absolute;top:51px;z-index:98;background-color:rgba(26,26,26,0.9);color:#fff}

@media screen and (max-width: 800px){#site-header nav .nav-root .menu{position:relative;clear:both;opacity:1;margin:0;padding:0}}

@media screen and (max-width: 540px){#site-header nav .nav-root .menu{top:0px}}

@media screen and (min-width: 50em){#site-header nav .nav-root>li:hover .menu{display:block}}

#site-header nav .nav-root .menu li{text-align:left;vertical-align:middle;margin:0;padding:0;display:block}

@media screen and (max-width: 800px){#site-header nav .nav-root .menu li{background-color:#666;opacity:1}#site-header nav .nav-root .menu li a:hover{background:#000}}

#site-header nav .nav-root .menu a{font-family:Roboto,sans-serif;letter-spacing:0.09em;font-size:1.16667rem;line-height:1;text-decoration:none;white-space:nowrap;color:inherit;padding:.41667rem 1.66667rem;display:block;float:none}

@media screen and (max-width: 800px){#site-header nav .nav-root .menu a{border-top:0;border-bottom:1px solid #333;padding:1em 2em}}

#site-header nav .nav-root .menu a:hover{background:#333;border-color:#1a1a1a;color:white}

@media screen and (max-width: 800px){#site-header nav .nav-root .menu a:hover{color:#fff}}

#site-header nav .nav-root .menu .divider .line{background-color:#666;height:1px;width:85%;margin:7px auto}

@media screen and (max-width: 800px){#site-header nav .nav-root .menu .divider .line{display:none}}

#site-header label[for="burger_toggle"]{border-top:3px solid transparent;position:absolute;font-size:1.25em;line-height:50px;top:0;width:4.75em;text-align:center;right:0;display:none}

@media screen and (max-width: 800px){#site-header label[for="burger_toggle"]{display:block}#site-header label:hover[for="burger_toggle"]{border-color:#101;color:#101}#site-header label[for="burger_toggle"]:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em;content:""}}

@media screen and (max-width: 800px){#site-header .categories{display:none !important}#site-header #burger_toggle:checked ~ .categories{display:block !important}}

@media screen and (max-width: 800px){#site-header .menu{display:none !important}#site-header #creative_toggle:checked ~ .menu{display:block !important}}

@media screen and (max-width: 800px){#site-header .menu{display:none !important}#site-header #editorial_toggle:checked ~ .menu{display:block !important}}

@media screen and (max-width: 800px){#site-header .menu{display:none !important}#site-header #istock_toggle:checked ~ .menu{display:block !important}}

@media screen and (max-width: 800px){#site-header .menu{display:none !important}#site-header #gallery_toggle:checked ~ .menu{display:block !important}}

@media screen and (max-width: 540px){#site-header .actions{display:none !important}#site-header #burger_toggle:checked ~ .actions{display:block !important}}

@media screen and (max-width: 800px){#site-header .menu{display:none !important}#site-header #user_toggle:checked ~ .menu{display:block !important}}

@media screen and (max-width: 800px){#site-header #creative_toggle:checked ~ label[for=creative_toggle]:before{content:"-" !important}#site-header nav .nav-root>li>label[for=creative_toggle]{position:absolute;right:0;top:0;margin:0;border:0;height:43px}#site-header nav .nav-root>li>label[for=creative_toggle]:hover{background:#000;color:#fff}#site-header nav .nav-root>li>label[for=creative_toggle]:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em;color:inherit;padding:0 2.75rem !important;content:"+";margin-top:.5rem;border:none;display:block}}

@media screen and (max-width: 800px){#site-header #editorial_toggle:checked ~ label[for=editorial_toggle]:before{content:"-" !important}#site-header nav .nav-root>li>label[for=editorial_toggle]{position:absolute;right:0;top:0;margin:0;border:0;height:43px}#site-header nav .nav-root>li>label[for=editorial_toggle]:hover{background:#000;color:#fff}#site-header nav .nav-root>li>label[for=editorial_toggle]:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em;color:inherit;padding:0 2.75rem !important;content:"+";margin-top:.5rem;border:none;display:block}}

@media screen and (max-width: 800px){#site-header #istock_toggle:checked ~ label[for=istock_toggle]:before{content:"-" !important}#site-header nav .nav-root>li>label[for=istock_toggle]{position:absolute;right:0;top:0;margin:0;border:0;height:43px}#site-header nav .nav-root>li>label[for=istock_toggle]:hover{background:#000;color:#fff}#site-header nav .nav-root>li>label[for=istock_toggle]:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em;color:inherit;padding:0 2.75rem !important;content:"+";margin-top:.5rem;border:none;display:block}}

@media screen and (max-width: 800px){#site-header #gallery_toggle:checked ~ label[for=gallery_toggle]:before{content:"-" !important}#site-header nav .nav-root>li>label[for=gallery_toggle]{position:absolute;right:0;top:0;margin:0;border:0;height:43px}#site-header nav .nav-root>li>label[for=gallery_toggle]:hover{background:#000;color:#fff}#site-header nav .nav-root>li>label[for=gallery_toggle]:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em;color:inherit;padding:0 2.75rem !important;content:"+";margin-top:.5rem;border:none;display:block}}

@media screen and (max-width: 540px){#site-header #user_toggle:checked ~ label[for=user_toggle]:before{content:"-" !important}#site-header nav .nav-root>li>label[for=user_toggle]{position:absolute;right:0;top:0;margin:0;border:0;height:43px;position:relative;padding-right:0}#site-header nav .nav-root>li>label[for=user_toggle]:hover{background:#000;color:#fff}#site-header nav .nav-root>li>label[for=user_toggle]:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1;color:inherit;font-size:2.5rem !important;padding:0 0.125em;color:inherit;padding:0 2.75rem !important;content:"+";margin-top:.5rem;border:none;display:block}#site-header nav .nav-root>li>label[for=user_toggle]:before{float:right;margin-top:0.1rem}}

#corbis_modal{padding:0px;overflow:auto}

#corbis_modal .modalBox{max-width:780px;padding:0px}

#corbis_modal .title{background-color:#333333;padding:.75em}

#corbis_modal .title img{padding-top:.2em;padding-left:1em;height:30px;width:169px}

#corbis_modal .modal_image{background-image:url(/collaboration/assets/media/images/corbis_popup-12d1fa4c.jpg);background-repeat:no-repeat;background-size:cover;background-position:center;height:26.5em}

#corbis_modal .modal_image p{color:white;font-size:2.5em;padding-top:8.5em;padding-left:1.2em;font-weight:200;line-height:2.5rem}

#corbis_modal .modal_main{font-size:1.5em;padding-top:1em;font-weight:200;background-color:white}

#corbis_modal .modal_main div{padding-bottom:2em}

#corbis_modal .modal_main p{margin:2em;line-height:1.5}

#corbis_modal .modalClose:after{color:white}

#non-sticky-superstrip,#sticky-superstrip{display:none}

header .superstrip{display:none}

html.superstrip-visible .superstrip{display:flex}

html.superstrip-hidden .superstrip{display:none !important}

.superstrip{padding:8px 0;font-size:14px;font-weight:400;text-align:center;display:flex;color:white;background-color:#3973b1;justify-content:center;align-items:center;position:relative}

.superstrip.consumer{color:black;background-color:white}

.superstrip.consumer.alert{background-color:#FFF5F5}

.superstrip.consumer a{color:#4CB7FF;font-weight:normal}

.superstrip.alert{color:black;background-color:#FFF5F5;font-weight:400}

.superstrip.alert:before{content:'!';display:inline-block;width:1em;height:1em;border-radius:0.5em;border:1px solid black;line-height:1em;margin-right:0.5em;background:white}

.superstrip .close{position:absolute;top:6px;right:10px;cursor:pointer}

.superstrip .close:after{content:'\29';font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;line-height:1}

.superstrip a{text-decoration:none;font-weight:bold;color:white}

super-strip.pa-preview{padding:8px 0;font-size:14px;text-align:center;display:flex;color:white;justify-content:center;align-items:center;position:relative;background-color:#4CB7FF;font-weight:400}

super-strip.pa-preview .exit-preview{margin-left:1.5rem;color:#4CB7FF;background-color:white;width:auto;font-size:1.1rem;padding:4px 15px;text-decoration:none}

super-strip.pa-preview .exit-preview:hover{outline:1px solid #ccc;color:#666}

div.ups-boards boards-menu ul{background-color:#2D2D2D;box-shadow:0px 2px 4px 0px rgba(0,0,0,0.5);border-radius:4px;top:2em;right:0;min-width:250px;max-width:265px}

div.ups-boards boards-menu ul li{font-family:Roboto;padding:0px 16px;cursor:pointer}

div.ups-boards boards-menu ul li a{display:block;font-size:14px;font-weight:100;text-decoration:none;vertical-align:text-bottom}

div.ups-boards boards-menu ul li a.board-link{color:#FFFFFF !important;line-height:32px;white-space:nowrap}

div.ups-boards boards-menu ul li a.board-link:hover{color:#0099ff !important}

div.ups-boards boards-menu ul li a.board-item-link span.boards-team{background-image:url(/collaboration/assets/media/getty/icon_menu_shared-30da60e9.svg);margin-top:10px;width:16px}

div.ups-boards boards-menu ul li a.board-item-link span.board-title{color:#FFFFFF !important;display:inline-block;float:left;padding:0px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

div.ups-boards boards-menu ul li a.board-item-link span.label{box-sizing:border-box;border:1px solid #CCCCCC;border-radius:500px;color:#CCCCCC !important;font-size:11px;font-weight:100;line-height:14px !important;margin-left:2px;min-height:17px;min-width:17px;padding:1px 4px 2px 5px !important}

div.ups-boards boards-menu ul li.headline{color:#CCCCCC !important;cursor:default;font-size:10px;font-weight:100;line-height:40px;margin-left:4px;margin-top:16px;text-transform:uppercase;vertical-align:text-bottom}

div.ups-boards boards-menu ul li:hover a.board-item-link span.board-title{color:#0099ff !important}

div.ups-boards boards-menu ul li.boards-tag{cursor:default;font-family:Roboto;font-size:12px;font-weight:100;line-height:18px;overflow:hidden;padding:20px 20px 10px;position:relative;height:auto;width:100%}

div.ups-boards boards-menu ul li.boards-tag span.new-board{color:#FFFFFF !important;line-height:15px !important;text-transform:none}

div.ups-boards boards-menu ul li.boards-tag i.error-icon{position:absolute;left:16px}

div.ups-boards boards-menu ul li.boards-tag i.error-icon:before{content:url(/collaboration/assets/media/getty/icons_error_default-db26101d.svg)}

div.ups-boards boards-menu ul li.boards-tag span.boards-error{color:#FFFFFF !important;line-height:15px !important;display:inline-block;margin-left:18px}

div.ups-boards boards-menu ul li:last-child{margin-bottom:10px}

div.ups-boards boards-menu ul div.rectangle{border:.25px solid #ADB9BA;background-color:#fff;margin:10px auto 12px auto;width:90%}

.image_pager .image_pager_left:before,.image_pager .image_pager_right:before{font-size:200%}

.search_box button{font-size:1.5em;font-weight:normal}

.search_box button:after{font-size:180%}

div.pulled-from-collection-item{margin-bottom:5px}

div.pulled-from-collection-item span{width:170px;height:96px;display:table-cell;vertical-align:middle;text-align:center;color:#4d4d4d;font-weight:bold;border:1px solid #ccc}

.daterangepicker.ltr{border-color:#333;font-family:Roboto,sans-serif;width:39em;margin-left:-1.38em}

.daterangepicker.ltr::before{background-color:#333}

.daterangepicker.ltr thead{vertical-align:middle}

.daterangepicker.ltr thead tr:nth-of-type(1) th{vertical-align:top}

.daterangepicker.ltr thead tr:nth-of-type(2) th{width:2.4em;min-width:2.4em;color:#1a1a1a}

.daterangepicker.ltr th.prev.available,.daterangepicker.ltr th.next.available{background-color:#333}

.daterangepicker.ltr .calendar td{width:2.4em;min-width:2.4em}

.daterangepicker.ltr td.available{color:#1a1a1a}

.daterangepicker.ltr td.active.start-date.available,.daterangepicker.ltr td.active.end-date.available.in-range{background-color:#b3b3b3}

.daterangepicker.ltr td.available.in-range{background-color:#e6e6e6}

.daterangepicker.ltr td.out-of-range{background-color:#ffecec;color:#1a1a1a;border:1px solid red}

.daterangepicker.ltr th.month{vertical-align:super}

.daterangepicker.ltr .error-text{color:red}

.daterangepicker.ltr .prev-next-container{color:#333;right:7em}

.daterangepicker.ltr .prev-next-container .prev,.daterangepicker.ltr .prev-next-container .next{border-color:#e6e6e6}

.daterangepicker.ltr .prev-next-container .prev:hover,.daterangepicker.ltr .prev-next-container .next:hover{background:#e6e6e6}

.daterangepicker.ltr .prev-next-container .prev::after,.daterangepicker.ltr .prev-next-container .prev::before,.daterangepicker.ltr .prev-next-container .next::after,.daterangepicker.ltr .prev-next-container .next::before{line-height:0.87em}

.date-container{border-color:#333;font-size:0.527em;line-height:1.6em}

.date-container .dp-static-text{color:#1a1a1a;margin-top:0.95em;font-size:0.65em;font-weight:900}

.date-container .selection::before{background-color:#e6e6e6}

.date-container .date-value{color:#1a1a1a;font-weight:900}

.date-container .range{color:#1a1a1a;margin-left:1em;font-weight:900}

.date-container .calendar-icon{width:1.7em;height:1.8em;background-image:url(/collaboration/assets/media/unisporkal_engine/calendar-getty-213aac4a.svg);background-size:2.5em 2.5em;background-position:-6px -4px}

.date-container .error-color{color:red}

.sizes-container::-moz-selection{color:#333}

.sizes-container::selection{color:#333}

.sizes-container .film-sizes .size-table{border-collapse:collapse}

.sizes-container .film-sizes .size-table label{margin:0}

.sizes-container .film-sizes .size-table header,.sizes-container .film-sizes .size-table label,.sizes-container .film-sizes .size-table p,.sizes-container .film-sizes .size-table section{color:#666}

.sizes-container .film-sizes .size-table tr:hover header,.sizes-container .film-sizes .size-table tr:hover label,.sizes-container .film-sizes .size-table tr:hover p,.sizes-container .film-sizes .size-table tr:hover section,.sizes-container .film-sizes .size-table .selected header,.sizes-container .film-sizes .size-table .selected label,.sizes-container .film-sizes .size-table .selected p,.sizes-container .film-sizes .size-table .selected section{color:#333}

.sizes-container .film-sizes .size-table tr:hover .badge label,.sizes-container .film-sizes .size-table .selected .badge label{border:2px solid #ccc}

.sizes-container .film-sizes .size-table .selected .badge label,.sizes-container .film-sizes .size-table tr.selected:hover .badge label{border:2px solid #4cb7ff;background-color:white}

.sizes-container .film-sizes .size-table td{vertical-align:middle;padding:8px 11px 10px 0}

.sizes-container .film-sizes .size-table .badge label{background-color:#ececec;box-sizing:border-box;text-align:center;vertical-align:middle;border:2px solid #ececec;border-radius:3px;font-size:1rem;font-weight:bold;min-width:4.6rem;line-height:2.7rem;padding:0 1rem;text-transform:uppercase}

.sizes-container .film-sizes .size-table .info{font-size:.8rem;width:100%}

.sizes-container .film-sizes .size-table .info header{font-size:1rem}

.sizes-container .film-sizes .size-table .prices{white-space:nowrap;vertical-align:top;text-align:right}

.sizes-container .film-sizes .size-table .prices p.price,.sizes-container .film-sizes .size-table .prices p.discount-price,.sizes-container .film-sizes .size-table .prices p.message{margin:0}

.sizes-container .film-sizes .size-table .prices .discount-price{text-decoration:line-through;color:#ff3f3f}

.sizes-container .film-sizes .size-table .prices .discount-price span{color:#666}

.sizes-container .film-sizes .size-table .prices .message{color:#ea0889;font-size:.9rem}

.sizes-container aside.ultrapack-info .ultrapacks a{color:#ea0889;font-weight:bold;padding-left:5px}

.sizes-container aside.ultrapack-info .ultrapacks p.can-save-with-ultra-packs{margin-top:4rem}

span.best-quality-message{color:#ea0889;font-size:.9rem}

.download-modal span.best-quality-message{margin-left:10px}

.search-box-placeholder{background-color:#9B9B9B;height:7.1rem;margin-bottom:none}

@media screen and (max-width: 800px){.search-box-placeholder{margin-bottom:.2rem}}

@media (max-width: 660px){.search-box-placeholder{padding:5px 0;height:54px}}

@media (max-width: 440px){.search-box-placeholder{height:auto !important}}

#search-container-fancy{width:100%;top:365px;padding-top:1.8rem;z-index:201}

@media (max-width: 660px){#search-container-fancy{padding:0;height:42px}}

@media (max-width: 440px){#search-container-fancy{height:auto}}

body.elite #search-container-fancy{transition:background-color .5s}

#search-container-fancy.docked{position:fixed;background-color:#9b9b9b;box-shadow:0px 1px 3px 0px rgba(0,0,0,0.5);top:0;padding:20px;height:84px}

body.elite #search-container-fancy.docked{background-color:black}

@media (max-width: 660px){#search-container-fancy.docked{border-bottom:#ccc solid 1px;padding:5px 0;height:55px}}

@media (max-width: 440px){#search-container-fancy.docked{height:auto;width:100%}}

#search-container-fancy.docked .site_logo{display:inline-block;vertical-align:top;width:120px;padding-top:12px}

body.elite #search-container-fancy.docked .site_logo{display:none;color:#FC00FC}

@media (max-width: 660px){#search-container-fancy.docked .site_logo{display:none}}

#search-container-fancy.docked .site_logo img,#search-container-fancy.docked .site_logo svg{width:108px;height:19px;margin-right:10px}

body.elite #search-container-fancy.docked a.prestige_logo{display:inline-block !important;margin-right:1rem;color:#0000FC;vertical-align:top;padding-top:10px}

#search-container-fancy .site_logo{display:none}

form.search-box-fancy{left:50%;width:100%;margin:0 auto;line-height:0;height:3.7rem}

@media (max-width: 440px){form.search-box-fancy{height:auto}}

.docked form.search-box-fancy{left:0}

form.search-box-fancy>fieldset{height:44px;text-align:center}

@media (max-width: 440px){form.search-box-fancy>fieldset{height:auto}}

form.search-box-fancy>fieldset .media-filter{display:inline-block}

form.search-box-fancy>fieldset .media-filter.sbi-media-filter{line-height:74px}

body.elite form.search-box-fancy>fieldset .media-filter{vertical-align:top}

@media (max-width: 440px){form.search-box-fancy>fieldset .media-filter{width:90%;margin-top:.6rem;margin-bottom:7px;height:auto !important}}

form.search-box-fancy>fieldset .media-filter-label,form.search-box-fancy>fieldset input#search-phrase,form.search-box-fancy>fieldset button{height:44px !important;line-height:42px;display:inline-block;vertical-align:top;box-sizing:border-box;border:1px solid #ccc}

form.search-box-fancy>fieldset .media-filter-label{background-color:#ddd;color:#666;font-size:1.25em;width:15rem;border:1px solid #ccc;cursor:pointer}

@media (max-width: 440px){form.search-box-fancy>fieldset .media-filter-label{width:100%}}

form.search-box-fancy>fieldset .media-filter-label:selection{background-color:transparent}

form.search-box-fancy>fieldset .media-filter-label:after{font-size:1.75rem;font-family:GettyIcons;float:right;padding-top:0.10rem;padding-right:.25em;padding-left:.5rem;content:"\22c1"}

form.search-box-fancy>fieldset .media-filter-label.open:after{content:"\22c0"}

form.search-box-fancy>fieldset .media-types{text-align:left;display:none;border:1px solid #ccc;border-top:none;position:absolute;width:384px;background-color:#ddd;padding:15px 10px;color:#666;z-index:1;box-shadow:2px 2px 4px -2px rgba(0,0,0,0.7)}

@media (max-width: 440px){form.search-box-fancy>fieldset .media-types{position:relative;z-index:auto;width:auto;box-shadow:unset}}

form.search-box-fancy>fieldset .media-types.open{display:block;margin-top:-1px}

form.search-box-fancy>fieldset .media-types.open.sbi-media-filter-open{margin-top:-31px}

form.search-box-fancy>fieldset .media-types>ul li{line-height:2em}

form.search-box-fancy>fieldset .media-types>ul li ul li{margin-left:2em}

form.search-box-fancy>fieldset .media-types fieldset[disabled]{display:none}

form.search-box-fancy>fieldset .media-types input[type="checkbox"]{display:none}

form.search-box-fancy>fieldset .media-types input[type="checkbox"]:checked+label:before{color:#fff;background-color:#000}

form.search-box-fancy>fieldset .media-types select{font-family:Roboto,sans-serif;font-size:14px;margin-left:26px;margin-bottom:6px;width:83%;height:2em;padding:0.36111em 0.41667em;border:1px solid gray}

form.search-box-fancy>fieldset .media-types label:before{color:#fff;background-color:#fff;font-size:0.8rem;padding:0.3rem;margin-right:0.6rem;border:1px solid #000;content:"1";font-family:GettyIcons;vertical-align:middle;line-height:1}

form.search-box-fancy>fieldset input#search-phrase{font-size:1.25em;border-left:none;border-right:none;display:inline-block;min-width:10rem;width:32%;padding:0 .5rem;transition:width .25s}

body.landing_container form.search-box-fancy>fieldset input#search-phrase{border-left:1px solid #ccc}

body.landing_container form.search-box-fancy>fieldset input#search-phrase::-moz-placeholder{color:#999}

body.landing_container form.search-box-fancy>fieldset input#search-phrase:-ms-input-placeholder{color:#999}

body.landing_container form.search-box-fancy>fieldset input#search-phrase::placeholder{color:#999}

.docked form.search-box-fancy>fieldset input#search-phrase{width:40%}

@media (max-width: 440px){.docked form.search-box-fancy>fieldset input#search-phrase{width:90%;margin-bottom:.6rem}}

@media (max-width: 660px){form.search-box-fancy>fieldset input#search-phrase{width:40%}}

@media (max-width: 440px){form.search-box-fancy>fieldset input#search-phrase{border-right:1px solid inherit;border-left:1px solid inherit;width:90%}}

form.search-box-fancy>fieldset button{border-left:none;width:5rem !important}

form.search-box-fancy>fieldset button[type="submit"]:after{content:normal;display:none}

form.search-box-fancy>fieldset button img{max-height:70%;max-width:70%;height:22px;width:22px;vertical-align:middle;margin-bottom:5px}

@media (max-width: 440px){form.search-box-fancy>fieldset button{display:none}}

@media only screen and (max-width: 1374px){form.search-box-fancy>fieldset .search-bar__camera{display:none}}

@media screen and (min-width: 800px){form.search-box-fancy>fieldset .search-bar__camera{background:#fff;border:1px solid #ccc;border-left:none;display:inline-block;flex-grow:0;height:44px;line-height:42px;vertical-align:top;width:70px;position:relative}form.search-box-fancy>fieldset .search-bar__camera a{display:flex}form.search-box-fancy>fieldset .search-bar__camera .search-camera-icon{cursor:pointer;margin:auto;opacity:0;position:relative;top:1px;transition:visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;visibility:hidden;width:55px;height:70px}form.search-box-fancy>fieldset .search-bar__camera .search-camera-icon.shown{opacity:1;visibility:visible}form.search-box-fancy>fieldset .search-bar__camera .search-camera-icon img,form.search-box-fancy>fieldset .search-bar__camera .search-camera-icon svg{border-style:none;border-color:transparent;border-width:0;height:40px;margin-left:10px;opacity:0.6;vertical-align:middle;width:38px}form.search-box-fancy>fieldset .search-bar__camera .search-camera-icon img:hover,form.search-box-fancy>fieldset .search-bar__camera .search-camera-icon svg:hover{opacity:1.0}}

form.search-box-fancy .suggestions-container{width:717px;border:1px solid #ccc;box-shadow:2px 2px 4px -2px rgba(0,0,0,0.7);border-top:none}

.dropbox-intro-modal{display:block;opacity:0;visibility:hidden;max-width:280px;min-height:220px;padding:0;margin:0;overflow:hidden;bottom:-500px;box-shadow:0 0 0 10px rgba(0,0,0,0.4);transition:all 1s ease-in-out}

.dropbox-intro-modal .dropbox-icon{width:60px;height:60px}

.dropbox-intro-modal div a.close-reveal-modal.modalClose:after{font-size:22px}

.dropbox-intro-modal.modal{top:auto;top:initial;left:auto;left:initial;right:2rem}

.dropbox-intro-modal.modal .modalBox{width:100%;margin:0;padding:20px}

.dropbox-intro-modal.modal .modalBox .modalClose{margin-top:-10px}

.dropbox-intro-modal.modal .modalBox .title{margin:5px 20px 15px 20px;line-height:19px}

.dropbox-intro-modal.modal .modalBox .new{color:red;text-transform:uppercase;font-family:"Roboto Condensed";font-weight:bold;display:inline}

.dropbox-intro-modal.modal .modalBox .primary-cta{margin-bottom:10px}

@media screen and (max-width: 540px){.dropbox-intro-modal{width:100%;height:100%;border:0;left:0;max-width:none;box-shadow:none}.dropbox-intro-modal.modal{top:0;right:0}}

.dropbox-intro-modal.active{bottom:2rem}

.dropbox-intro-modal .dropbox-intro-modal-content{text-align:center}

.dropbox-intro-modal .dropbox-intro-modal-content h3,.dropbox-intro-modal .dropbox-intro-modal-content a{font-family:"Roboto"}

.dropbox-intro-modal .dropbox-intro-modal-content h3{font-size:16px}

.dropbox-intro-modal .dropbox-intro-modal-content a.button{padding:8px 10px;font-size:13px;width:70%;background-color:#0099FF;border-radius:2px}

.dropbox-intro-modal .dropbox-intro-modal-content a.button:active{color:#ffffff}

.dropbox-intro-footer-content{display:flex;line-height:18px;height:50px;width:100%;margin:0;margin-top:5px;margin-bottom:20px;align-items:center}

.dropbox-intro-footer-content .icon{line-height:10px}

.dropbox-intro-footer-content .dropbox-icon{width:30px;height:28.03px}

.dropbox-intro-footer-content h3,.dropbox-intro-footer-content a{font-family:"Roboto Condensed"}

.dropbox-intro-footer-content h3{font-size:16px}

.dropbox-intro-footer-content a{font-size:11px}

.dropbox-intro-footer-content a.button{margin-left:20px;padding:10px;font-size:13px;width:178px;height:37px;background-color:#0099FF;border-radius:2px}

.dropbox-intro-footer-content a.button:active{color:#ffffff}

.dropbox-intro-footer-content .dont-show-message{margin-left:auto}

.dropbox-intro-footer-content .title{padding-left:10px}

.dropbox-intro-footer-content .new{color:red;text-transform:uppercase;font-weight:bold;display:inline}

.dropbox-intro-footer-content .primary-cta{min-height:37px;min-width:178px}

.dropbox-download-notification{max-width:100%;bottom:0;left:0;right:0;width:100%;position:fixed;padding:16px;min-height:100px;margin:0;overflow:hidden;background-color:#1a1a1a;z-index:1000}

.dropbox-download-notification .downloading-text,.dropbox-download-notification .download-locally{font-size:16px;font-family:'Roboto'}

.dropbox-download-notification .downloading-text{color:#FFFFFF;margin-bottom:10px}

.dropbox-download-notification a.modal-close:after{cursor:pointer;content:")";text-decoration:none;font-family:GettyIcons;font-size:25px;color:#FFFFFF;float:right}

.dropbox-download-notification .download-locally{cursor:pointer}

@-webkit-keyframes bounce-loader{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}

@keyframes bounce-loader{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}

@media screen and (max-width: 800px){.creative-homepage-modal,start-page-toggle{display:none}}

@media screen and (min-width: 50em){.creative-homepage-modal .overlay{background-color:rgba(0,0,0,0.9);bottom:0;cursor:pointer;left:0;position:fixed;right:0;top:0;z-index:1000;opacity:0;transition:visibility 0s .2s, opacity .2s ease-in-out;visibility:hidden}.creative-homepage-modal .overlay.active{display:block}.creative-homepage-modal .overlay.active{opacity:1;transition:opacity .2s ease-in-out;visibility:visible}.creative-homepage-modal .modal-wrapper{background-color:white;border-radius:5px;bottom:auto;left:50%;margin:auto;max-width:750px;min-width:600px;overflow:visible;position:fixed;right:auto;text-align:center;transform:translate(-50%, -50%);top:50%;z-index:1001;opacity:0;transition:visibility 0s .2s, opacity .2s ease-in-out;visibility:hidden}.creative-homepage-modal .modal-wrapper.active{display:block}.creative-homepage-modal .modal-wrapper.active{opacity:1;transition:opacity .2s ease-in-out;visibility:visible}.creative-homepage-modal .modal-wrapper .modal-content{height:85vh;max-height:522px;overflow-y:auto;padding:10px 30px}.creative-homepage-modal .modal-wrapper .modal-content.showing-error{max-height:615px}.creative-homepage-modal .modal-wrapper h2{font-size:1.5rem;font-weight:500;margin-bottom:15px;margin-top:30px;text-align:center}.creative-homepage-modal .modal-wrapper p{font-size:1.125rem}.creative-homepage-modal .error-bar{background-color:#ffd900;color:black;font-size:.875rem;margin:0 auto 20px;padding:12px 25px}.creative-homepage-modal .close-icon{background-image:url(/collaboration/assets/media/icons/close_grey-b07b7500.svg);cursor:pointer;filter:invert(100%);height:16px;position:absolute;right:-20px;top:-20px;width:16px}.creative-homepage-modal .overlay{background-color:rgba(0,0,0,0.5)}.creative-homepage-modal .modal-wrapper{border-radius:2px 0 2px 2px}.creative-homepage-modal .modal-wrapper .modal-content{color:#333;padding:0 16px}.creative-homepage-modal .modal-wrapper h2{font-size:18px;line-height:21px;padding-bottom:8px}.creative-homepage-modal .modal-wrapper .info-container{margin:0 auto;width:80%}.creative-homepage-modal .modal-wrapper .info-container.deutsch{width:98%}.creative-homepage-modal .modal-wrapper .info-container h3{font-size:16px;font-weight:normal;line-height:28px;margin:14px 15px 6px 0}.creative-homepage-modal .modal-wrapper .info-container ul{list-style:none;margin:0 0 8px 80px;padding-top:4px;text-align:left}.creative-homepage-modal .modal-wrapper .info-container ul li:before{background:url(/collaboration/assets/media/getty/check_mark-110a0a15.svg) no-repeat;content:'';display:inline-block;height:13px;width:18px;margin-right:10px}.creative-homepage-modal .modal-wrapper .info-container ul li{font-size:13px;padding-bottom:10px}.creative-homepage-modal .modal-wrapper .actions-container{background-color:#eee;border-radius:0 0 2px 2px;height:116px;position:absolute;bottom:0;left:0;width:100%}.creative-homepage-modal .modal-wrapper .actions-container button{border-radius:2px;font-size:16px;height:43px;padding:0;margin:21px 0 0}.creative-homepage-modal .modal-wrapper .actions-container button.no-thanks{background-color:#fff;border:1px solid #979797;color:#666;margin-right:9px;width:26%}.creative-homepage-modal .modal-wrapper .actions-container button.no-thanks:hover{color:#333}.creative-homepage-modal .modal-wrapper .actions-container button.yes-please{background-color:#0099FF;color:#fff;margin-left:9px;width:49%}.creative-homepage-modal .modal-wrapper .actions-container button.yes-please:hover{background-color:#0a83d4}.creative-homepage-modal .modal-wrapper .actions-container button.yes-please.deutsch{width:59%}.creative-homepage-modal .modal-wrapper .actions-container p{clear:both;font-size:12px;padding:16px 0}.creative-homepage-modal .modal-wrapper .actions-container p a{text-decoration:none}.creative-homepage-modal .modal-wrapper .actions-container p a:hover{color:#0a83d4}.creative-homepage-modal .close-icon{background-image:url(/collaboration/assets/media/getty/close_icon_alt-8db4ebf2.svg);height:40px;right:-5px;top:-5px;width:40px;filter:none}.page-title-container{max-width:1280px;margin:0 auto}.page-title-container>div{float:left}.page-title-container start-page-toggle{float:right;padding:14px 8px 0 0}body.creative-images .fancy-grid{clear:both}}

gi-tooltip{position:relative;visibility:hidden;opacity:0;transition:visibility 0.2s ease-in-out, opacity 0.2s ease-in-out;z-index:199}

gi-tooltip.active{display:block;opacity:1;visibility:visible}

gi-tooltip.active.never-show{display:none}

gi-tooltip.never-show{display:none}

gi-tooltip .tooltip-container{background-color:#fff;border:1px solid #ccd3d3;box-shadow:-2px 2px 4px 0 rgba(0,0,0,0.2);border-radius:4px;color:black;display:none;font-size:.875rem;margin-top:-5px;min-height:40px;min-width:240px;padding:15px 12px;position:absolute;z-index:50;display:block;right:13px;top:10px}

gi-tooltip .tooltip-container .triangle{border:1px solid;padding:6px;border-color:transparent transparent #ccd3d3 #ccd3d3;background:#fff;bottom:0;height:0;left:97%;position:absolute;top:-1px;transform-origin:0 0;transform:rotate(-225deg);width:0}

gi-tooltip .tooltip-container .triangle.bottom{bottom:-10px;top:auto;transform:rotate(-45deg)}

gi-tooltip .tooltip-container .triangle.left{left:0px;top:15px;transform:rotate(45deg)}

gi-tooltip .tooltip-container .triangle.right{top:30px;right:0px;margin-left:3%;transform:rotate(225deg)}

gi-tooltip .tooltip-container .close-icon{color:#333;position:absolute;top:4px;right:6px;cursor:pointer}

gi-tooltip .tooltip-container .close-icon:after{font-size:1.25rem;font-family:GettyIcons;content:")"}

gi-tooltip .tooltip-container .tooltip-box{bottom:1px;color:white;display:none;font-size:.6875rem;font-weight:600;margin:0 10px 0 0px;padding:3px 8px;position:relative;text-transform:uppercase}

gi-tooltip .tooltip-container .tooltip-box.info-box{background-color:#02a388;display:inline}

gi-tooltip .tooltip-container .tooltip-box.alert-box{background-color:#D42020;display:inline;font-family:Roboto;font-size:.875rem;font-weight:bold;color:#fff;top:0px;padding-bottom:2px;border-radius:2px}

gi-tooltip .tooltip-container .title-text{display:inline-block;font-weight:normal;color:#333}

gi-tooltip .tooltip-container .info-text{display:inline-block;font-family:Roboto;font-size:.875rem;color:#333}

gi-tooltip h4{display:inline-block;font-weight:500;padding-bottom:20px}

gi-tooltip p{margin-bottom:0}

#toast-container{background-color:#FFFFFF;padding-bottom:63px}

#toast-container .toast .content{margin-top:8px}

#toast-container .toast .content .title{color:#353838;margin-top:6px;line-height:16px;font-size:14px}

#toast-container .toast .content .message{color:#09f;margin-top:4px;font-size:16px}

#toast-container .toast .thumbnail{border-color:#CCCCCC}

.toaster-section__no-gix{bottom:2rem;right:2rem;position:fixed;max-width:400px;top:auto}

.getty_toaster-modal-container{text-align:center}

.toaster-modal__title{font-size:20px}

.gettyModalClose{background-image:url(/collaboration/assets/media/icons/close_white-69f1d40d.svg);background-size:100%;cursor:pointer;position:absolute;right:10px;height:16px;width:16px}

.gettyModalClose::after{display:none}

@media screen and (max-width: 540px){.gettyModalClose{right:2rem;top:0;width:22px;height:22px}}

.gettyModalClose-dark{background-image:url(/collaboration/assets/media/icons/close_grey-b07b7500.svg)}

@-webkit-keyframes bounce-loader{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}

@keyframes bounce-loader{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}

.customer-messaging-banner{margin:1em 0}

.customer-messaging-banner .notifications{background-color:#F9F0BD;border-radius:5px;color:#000;padding:1em 2em;font-size:12px;line-height:18px}

.customer-messaging-banner span.learn-more{cursor:pointer;margin-left:.5em}

.customer-messaging-banner .learn-more__arrow{margin-left:.125em;height:8px}

.editorial-only-notice{margin:0px;outline:none;background-color:#FAEBB6;padding:6px 10px;text-align:center;letter-spacing:0.1px;line-height:14px;position:relative}

.editorial-only-notice .tooltip{color:#333333;margin:0 0 0 5px;line-height:16px}

.region_picker_popup_container{position:absolute;width:100%;height:100%;padding:1em 1.5em;font-size:125%}

.region_picker_popup_container h4{margin-bottom:0.5em}

.region_picker_popup_container .window_close{font-family:Roboto,sans-serif;font-weight:500;font-size:1.5em;color:#4CB7FF;margin-bottom:1em;padding:1em 0;display:block;border:1px solid gray;border-left:0;border-right:0;cursor:pointer}

.region_picker_popup_container .window_close:hover{text-decoration:underline}

.region_picker_popup_container .window_close:after{font-family:GettyIcons;content:'\e006';margin-left:0.5em}

.region_picker_popup_container .site_header{display:none}

.region_picker_popup_container .pickable_region_group{padding:0.5em}

@keyframes fadeInDown{from{opacity:0;transform:translate(-50%, -4px)}to{opacity:1;transform:translate(-50%, 0)}}

@keyframes fadeOutUp{from{opacity:1;transform:translate(-50%, 0)}to{opacity:0;transform:translate(-50%, -4px)}}

@-webkit-keyframes slideLeft{0%{transform:scaleX(0)}100%{transform:scaleX(1)}}

@keyframes slideLeft{0%{transform:scaleX(0)}100%{transform:scaleX(1)}}

div.ups-boards boards-menu ul{visibility:hidden;opacity:0;position:absolute;padding:0 0 5px 0;z-index:999;transition-property:all;transition-duration:.15s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1)}

div.ups-boards boards-menu ul li{display:block;height:31px;line-height:31px;list-style:none;position:static;background-color:none;transition-property:background-color;transition-duration:.3s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1)}

div.ups-boards boards-menu ul li a{display:block;text-decoration:none;vertical-align:text-bottom;position:relative}

div.ups-boards boards-menu ul li a span.board-title{display:inline-block;max-width:81%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

div.ups-boards boards-menu ul li a span.label{color:white;display:inline-block;float:right;opacity:0;font-size:11px;font-weight:100;line-height:14px;max-height:16px;margin-right:-6px;margin-top:8px;position:relative;vertical-align:middle;transition-property:margin-right, opacity;transition-duration:.15s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1)}

div.ups-boards boards-menu ul li a span.boards-team{background-repeat:no-repeat;display:inline-block;position:absolute;right:0;height:14px}

div.ups-boards boards-menu ul li:hover :nth-child(n+3){display:none}

div.ups-boards boards-menu ul li:hover span.label{margin-right:-2px;opacity:1}

div.ups-boards boards-menu ul li.headline{font-size:12px;font-weight:100;line-height:40px;text-transform:uppercase;vertical-align:text-bottom}

div.ups-boards boards-menu ul div.rectangle{height:1px}

div.ups-boards.open ul{visibility:visible;opacity:1;margin-bottom:0px}

@media screen and (max-width: 540px){.error_container .error_content{float:left;margin-left:0%;margin-right:0%;padding-left:4.6875%;padding-right:4.6875%;width:100%}.no-boxsizing .error_container .error_content,.error_container .no-boxsizing .error_content{width:290px}}

#footer{margin:0}

.main_body{max-width:none;padding:0;margin-top:51px}

@media screen and (min-width: 50em){html.superstrip-visible .main_body{margin-top:85px}}

@media screen and (min-width: 50em){html.pa-super-strip-visible .main_body{margin-top:85px}}

@media screen and (min-width: 50em){html.superstrip-visible.pa-super-strip-visible .main_body{margin-top:119px}}

@media screen and (max-width: 540px){.main_body{overflow-x:hidden}}

#site-header{margin-bottom:0;background-color:#fff;z-index:350}

#site-header #logo{margin-left:20px}

#sticky-superstrip{display:block}

#non-sticky-superstrip{display:none}

#site-header{height:51px}

@media screen and (min-width: 50em){html.superstrip-visible #site-header{height:85px}}

@media screen and (min-width: 50em){html.pa-super-strip-visible #site-header{height:85px}}

@media screen and (min-width: 50em){html.superstrip-visible.pa-super-strip-visible #site-header{height:119px}}

.slim-footer{padding-left:350px}

@media screen and (max-width: 540px){.slim-footer{padding-left:0px}}

.modal-boards{overflow:'hidden'}

.modal-boards .board.panel{z-index:1000}

.search_box .search_fields a.button,.search_box .search_fields button{width:auto}

button,a.button{font-size:1.16667em;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

.search_box .search_fields a.button,.search_box .search_fields button{width:auto}

button,a.button{font-size:1.16667em;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

button,a.button{font-size:1.16667em;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased;width:100%;padding:1em 1.5em;font-family:Roboto,sans-serif;font-weight:bold;text-transform:uppercase;font-weight:700;font-size:1.5em;letter-spacing:.06em}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

a.button{display:inline-block}

a.button:hover{text-decoration:none;cursor:pointer}

.search_box .search_fields a.button,.search_box .search_fields button{padding:0.55em 1.42857em;height:2.5em}

.search_box button{display:inline-block;min-width:1em}

.search_box button:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #cart-icon,.board .toolbar button.move-to-cart{display:inline-block;min-width:1em}

#site-header nav.actions #cart-icon:before,.board .toolbar button.move-to-cart:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #cart-icon:before,.board .toolbar button.move-to-cart:before{content:"";margin-left:-0.04em}

button.board-comments,.board .asset-grid.grid .selection-comments .comments-icon .icon{display:inline-block;min-width:1em}

button.board-comments:before,.board .asset-grid.grid .selection-comments .comments-icon .icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

button.board-comments:before,.board .asset-grid.grid .selection-comments .comments-icon .icon:before{content:"!"}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label{display:inline-block;min-width:1em}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{content:"1"}

.board-management section.column-names .down,section.set-list-headers .set-sort-by .dropdown-container,section.set-list-footers .set-sort-by .dropdown-container{display:inline-block;min-width:1em}

.board-management section.column-names .down:before,section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.column-names .down:before,section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{content:"⋁"}

.board .toolbar .more-actions>a{display:inline-block;min-width:1em}

.board .toolbar .more-actions>a:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .more-actions>a:after{content:"⋁"}

.image_pager .image_pager_left,.board-paging a.pre-page,.board-management-paging a.pre-page,.set-management-paging a.pre-page,.asset-modal .nav-arrows .prev-asset{display:inline-block;min-width:1em}

.image_pager .image_pager_left:before,.board-paging a.pre-page:before,.board-management-paging a.pre-page:before,.set-management-paging a.pre-page:before,.asset-modal .nav-arrows .prev-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.image_pager .image_pager_left:before,.board-paging a.pre-page:before,.board-management-paging a.pre-page:before,.set-management-paging a.pre-page:before,.asset-modal .nav-arrows .prev-asset:before{content:"⟨"}

.image_pager .image_pager_right,.board-paging a.next-page,.board-management-paging a.next-page,.set-management-paging a.next-page,.asset-modal .nav-arrows .next-asset{display:inline-block;min-width:1em}

.image_pager .image_pager_right:before,.board-paging a.next-page:before,.board-management-paging a.next-page:before,.set-management-paging a.next-page:before,.asset-modal .nav-arrows .next-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.image_pager .image_pager_right:before,.board-paging a.next-page:before,.board-management-paging a.next-page:before,.set-management-paging a.next-page:before,.asset-modal .nav-arrows .next-asset:before{content:"⟩"}

.board .toolbar .more-actions .menu{display:inline-block;min-width:1em}

.board .toolbar .more-actions .menu:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .more-actions .menu:after{content:"⟩"}

.board-management section.column-names .up{display:inline-block;min-width:1em}

.board-management section.column-names .up:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.column-names .up:before{content:"⋀"}

.board .toolbar .diag-modal .modalClose,.share-modal .modalBox .modalClose,.board-management section.board-list .board-item .delete-board,.board-management section.board-list .board-item .delete-board-desktop,.board .close,.panel .close,.keywords .keyword .remove-keyword,.board .board-item .remove,.asset-modal .close{display:inline-block;min-width:1em}

.board .toolbar .diag-modal .modalClose:before,.share-modal .modalBox .modalClose:before,.board-management section.board-list .board-item .delete-board:before,.board-management section.board-list .board-item .delete-board-desktop:before,.board .close:before,.panel .close:before,.keywords .keyword .remove-keyword:before,.board .board-item .remove:before,.asset-modal .close:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .diag-modal .modalClose:before,.share-modal .modalBox .modalClose:before,.board-management section.board-list .board-item .delete-board:before,.board-management section.board-list .board-item .delete-board-desktop:before,.board .close:before,.panel .close:before,.keywords .keyword .remove-keyword:before,.board .board-item .remove:before,.asset-modal .close:before{content:")";margin-left:-0.06em}

.board .asset-grid.grid .info-strip .download .download-asset:before{display:inline-block;min-width:1em}

.board .asset-grid.grid .info-strip .download .download-asset:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .asset-grid.grid .info-strip .download .download-asset:before{content:"D"}

.board .play,.asset-modal article .comp .play{display:inline-block;min-width:1em}

.board .play:before,.asset-modal article .comp .play:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .play:before,.asset-modal article .comp .play:before{content:"'"}

.board-management section.tab .plus,.board-content .side-panel .set-metadata .input-container span,.board-content .side-panel .set-metadata input.add-keyword{display:inline-block;min-width:1em}

.board-management section.tab .plus:before,.board-content .side-panel .set-metadata .input-container span:before,.board-content .side-panel .set-metadata input.add-keyword:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.tab .plus:before,.board-content .side-panel .set-metadata .input-container span:before,.board-content .side-panel .set-metadata input.add-keyword:before{content:"+"}

#site-header nav.actions #user #user-icon{display:inline-block;min-width:1em}

#site-header nav.actions #user #user-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #user #user-icon:before{content:","}

.board .toolbar button.clear-all,aside.comments .comment .delete-comment-icon,.delete-comment-icon{display:inline-block;min-width:1em}

.board .toolbar button.clear-all:before,aside.comments .comment .delete-comment-icon:before,.delete-comment-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar button.clear-all:before,aside.comments .comment .delete-comment-icon:before,.delete-comment-icon:before{content:""}

.board-open .panel .open-board,.board-open .panel .back-button,.board-open .board .open-board,.board-open .board .back-button,.board-content .side-panel .status{display:inline-block;min-width:1em}

.board-open .panel .open-board:after,.board-open .panel .back-button:after,.board-open .board .open-board:after,.board-open .board .back-button:after,.board-content .side-panel .status:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-open .panel .open-board:after,.board-open .panel .back-button:after,.board-open .board .open-board:after,.board-open .board .back-button:after,.board-content .side-panel .status:after{content:":"}

.board-content header button.create-set-button,.board-content header button.curation-status-button{display:inline-block;min-width:1em}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{content:"9"}

.board .toolbar .board-view-options label.grid{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.grid:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.grid:before{content:""}

.board .toolbar .board-view-options label.horiz-mosaic{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.horiz-mosaic:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.horiz-mosaic:before{content:""}

.board .toolbar .board-view-options label.vert-mosaic{display:inline-block;min-width:1em}

.board .toolbar .board-view-options label.vert-mosaic:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar .board-view-options label.vert-mosaic:before{content:""}

.add-search-within button.search-icon,.curated-search .tags-wrapper .input-container .search-submit,.add-search-within .search-box button.search-icon{display:inline-block;min-width:1em}

.add-search-within button.search-icon:before,.curated-search .tags-wrapper .input-container .search-submit:before,.add-search-within .search-box button.search-icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.add-search-within button.search-icon:before,.curated-search .tags-wrapper .input-container .search-submit:before,.add-search-within .search-box button.search-icon:before{content:'"'}

.board-management section.board-list .board-item .share-board{display:inline-block;min-width:1em}

.board-management section.board-list .board-item .share-board:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.board-list .board-item .share-board:after{content:""}

.board-management section.board-list .board-item .board-summary .board-name .pencil,.board-management section.board-list .board-item .board-summary .pencil{display:inline-block;min-width:1em}

.board-management section.board-list .board-item .board-summary .board-name .pencil:after,.board-management section.board-list .board-item .board-summary .pencil:after{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board-management section.board-list .board-item .board-summary .board-name .pencil:after,.board-management section.board-list .board-item .board-summary .pencil:after{content:""}

#site-header nav.actions #open_board span.icon{display:inline-block;min-width:1em}

#site-header nav.actions #open_board span.icon:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

#site-header nav.actions #open_board span.icon:before{content:""}

.contact_sheet_container .board-contact-sheet .header .site-logo{display:inline-block;min-width:1em}

.contact_sheet_container .board-contact-sheet .header .site-logo:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.contact_sheet_container .board-contact-sheet .header .site-logo:before{content:""}

.board .toolbar button.print-contact-sheet{display:inline-block;min-width:1em}

.board .toolbar button.print-contact-sheet:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}

.board .toolbar button.print-contact-sheet:before{content:""}

@-webkit-keyframes fadein{0%{opacity:0}20%{opacity:0}40%{opacity:0.3}60%{opacity:0.5}80%{opacity:0.9}100%{opacity:1}}

@-webkit-keyframes fadeout{0%{opacity:1}20%{opacity:0.9}40%{opacity:0.5}60%{opacity:0.3}80%{opacity:0}100%{opacity:0}}

@keyframes fadein{0%{opacity:0}20%{opacity:0}40%{opacity:0.3}60%{opacity:0.5}80%{opacity:0.9}100%{opacity:1}}

@keyframes fadeout{0%{opacity:1}20%{opacity:0.9}40%{opacity:0.5}60%{opacity:0.3}80%{opacity:0}100%{opacity:0}}

.board-details{margin-left:0;margin-right:0;margin:0 0 0 13px}

.board-details:after{content:" ";display:table;clear:both}

.board-details aside.board-comments{position:relative;float:left;width:100%;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;margin-top:7px;margin-right:10px;-webkit-animation:fadein 0.5s;animation:fadein 0.5s;display:block}

@media (min-width: 400px){.board-details aside.board-comments{float:left;width:100%}}

@media (min-width: 540px){.board-details aside.board-comments{float:left;width:50%}}

@media (min-width: 800px){.board-details aside.board-comments{float:left;width:33.33333%}}

@media (min-width: 1024px){.board-details aside.board-comments{float:left;width:25%}}

@media (min-width: 0){.board-details aside.board-comments{float:left}}

.board-details aside.board-comments.board-comments-closed{-webkit-animation:fadeout 0.5s;animation:fadeout 0.5s;display:none}

.board-details .asset-grid{position:relative;float:left;width:100%;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;min-height:initial}

@media (min-width: 400px){.board-details .asset-grid{float:left;width:100%}}

@media (min-width: 540px){.board-details .asset-grid{float:left;width:50%}}

@media (min-width: 800px){.board-details .asset-grid{float:left;width:66.66667%}}

@media (min-width: 1024px){.board-details .asset-grid{float:left;width:75%}}

.board-details .asset-grid.board-comments-closed{position:relative;float:left;width:100%;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;min-height:initial}

@media (min-width: 400px){.board-details .asset-grid.board-comments-closed{float:left;width:100%}}

@media (min-width: 540px){.board-details .asset-grid.board-comments-closed{float:left;width:100%}}

@media (min-width: 800px){.board-details .asset-grid.board-comments-closed{float:left;width:100%}}

@media (min-width: 1024px){.board-details .asset-grid.board-comments-closed{float:left;width:100%}}

aside.comments{padding:25px 25px 0;width:33%;font-size:1.5em}

aside.comments .close{font-size:18px;position:absolute;left:0}

aside.comments .comment{margin:0;padding:0 25px;position:relative;display:table;width:100%}

aside.comments .comment .comment-details{float:none;display:table-cell;vertical-align:top;padding:10px 10px 10px 0;max-width:150px}

aside.comments .comment .comment-details.swipe-to-left{width:60%}

aside.comments .comment .delete-mobile-view{float:none;display:table-cell;vertical-align:top;width:40%;display:none;vertical-align:middle;text-align:center;text-transform:uppercase}

@media screen and (max-width: 540px){aside.comments .comment .delete-mobile-view{display:table-cell}}

aside.comments .comment .comment-created-by{font-size:14px;overflow:hidden;text-overflow:ellipsis}

aside.comments .comment .comment-created-date{font-size:11px;line-height:16px;margin-left:3rem}

aside.comments .comment .comment-text{font-size:12px;line-height:18px;margin-left:3rem;width:80%;word-wrap:break-word}

aside.comments .comment .delete-comment-icon{cursor:pointer;font-size:22px;float:none;display:table-cell;width:10%;text-align:right;vertical-align:middle}

@media screen and (max-width: 540px){aside.comments .comment .delete-comment-icon{display:none}}

aside.comments .new-comment-section{margin:0 0 1.5em 0;padding:0 25px;width:100%}

aside.comments .new-comment-section textarea.new-comment{border:none;display:block;font-size:1rem;height:60px;line-height:1.5rem;margin:0.5em 0 0;padding:10px 20px;resize:none}

aside.comments .new-comment-section button.comment-add{font-size:1em;padding-bottom:inherit;padding-left:1em;padding-right:1em;padding-top:inherit;text-transform:uppercase}

button.board-comments{border:none;font-size:18px;font-weight:normal;width:auto;transition:all 0.25s}

button.board-comments:before{font-size:36px}

.board.overlay{left:0;visibility:hidden;opacity:0;overflow:hidden;position:fixed;width:100%;transition:height     0.5s ease-in-out 0s, opacity    0.7s ease-in-out 0s, visibility 0s   ease-in-out 0.5s;height:104px;top:51px}

.board-open .board.overlay{height:100%;visibility:visible;opacity:1;overflow:auto;transition:height  0.5s ease-in-out 0s, opacity 0.9s ease-in-out -0.3s}

@media screen and (max-width: 540px){.board-open .board.overlay{overflow-x:hidden}}

.board.overlay .board-item .remove{opacity:1}

@media screen and (min-width: 1375px){.board.overlay .board-item .remove{opacity:0}}

body.board-open{overflow:hidden}

.board article>section>.metadata{padding:1em 0 0 0.5em}

.board article>section>.metadata .board-name:hover+.pencil:before,.board article>section>.metadata .board-description:hover+.pencil:before{content:'\270e';font-family:"Lucida Grande","Arial Unicode MS", sans-serif;position:absolute;left:6px;font-size:20px}

.board article>section>.metadata .board-name:focus+.pencil:before{content:'' !important}

.board article>section>.metadata .board-name[disabled]+.pencil:before{content:'' !important}

.board article>section>.metadata.child-focused .pencil:before{content:'' !important}

.board article>section>.metadata .board-description:hover+.pencil:before{margin-top:-33px}

.board article>section>.metadata input[type=text],.board article>section>.metadata textarea{display:block;padding:0;height:auto;border:none;text-overflow:ellipsis;background-color:transparent;overflow:hidden;resize:none}

.board article>section>.metadata input[type=text],.board article>section>.metadata textarea{font-size:100%}

.board article>section>.metadata input[type=text][disabled=disabled]:focus,.board article>section>.metadata input[type=text][disabled=disabled]:hover,.board article>section>.metadata textarea[disabled=disabled]:focus,.board article>section>.metadata textarea[disabled=disabled]:hover{background-color:transparent}

.board article>section>.metadata input.board-name{width:30em;height:1.5em;line-height:1.5em;margin-left:6px;font-size:20px;float:left}

@media screen and (max-width: 800px){.board article>section>.metadata input.board-name{width:250px}}

@media screen and (max-width: 540px){.board article>section>.metadata input.board-name{width:auto}}

.board article>section>.metadata .showing-more div.description,.board article>section>.metadata .child-focused div.description{height:auto}

.board article>section>.metadata .showing-more textarea.description,.board article>section>.metadata .child-focused textarea.description{height:auto}

@media screen and (max-width: 800px){.board article>section>.metadata .showing-more textarea.description,.board article>section>.metadata .child-focused textarea.description{height:5.1em}}

@media screen and (max-width: 540px){.board article>section>.metadata .showing-more textarea.description,.board article>section>.metadata .child-focused textarea.description{height:8.2em}}

.board article>section>.metadata .board-description{margin-left:0;margin-right:0;margin-left:6px}

.board article>section>.metadata .board-description:after{content:" ";display:table;clear:both}

.board article>section>.metadata .board-description>span{position:relative;float:left;width:83.33333%;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;position:relative;min-height:1px;padding-left:0;padding-right:0;width:100%;position:relative;overflow:hidden;font-size:100%;line-height:normal}

@media (min-width: 400px){.board article>section>.metadata .board-description>span{float:left;width:83.33333%}}

@media (min-width: 540px){.board article>section>.metadata .board-description>span{float:left;width:83.33333%}}

@media (min-width: 800px){.board article>section>.metadata .board-description>span{float:left;width:83.33333%}}

.board article>section>.metadata .board-operations{float:right;padding:0.3em;position:relative;margin-right:20px}

@media screen and (max-width: 540px){.board article>section>.metadata .board-operations .delete-board{display:none}}

.board article>section>.metadata .byline{clear:both;margin-bottom:0.5em;margin-left:6px}

.board article>section>.metadata .board-created-date{margin-left:6px}

.board .toolbar{padding-top:0.5em;height:50px;position:relative}

.board .toolbar .add-search{position:absolute;bottom:40px;right:20px}

.board .toolbar .add-search form{position:relative;min-width:200px}

.board .toolbar .add-search form .spinner{top:8px;left:8px}

.board .toolbar .add-search form input.search{height:36px;margin:0px 5px;padding:8px;width:145px;position:relative}

.board .toolbar .add-search form input.search:focus{outline-style:none;box-shadow:none;border-color:transparent}

.board .toolbar .add-search form input.search:focus ~ button.search-icon{color:white;background-color:#666666}

.board .toolbar .add-search form input.search:focus ~ button.search-icon:hover,.board .toolbar .add-search form input.search:focus ~ button.search-icon:active{color:#666666;background-color:white}

.board .toolbar .add-search form input.search.ng-untouched ~ button.search-icon:hover,.board .toolbar .add-search form input.search.ng-untouched ~ button.search-icon:active{color:white;background-color:#ccc}

.board .toolbar .add-search form button.search-icon{height:36px;background-color:#ccc;font-size:1em;padding:1em 0.5em;width:auto;vertical-align:top;transition:background-color .15s ease}

.board .toolbar .add-search form button.search-icon:hover,.board .toolbar .add-search form button.search-icon:active{color:#666666;background-color:white}

@media screen and (max-width: 540px), screen and (max-width: 800px){.board .toolbar .add-search form{display:none}}

.board .toolbar button.outline,.board .toolbar a.outline{background:none;border:1px solid #ccc;color:#fff;cursor:pointer;font-size:24px;font-weight:200;margin-left:7px;padding:0;vertical-align:middle;height:30px;width:30px;position:relative;transition:all 0.25s}

.board .toolbar button.outline:before,.board .toolbar a.outline:before{position:absolute}

.board .toolbar button.outline:hover,.board .toolbar a.outline:hover{border:1px solid #999;background-color:#ccc;color:#000}

.board .toolbar button.outline[disabled],.board .toolbar button.outline.disabled,.board .toolbar a.outline[disabled],.board .toolbar a.outline.disabled{color:#333;border-color:#333}

.board .toolbar button.outline[disabled]:hover,.board .toolbar button.outline.disabled:hover,.board .toolbar a.outline[disabled]:hover,.board .toolbar a.outline.disabled:hover{background:none;border-color:#333}

.board .toolbar button.outline:before,.board .toolbar a.outline:before{font-size:36px}

.board .toolbar .board-share-button{text-align:right;float:left}

.board .toolbar .share{background-color:#666;color:#fff;margin-left:7px;float:left;font-size:1.16667rem;font-weight:300;min-width:60px;padding:9.5px 15px 11px 20px;text-transform:uppercase}

.board .toolbar .share i.download-icon{content:url(/collaboration/assets/media/getty/icon_menu_shared-30da60e9.svg);height:20px;margin:0em 0.7em -0.4em -0.5em;width:20px}

.board .toolbar .share:hover{background-color:#fff;color:#666}

.board .toolbar .share:hover i.download-icon{content:url(/collaboration/assets/media/getty/Share_onlight-ae0ee7d6.svg)}

@media screen and (min-width: 50em){.board .toolbar .share{display:inline-block}}

.board .toolbar .board-comments-button{text-align:right;float:left;margin:0 8px;text-transform:cap}

.board .toolbar .board-comments-button button.board-comments{background-color:#666;min-width:60px;padding:0 5px}

.board .toolbar .board-comments-button button.board-comments:hover{background-color:#fff}

.board .toolbar button.board-comments:hover{border:none}

.board .toolbar .board-view-options{float:left;font-size:125%}

.board .toolbar .board-view-options input{display:none}

.board .toolbar .board-view-options:last-child{border-right:none}

.board .toolbar .board-view-options label{color:#4d4d4d;padding:8px;height:40px}

.board .toolbar .board-view-options label:before{font-size:25px !important}

.board .toolbar .board-view-options label.grid{border-right:1px solid #333;padding-right:1em;margin-right:0.5em}

html.no-csscolumns .board .toolbar .board-view-options label.vert-mosaic{display:none}

.board .toolbar .board-view-options input:checked+label{color:#fff}

.board .toolbar .board-selection-options{float:left}

.board .toolbar .board-selection-options .select-all-assets,.board .toolbar .board-selection-options .clear-selection{border-right:1px solid #4d4d4d;padding-right:8px}

@media screen and (max-width: 800px){.board .toolbar .board-selection-options .select-all-assets,.board .toolbar .board-selection-options .clear-selection{border-right:none}}

.board .toolbar .board-selection-options .clear-selection{margin-left:8px}

.board .toolbar .board-selection-options .board-asset-count{margin-top:11px;display:inline-block}

.board .toolbar .board-selection-options .board-asset-count>span{padding:0 1em}

.board .toolbar .board-selection-options .board-asset-count .asset-count{display:inline-block;text-align:center;line-height:1.1;border-left:1px solid #4d4d4d;border-right:1px solid #4d4d4d}

.board .toolbar .board-selection-options .board-asset-count .total-asset-count{position:relative}

.board .toolbar .board-selection-options .board-asset-count .selected-asset-count{position:relative;display:block !important}

@media screen and (max-width: 800px){.board .toolbar .board-selection-options .board-asset-count{display:inline-block;text-align:center}}

.board .toolbar span.board-actions{whitespace:no-wrap;margin-left:5px}

.board .toolbar span.board-actions .callout{margin-right:5px}

@media screen and (max-width: 800px){.board .toolbar span.board-actions{display:block;padding-left:0.5em;margin-top:0.75em}}

.board .toolbar span.board-pager{display:inline-block}

@media screen and (min-width: 960px){.board .toolbar span.board-pager{float:right}}

.board .toolbar button.move-to-cart:before{left:-1px;bottom:-2px;font-size:32px}

.board .toolbar button.clear-all:before{left:1px;bottom:-2px;font-size:32px}

.board .toolbar button.print-contact-sheet:before{left:-2px;bottom:-2px;font-size:32px}

.board .toolbar .more-actions{position:relative;text-align:left}

.board .toolbar .more-actions *[disabled]{pointer-events:none}

.board .toolbar .more-actions a{color:#ccc;background-color:transparent;cursor:pointer}

.board .toolbar .more-actions a:hover,.board .toolbar .more-actions a:focus{text-decoration:none}

.board .toolbar .more-actions a[disabled],.board .toolbar .more-actions a.disabled{color:#333}

.board .toolbar .more-actions>a{color:#ccc;font-family:Roboto,sans-serif;font-size:13px;font-weight:normal;padding:5px 4px 0 12px;width:auto;text-transform:none}

.board .toolbar .more-actions>a:after{font-size:24px}

.board .toolbar .more-actions span:focus+ul,.board .toolbar .more-actions.child-focused>ul,.board .toolbar .more-actions li.child-focused>ul,.board .toolbar .more-actions.child-hover>ul,.board .toolbar .more-actions li.child-hover>ul{visibility:visible}

.board .toolbar .more-actions ul{visibility:hidden;position:absolute;top:2em;left:0.5em;z-index:120;width:100%;padding:0.5em 0;border:1px solid #1a1a1a;color:#ccc;background-color:black}

.board .toolbar .more-actions ul a{display:inline-block;height:100%;width:calc(100% + 2em);margin:0 -1em;padding:0.5em 1em}

.board .toolbar .more-actions ul ul{left:100%;top:-0.5em;max-height:60vh;overflow-y:scroll;width:auto}

.board .toolbar .more-actions .menu:after{position:absolute;right:0}

.board .toolbar .more-actions li:hover{color:#000;background-color:#ccc}

.board .toolbar .more-actions li:hover a,.board .toolbar .more-actions li:hover button{color:inherit}

.board .toolbar .more-actions li:hover a:hover{text-decoration:none}

.board .toolbar .more-actions li,.board .toolbar .more-actions h1{position:relative;padding:0em 1em}

.board .toolbar .more-actions h1{font-size:100%;color:#666;margin-top:0.75em;padding:0.5em 1em}

.board .toolbar .more-actions .new-board{font-weight:bold}

.board .toolbar .show-details{position:relative;display:inline;float:left}

.board .toolbar .show-details label{font-size:100%}

.board .toolbar .show-details .onoffswitch{top:-3px;position:absolute}

.board .toolbar .show-details .text{margin-left:40px}

.board .toolbar .show-details label.onoffswitch-label{margin-bottom:-0.5rem}

.board .toolbar .show-details label.text-label{margin-left:0.75em;color:#ccc;cursor:pointer}

.board .toolbar .show-details .radio-button{display:block;position:relative;float:left}

.board .toolbar .show-details .radio-button input[type=radio]{position:absolute;visibility:hidden}

.board .toolbar .show-details .radio-button label{display:block;position:relative;padding:1px 10px 0px 55px;margin:10px auto;height:30px;z-index:9;cursor:pointer}

.board .toolbar .show-details .radio-button label{color:#ccc}

.board .toolbar .show-details .radio-button .check{display:block;position:absolute;border:2px solid #AAAAAA;border-radius:100%;height:25px;width:25px;top:8px;left:20px;z-index:5}

.board .toolbar .show-details .radio-button .check{border:2px solid #FFFFFF}

.board .toolbar .show-details .radio-button .check::before{display:block;position:absolute;content:'';border-radius:100%;height:11px;width:11px;top:5px;left:5px;margin:auto}

.board .toolbar .show-details .radio-button input[type=radio]:checked ~ .check{border:2px solid #3dcd58}

.board .toolbar .show-details .radio-button input[type=radio]:checked ~ .check::before{background:#3dcd58}

.board .toolbar .diag-modal{position:fixed;z-index:1000;background-color:white;padding:2em;border:1em solid black;width:80%;top:50%;left:50%;margin:0;margin-right:-50%;transform:translate(-50%, -50%)}

.board .toolbar .diag-modal .modalClose{position:absolute;right:10px;top:10px;color:transparent}

.board .toolbar .diag-modal .modalClose:before{color:#4d4d4d;font-weight:600;font-size:30px}

.board .toolbar .diag-modal .modalClose:target{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}

.board .toolbar .diag-modal textarea{width:100%;height:10em}

.fieldSetBlock,fieldset ol>li,#site-header,#site-header nav.categories,#site-header nav.actions,.board .asset-grid.horiz-mosaic .asset-container{zoom:1}

.fieldSetBlock:before,fieldset ol>li:before,#site-header:before,#site-header nav.categories:before,#site-header nav.actions:before,.board .asset-grid.horiz-mosaic .asset-container:before,.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{content:"\0020";display:block;height:0;overflow:hidden}

.fieldSetBlock:after,fieldset ol>li:after,#site-header:after,#site-header nav.categories:after,#site-header nav.actions:after,.board .asset-grid.horiz-mosaic .asset-container:after{clear:both}

.board .asset-grid{margin:0 -10px;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}

.board .board-item{position:relative;page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid}

.board .board-item .board-item-image{padding:7px 7px 7px 10px;text-align:center;border-radius:3px}

.board .board-item:hover .remove{opacity:1;transition:opacity .25s}

html.touch .board .board-item .remove,html.touchevents .board .board-item .remove{opacity:1}

.board .board-item:hover .play.previewable{display:none}

.board .board-item .play{opacity:.6;position:absolute;bottom:50%;margin-bottom:19px;right:50%;margin-right:-12px;font-size:1.5em;text-align:center;line-height:1;height:28px;width:24px;cursor:pointer;text-decoration:none;top:127.5px;left:50%;transform:translateX(-50%);z-index:300}

.board .board-item .play:before{font-size:28px}

.board .board-item .remove{opacity:0;position:absolute;top:0;right:0;margin:6px;font-size:1.5em;text-align:center;line-height:1;height:28px;width:24px;cursor:pointer;text-decoration:none;z-index:100}

.board .board-item .remove:before{font-size:28px}

.board .board-item .board-item-image.offline,.board .board-item .board-item-image.missing{position:relative}

.board .board-item .board-item-image.offline img.board-asset,.board .board-item .board-item-image.missing img.board-asset{width:300px;height:300px}

.board .board-item .board-item-image.offline .offline-message,.board .board-item .board-item-image.missing .offline-message,.board .board-item .board-item-image.offline .asset-missing-message,.board .board-item .board-item-image.missing .asset-missing-message{position:absolute;top:7px;right:7px;bottom:11px;left:7px;padding:2em 1em 1em 1em}

.board .board-item .board-item-image.offline .offline-message,.board .board-item .board-item-image.missing .offline-message{line-height:1.5em}

.board .board-item .board-item-image.offline .collection,.board .board-item .board-item-image.missing .collection{margin-bottom:1em}

.board .board-item .board-item-image.offline .title,.board .board-item .board-item-image.missing .title{margin-bottom:1em}

.board .board-item .board-item-image.missing .title{font-weight:bold;line-height:0.5em}

.board .board-item .board-item-image.missing .asset-missing-message{padding-top:95px;line-height:0}

.board .asset-grid.grid .board-item{display:inline-block;vertical-align:top;margin:10px;width:320px}

.board .asset-grid.grid .board-item[draggable=true]:hover{cursor:move}

@media (max-width: 320px){.board .asset-grid.grid .board-item{width:100%;margin-left:0px;margin-right:0px}}

.board .asset-grid.grid .board-item-content{position:relative;border-radius:5px;padding:14px 14px 10px 14px;width:320px}

@media (max-width: 320px){.board .asset-grid.grid .board-item-content{width:100%}}

.board .asset-grid.grid .board-item-content .board-item-content-edge{position:absolute;top:30%;right:10px}

.board .asset-grid.grid .board-item-image{display:block;vertical-align:middle;height:280px;line-height:280px;width:290px;padding:0}

@media (max-width: 320px){.board .asset-grid.grid .board-item-image{width:100%}}

.board .asset-grid.grid .board-item-image.offline .offline-message,.board .asset-grid.grid .board-item .board-item-image.missing .offline-message,.board .board-item .asset-grid.grid .board-item-image.missing .offline-message{padding:0}

.board .asset-grid.grid img.board-asset,.board .asset-grid.grid video{max-height:calc(100% - 5px);max-width:calc(100% - 10px);vertical-align:middle}

.board .asset-grid.grid video{position:absolute;left:0;right:0;margin:0 auto}

.board .asset-grid.grid .info-strip{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:90%;padding-top:10px}

.board .asset-grid.grid .info-strip .asset-info{display:none;padding:5px 0;position:relative;height:29px}

.board .asset-grid.grid .info-strip .asset-info .license-type{padding:0.25em;margin-right:0.5em}

.board .asset-grid.grid .info-strip .asset-info .asset-id{position:absolute;right:0;-webkit-touch-callout:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}

.board .asset-grid.grid .info-strip .asset-info .asset-id:hover{cursor:text}

.board .asset-grid.grid .info-strip .artist{display:none;margin-top:7px;text-transform:capitalize}

.board .asset-grid.grid .info-strip .collection{display:none;margin-bottom:0.5em}

.board .asset-grid.grid .info-strip .download{height:2em}

.board .asset-grid.grid .info-strip .download .text{padding-top:0.4em;border-top:1px solid transparent}

.board .asset-grid.grid .info-strip .download .download-asset{cursor:pointer}

.board .asset-grid.grid .info-strip .download .download-asset:before{position:relative;bottom:1px;margin-left:-4px;font-size:18px}

.board .asset-grid.grid .info-strip .download .download-asset.view-only{color:#ccc;pointer:default}

.board .asset-grid.grid .info-strip .download .download-asset.view-only:before{display:none}

.board .asset-grid.grid .info-strip .details{display:none;text-align:left;white-space:normal;white-space:initial;overflow:hidden;padding:0.5em 0}

.board .asset-grid.grid .info-strip .details .text{height:15px;padding:0 0.1em}

.board .asset-grid.grid .info-strip .details .date-created{margin-right:0.75em}

.board .asset-grid.grid.show-details .info-strip .asset-info,.board .asset-grid.grid.show-details .details,.board .asset-grid.grid.show-details .artist,.board .asset-grid.grid.show-details .collection{display:block}

.board .asset-grid.grid.show-details .has-comments .comments-icon .count{display:none}

.board .asset-grid.grid.show-details .has-comments .comments-preview{display:inline}

.board .asset-grid.grid .asset-alt-caption{display:none;color:white;font-weight:300;font-size:14px;background-color:#333;height:110px;margin-bottom:10px;margin-top:5px;cursor:pointer}

.board .asset-grid.grid .asset-alt-caption .empty-caption{text-align:center;line-height:100px;color:#ccc;font-weight:400;font-size:14px}

.board .asset-grid.grid .asset-alt-caption .alt-caption{color:#ccc;padding:10px;text-overflow:ellipsis;-webkit-line-clamp:5;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;height:100px;font-weight:400;font-size:14px;white-space:pre-wrap}

.board .asset-grid.grid.show-captions .asset-alt-caption{display:block}

.board .asset-grid.grid .selection-comments{border-bottom:none;height:24px;padding-top:8px}

.board .asset-grid.grid .selection-comments .prior-download__container{float:right;margin-right:28px}

.board .asset-grid.grid .selection-comments .checkbox{float:right;position:relative;display:inline-block;bottom:5px;right:18px}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]{display:none}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]+label{display:inline-block;position:absolute;top:4px;width:18px;height:18px;vertical-align:middle;cursor:pointer}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{position:absolute;font-size:17px;left:0px;bottom:0px}

.board .asset-grid.grid .selection-comments .comments-icon{position:relative;text-align:center;margin-left:-8px;bottom:6px}

.board .asset-grid.grid .selection-comments .comments-icon .icon{font-size:24px;width:36px}

.board .asset-grid.grid .selection-comments .comments-icon .icon:before{position:absolute;top:-3px;left:0;font-size:36px}

.board .asset-grid.grid .selection-comments .comments-icon .count{display:inline-block;position:absolute;left:20px;top:-1px;border-radius:8px;min-width:16px}

.board .asset-grid.grid .comments-preview{display:none;cursor:pointer;font-size:8pt;line-height:1}

.board .asset-grid.grid .comments-preview .comment-text{max-width:235px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}

.board .asset-grid.grid .comments-preview .comment-text.has-more{max-width:190px}

.board .asset-grid.grid .comments-preview .comment-count{padding:0 0.5em;margin-left:0.75em;border-radius:1em;overflow:hidden}

.board .asset-grid.grid .board-item.compound img.board-asset{border-right:3px solid gray;border-bottom:3px solid gray;border-radius:15px}

.board .asset-grid.grid .board-item.compound .info-strip .artist,.board .asset-grid.grid .board-item.compound .info-strip .collection{display:none}

.board .asset-grid.grid .board-item.compound .info-strip .license-type{color:transparent}

.board .asset-grid.horiz-mosaic .asset-container{text-align:justify}

.board .asset-grid.horiz-mosaic .board-item{position:relative;display:inline-block}

.board .asset-grid.horiz-mosaic .board-item:hover .editorial-only-notice{display:block;width:auto;height:auto;padding:3px 5px;background-color:#FF5D00;color:white;position:absolute;font-size:11px;z-index:200}

.board .asset-grid.horiz-mosaic img.board-asset{height:300px;padding:0}

.board .asset-grid.horiz-mosaic video{position:absolute;left:3px;right:0;margin:0 auto}

.board .asset-grid.vert-mosaic{-moz-column-width:auto;column-width:auto;-moz-column-count:2;column-count:2;grid-column-gap:.5em;-moz-column-gap:.5em;column-gap:.5em}

.board .asset-grid.vert-mosaic img.board-asset{width:100%}

@media only screen and (min-width: 300px) and (max-width: 599px){.board .asset-grid.vert-mosaic{-moz-column-count:1;column-count:1}}

@media only screen and (min-width: 600px) and (max-width: 899px){.board .asset-grid.vert-mosaic{-moz-column-count:1;column-count:1}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:2;column-count:2}}

@media only screen and (min-width: 900px) and (max-width: 1199px){.board .asset-grid.vert-mosaic{-moz-column-count:2;column-count:2}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:3;column-count:3}}

@media only screen and (min-width: 1200px) and (max-width: 1499px){.board .asset-grid.vert-mosaic{-moz-column-count:3;column-count:3}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:4;column-count:4}}

@media only screen and (min-width: 1500px) and (max-width: 1799px){.board .asset-grid.vert-mosaic{-moz-column-count:4;column-count:4}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:5;column-count:5}}

@media only screen and (min-width: 1800px) and (max-width: 2099px){.board .asset-grid.vert-mosaic{-moz-column-count:5;column-count:5}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:6;column-count:6}}

@media only screen and (min-width: 2100px) and (max-width: 2399px){.board .asset-grid.vert-mosaic{-moz-column-count:6;column-count:6}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:7;column-count:7}}

@media only screen and (min-width: 2400px) and (max-width: 2699px){.board .asset-grid.vert-mosaic{-moz-column-count:7;column-count:7}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:8;column-count:8}}

@media only screen and (min-width: 2700px) and (max-width: 2999px){.board .asset-grid.vert-mosaic{-moz-column-count:8;column-count:8}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:9;column-count:9}}

@media only screen and (min-width: 3000px) and (max-width: 3299px){.board .asset-grid.vert-mosaic{-moz-column-count:9;column-count:9}.board .asset-grid.vert-mosaic.board-comments-closed{-moz-column-count:10;column-count:10}}

.board .board-item.placeholder{opacity:0}

.board .board-item .gap-left,.board .board-item .gap-right{display:none;position:absolute;top:-10px;width:340px;height:340px;z-index:500}

.board .board-item .gap-left.on-drag-enter,.board .board-item .gap-right.on-drag-enter{display:block}

.board .board-item .gap-right{right:-10px}

@media screen and (max-width: 540px){body.modalActive{position:fixed}}

.boards_container{background:#000}

.boards_container .site-width{width:auto;max-width:none}

.board{background:#000;color:#ccc;position:relative}

.board .board-content{min-height:800px;width:100%;height:100%;min-width:330px}

@media screen and (max-width: 540px){.board .board-content{min-width:100px}}

.board .board-content .panel-links{display:inline-block;width:25vw;float:left;padding:0;margin-right:15px}

.board .board-content .preview{height:33px;padding:8px;background:black;color:#fff}

.board .board-content .status{height:72px;background:#3dcd58;padding:25px}

.board .board-content .status h5{color:#fff;font-weight:100}

.board .board-content .panel-container{display:flex}

.board .board-content header{background-color:#3b3b3b;padding:32px 15px}

@media screen and (max-width: 540px){.board .board-content header{padding:35px 15px 15px 15px}}

.board .board-content button.close{height:35px;font-size:1.3em;font-weight:bolder;margin-left:0}

.board .board-content .link-widget{vertical-align:top}

.board .board-content .board-article{overflow-anchor:none;min-height:480px;height:calc(100% - 104px);padding-bottom:100px}

.board .board-content .board-article .board-pager{float:right}

.board .board-content .slim-article{margin-left:350px}

@media screen and (max-width: 540px){.board .board-content .slim-article{margin-left:0px}}

.board .board-content article.loaded{opacity:1;transition:opacity 2500ms}

@media screen and (max-width: 540px){.board .mobile-board-panel{margin-top:calc(100vh - 51px)}}

.board .deleted-board,.board .null-board{text-align:center}

.board .close,.panel .close{position:fixed;top:0;right:0;color:#fff;font-size:1.5em;cursor:pointer}

.board .close:hover,.panel .close:hover{text-decoration:none}

.board button,.board .button,.panel button,.panel .button{height:40px}

.content_wrapper #header-wrapper{transition:top .5s ease-in-out}

aside.modal.alt-caption-modal{display:none;font-family:Roboto,sans-serif}

aside.modal.alt-caption-modal div.modalBox{padding:2.5em;background-color:#3b3b3b;top:60px}

aside.modal.alt-caption-modal div.modalBox a.modalClose:after{color:white}

aside.modal.alt-caption-modal .alt-caption-content{padding:15px;background-color:#3b3b3b}

aside.modal.alt-caption-modal .alt-caption-content .title{color:#999;font-weight:bold;font-size:13px;padding-bottom:1px}

aside.modal.alt-caption-modal .alt-caption-content .content-item{color:white;padding-bottom:15px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row{margin-left:0;margin-right:0;zoom:1;padding-bottom:20px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row:before,aside.modal.alt-caption-modal .alt-caption-content .asset-row:after{content:"\0020";display:block;height:0;overflow:hidden}

aside.modal.alt-caption-modal .alt-caption-content .asset-row:after{clear:both}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image{position:relative;min-height:1px;padding-left:0;padding-right:0}

@media (min-width: 400px){aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image{float:left;width:25%}}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content{padding-right:20px;font-size:10px;color:#999}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content img{height:200px;margin:0 auto;width:100%;-o-object-fit:contain;object-fit:contain}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-missing-message{margin:0 auto;width:100%;height:125px;color:grey;font-size:12px;background:transparent;line-height:1.0;text-align:center}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-missing-message .title{color:white;padding-top:15px;font-size:20px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-missing-message .subtitle{padding-top:10px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-info{padding-top:5px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-info .license-type{color:white;background-color:#333;border:black 1px solid;font-weight:bold;padding:3px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-info .asset-family{margin-left:5px;margin-right:5px}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-image .asset-image-content .asset-info .asset-id{float:right}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-caption{position:relative;min-height:1px;padding-left:0;padding-right:0}

@media (min-width: 400px){aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-caption{float:left;width:75%}}

aside.modal.alt-caption-modal .alt-caption-content .asset-row .asset-caption .asset-caption-content{padding-left:20px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row{margin-left:0;margin-right:0;zoom:1}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row:before,aside.modal.alt-caption-modal .alt-caption-content .asset-details-row:after{content:"\0020";display:block;height:0;overflow:hidden}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row:after{clear:both}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .asset-details{position:relative;min-height:1px;padding-left:0;padding-right:0}

@media (min-width: 400px){aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .asset-details{float:left;width:25%}}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .asset-details .asset-details-content{padding-right:20px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form{position:relative;min-height:1px;padding-left:0;padding-right:0}

@media (min-width: 400px){aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form{float:left;width:75%}}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form form{margin:0px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form .alt-caption-form-content{padding-left:20px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form .alt-caption-form-content textarea{width:100%;height:140px;background-color:#D8D8D8;color:#3b3b3b;padding:10px;font-size:14px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form .alt-caption-form-content .button-bar{padding-top:10px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form .alt-caption-form-content .button-bar button{width:49%;line-height:0px}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form .alt-caption-form-content .button-bar .secondary{float:left;color:#3b3b3b;background-color:white}

aside.modal.alt-caption-modal .alt-caption-content .asset-details-row .alt-caption-form .alt-caption-form-content .button-bar .primary{float:right}

body.modal-visible{overflow:hidden}

.modal,.dropbox-intro-modal,aside.modal.alt-caption-modal,.identify-modal,.share-modal,.more-actions-modal,.choose-board-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:1000;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;display:none;visibility:hidden;pointer-events:none}

.modal:target,.dropbox-intro-modal:target,aside.modal.alt-caption-modal:target,.identify-modal:target,.share-modal:target,.more-actions-modal:target,.choose-board-modal:target{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1;pointer-events:auto;display:block;visibility:visible}

.no-rgba .modal,.no-rgba .dropbox-intro-modal,.no-rgba aside.modal.alt-caption-modal,.no-rgba .identify-modal,.no-rgba .share-modal,.no-rgba .more-actions-modal,.no-rgba .choose-board-modal{background:url(/collaboration/assets/media/images/modalBackground-0826b3f7.png);filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/modalBackground.png',sizingMethod='scale')}

.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{width:80%;max-width:80em;position:relative;margin:2rem auto auto;padding:10 20 20;background:#fff}

@media screen and (max-width: 540px){.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;padding-top:50;margin:0;border:none}.modal .modalBox .assetListing:first-child,.dropbox-intro-modal .modalBox .assetListing:first-child,.identify-modal .modalBox .assetListing:first-child,.share-modal .modalBox .assetListing:first-child,.more-actions-modal .modalBox .assetListing:first-child,.choose-board-modal .modalBox .assetListing:first-child{padding-top:0}}

.modal a.modalClose,.dropbox-intro-modal a.modalClose,.identify-modal a.modalClose,.share-modal a.modalClose,.more-actions-modal a.modalClose,.choose-board-modal a.modalClose{position:absolute;right:0.75em;top:1.5em;color:transparent;cursor:pointer}

.modal a.modalClose:after,.dropbox-intro-modal a.modalClose:after,.identify-modal a.modalClose:after,.share-modal a.modalClose:after,.more-actions-modal a.modalClose:after,.choose-board-modal a.modalClose:after{content:")";text-decoration:none;font-family:GettyIcons;font-size:36px;color:#000}

.modal a.modalClose svg,.dropbox-intro-modal a.modalClose svg,.identify-modal a.modalClose svg,.share-modal a.modalClose svg,.more-actions-modal a.modalClose svg,.choose-board-modal a.modalClose svg{display:none}

.active.modal,.active.dropbox-intro-modal,aside.active.modal.alt-caption-modal,.active.identify-modal,.active.share-modal,.active.more-actions-modal,.active.choose-board-modal{opacity:1;pointer-events:auto;display:block;visibility:visible}

.identify-modal{display:none;font-weight:100}

.identify-modal .identify button{width:100%}

.identify-modal .account-actions{padding-top:2em;text-align:center;margin-left:0;margin-right:0;zoom:1}

.identify-modal .account-actions:before,.identify-modal .account-actions:after{content:"\0020";display:block;height:0;overflow:hidden}

.identify-modal .account-actions:after{clear:both}

.identify-modal .account-actions h6{padding-bottom:0.5em}

.identify-modal .account-actions .sign-in,.identify-modal .account-actions .register{position:relative;min-height:1px;padding-left:0;padding-right:0;padding:1em}

@media (min-width: 400px){.identify-modal .account-actions .sign-in,.identify-modal .account-actions .register{float:left;width:50%}}

.identify-modal .modalBox{max-width:50em;padding:2.5em}

.share-modal{display:none;text-transform:none;text-transform:initial;text-align:left;color:#1a1a1a;transform-style:preserve-3d}

.share-modal .modalBox{max-width:50em;padding-top:15px}

.share-modal .modalBox .modalClose{right:10px;top:10px}

.share-modal .modalBox .modalClose:before{background-color:transparent;color:#4d4d4d;font-weight:100;font-size:36px;width:auto}

.share-modal .modalBox .modalClose:after{content:'' !important;background-color:transparent !important}

.share-modal h3{padding-bottom:0.5em;color:#1a1a1a}

.share-modal h6{padding-bottom:0.5em;margin-bottom:0.3em;color:#1a1a1a}

.share-modal input[type=text]{font-size:1em}

.share-modal .invite{border-bottom:1px solid #4d4d4d;padding-bottom:2em;margin-bottom:1.5em}

.share-modal .invite .button{height:auto;text-transform:none}

.asset_detail_container.elite .share-modal h3,.asset_detail_container.elite .share-modal h6{color:#1a1a1a}

.actions-modal-button{display:inline-block;font-weight:normal;height:auto !important;outline:none;position:relative;text-transform:none;top:1px;width:auto}

.actions-modal-button[disabled],.actions-modal-button.disabled{background:none;border-color:#333;color:#333}

.actions-modal-button[disabled]:hover,.actions-modal-button.disabled:hover{background:none;border-color:#333;color:#333}

.more-actions-modal.modal{top:0}

.more-actions-modal .modalBox{overflow-y:auto;padding:0.625em 1.25em 1.25em}

@media screen and (min-width: 800px){.more-actions-modal .modalBox{margin-bottom:50px}}

.more-actions-modal h1{outline:none;padding:20px;text-align:center}

.more-actions-modal .option-container{border:1px solid black;border-bottom:none;cursor:pointer}

.more-actions-modal .option-container:last-child{border-bottom:1px solid black}

.more-actions-modal .option-container h2{padding:20px}

.more-actions-modal .option-container .board-list h3,.more-actions-modal .option-container .board-list li{display:block;padding:3px 20px}

.more-actions-modal .option-container .new-board{display:block;margin-top:-5px;margin-bottom:10px;padding:10px 20px}

.more-actions-modal .options-list{margin:0;overflow:hidden;transition:height  0.25s ease-in-out 0s}

.more-actions-modal .option-list-container{display:block}

.more-actions-modal .option-active:hover{background-color:white !important}

.more-actions-modal .option-active .options-list{height:100%}

.more-actions-modal .board-list{padding-bottom:20px}

.more-actions-modal .board-list a{display:block}

.asset-modal{position:fixed;overflow-y:auto;top:0px;left:0;right:0;bottom:0;background:rgba(204,204,204,0.95);z-index:1000}

.asset-modal article{width:calc(100% - 363px);float:left;text-align:center;position:absolute;padding:4em;overflow:hidden;top:50%;transform:translateY(-50%)}

.asset-modal article .content{opacity:1;transition:opacity 0.1s;height:100%}

.asset-modal article .content.loading{opacity:0}

.asset-modal article .comp{position:relative}

.asset-modal article .comp .play{opacity:1;position:absolute;bottom:50%;margin-bottom:-14px;right:50%;margin-right:-12px;background:rgba(0,0,0,0.5);font-size:1.5em;text-align:center;line-height:1;height:28px;width:24px;color:#fff;cursor:pointer;text-decoration:none;z-index:1000}

.asset-modal article .comp .play:before{font-size:28px}

.asset-modal article .comp.missing{top:50%;color:black}

.asset-modal article .comp.missing .title{font-weight:bold}

.asset-modal .close{position:absolute;right:20px;top:65px;width:26px;height:26px;padding-left:1px;line-height:1;color:white;z-index:1000}

.asset-modal aside.comments{padding:50px 0;display:block !important;width:363px;min-height:100%;float:right}

.asset-modal aside.comments .close{display:none}

.asset-modal .metadata{margin-top:0;padding-top:0;margin-left:auto;margin-right:auto;position:relative;max-width:40em;color:#000}

.asset-modal .metadata .title{margin:0.5em 0}

.asset-modal .metadata .license-type,.asset-modal .metadata .artist{font-weight:bold;margin-right:2em}

.asset-modal .nav-arrows .prev-asset,.asset-modal .nav-arrows .next-asset{top:50%;transform:translateY(-50%);position:absolute;font-size:400%;cursor:pointer}

@media screen and (max-width: 800px){.asset-modal article{width:100%;float:none;text-align:center;position:relative;transform:none}.asset-modal aside.comments{float:none;width:100%}.asset-modal .nav-arrows .prev-asset,.asset-modal .nav-arrows .next-asset{top:4em;transform:none}}

.board-management section{width:100%}

.board-management section .content{margin:0 auto;float:none}

.board-management section.tab{background-color:#333;color:#fff;height:4em;font-size:14px}

.board-management section.tab li{cursor:pointer;float:left;line-height:2em;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

.board-management section.tab li.active{background-color:#f7f7f7;color:#333}

.board-management section.tab li:last-child{float:right}

.board-management section.tab li .board-count,.board-management section.tab li .set-count{font-size:24px;position:relative;top:0.25em;height:28px}

.board-management section.tab li .plus{top:0;background:transparent;font-size:24px;font-weight:bold}

.board-management section.board-sort-by{border-bottom:1px solid #ccc;padding:0 12px}

.board-management section.board-sort-by select{border:none;height:3em}

.board-management section.column-names .board-name-column,.board-management section.column-names .last-updated-date-column{cursor:pointer}

@media screen and (max-width: 720px){.board-management section{width:auto}.board-management section.tab li{width:33%;line-height:2em;border-right:1px solid #f7f7f7}.board-management section.tab li:last-child{border:none}}

@media screen and (max-width: 720px) and (max-width: 800px){.board-management section.tab .hidden-tab{display:none}}

@media screen and (max-width: 720px){.board-management section.tab .mobile{line-height:0.9em}.board-management section.tab .desktop{display:none}.board-management section.column-names{display:none}.board-management section.board-list .board-item{height:160px;padding:0 20px}.board-management section.board-list .board-item .board-thumbnail{width:100px;height:100px;top:30px;line-height:99px}.board-management section.board-list .board-item .board-thumbnail img{max-height:100px}.board-management section.board-list .board-item .board-thumbnail img.no-thumbnail{width:100px;height:100px}.board-management section.board-list .board-item .board-summary{line-height:20px;padding:27px 0 0 20px;width:70%}.board-management section.board-list .board-item .board-summary .board-name{padding-bottom:5px}.board-management section.board-list .board-item .board-summary .board-name .text{max-width:77%}.board-management section.board-list .board-item .board-summary .rename-board{top:27px}.board-management section.board-list .board-item .board-summary .board-image-count,.board-management section.board-list .board-item .board-summary .board-comments-count{text-transform:lowercase}.board-management section.board-list .board-item .board-summary .board-image-count span:before,.board-management section.board-list .board-item .board-summary .board-comments-count span:before{content:" "}.board-management section.board-list .board-item.swipe-to-left{width:120%;left:-20%}.board-management section.board-list .board-item .delete-board{float:right;padding-top:60px;color:#fff;background-color:#4CB7FF;width:3em;height:100%;text-align:center;border-left:1px solid #ccc}.board-management section.board-list .board-item .share-board{line-height:160px;right:16px}}

@media screen and (min-width: 720px){.board-management section.board-sort-by{display:none}.board-management section.tab li{width:12em}.board-management section.tab li:last-child{line-height:4em}.board-management section.tab li .plus{font-size:16px}.board-management section.tab .mobile{display:none}.board-management section.column-names{display:block;background-color:#f7f7f7;border-bottom:1px solid #ccc;height:40px;line-height:40px;vertical-align:middle;font-weight:bold;color:black}.board-management section.column-names .content{padding-left:16px}.board-management section.column-names .content div{float:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.board-management section.board-list{background-color:#f2f2f2}.board-management section.board-list .content .board-item{height:152px;padding:0 16px}.board-management section.board-list .content .board-item:hover{background-color:#f7f7f7}.board-management section.board-list .content .board-item .board-thumbnail{width:120px;height:120px;top:16px;line-height:119px}.board-management section.board-list .content .board-item .board-thumbnail img{max-height:120px}.board-management section.board-list .content .board-item .board-thumbnail img.no-thumbnail{width:120px;height:120px}.board-management section.board-list .content .board-item .board-summary{padding:36px 0 0 20px;position:absolute;left:136px;width:80%}.board-management section.board-list .content .board-item .board-summary>div{float:left;height:80px;line-height:80px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.board-management section.board-list .content .board-item .board-summary .board-name{width:32%}.board-management section.board-list .content .board-item .board-summary .board-name .text{max-width:80%}.board-management section.board-list .content .board-item .board-summary .last-updated-date{width:25.5%}.board-management section.board-list .content .board-item .board-summary .owner{width:20%}.board-management section.board-list .content .board-item .board-summary .board-image-count,.board-management section.board-list .content .board-item .board-summary .board-comments-count{width:10%}.board-management section.board-list .content .board-item .board-summary .board-image-count span,.board-management section.board-list .content .board-item .board-summary .board-comments-count span{display:none}.board-management section.board-list .content .board-item .board-summary .rename-board{top:60px;left:20px}.board-management section.board-list .content .board-item .share-board{line-height:152px;right:36px}.board-management section.board-list .content .board-item:hover .delete-board-desktop{display:block}.board-management .board-thumbnail-column{width:140px}.board-management .board-name-column{width:25%}.board-management .last-updated-date-column{width:20%}.board-management .owner-column{width:16%}.board-management .board-image-count-column{width:8%}}

.board-management section.board-list .board-item{border-bottom:1px solid #ccc;position:relative}

.board-management section.board-list .board-item .board-thumbnail{background-color:#f2f2f2;float:left;cursor:pointer;position:relative;text-align:center}

.board-management section.board-list .board-item .board-thumbnail img{vertical-align:middle}

.board-management section.board-list .board-item .board-summary{float:left;color:black;font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

.board-management section.board-list .board-item .board-summary form{margin:0}

.board-management section.board-list .board-item .board-summary .board-name{font-size:16px;font-weight:bold;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}

.board-management section.board-list .board-item .board-summary .board-name .text{float:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:black;text-decoration:none}

.board-management section.board-list .board-item .board-summary .board-name .pencil{cursor:pointer;color:#ccc;font-weight:normal;padding-left:0.5em;position:relative;bottom:3px}

.board-management section.board-list .board-item .board-summary .rename-board{position:absolute}

.board-management section.board-list .board-item .board-summary .rename-board input{font-size:18px;width:80%;height:auto}

@media screen and (min-width: 1100px){.board-management section.board-list .board-item .board-summary .rename-board input{width:100%}}

.board-management section.board-list .board-item .board-summary .board-image-count{color:#4CB7FF;cursor:pointer}

.board-management section.board-list .board-item .share-board{cursor:pointer;float:right;font-size:24px;color:black;position:absolute}

.board-management section.board-list .board-item .delete-board,.board-management section.board-list .board-item .delete-board-desktop{font-size:24px;position:absolute;right:0;cursor:pointer;z-index:10}

.board-management section.board-list .board-item .delete-board-desktop{display:none}

.create-board-modal{background:rgba(0,0,0,0.8);bottom:0;left:0;top:0;position:fixed;right:0;z-index:1000;pointer-events:auto}

.create-board-modal.ng-hide-add,.create-board-modal.ng-hide-remove{transition-property:opacity;-webkit-transition-property:opacity;transition-duration:.3s;-webkit-transition-duration:.3s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);-webkit-transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);display:block !important}

.create-board-modal.ng-hide{opacity:0}

.create-board-modal .modalBox{background-color:white;left:50%;margin:0 auto auto;position:fixed;right:auto;bottom:auto;text-align:center;padding:24px 24px;transform:translate(-50%, -50%);top:50%;width:450px}

.create-board-modal .modalBox.ng-hide{margin-top:-2%}

@media screen and (max-width: 540px){.create-board-modal .modalBox{height:100%;width:100%;margin-top:0}.create-board-modal .modalBox .content,.create-board-modal .modalBox .enter-board-name,.create-board-modal .modalBox .button{width:80%;margin:auto}}

@media screen and (min-width: 800px){.create-board-modal .modalBox{border-radius:2px;height:auto;padding:30px 45px}}

.create-board-modal .modalBox.ng-hide-add,.create-board-modal .modalBox.ng-hide-remove{transition-property:margin-top;-webkit-transition-property:margin-top;transition-duration:.3s;-webkit-transition-duration:.3s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);-webkit-transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);display:block !important}

.create-board-modal .modalBox .title h3{padding:0 50px}

.create-board-modal .modalBox .title .modalClose{background-image:url(/collaboration/assets/media/icons/close_white-69f1d40d.svg)}

.create-board-modal .modalBox .content{margin:0 auto;padding:10px 0;color:#333}

.create-board-modal .modalBox .create-new-board{display:inline;margin:0 auto;position:relative}

.create-board-modal .modalBox .create-new-board>*{margin-top:12px}

.create-board-modal .modalBox .create-new-board a.button{display:block;box-shadow:inset 0 0 1px 2px rgba(255,255,255,0.2);font-size:16px;opacity:1;max-width:80%;margin-top:12px;margin-left:auto;margin-right:auto}

.create-board-modal .modalBox .create-new-board input{max-width:80%;display:block;margin-top:12px;margin-left:auto;margin-right:auto}

.create-board-modal .modalBox .create-new-board input.ng-invalid ~ a.button{cursor:default;border:none;opacity:.6}

@media screen and (max-width: 800px){.create-board-modal .modalBox .title a.modalClose{background-image:url(/collaboration/assets/media/icons/close_grey-b07b7500.svg);height:16px;width:16px;right:30px;top:20px}}

body.modal-visible{overflow:hidden}

.modal,.dropbox-intro-modal,aside.modal.alt-caption-modal,.identify-modal,.share-modal,.more-actions-modal,.choose-board-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.5);z-index:1000;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;display:none;visibility:hidden;pointer-events:none}

.modal:target,.dropbox-intro-modal:target,aside.modal.alt-caption-modal:target,.identify-modal:target,.share-modal:target,.more-actions-modal:target,.choose-board-modal:target{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1;pointer-events:auto;display:block;visibility:visible}

.no-rgba .modal,.no-rgba .dropbox-intro-modal,.no-rgba aside.modal.alt-caption-modal,.no-rgba .identify-modal,.no-rgba .share-modal,.no-rgba .more-actions-modal,.no-rgba .choose-board-modal{background:url(/collaboration/assets/media/images/modalBackground-0826b3f7.png);filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/modalBackground.png',sizingMethod='scale')}

.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{width:80%;max-width:80em;position:relative;margin:2rem auto auto;padding:10 20 20;background:#fff}

@media screen and (max-width: 540px){.modal .modalBox,.dropbox-intro-modal .modalBox,aside.modal.alt-caption-modal .modalBox,.identify-modal .modalBox,.share-modal .modalBox,.more-actions-modal .modalBox,.choose-board-modal .modalBox{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;padding-top:50;margin:0;border:none}.modal .modalBox .assetListing:first-child,.dropbox-intro-modal .modalBox .assetListing:first-child,.identify-modal .modalBox .assetListing:first-child,.share-modal .modalBox .assetListing:first-child,.more-actions-modal .modalBox .assetListing:first-child,.choose-board-modal .modalBox .assetListing:first-child{padding-top:0}}

.modal a.modalClose,.dropbox-intro-modal a.modalClose,.identify-modal a.modalClose,.share-modal a.modalClose,.more-actions-modal a.modalClose,.choose-board-modal a.modalClose{position:absolute;right:0.75em;top:1.5em;color:transparent;cursor:pointer}

.modal a.modalClose:after,.dropbox-intro-modal a.modalClose:after,.identify-modal a.modalClose:after,.share-modal a.modalClose:after,.more-actions-modal a.modalClose:after,.choose-board-modal a.modalClose:after{content:")";text-decoration:none;font-family:GettyIcons;font-size:36px;color:#000}

.modal a.modalClose svg,.dropbox-intro-modal a.modalClose svg,.identify-modal a.modalClose svg,.share-modal a.modalClose svg,.more-actions-modal a.modalClose svg,.choose-board-modal a.modalClose svg{display:none}

.active.modal,.active.dropbox-intro-modal,aside.active.modal.alt-caption-modal,.active.identify-modal,.active.share-modal,.active.more-actions-modal,.active.choose-board-modal{opacity:1;pointer-events:auto;display:block;visibility:visible}

.choose-board-modal{font-weight:100;background:rgba(0,0,0,0.8);bottom:0;left:0;top:0 !important;right:0;position:fixed;visibility:visible !important}

.choose-board-modal.ng-hide-add,.choose-board-modal.ng-hide-remove{transition-property:opacity;-webkit-transition-property:opacity;transition-duration:.3s;-webkit-transition-duration:.3s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);-webkit-transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);display:block !important}

.choose-board-modal.ng-hide{opacity:0}

.choose-board-modal .modalBox{height:300px;width:450px;border-radius:2px;left:50%;top:50%;margin:0 auto auto;opacity:1;padding:24px;position:fixed;transform:translate(-50%, -50%)}

.choose-board-modal .modalBox.ng-hide{margin-top:-2%;opacity:0}

.choose-board-modal .modalBox.ng-hide-add,.choose-board-modal .modalBox.ng-hide-remove{transition-property:margin-top;-webkit-transition-property:margin-top;transition-duration:.3s;-webkit-transition-duration:.3s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);-webkit-transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1);display:block !important}

.choose-board-modal .modalBox.save-to-new-board{min-height:215px}

.choose-board-modal .modalBox .modalClose{background-image:url(/collaboration/assets/media/icons/close_white-69f1d40d.svg);background-size:100%;cursor:pointer;font-size:27px;position:absolute;right:-20px;top:-20px;height:16px;width:16px}

.choose-board-modal .modalBox .modalClose::after{display:none}

.choose-board-modal .modalBox .title{text-align:center;padding-bottom:24px}

.choose-board-modal .modalBox .container{display:flex}

.choose-board-modal .modalBox .container .thumbnail{width:136px;height:120px;border:1px solid #ADB9BA;margin-right:16px;display:flex;align-items:center;justify-content:center;overflow:hidden}

.choose-board-modal .modalBox .container .thumbnail img{max-height:100%}

.choose-board-modal .modalBox .container .search-container,.choose-board-modal .modalBox .container .save-container{text-align:center;width:250px}

.choose-board-modal .modalBox .container .search-container input,.choose-board-modal .modalBox .container .save-container input{width:250px;height:43px;outline:none;margin-bottom:8px}

.choose-board-modal .modalBox .container .search-container input:invalid,.choose-board-modal .modalBox .container .save-container input:invalid{box-shadow:none}

.choose-board-modal .modalBox .container .search-container a,.choose-board-modal .modalBox .container .save-container a{cursor:pointer}

.choose-board-modal .modalBox .container .search-container ul,.choose-board-modal .modalBox .container .save-container ul{margin-bottom:14px;text-align:left}

.choose-board-modal .modalBox .container .search-container ul .no-board,.choose-board-modal .modalBox .container .save-container ul .no-board{padding:4px 12px}

.choose-board-modal .modalBox .container .search-container input{background-image:url(/collaboration/assets/media/istock/search-93b49217.svg);background-repeat:no-repeat;background-position:10px;background-size:18px 20px}

.choose-board-modal .modalBox .container .search-container ul.board-list{width:250px;height:125px;border:1px solid #ADB9BA;overflow-y:auto}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item:hover{cursor:pointer}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item:hover .save-bubble{display:block}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item .board-name{margin-left:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item .save-bubble{position:absolute;right:0;top:0;height:22px}

.choose-board-modal .modalBox .container .search-container ul.board-list .more-than-hundred-boards{padding:8px}

.choose-board-modal .modalBox .container .save-container a.button{border-radius:2px;color:white;cursor:pointer;display:inline-block;font-size:16px;font-weight:400;position:relative;text-align:center;text-decoration:none;width:250px;height:43px;-webkit-appearance:initial}

.add-search-within .search-box input{width:100%}

.add-search-within .search-box input.spinner_applied+button{visibility:hidden}

.add-search-within .search-box .search-clear{display:none}

.add-search-within button.search-icon{position:absolute;background-color:transparent;font-size:3em}

.add-search-within .spinner{right:56px;top:-15px}

.add-search-within form{margin:0;display:inline;position:relative}

.board.overlay{top:51px}

@media screen and (min-width: 50em){html.superstrip-visible .board.overlay{top:85px}}

@media screen and (min-width: 50em){html.pa-super-strip-visible .board.overlay{top:85px}}

@media screen and (min-width: 50em){html.superstrip-visible.pa-super-strip-visible .board.overlay{top:119px}}

section.set-list .content.loading{opacity:0.3}

section.set-list li.curated-set-item{height:auto;margin:15px 25px;border:1px solid #ccc}

@media screen and (max-width: 800px){section.set-list li.curated-set-item{padding:25px;margin:0;border:none;border-bottom:1px solid #ccc}}

section.set-list li.curated-set-item img{position:absolute;display:inline-block;width:112px;height:112px;border-right:1px solid #ccc;-o-object-fit:contain;object-fit:contain}

@media screen and (max-width: 800px){section.set-list li.curated-set-item img{border:1px solid #ccc}}

section.set-list li.curated-set-item .no-image{position:absolute;display:inline-block;width:112px;height:112px;background:#f7f7f7;border-right:1px solid #ccc;padding:45px 20px;line-height:normal;font-weight:100;font-size:10px;text-align:center;color:#ccc}

@media screen and (max-width: 800px){section.set-list li.curated-set-item .no-image{border:1px solid #ccc}}

section.set-list li.curated-set-item .set-title-container,section.set-list li.curated-set-item .button-container{display:inline-block;height:92px}

section.set-list li.curated-set-item .set-published-state,section.set-list li.curated-set-item .set-title-container{margin-left:112px}

section.set-list li.curated-set-item .set-title-container{padding:30px 0px 30px 20px}

@media only screen and (min-width: 1132px){section.set-list li.curated-set-item .set-title-container{max-width:60%}}

@media only screen and (max-width: 1131px){section.set-list li.curated-set-item .set-title-container{max-width:50%}}

@media only screen and (max-width: 916px){section.set-list li.curated-set-item .set-title-container{max-width:40%}}

@media screen and (max-width: 800px){section.set-list li.curated-set-item .set-title-container{padding:0px 25px;height:auto;max-width:100%}}

@media screen and (max-width: 540px){section.set-list li.curated-set-item .set-title-container{min-height:112px}}

section.set-list li.curated-set-item .set-title-container .set-title{font-size:1.4em;color:#4CB7FF;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}

@media screen and (max-width: 540px){section.set-list li.curated-set-item .set-title-container .set-title{white-space:normal}}

section.set-list li.curated-set-item .set-title-container .divider{margin:0px 10px}

@media only screen and (max-width: 499px){section.set-list li.curated-set-item .set-title-container .divider{display:none}}

section.set-list li.curated-set-item .set-title-container .set-created-by,section.set-list li.curated-set-item .set-title-container .set-last-updated-date{display:inline-block}

section.set-list li.curated-set-item .set-title-container .set-created-by{margin-top:2px}

section.set-list li.curated-set-item .set-title-container .mobile-published-state{display:none}

@media screen and (max-width: 800px){section.set-list li.curated-set-item .set-title-container .mobile-published-state{display:block}}

section.set-list li.curated-set-item .button-container{font-size:.8em;float:right;padding:30px 10px}

@media screen and (max-width: 800px){section.set-list li.curated-set-item .button-container{padding:10px 20px;height:auto;display:block;margin-top:14px;float:none;margin-left:120px}}

@media screen and (max-width: 540px){section.set-list li.curated-set-item .button-container{padding:0px;margin-left:0;margin-top:17px}}

section.set-list li.curated-set-item .button-container button{font-size:1em;width:140px;margin:0px 10px 0px 0px}

@media screen and (max-width: 540px){section.set-list li.curated-set-item .button-container button{width:auto;padding-left:32px;padding-right:32px;margin:0px 20px 0px 0px}}

section.set-list li.curated-set-item .button-container button.view-gallery{background:#fff;border:1px solid #666;color:#666;width:120px}

section.set-list li.curated-set-item .button-container button.view-gallery:hover{color:#333;border:1px solid #333}

section.set-list li.curated-set-item .set-published-state{display:inline-block;height:20px;background:#f7f7f7;width:calc(100% - 112px);padding:1px 20px;font-size:1em;border-top:1px solid #ccc}

@media screen and (max-width: 800px){section.set-list li.curated-set-item .set-published-state{display:none}}

section.set-list li.curated-set-item .set-published-state a{color:#4CB7FF;float:right;display:none}

section.set-list-headers,section.set-list-footers{display:block;background-color:#f7f7f7;vertical-align:middle;font-weight:bold;color:black;height:40px;line-height:40px;border:1px solid #ccc}

@media screen and (max-width: 500px){section.set-list-headers,section.set-list-footers{height:auto;height:initial;line-height:normal;line-height:initial}}

section.set-list-headers .set-sort-by,section.set-list-footers .set-sort-by{float:left;width:50%;height:100%;padding-left:16px}

@media screen and (max-width: 500px){section.set-list-headers .set-sort-by,section.set-list-footers .set-sort-by{float:none;width:auto;height:50px;line-height:40px;font-size:16px;padding-top:4px;padding:4px 20px 0px 20px}}

section.set-list-headers .set-sort-by .sort-by,section.set-list-footers .set-sort-by .sort-by{font-weight:200;margin:0px 10px}

section.set-list-headers .set-sort-by .dropdown-container,section.set-list-footers .set-sort-by .dropdown-container{width:150px;font-weight:200;color:black;margin:0;height:100%;border-radius:0px;padding-top:0px;border:none;box-shadow:none;background-color:#f7f7f7}

@media screen and (max-width: 500px){section.set-list-headers .set-sort-by .dropdown-container,section.set-list-footers .set-sort-by .dropdown-container{padding-bottom:0px;float:right;width:200px}}

section.set-list-headers .set-sort-by .dropdown-container:before,section.set-list-footers .set-sort-by .dropdown-container:before{float:right;margin-top:10px}

section.set-list-headers .set-sort-by .dropdown-container ul.dropdown,section.set-list-footers .set-sort-by .dropdown-container ul.dropdown{color:black;box-shadow:none}

section.set-list-headers .set-sort-by .dropdown-container ul.dropdown li.hide-me,section.set-list-footers .set-sort-by .dropdown-container ul.dropdown li.hide-me{display:none}

section.set-list-headers .set-sort-by .dropdown-container ul.dropdown a,section.set-list-footers .set-sort-by .dropdown-container ul.dropdown a{color:black;font-weight:200;padding-left:25px}

section.set-list-headers .set-management-paging,section.set-list-footers .set-management-paging{width:50%;height:40px;line-height:36px;float:right;font-weight:200;padding-right:16px}

@media screen and (max-width: 500px){section.set-list-headers .set-management-paging,section.set-list-footers .set-management-paging{height:100%;float:none;width:100%;background-color:white;font-size:18px;padding-top:15px;height:70px;text-align:center}}

section.set-list-headers .set-management-paging input,section.set-list-footers .set-management-paging input{background-color:#f7f7f7}

@media screen and (max-width: 500px){section.set-list-headers .set-management-paging input,section.set-list-footers .set-management-paging input{background-color:white}}

section.set-list-footers{border-bottom:none}

.board-management{background-color:#fff;color:#666;font-family:Roboto,sans-serif}

.board-management h2{display:none}

.board-management .board-management-paging .cheveron{display:none}

.board-management .board-management-paging .previous,.board-management .board-management-paging .next{display:inline-block}

.board-management section.tab{background-color:#333;color:#fff}

.board-management section.tab li.active{background-color:#f7f7f7;color:#333}

.board-management section.tab .plus{background:transparent;font-size:24px;font-weight:bold;top:0}

.board-management section.board-sort-by{border-bottom:1px solid #ccc;padding:0 12px}

.board-management section.board-sort-by select{border:none;height:3em}

.board-management section.column-names{background-color:#f7f7f7;border-bottom:1px solid #ccc;color:black}

.board-management section.board-list{min-height:600px}

.board-management section.board-list .content{background-color:#fff}

.board-management section.board-list .board-item{border-bottom:1px solid #ccc}

.board-management section.board-list .board-item .board-thumbnail{background-color:#f2f2f2}

.board-management section.board-list .board-item .board-summary .pencil{bottom:3px;cursor:pointer;color:#ccc;font-weight:normal;padding-left:0.5em;position:relative}

.board-management section.board-list .board-item .board-summary .board-image-count{color:#4CB7FF;cursor:pointer}

.board-management section.board-list .board-item .share-board{color:black;cursor:pointer;float:right;font-size:24px;position:absolute}

@media screen and (max-width: 720px){.board-management section.tab li{border-right:1px solid #f7f7f7}.board-management .board-item .delete-board{background-color:#4CB7FF;border-left:1px solid #ccc;color:#fff;float:right;height:100%;padding-top:60px;text-align:center;width:3em}}

@media (-webkit-min-device-pixel-ratio: 0){select{background-image:url(data:image/gif;base64,R0lGODlhFwAHAOMIAFNTU1xcXGZmZoODg5mZmbm5udvb2/Ly8v///////////////////////////////yH5BAEKAA8ALAAAAAAXAAcAAAQq8AyDajXj2M0HCNQVAANnIgXwUcYIFKdZjAHhwrHZqmse7yBfziAICS0RADs=);background-repeat:no-repeat;background-position:right;padding-right:28px !important}}

@media (-webkit-min-device-pixel-ratio: 0){.board .board-selector,.panel .board-selector{background-image:url(data:image/gif;base64,R0lGODlhFwAHAOMIAFNTU1xcXGZmZoODg5mZmbm5udvb2/Ly8v///////////////////////////////yH5BAEKAA8ALAAAAAAXAAcAAAQq8AyDajXj2M0HCNQVAANnIgXwUcYIFKdZjAHhwrHZqmse7yBfziAICS0RADs=);background-repeat:no-repeat;background-position:right;padding-right:28px !important}}

@media (-webkit-min-device-pixel-ratio: 0){.board .board-selector,.panel .board-selector{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAHCAYAAADj/NY7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gkFFA4YSO77yAAAAIdJREFUKM+t0r8NgmAQhvGfdBRs8Q3AArZu4QwuYGIcQ0axtWMG9qA8mzNBA0aIb/Im9y/PXXEioomIc0SUiDDjkv1mob/oCie0uKB4V8l6m3OrVKHPuP5Y8ALXmfdr4buIgAOOCRrxwH4C7nDfCp+7VC66YrBB1SQeEjT+AwxL33H78j0/+wnFY6LMI+ANAwAAAABJRU5ErkJggg==)}}

.search_box .search_fields a.button,.search_box .search_fields button{width:auto}

button,a.button{font-size:14;text-align:center;background-color:#3dcd58;color:#fff;margin:0;-webkit-font-smoothing:antialiased}

button:hover,a.button:hover,button:active,a.button:active,button:focus,a.button:focus{text-decoration:none;outline:none}

button:hover,a.button:hover{background-color:#217f32}

.ja button,.ja a.button{font-family:Meiryo,Verdana,Sans-Serif !important}

.ko button,.ko a.button{font-family:Arial Unicode MS,Verdana,Sans-Serif !important}

button:active,a.button:active{color:#3dcd58;background-color:#1b6a2a}

button[disabled],a.button[disabled]{background:#e6e6e6;border-color:#b3b3b3;border-color:rgba(179,179,179,0.4);text-shadow:0 0 0 transparent;color:#b3b3b3;color:rgba(179,179,179,0.4);cursor:default}

.identify-modal .account-actions .button{background-color:#666}

.identify-modal .account-actions .button:hover{background-color:#404040}

.identify-modal .account-actions .button:active{color:#FFCF47;background-color:#1a1a1a}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{background-color:#4CB7FF}

.panel .open-board:hover,.panel .back-button:hover,.board .open-board:hover,.board .back-button:hover{background-color:#82cdff}

.panel .open-board:active,.panel .back-button:active,.board .open-board:active,.board .back-button:active{color:#4CB7FF;background-color:#0063a6}

.board-content header{margin-left:0;margin-right:0;zoom:1;left:0;width:100%;min-height:104px;padding:0}

.board-content header:before,.board-content header:after{content:"\0020";display:block;height:0;overflow:hidden}

.board-content header:after{clear:both}

.board-content header .close-button{width:375px;position:absolute;right:0;top:0;text-align:center;padding-right:0;display:block}

.panel .fixed-actions,.board .fixed-actions{height:100px}

@media screen and (max-width: 800px), screen and (max-width: 540px){.panel .fixed-actions,.board .fixed-actions{position:absolute;right:0;top:0}}

.panel .board-selector,.board .board-selector{position:absolute;top:35px;right:14px;width:175px;border:1px solid #1a1a1a;background-color:#000;color:#ccc}

.panel .board-selector option[value='string:new'],.panel .board-selector option[value='string:all'],.panel .board-selector option.current,.board .board-selector option[value='string:new'],.board .board-selector option[value='string:all'],.board .board-selector option.current{font-weight:bolder;padding-bottom:10px}

.panel .board-selector option[value=''],.board .board-selector option[value='']{font-style:italic}

.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{position:absolute;bottom:8px;right:8px;background-color:#09f;width:175px;padding-left:15px;padding-right:15px;padding-top:11px;padding-bottom:0;vertical-align:middle;line-height:1.1em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;transition:0.2s}

.panel .open-board::after,.panel .back-button::after,.board .open-board::after,.board .back-button::after{position:absolute;top:10px;right:10px;font-size:21px !important}

.panel .board-selector,.board .select-above{top:8px;right:8px}

@media screen and (max-width: 800px){.panel .open-board,.panel .back-button,.board .open-board,.board .back-button{margin-bottom:-15px;margin-right:-5px}.panel .fixed-actions,.board .fixed-actions{width:200px}.panel .carousel .std_nav,.board .carousel .std_nav{display:block}.panel .carousel .alt_nav,.board .carousel .alt_nav{display:none}.board header{position:relative}.panel{height:170px}.panel .open-board,.panel .back-button{position:absolute;right:15px;bottom:21px}}

@media screen and (max-width: 540px){.panel .fixed-actions,.board .fixed-actions{height:0px;top:105px;width:100%}.panel .board-selector,.board .board-selector{width:173px;margin:0 auto;top:78px}.panel .open-board,.board .open-board{width:140px;top:80px;height:35px;right:10px;font-size:14px}.panel .board-selector,.board .board-selector{display:block;margin:0 auto;position:static;margin-top:70px}.panel .back-button,.board .back-button{display:inline-block;min-width:1em;width:110px;margin:0;top:-105px;right:-10px;font-size:1em;padding-top:10px;background:none;color:#09f;padding-right:0px}.panel .back-button:before,.board .back-button:before{font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1.5em;line-height:1}.panel .back-button:before,.board .back-button:before{content:";"}}

.board-content header .title{color:#ccc}

@media screen and (max-width: 540px){.board-content header .status-button-container{width:172px;margin:0;margin:0 auto;height:50px}}

.board-content header .button-container{display:inline-block}

@media screen and (max-width: 540px){.board-content header .button-container{display:block;width:172px;margin:0 auto;height:50px}}

.board-content header button.create-set-button,.board-content header button.curation-status-button{float:left;width:12em;margin:0px 30px 0 1em;padding:0;background-color:transparent;border:1px solid #fff;text-transform:none}

@media screen and (max-width: 800px){.board-content header button.create-set-button,.board-content header button.curation-status-button{width:172px}}

@media screen and (max-width: 540px){.board-content header button.create-set-button,.board-content header button.curation-status-button{margin-left:0px;float:none;margin-bottom:30px}}

.board-content header button.create-set-button,.board-content header button.curation-status-button{padding-top:5px;float:left;width:15em;background-color:#3dcd58;color:white;border:none;text-align:left;padding-left:1em}

@media screen and (max-width: 540px){.board-content header button.create-set-button,.board-content header button.curation-status-button{margin-top:10px}}

@media screen and (max-width: 800px){.board-content header button.create-set-button,.board-content header button.curation-status-button{width:172px;margin:0px}}

.board-content header button.create-set-button:after,.board-content header button.curation-status-button:after{float:right;padding-right:0.1em}

@media screen and (max-width: 800px){.board-content header button.create-set-button span.curated-set-unpublished,.board-content header button.curation-status-button span.curated-set-unpublished{font-size:12px}}

.board-content header .panel-visible-button{margin-left:120px !important}

@media screen and (max-width: 800px){.board-content header .panel-visible-button{margin-left:172px !important}}

@media screen and (max-width: 540px){.board-content header .panel-visible-button{margin-left:0px !important}}

.board-content header form{margin:0;display:inline;position:relative}

.panel header span .button-container,.board header span .button-container{height:40px}

.panel header span .fixed-actions,.board header span .fixed-actions{display:inline-block;float:right;height:40px;position:relative}

.panel header span .fixed-actions a.open-board,.panel header span .fixed-actions a.back-button,.board header span .fixed-actions a.open-board,.board header span .fixed-actions a.back-button{box-shadow:none}

.panel header span .fixed-actions a.back-button,.board header span .fixed-actions a.back-button{bottom:0;line-height:1.0;position:relative}

@media screen and (max-width: 540px){.panel header span .fixed-actions a.back-button,.board header span .fixed-actions a.back-button{position:fixed;right:-5px;top:50px}}

@media (min-device-width: 480px) and (max-device-width: 740px) and (orientation: landscape){.panel header span .fixed-actions a.back-button,.board header span .fixed-actions a.back-button{right:-12px;top:-40px}}

.board .toolbar .share{height:40px}

.board .toolbar .more-actions .more-actions-board{width:170px}

.board .toolbar .show-details .onoffswitch{display:inline-block;position:relative;width:41px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}

.board .toolbar .show-details .onoffswitch-checkbox{display:none}

.board .toolbar .show-details .onoffswitch-label{display:block;overflow:hidden;cursor:pointer;border-radius:20px}

.board .toolbar .show-details .onoffswitch-inner{display:block;width:200%;margin-left:-100%;transition:margin 0.15s ease-in 0s}

.board .toolbar .show-details .onoffswitch-inner:before,.board .toolbar .show-details .onoffswitch-inner:after{display:block;float:left;width:50%;height:21px;padding:0;font-family:Trebuchet, Arial, sans-serif;font-weight:bold;box-sizing:border-box}

.board .toolbar .show-details .onoffswitch-inner:before{content:"";padding-left:10px;background-color:#3dcd58}

.board .toolbar .show-details .onoffswitch-inner:after{content:"";padding-right:10px;background-color:#666;text-align:right}

.board .toolbar .show-details .onoffswitch-switch{display:block;width:19px;height:19px;margin:1px;background:white;border:1px solid white;border-radius:20px;position:absolute;top:0;bottom:0;right:20px;transition:all 0.15s ease-in 0s}

.board .toolbar .show-details .onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner{margin-left:0}

.board .toolbar .show-details .onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch{right:0px}

.board-pager{padding:0 14px}

.board-pager:last-child{padding-right:29px}

.board-management-paging,.set-management-paging{text-align:right;width:100%;display:inline-block}

.board-paging a{font-size:18px}

.board-paging .pager input{background-color:black}

.board-paging .previous,.board-paging .next{display:inline-block}

.board-paging .cheveron{display:none}

.board-paging .pager input,.board-management-paging .pager input,.set-management-paging .pager input{border-bottom-color:#ccc;color:#ccc}

@media screen and (max-width: 720px){.board-management-paging{text-align:center;font-size:24px;padding-top:0.5em}.board-management-paging a{font-size:24px}}

@media screen and (min-width: 720px){.board-management-paging a,.set-management-paging a{font-size:18px}}

.board-paging .pager input,.board-management-paging .pager input,.set-management-paging .pager input{width:3em;text-align:right;font-size:inherit;border:none;border-bottom-style:solid;border-bottom-width:1px;margin:0 0.25rem;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}

.board-paging .pager input::-webkit-inner-spin-button,.board-paging .pager input::-webkit-outer-spin-button,.board-management-paging .pager input::-webkit-inner-spin-button,.board-management-paging .pager input::-webkit-outer-spin-button,.set-management-paging .pager input::-webkit-inner-spin-button,.set-management-paging .pager input::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}

.board-paging a,.board-management-paging a,.set-management-paging a{text-decoration:none}

@media screen and (max-width: 800px){.board-content header{height:100px}}

@media screen and (max-width: 540px){.board-content header{height:250px}.board-content header .fixed-actions.approver-actions select.board-selector{margin-top:80px}}

.board-content header .curated-set{display:inline;display:initial}

.board-content header .approver{font-size:1.2rem}

.board-content header .add-search.approver{font-size:1rem;width:235px !important}

@media screen and (max-width: 800px){.board-content header .add-search.approver{width:172px}}

.board-content header .add-search.approver .approver input.search{width:172px}

@media screen and (max-width: 800px){.board-content header .add-search.approver .approver input.search{width:100px}}

@media screen and (max-width: 540px){.board-content header .add-search.approver .approver input.search{width:172px}}

.board-content header .search-box.show-search-box.approver input{font-size:1em;width:175px}

@media screen and (max-width: 800px){.board-content header .search-box.show-search-box.approver input{width:100px;margin:0 0 0 15px}}

@media screen and (max-width: 540px){.board-content header .search-box.show-search-box.approver input{margin:0 0 0 0}}

.board-content header button.share.approver,.board-content header button.add-image.approver{margin:0 0 0 1em}

@media screen and (max-width: 800px){.board-content header button.share.approver,.board-content header button.add-image.approver{width:100px}}

@media screen and (max-width: 540px){.board-content header button.share.approver,.board-content header button.add-image.approver{margin:0 0 10px 0;width:172px}}

.board-content header button.curation-status-button,.board-content header button.create-set-button{margin-right:0px;background-color:#3dcd58;color:white;border:none}

@media screen and (max-width: 540px){.board-content header button.invisible-button{display:none}}

.publish-status-modal .modalBox{width:600px;height:230px}

.publish-status-modal .modalBox .title{padding:45px 0 0 0}

.publish-status-modal .modalBox .title h3{padding-bottom:0.65em}

.publish-status-modal .modalBox .description{min-height:3.2em}

.publish-status-modal .modalBox .description h6{padding-bottom:0.65em;color:#666}

.publish-status-modal .modalBox .error .description{font-size:1.3em}

.publish-status-modal .modalBox .publish{display:flex}

.publish-status-modal .modalBox a.button{background-color:#4CB7FF;bottom:-3em;height:46px;line-height:46px;font-size:16px;position:relative;padding:0}

.publish-status-modal .modalBox a.button:first-child{margin-right:5px}

.publish-status-modal .modalBox a.button:last-child{margin-left:5px}

.publish-status-modal .modalBox input{font-size:10px}

@media screen and (max-width: 600px){.publish-status-modal .modalBox .title{padding-top:5em}}

@media screen and (min-width: 800px){.publish-status-modal .modalBox .title{padding-top:2em}}

@media screen and (max-width: 800px){.publish-status-modal .modalBox{width:100%;height:100%;float:none;text-align:center;position:relative;transform:none}}

.board-content .side-panel{width:350px;background:#fff;display:inline-block;height:calc(100% - 51px - 34px);position:fixed;z-index:200;padding:0px;padding-left:0px;padding-right:0px;color:black;left:0;top:-100vh;display:none}

html.superstrip-hidden .board-content .side-panel{height:calc(100% - 51px)}

@media screen and (max-width: 800px){.board-content .side-panel{height:calc(100% - 51px)}}

.board-content .side-panel .preview{height:32px;padding:8px;background:black;display:flex;justify-content:space-between}

.board-content .side-panel .preview a{color:#4CB7FF;margin:0 15px}

.board-content .side-panel .preview a:hover,.board-content .side-panel .preview a:active{text-decoration:none}

.board-content .side-panel .status{width:100%;height:77px;background:#3dcd58;padding:25px 20px}

.board-content .side-panel .status h5{color:#fff;font-weight:100;display:inline-block}

.board-content .side-panel .status:after{font-size:2.2em;float:right;color:#fff;margin-bottom:3px}

.board-content .side-panel .last-updated-message{padding:1em 3em;width:82%;margin-left:9%;margin-top:1em;border:1px solid #b3b3b3}

.board-content .side-panel .side-panel-section-title{border-bottom:1px solid #1a1a1a;width:auto;padding-bottom:8px;margin-top:5px;font-size:1.2em}

.board-content .side-panel .set-metadata{padding:15px 30px}

.board-content .side-panel .set-metadata .input-container{margin:15px 0 0 0}

.board-content .side-panel .set-metadata .input-container span{position:absolute;top:5px;right:5px}

.board-content .side-panel .set-metadata input.add-keyword{height:30px;font-size:1em;font-weight:100;margin:0}

.board-content .side-panel .set-metadata .keywords-required{color:white;display:inline-block;margin:10px 0px}

.board-content .side-panel .set-metadata .visible{color:red}

.board-content .side-panel .set-metadata .radio-button:last-child{border-bottom:1px solid lightgrey}

.board-content .side-panel .set-metadata .radio-buttons{padding:10px;margin:0}

.board-content .side-panel .set-metadata .radio-buttons .radio-button{height:28px;padding-top:5px;border-top:1px solid lightgrey}

.board-content .side-panel .set-metadata .radio-buttons .radio-button label{font-size:.9em}

.board-content .side-panel .set-metadata .radio-buttons .radio-button input{margin:0px;display:inline-block;margin-right:10px}

.board-content .side-panel .set-metadata .alt-caption{clear:both;width:100%;padding-top:10px}

.board-content .side-panel .set-metadata .alt-caption .side-panel-section-title{margin:10px 0 0 0}

.board-content .side-panel .set-metadata .alt-caption .checkbox{padding-top:15px}

.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]{display:none}

.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]+label{display:inline-block;width:25px;height:25px;vertical-align:middle;cursor:pointer;margin-top:3px}

.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]:checked+label:before{position:absolute;font-size:17px;left:0px;bottom:0px}

.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]+label{border:1px solid #1a1a1a}

.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]+label .check{display:none}

.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]:checked+label:before,.board-content .side-panel .set-metadata .alt-caption .checkbox input[type="checkbox"]:checked+label .check{display:block;font-size:20px;font-weight:100;text-align:center;padding-top:3px}

.board-content .side-panel .set-metadata .alt-caption .label{margin-left:5px}

.board-content .side-panel .publish-schedule{padding:0px 30px}

.board-content .side-panel .publish-schedule span{display:block;margin-top:15px;margin-bottom:5px}

.board-content .side-panel .publish-schedule input{height:30px;font-weight:100;border:1px solid #1a1a1a;width:100%;padding:10px}

.board-content .side-panel .save-buttons{position:absolute;bottom:0;width:100%;padding:15px 30px}

.board-content .side-panel .save-buttons button{display:block;padding:5px 20px;margin-top:10px;height:50px;width:100%}

.board-content .side-panel .save-buttons button.unpublish-button{background:#fff;border:1px solid #1a1a1a;color:#1a1a1a}

.board-content .slim-panel{display:block;top:106px}

@media screen and (min-width: 50em){html.superstrip-visible .board-content .slim-panel{top:140px}}

@media screen and (min-width: 50em){html.pa-super-strip-visible .board-content .slim-panel{top:140px}}

@media screen and (min-width: 50em){html.superstrip-visible.pa-super-strip-visible .board-content .slim-panel{top:174px}}

@media screen and (max-width: 540px){.board-content .slim-panel{width:100%;height:calc(100vh - 51px);top:calc(-100vh + 51px);position:absolute}}

.tags-wrapper{position:relative}

.tags-wrapper ul.suggestions-list{border:1px solid #ccc;height:auto;width:100%;position:absolute;z-index:1;background-color:white;max-height:172px;overflow:scroll}

.tags-wrapper ul.suggestions-list li.suggestion{color:#333;border-bottom:1px solid #ccc;padding:1em;cursor:pointer}

.tags-wrapper ul.suggestions-list li.suggestion:last-child{border-bottom:none}

.tags-wrapper ul.suggestions-list li.suggestion:hover,.tags-wrapper ul.suggestions-list li.suggestion.active{color:white;background-color:#4d4d4d}

.keywords .keyword{background-color:#333;display:flex;float:left;color:white;margin:0 1em 0.5em 0;padding:0.5em 5em 0.5em 0.5em;position:relative}

.keywords .keyword .remove-keyword{position:absolute;right:3px;top:50%;transform:translateY(-50%)}

.keywords .keyword .remove-keyword:before{cursor:pointer}

.curated-search .tags-wrapper{background-color:#e6e6e6}

.curated-search .tags-wrapper .input-container{height:auto;padding:2em 1.5em;display:inline-flex;width:400px}

.curated-search .tags-wrapper .input-container .search-input{border:none;vertical-align:top;height:2em;font-size:1.5em;color:#666;font-weight:lighter}

.curated-search .tags-wrapper .input-container .search-submit{cursor:pointer;color:black;background-color:#fff;padding:0;height:2em;width:2em;vertical-align:top}

.curated-search .tags-wrapper .suggestions-list{width:400px;top:75%;overflow-x:hidden}

.curated-search .tags-wrapper .title-search-toggle{-webkit-appearance:none;-moz-appearance:none;-o-appearance:none;z-index:1;width:2em;height:2em;border:1px solid #ccc;outline:none;text-align:center;position:absolute;top:50%;transform:translateY(-50%)}

.curated-search .tags-wrapper .title-search-toggle:checked:before{content:"X";color:black;font-size:1.5em}

.curated-search .tags-wrapper .title-search-label{padding-left:2em;font-size:1.2em}

.curated-search .tags-wrapper .filter-by{position:absolute;display:inline-block;right:1.5em;top:50%;transform:translateY(-50%)}

.curated-search .tags-wrapper .filter-by .input-container{width:20em;color:#666;font-weight:lighter}

.curated-search .tags-wrapper .filter-by .filter-type{color:#666;font-weight:lighter;font-size:1.5em;width:15rem;border:none}

.curated-search .tags-wrapper .previous-input{position:absolute;left:1.5em;bottom:0;padding-bottom:2px}

.curated-search .tags-wrapper .previous-input p{display:inline-block;margin:0}

.curated-search .tags-wrapper .previous-input p .input-text{color:black}

.curated-search .tags-wrapper .previous-input .pipe{margin:0 0.5em}

.curated-search .tags-wrapper .previous-input .clear-input{cursor:pointer}

.curated-search .keywords{padding:0 0.5em;overflow:hidden}

.curated-search .keywords .keyword{border-radius:6px;line-height:1;margin:1.5em 0.5em;color:inherit;padding-right:2em;background-color:#e6e6e6}

.curated-search .keywords .keyword.clear-keywords{cursor:pointer;background-color:#fff}

@media print{body.search_container.board-open .content_wrapper .main_body,body.search_container.board-open .content_wrapper aside{display:none}.board.panel,.board.overlay{position:relative}}

@media print{body #site-header nav,body #site-header input{display:none}body #site-header #logo:after{clear:both}body aside{display:none}body .board{background-color:white}body .board .board-content article{padding-left:0px;padding-right:0px;padding-bottom:0px;min-height:0px}body .board .asset-grid.grid .board-item{margin:5px}body .board .asset-grid.grid .board-item .selection-comments{display:none}body .board .board-content .board-details .asset-grid.vert-mosaic,body .board .board-content .board-details .asset-grid.horiz-mosaic{display:none !important}body .board .board-content .board-details .asset-grid.grid{display:block !important}body header{display:none}body .board-operations{display:none}body .toolbar{display:none}body #footer{display:none}}

@page{size:US-letter;margin:0}

.contact_sheet_container #header-wrapper{display:none}

.contact_sheet_container .site-width{width:650px}

.contact_sheet_container .board-contact-sheet{font-family:Roboto,sans-serif;color:#333333}

.contact_sheet_container .board-contact-sheet .print{text-align:right}

.contact_sheet_container .board-contact-sheet .print .print-button{width:20%;line-height:0}

@media print{.contact_sheet_container .board-contact-sheet .print{display:none}}

.contact_sheet_container .board-contact-sheet .header{width:100%;padding-top:20px}

.contact_sheet_container .board-contact-sheet .header .site-logo{font-size:24px}

.contact_sheet_container .board-contact-sheet .header .last-updated-date{float:right;position:relative;top:15px}

@media print{.contact_sheet_container .board-contact-sheet .header .site-logo .last-updated-date{float:right;padding-top:8px}}

.contact_sheet_container .board-contact-sheet .title{padding-top:50px;font-weight:200;line-height:normal;line-height:initial}

.contact_sheet_container .board-contact-sheet .title .last-updated-date{font-size:16px;line-height:32px}

.contact_sheet_container .board-contact-sheet .title .board-name{font-size:48px}

.contact_sheet_container .board-contact-sheet .title .board-info{display:block}

.contact_sheet_container .board-contact-sheet .title .board-info .created-by,.contact_sheet_container .board-contact-sheet .title .board-info .number-of-assets,.contact_sheet_container .board-contact-sheet .title .board-info .separator{display:inline-block;font-size:20px;padding-top:25px;padding-bottom:10px}

.contact_sheet_container .board-contact-sheet .title .board-info .separator{padding:0 10px}

.contact_sheet_container .board-contact-sheet .title .board-description{font-size:18px;font-style:italic;display:block;padding-bottom:5px}

.contact_sheet_container .board-contact-sheet .title .view-read-only{padding-right:5px;font-size:14px;display:inline-block}

.contact_sheet_container .board-contact-sheet .assets{margin-top:40px;margin-left:-15px;float:none}

@media screen{.contact_sheet_container .board-contact-sheet .assets .header{display:none}}

@media print{.contact_sheet_container .board-contact-sheet .assets .header{padding-top:20px;position:relative;display:block;float:none;clear:both;page-break-before:always;page-break-inside:avoid}}

.contact_sheet_container .board-contact-sheet .assets .header{padding-top:40px}

.contact_sheet_container .board-contact-sheet .assets .asset{display:block;float:left;width:140px;line-height:175px;position:relative;margin:0 12px;text-align:center;padding-bottom:50px;height:300px}

.contact_sheet_container .board-contact-sheet .assets .asset img{max-width:100%;max-height:160px;vertical-align:middle}

.contact_sheet_container .board-contact-sheet .assets .asset img.no-img{width:140px;height:140px}

.contact_sheet_container .board-contact-sheet .assets .asset .missing-img-text{position:absolute;top:0;width:140px;height:100px;vertical-align:middle;line-height:160px;text-align:center;left:0;padding-top:25px}

.contact_sheet_container .board-contact-sheet .assets .asset .missing-img-text .title{font-size:18px}

.contact_sheet_container .board-contact-sheet .assets .asset .missing-img-text .message{font-size:12px}

.contact_sheet_container .board-contact-sheet .assets .asset .asset-info{font-weight:bold;text-align:left;font-size:12px}

.contact_sheet_container .board-contact-sheet .assets .asset .asset-info .asset-id{float:right}

.contact_sheet_container .board-contact-sheet .assets .asset .asset-alt-caption{max-height:90px;text-align:left;text-overflow:ellipsis;-webkit-line-clamp:6;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}

.contact_sheet_container .board-contact-sheet .assets .asset .agreement_description{color:#4CB7FF;font-size:12px;font-weight:200;padding-top:10px;text-align:left}

.contact_sheet_container .board-contact-sheet .assets .asset div{line-height:normal}

aside.comments{background-color:#333;color:#1a1a1a}

aside.comments .comment.can-remove:hover{background-color:#1a1a1a}

aside.comments .comment .delete-mobile-view{color:white;background-color:#FF3F3F}

aside.comments .comment .comment-created-by{color:#b3b3b3;font-family:Roboto,sans-serif}

aside.comments .comment .comment-created-date{color:#4d4d4d;font-family:Roboto,sans-serif}

aside.comments .comment .comment-text{color:#fff;font-family:Roboto,sans-serif}

aside.comments .comment .delete-comment-icon{color:#fff}

aside.comments .new-comment-section{margin:0 0 1.5em 0;padding:0 25px;width:100%}

aside.comments .new-comment-section textarea.new-comment{background-color:white}

aside.comments .new-comment-section textarea.new-comment::-webkit-input-placeholder{color:#4d4d4d;font-style:italic}

aside.comments .new-comment-section textarea.new-comment::-moz-placeholder{color:#4d4d4d;font-style:italic}

aside.comments .new-comment-section textarea.new-comment:-ms-input-placeholder{color:#4d4d4d;font-style:italic}

aside.comments .new-comment-section button.comment-add{color:#fff}

button.board-comments:hover{color:#666}

button.board-comments.has-comments{color:#3dcd58}

.board-article section{padding:15px}

.board article>section>.metadata .board-name:hover+.pencil:before,.board article>section>.metadata .board-description:hover+.pencil:before{font-family:Roboto,sans-serif}

.board article>section>.metadata input[type=text],.board article>section>.metadata textarea{color:#ccc}

.board article>section>.metadata input[type=text]::-webkit-input-placeholder,.board article>section>.metadata textarea::-webkit-input-placeholder{color:#4d4d4d;font-style:italic}

.board article>section>.metadata input[type=text]::-moz-placeholder,.board article>section>.metadata textarea::-moz-placeholder{color:#4d4d4d;font-style:italic}

.board article>section>.metadata input[type=text]:-ms-input-placeholder,.board article>section>.metadata textarea:-ms-input-placeholder{color:#4d4d4d;font-style:italic}

.board article>section>.metadata input[type=text]:focus,.board article>section>.metadata input[type=text]:hover,.board article>section>.metadata textarea:focus,.board article>section>.metadata textarea:hover{background-color:#1a1a1a}

.board article>section>.metadata input.board-name{font-family:Roboto,sans-serif}

.board article>section>.metadata .board-created-date{color:#666666}

.board .remove:hover+.board-item-image{background-color:#1a1a1a}

.board .play{background:rgba(0,0,0,0.5);color:#fff}

.board .editorial-only-notice{display:none}

.board .remove{background:rgba(0,0,0,0.5);color:#fff}

.board .board-item-image.offline .offline-message,.board .board-item .board-item-image.missing .offline-message,.board .board-item-image.offline .asset-missing-message,.board .board-item .board-item-image.missing .asset-missing-message{background-color:#1a1a1a}

.board .board-item-image.offline .collection,.board .board-item .board-item-image.missing .collection{color:#b3b3b3}

.board .board-item-image.offline .title a,.board .board-item .board-item-image.missing .title a{color:#ccc}

.board .board-item-image.missing .title{color:#fff}

.board .asset-grid.grid .board-item{width:320px}

.board .asset-grid.grid .board-item-content{background-color:#1a1a1a;width:320px;border:1px solid #1a1a1a}

.board .asset-grid.grid .board-item-content.selected{border-color:#1a1a1a}

.board .asset-grid.grid .info-strip{color:#ccc}

.board .asset-grid.grid .info-strip .asset-info{border-bottom:1px solid #333}

.board .asset-grid.grid .info-strip .asset-info .license-type{color:white;background-color:#333}

.board .asset-grid.grid .info-strip .asset-info .asset-family.editorial-use-only{width:auto;height:auto;background-color:#FF5D00;color:white;text-align:right;font-size:11px;padding:3px 3px 3px 3px;border:none}

.board .asset-grid.grid .info-strip .download .download-asset{color:#4CB7FF}

.board .asset-grid.grid .info-strip .details .date-created{color:#999}

.board .asset-grid.grid.show-details .has-comments .comments-icon .icon:before{color:#3dcd58}

.board .asset-grid.grid.show-details .download .text{border-top-color:#333}

.board .asset-grid.grid .selection-comments{color:#fff}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]+label{border:1px solid #fff}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label{background-color:#3dcd58;border-color:#3dcd58}

.board .asset-grid.grid .selection-comments .checkbox input[type="checkbox"]:checked+label:before{color:#fff}

.board .asset-grid.grid .selection-comments .comments-icon .icon{color:#fff}

.board .asset-grid.grid .selection-comments .comments-icon .count{color:#fff;background-color:#3dcd58}

.board .asset-grid.grid .comments-preview{color:#ccc}

.board .asset-grid.grid .comments-preview .comment-count{color:#fff;background-color:#3dcd58}

.board .deleted-board,.board .null-board{color:#fff;margin-top:3em}

.board .deleted-board h4,.board .null-board h4{color:#fff;font-weight:200;padding:0.5em}

aside.comments{background-color:#333;color:#1a1a1a}

button.board-comments:hover{color:#666}

button.board-comments:hover{color:#666}

.comment-created-date{color:#4d4d4d;font-family:Roboto,sans-serif}

.comment-created-by{color:#b3b3b3;font-family:Roboto,sans-serif}

.delete-mobile-view{background-color:#FF3F3F}

.comment.can-remove:hover{background-color:#1a1a1a}

.board .close,.panel .close{color:#fff}

button.comment-add{color:#fff}

@media screen and (max-width: 540px){.favorites-open .open-board{background:#09f;color:white}}

.create-board-modal .modalBox .content{font-size:16px;font-weight:200;line-height:19px}

.create-board-modal .modalBox .title h3{font-size:18px;font-weight:500;color:#4d4d4d}

.create-board-modal .modalBox .title .modalClose{background-size:100%;position:absolute;right:-22px;text-decoration:none;text-decoration:initial;top:-22px;height:16px;width:16px;cursor:pointer}

.create-board-modal .modalBox .create-new-board input{border:1px solid #09f;font-size:14px;font-weight:100;height:43px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(255,255,255,0.5);padding:0 0 0 16px}

.create-board-modal .modalBox .create-new-board input.enter-board-name.error{border-color:red}

.create-board-modal .modalBox .create-new-board input.ng-invalid ~ a.button{background-color:#CCCCCC}

.create-board-modal .modalBox .create-new-board .button{font-weight:500;height:43px;line-height:46px;padding:0;text-transform:uppercase;background-color:#09f}

.create-board-modal .modalBox .create-new-board .button:hover{background-color:#117AC1}

.create-board-modal .modalBox .create-new-board .button:active{color:#FFF;background-color:#106298}

.create-board-modal .modalBox .create-new-board .button.modalClose{color:#fff;position:relative;right:0;top:0}

.create-board-modal .modalBox .create-new-board .button.modalClose:after{content:normal;content:initial}

.choose-board-modal .modalBox .title{color:#333333;font-size:18px;font-weight:500}

.choose-board-modal .modalBox .container .search-container,.choose-board-modal .modalBox .container .save-container{margin:0 0 -4px 0}

.choose-board-modal .modalBox .container .search-container a,.choose-board-modal .modalBox .container .save-container a{color:#0099FF;font-size:13px;font-weight:400;text-decoration:none}

.choose-board-modal .modalBox .container .search-container ::-moz-placeholder, .choose-board-modal .modalBox .container .save-container ::-moz-placeholder{color:#333333;opacity:1}

.choose-board-modal .modalBox .container .search-container :-ms-input-placeholder, .choose-board-modal .modalBox .container .save-container :-ms-input-placeholder{color:#333333;opacity:1}

.choose-board-modal .modalBox .container .search-container ::placeholder,.choose-board-modal .modalBox .container .save-container ::placeholder{color:#333333;opacity:1}

.choose-board-modal .modalBox .container .search-container input{border:1px solid #CCC;font-size:13px;padding-left:40px}

.choose-board-modal .modalBox .container .search-container input:focus{border:1px solid #0099ff}

.choose-board-modal .modalBox .container .search-container ul.board-list{border-color:#CCCCCC}

.choose-board-modal .modalBox .container .search-container ul.board-list .no-board{color:#333333}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item{height:36px;padding-top:8px}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item:hover{background-color:#F3F3F3}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item:hover .save-bubble{margin:8px 6px 0 0;opacity:1}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item .board-name{color:#333333;font-size:13px;width:62%}

.choose-board-modal .modalBox .container .search-container ul.board-list li.board-item .save-bubble{color:#FFFFFF;background-color:#0099FF;border-radius:2px;font-size:11px;height:20px;margin:8px 2px 0 0;padding:2px 2px 0;text-align:center;text-transform:uppercase;min-width:14%;max-width:32%;opacity:0;transition-property:margin, opacity;transition-duration:.15s;transition-timing-function:cubic-bezier(0.25, 0.1, 0.25, 1)}

.choose-board-modal .modalBox .container .search-container ul.board-list .more-than-hundred-boards{background-color:rgba(245,215,110,0.5)}

.choose-board-modal .modalBox .container .save-container input.ng-invalid ~ a.button{background-color:#CCCCCC}

.choose-board-modal .modalBox .container .save-container input{border:1px solid #CCC;font-size:13px;padding-left:16px}

.choose-board-modal .modalBox .container .save-container input:focus{border:1px solid #0099ff}

.choose-board-modal .modalBox .container .save-container input.board-name-box.error{border-color:red}

.choose-board-modal .modalBox .container .save-container a.button{background-color:#0099ff;line-height:16px;margin-bottom:16px;padding:1em 1.5em}

.choose-board-modal .modalBox .container .save-container a.button:hover{background-color:#117AC1}

.choose-board-modal .modalBox .container .save-container a.button:active{color:#FFF;background-color:#106298}

.choose-board-modal .modalBox .container .thumbnail{border-color:#CCCCCC}

.identify-modal header{margin-bottom:3em}

.identify-modal header h3{font-weight:300}

.identify-modal .identify{margin-bottom:2.5em}

.identify-modal .identify button{height:50px;margin:15px 0 5px 0;padding:10px}

.identify-modal .identify input{border:1px solid #b3b3b3;font-size:1.2em;height:37px}

.identify-modal .account-actions{border-top:1px solid #4d4d4d}

.identify-modal .account-actions .button{background:#fff;border:1px solid #666;color:#666;height:50px;padding:15px}

.identify-modal .account-actions .button:hover{background:#fff;color:#000}

.identify-modal .modalBox{max-width:50em;padding:2.5em}

.identify-modal input[type=text]::-webkit-input-placeholder,.identify-modal input[type=email]::-webkit-input-placeholder{color:#b3b3b3}

.identify-modal input[type=text]::-moz-placeholder,.identify-modal input[type=email]::-moz-placeholder{color:#b3b3b3}

.identify-modal input[type=text]:-ms-input-placeholder,.identify-modal input[type=email]:-ms-input-placeholder{color:#b3b3b3}

.identify-modal button,.identify-modal .button{line-height:1em}

.add-search-within .search-box form{display:block}

.add-search-within .search-box input{color:white;padding-left:15px;padding-right:15px;height:40px;background:black;border:1px solid #ccc;font-size:14px}

.add-search-within .search-box button.search-icon{position:absolute;background-color:transparent;font-size:2.2em;right:5px;width:40px;height:40px;padding:2px}

.asset-modal{background:rgba(204,204,204,0.95)}

.asset-modal article .comp .play{background:rgba(0,0,0,0.5);color:#fff}

.asset-modal article .comp.missing{color:black}

.asset-modal .close{color:white;top:15px}

.asset-modal aside.comments{background:rgba(51,51,51,0.8)}

.asset-modal aside.comments .comment-created-date{color:#b3b3b3}

.asset-modal .metadata{color:#000}

.asset-modal .nav-arrows .prev-asset,.asset-modal .nav-arrows .next-asset{color:#1a1a1a}

.asset-modal .nav-arrows .prev-asset{left:-0.25em}

.asset-modal .nav-arrows .next-asset{right:-0.25em}

.actions-modal-button{background-color:transparent;border:1px solid #cccccc;font-size:13px;margin-left:7px;padding:7px}

.actions-modal-button:hover{background-color:#cccccc;border:1px solid #999999;color:black}

aside#toolbox{height:78px;width:65px;visibility:hidden;overflow:hidden;border:none;position:absolute;margin-left:-8px;z-index:1}

aside#toolbox .action-toolbox{background-color:#333;top:-11px;border-radius:2px;font-weight:500;height:43px;width:215px;padding:9px 8px 6px;cursor:pointer;opacity:0;transition-property:opacity, top, background-color;-webkit-transition-property:opacity, top, background-color;transition-duration:.15s;-webkit-transition-duration:.15s;transition-timing-function:ease-in;-webkit-transition-timing-function:ease-in}

aside#toolbox .action-toolbox span.caret{float:right;margin-top:10px;display:inline-block !important;position:relative;width:11px;height:7px;border-radius:100%;background:rgba(0,0,0,0);box-sizing:content-box}

aside#toolbox .action-toolbox span.caret:before{position:absolute;content:'';margin:auto;width:calc(30px / 5);height:calc(30px / 5);background:rgba(0,0,0,0);border:calc(20px / 13.5) solid #fff;border-right:none;border-top:none;top:0;bottom:calc(30px / 8);left:0;right:0;transform:rotate(-45deg);box-sizing:content-box}

aside#toolbox .action-toolbox .action-title{color:#CCCCCC;font-size:10px;line-height:11px;margin-bottom:2px;text-transform:uppercase}

aside#toolbox .action-toolbox .board-name{color:#09f;font-size:13px;line-height:16px;width:120px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

aside#toolbox.open{visibility:visible;overflow:visible;padding-top:5px;padding-bottom:50px}

.add-to-favorites-container aside#toolbox.open{top:-45px;width:100%;text-align:left}

aside#toolbox.open .action-toolbox{position:absolute;left:-42px}

.details-overlay aside#toolbox.open .action-toolbox,.add-to-favorites-container aside#toolbox.open .action-toolbox{top:-11px}

.add-to-favorites-container aside#toolbox.open .action-toolbox{left:50%;transform:translate(-50%, 0%);background-color:black}

.actions-overlay aside#toolbox.open .action-toolbox{top:-5px}

aside#toolbox.open .action-toolbox.visible{opacity:1}

.actions-overlay aside#toolbox.open .action-toolbox.visible{top:-1px}

.details-overlay aside#toolbox.open .action-toolbox.visible,.add-to-favorites-container aside#toolbox.open .action-toolbox.visible{top:-7px}

aside#toolbox.open .action-toolbox:hover span.caret:before{border-color:#CCCCCC;transition-property:border-color;transition-duration:.15s;transition-timing-function:ease}

@media screen and (max-width: 540px){aside#toolbox{display:none}}

@media screen and (max-width: 800px){aside#toolbox{display:none}}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){aside#toolbox{display:none}}

#activeness{position:relative;z-index:2}

.mosaic-actions #activeness{background-color:#333;margin-bottom:0;height:27px}

#activeness div.action-label{color:white}

#activeness a.action svg{z-index:2}

.details-overlay #activeness a.action svg{fill:white}

.actions-overlay #activeness a.action svg{fill:#1a1a1a}

span#triangle{margin:0 auto;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #333;position:absolute;left:50%;transform:translate(-50%, 0%);opacity:0;transition-property:opacity, top;-webkit-transition-property:opacity, top;transition-duration:.15s;-webkit-transition-duration:.15s;transition-timing-function:ease-in;-webkit-transition-timing-function:ease-in}

.favorites span#triangle{top:-11px}

.add-to-favorites-container span#triangle{border-top:5px solid black;top:-13px}

span#triangle.visible{opacity:1}

.favorites span#triangle.visible{top:-7px}

.add-to-favorites-container span#triangle.visible{top:-9px}

@media screen and (max-width: 540px){span#triangle{display:none}}

@media screen and (max-width: 800px){span#triangle{display:none}}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape){span#triangle{display:none}}

.content_wrapper #header-wrapper{transition:margin-bottom .5s ease-in-out}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart span.circle,header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-cart a span.circle{border-radius:50%}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart span.capsule,header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-cart a span.capsule{border-radius:500px}

@media screen and (max-width: 800px){.favorites-open #header-wrapper{position:absolute;top:0px;width:100%;z-index:300}}

.panel{position:absolute}

.panel.docked{top:0 !important;position:fixed;transition:none 0s ease 0s;transition:initial}

.board-overlay .panel .scroll_area{height:0px}

.content_wrapper{margin-top:0;transition:none}

.favorites-open .content_wrapper{margin-top:0px}

.favorites-open .content_wrapper #header-wrapper{margin-bottom:103px}

.search_container.favorites-open .content_wrapper{margin-top:0px !important}

.board-open .board.overlay,html.superstrip-visible .board-open .board.overlay{position:absolute;top:0px;height:100vh !important}

#non-sticky-superstrip,#sticky-superstrip{display:none}

header .superstrip{display:none}

.superstrip-visible .superstrip{display:flex;z-index:1000}

.superstrip-hidden .superstrip{display:none !important}

.superstrip{margin:0 -10px;padding:8px 0;font-size:14px;font-weight:400;text-align:center;display:flex;color:white;background-color:#3973b1;justify-content:center;align-items:center;position:relative}

.superstrip.consumer{color:black;background-color:white}

.superstrip.consumer.alert,.superstrip.consumer.outage{background-color:#FFF5F5}

.superstrip.consumer a{color:#4CB7FF;font-weight:normal}

.superstrip.alert,.superstrip.outage{color:black;background-color:#FFF5F5;font-weight:400}

.superstrip.alert:before,.superstrip.outage:before{content:'!';display:inline-block;min-width:1em;width:1em;height:1em;border-radius:0.5em;border:1px solid black;line-height:1em;margin:0 0.5em 0 17px;background:white}

.superstrip .text{margin-right:2.25rem}

.superstrip .close{position:absolute;top:6px;right:10px;cursor:pointer}

.superstrip .close:after{content:'\29';font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;line-height:1}

.superstrip a{text-decoration:none;font-weight:bold;color:white}

.global-notification-container{align-items:center;bottom:0;justify-content:center;position:fixed;width:100%}

.ups-pa-preview{height:34px;font-size:14px;text-align:center;display:flex;color:white;justify-content:center;align-items:center;position:relative;background-color:#4CB7FF;font-weight:400;border-radius:5px;margin:0 auto;margin-bottom:4px;z-index:1000;max-width:1146px}

.ups-pa-preview .exit-preview{margin-left:1.5rem;color:#4CB7FF;width:auto;font-size:1.1rem;padding:4px 15px;text-decoration:none}

.ups-pa-preview .exit-preview:hover{outline:1px solid #ccc;color:#666}

.super-strip-notification{height:34px;font-size:14px;text-align:center;display:flex;color:white;justify-content:center;align-items:center;position:relative;background-color:#4CB7FF;font-weight:400;z-index:1000;border-radius:5px;margin:0 auto;margin-bottom:4px;max-width:1146px}

.super-strip-notification .close{position:absolute;top:6px;right:10px;cursor:pointer}

.super-strip-notification .close:after{content:'\29';font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;line-height:1}

.periodic-billing-notification{height:34px;font-size:14px;text-align:center;display:flex;color:white;justify-content:center;align-items:center;position:relative;background-color:#6F43D6;font-weight:400;z-index:1000;margin:0 auto;max-width:1146px}

.periodic-billing-notification a.btn.text-link--sly.global-notification-banner__btn{border:1px solid #FFFFFF;padding:5px;margin-left:10px;color:white}

.periodic-billing-notification .global-notification-banner__message{display:flex;align-items:center}

.periodic-billing-notification .global-notification-banner__icon{margin-right:10px}

.periodic-billing-notification .close{position:absolute;top:6px;right:10px;cursor:pointer}

.periodic-billing-notification .close:after{content:'\29';font-family:GettyIcons;font-style:normal;vertical-align:middle;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:18px;line-height:1}

#getty-header.consumer .ups-desktop.full-header{color:#333;font-family:"Roboto",sans-serif;letter-spacing:.8px;margin:0 auto;padding:15px 15px 10px 15px}

#getty-header.consumer .ups-desktop.full-header div.ups-menu-item:not(.ups-boards){align-items:center;display:flex;justify-content:flex-start;position:relative}

#getty-header.consumer .ups-desktop.full-header div.ups-menu-item:not(.ups-boards)>*{cursor:pointer}

#getty-header.consumer .ups-desktop.full-header div.ups-menu-item:not(.ups-boards) a,#getty-header.consumer .ups-desktop.full-header div.ups-menu-item:not(.ups-boards) span{line-height:28px}

#getty-header.consumer .ups-desktop.full-header div.ups-menu-item:not(.ups-boards) svg{vertical-align:middle}

#getty-header.consumer .ups-desktop.full-header div.ups-menu-item:not(.ups-boards):hover ul.ups-dropdown-content{display:block}

#getty-header.consumer .ups-desktop.full-header div.ups-boards{align-items:center;display:flex;justify-content:flex-start;position:relative}

#getty-header.consumer .ups-desktop.full-header div.ups-boards svg{vertical-align:middle}

#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content{background-color:#333;border-radius:5px;box-shadow:0 4px 4px 0 rgba(0,0,0,0.24);display:none;font-family:"Roboto",sans-serif;font-size:14px;left:-.6em;min-width:175px;padding:.5em 1em;position:absolute;top:2em;z-index:5000;white-space:nowrap}

#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.ups-dropdown-item{line-height:28px}

#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.ups-dropdown-item a{width:100%;display:block}

#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.ups-dropdown-item a:link,#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.ups-dropdown-item a:visited,#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.ups-dropdown-item a:active{color:#fff}

#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.ups-dropdown-item a:hover{color:#09f}

#getty-header.consumer .ups-desktop.full-header ul.ups-dropdown-content li.account-boards-link{display:none}

#getty-header.consumer .ups-desktop.full-header div.ups-container{background-color:#fff;position:relative}

#getty-header.consumer .ups-desktop.full-header div.ups-container a{color:#333;text-decoration:none}

#getty-header.consumer .ups-desktop.full-header div.ups-container label{margin:0}

#getty-header.consumer .ups-desktop.full-header div.ups-container label,#getty-header.consumer .ups-desktop.full-header div.ups-container a{font-family:"Roboto",sans-serif}

#getty-header.consumer .ups-desktop.full-header div.ups-container nav{display:flex;flex-wrap:nowrap}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top{align-items:center;display:flex;color:#333;font-size:14px;letter-spacing:1px;font-weight:500}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top a.ups-logo{display:block}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top a.ups-logo svg{width:163px;height:30px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top a,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top span{color:#333}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top a:hover,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top span:hover{color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-spacer{border:solid;border-width:1px;margin-right:12px;margin-left:-5px;margin-top:5px;margin-bottom:5px;border-right-width:0px;color:#dcdcdc}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-menu-item{margin-right:17px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-menu-item>a{display:flex;align-items:center}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-menu-item>a:hover span{color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-menu-item>a:hover svg path{fill:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top nav{margin-left:20px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions{display:flex;flex-wrap:nowrap;margin-left:auto}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-boards a{cursor:pointer;margin:0px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-boards a span{padding:0 5px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-boards a:hover span{color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-boards a:hover svg path{fill:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-pipe{border-right:2px solid #333;cursor:none;height:20px;margin:0 10px;width:0}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account{margin-right:0}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account a.ups-account-link svg.carrot-icon{display:none}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account a.ups-account-link:hover span{color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account a.ups-account-link:hover svg path{fill:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account ul.ups-account{left:auto;right:0}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account ul.ups-account .mobile-boards-menu{display:none}

@media screen and (max-width: 540px){#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account ul.ups-account .mobile-boards-menu{display:block}}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-account span.ups-display-name{padding-left:5px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in{border-radius:2px;border:1px solid #09f;height:auto;padding:5px 10px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in *{cursor:pointer}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in a,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in span{color:#09f;line-height:1em}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in svg{margin-right:5px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in svg path{fill:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in:hover{border:1px solid #0A83D4}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in a:hover span,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in label:hover span{color:#0A83D4}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in a:hover svg path,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-sign-in label:hover svg path{fill:#0A83D4}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions ul.ups-dropdown-content.ups-sign-out{border-top:1px solid #fff}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart{margin-right:34px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart a{position:relative}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart span.ups-badge{background:#09f;height:20px;line-height:20px;min-width:20px;position:absolute;right:-15px;text-align:center;top:-5px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart span.ups-badge span.ups-badge-number{color:white;font-size:12px;line-height:20px;padding:0 5px;vertical-align:middle}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-top div.ups-actions div.ups-menu-item.ups-cart:hover a span{color:#fff}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom{align-items:center;justify-content:center;display:flex}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search{min-width:100%}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search.off{display:none}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search form.ups-search-form{margin:0px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar{align-items:center;display:flex;height:37px;margin-top:12px;position:relative}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar.hidden-media-types .media-types .media-types-selection{opacity:0}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar input,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-magnify{border:1px solid #ccc;background:none;font-family:"Roboto",sans-serif;font-size:14px;font-weight:500;height:35px;line-height:33px;margin:0}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar input{border-left-style:none;border-right-style:none}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-magnify{border-radius:4px;border-top-left-radius:0px;border-bottom-left-radius:0px;border-left-style:none;border-color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types{border-radius:4px;border-top-right-radius:0px;border-bottom-right-radius:0px;cursor:pointer;text-align:center;min-width:160px;padding-left:5px;padding-right:5px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types .media-types-selection{opacity:1;transition:opacity 150ms;-webkit-transition:opacity 150ms}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types .carrot-icon{margin-left:5px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types span{color:#666;font-size:14px;font-weight:500;white-space:nowrap}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections{box-shadow:0px 2px 5px 0 rgba(0,0,0,0.53);background:#fff;border-radius:4px;box-shadow:0px 1px 1px 1px #bbb;display:none;left:0;padding-bottom:5px;position:absolute;text-transform:none;text-transform:initial;top:41px;min-width:159px;z-index:5000}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections section.ups-search-selection-block{padding:5px 0}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a{display:block;line-height:35px;position:relative;color:#666;text-align:left}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a svg{position:absolute;bottom:50%;top:50%;transform:translate(-50%, -50%)}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a svg path{fill:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a.ups-search-family-type{padding-left:40px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a.ups-search-family-type svg{left:22px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a.ups-search-family-type-item{padding-left:50px;padding-right:15px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a.ups-search-family-type-item svg{left:32px}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections a:hover span{color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar div.media-types div.ups-search-selections section:first-child{border-bottom:1px solid #EBEBEB}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar.focused input,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar.focused div.media-types,#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar.focused a.ups-magnify{border-color:#09f}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar input{padding:1px 8.5px;width:100%;background-color:#f5f5f5}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar input:focus{outline:0;background-color:#fff}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar input:focus a{background-color:#fff}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-magnify{background:#09f;display:block;width:60px;padding-left:5px;text-align:center}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-magnify svg{margin-top:5px;fill:#fff}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-search-camera{width:30px;height:30px;right:65px;position:absolute;top:0px;margin-top:4px;cursor:pointer;display:none}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-search-camera svg{opacity:0.6}

#getty-header.consumer .ups-desktop.full-header div.ups-container section.ups-bottom section.ups-search div.combo-bar a.ups-search-camera svg:hover{opacity:1}

header#getty-header.consumer div.ups-desktop.minimal-header{background-color:#fff;color:#000;font-family:"Roboto",sans-serif;letter-spacing:.8px;margin:0 auto;padding:15px}

header#getty-header.consumer div.ups-container{background-color:#fff;position:relative}

header#getty-header.consumer a.ups-logo{height:30px;display:block}

header#getty-header.consumer a.ups-logo img{max-height:100%}

header#getty-header.consumer div.ups-mobile.full-header{font-family:"Roboto",sans-serif;font-size:14px;min-width:340px}

header#getty-header.consumer div.ups-mobile.full-header a{text-decoration:none}

header#getty-header.consumer div.ups-mobile.full-header ul.ups-dropdown-content{display:none}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top{height:50px;position:relative}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-icon{display:inline-block;height:50px;position:absolute;text-align:center;width:50px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-icon svg{margin-top:5px;position:absolute;top:50%;bottom:50%;transform:translate(-50%, -50%)}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-icon.on{background:#000}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-icon.on path{fill:#fff}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-hamburger{left:0px;top:0px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-magnify{right:0px;top:0px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-logo{height:50px;line-height:50px;text-align:center}

header#getty-header.consumer div.ups-mobile.full-header section.ups-top a.ups-logo svg{display:inline-block;height:30px;margin:0 auto;vertical-align:middle}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu{align-items:center;background:#fff;border-bottom:solid 1px #ccc;display:flex;display:none;justify-content:center;min-height:100vh}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar{align-items:center;background:#000;color:#fff;display:flex;height:45px;justify-content:space-between}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar svg path{fill:#fff}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar a{display:flex;align-items:center;justify-content:center;color:#fff;font-weight:normal;height:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar a>span{margin-left:10px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-boards{background-color:#000;font-weight:bold;height:45px;letter-spacing:1px;text-transform:uppercase;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-boards a.ups-board-link{max-width:120px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-cart{background-color:#000;height:45px;width:90px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-cart a{margin-top:1px;position:relative}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-cart a span.ups-badge{background:#09f;height:20px;line-height:20px !important;min-width:20px;position:absolute;right:15px;text-align:center;top:2px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar div.ups-cart a span.ups-badge span.ups-badge-number{color:#fff;font-size:12px;line-height:20px;padding:0 5px;vertical-align:middle}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar.ups-hamburger{padding-top:20px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.ups-blackbar.ups-logo{height:50px;margin:0 auto;width:140px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu section.browse-categories{width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account a.ups-account-link{align-items:center;background-color:#F9F9F9;border-bottom:solid #D6D6D6 2px;display:flex;font-family:"Roboto",sans-serif;font-size:16px;font-weight:bold;height:45px;justify-content:center;letter-spacing:1px;margin:0;text-align:center;text-transform:uppercase;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account a.ups-account-link label{display:flex;align-items:center;margin-bottom:0px;font-weight:600}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account a.ups-account-link span{color:#333;margin-left:10px;margin-right:10px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account a.ups-account-link svg path{fill:#333}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account ul.ups-account.ups-dropdown-content{align-items:center;justify-content:center;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account ul.ups-account.ups-dropdown-content li.ups-dropdown-item{align-items:center;background:black;border-bottom:solid 1px #999;color:white;display:flex;justify-content:center;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account ul.ups-account.ups-dropdown-content li.ups-dropdown-item a{box-sizing:border-box;color:#ececec;display:flex;font-family:"Roboto",sans-serif;font-size:14px;justify-content:center;letter-spacing:1px;padding:15px;text-transform:capitalize;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-account ul.ups-account.ups-dropdown-content li.ups-dropdown-item a:hover{-webkit-tap-highlight-color:#333;background-color:#333;color:#fff}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more svg{margin-left:5px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more svg path{fill:#333}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more.ups-toggled{margin-bottom:149px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more ul.ups-dropdown-content{width:100%;position:absolute;left:0px;margin-top:17px;background-color:#F9F9F9;border-bottom:solid 2px #EBEBEB}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more ul.ups-dropdown-content li.ups-dropdown-item{border-bottom:solid 2px #EBEBEB;box-sizing:border-box;color:#09f;display:inline-block;flex-basis:50%;font-family:"Roboto",sans-serif;font-size:14px;letter-spacing:1px;padding:15px;text-transform:uppercase;width:50%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more ul.ups-dropdown-content li.ups-dropdown-item:nth-child(odd){border-right:solid 2px #EBEBEB}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more ul.ups-dropdown-content li.ups-dropdown-item:last-child{border-bottom:none}

header#getty-header.consumer div.ups-mobile.full-header section.ups-menu div.ups-menu-item.ups-more ul.ups-dropdown-content li.ups-dropdown-item a{align-items:center;display:flex;justify-content:center}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search{display:none}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search form.ups-mobile-search-form{margin:0px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar{background:#000;color:#fff;height:45px;padding:5px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar{align-items:center;background:#FCFCFC;border-radius:2px;display:flex;justify-content:center}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar input{height:35px;font-size:16px;width:75%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar input:focus{outline:0}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar input,header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar select{background:none;border:0;margin:0;padding:0 10px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar select{display:inline-block;font-size:16px;height:35px;font-family:"Roboto",sans-serif;vertical-align:middle;white-space:normal;width:155px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-blackbar div.combo-bar div.ups-pipe{border-right:2px solid #000;cursor:none;height:20px;margin:0 10px;width:0}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-recent-searches{min-height:100vh}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-recent-searches div.ups-recent-searches-title{border-bottom:solid 2px #EBEBEB;color:#333;font-family:"Roboto",sans-serif;font-size:14px;font-weight:bold;text-align:center;text-transform:uppercase;height:3em;line-height:3em}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-recent-searches div.ups-menu-item{border-bottom:solid 2px #EBEBEB;font-family:"Roboto",sans-serif;font-size:14px;text-align:center;height:3em;line-height:3em}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-recent-searches div.ups-menu-item a{color:#333;display:inline-block;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-search-categories{display:none}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-search-categories h1{border-bottom:solid 2px #EBEBEB;color:#999;font-family:"Roboto",sans-serif;font-size:14px;font-weight:bold;text-transform:uppercase;height:3em;line-height:3em;padding-left:20px}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-search-categories div.ups-menu-item{border-bottom:solid 2px #EBEBEB;font-family:"Roboto",sans-serif;font-size:14px;padding-left:40px;height:3em;line-height:3em}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-search-categories div.ups-menu-item a{color:#333;display:inline-block;position:relative;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-search section.ups-search-categories div.ups-menu-item a svg{position:absolute;top:50%;right:0;bottom:50%;transform:translate(-50%, -50%)}

header#getty-header.consumer div.ups-mobile.full-header section.ups-bottom{border-bottom:solid 1px #EBEBEB;display:flex;flex-wrap:wrap;justify-content:space-between}

header#getty-header.consumer div.ups-mobile.full-header section.ups-editorial-nav{display:flex;flex-direction:column}

header#getty-header.consumer div.ups-mobile.full-header section.ups-editorial-nav div.ups-menu-item{border-bottom:solid 2px #EBEBEB;box-sizing:border-box;padding:15px;width:100%}

header#getty-header.consumer div.ups-mobile.full-header section.ups-editorial-nav ul.ups-dropdown-content{display:none}

header#getty-header.consumer div.ups-mobile.full-header section.ups-editorial-nav a{align-items:center;color:#333;display:flex;font-family:"Roboto",sans-serif;font-size:14px;justify-content:center;letter-spacing:1px;text-transform:capitalize}

.ups-header-consumer .board-content .side-panel{width:350px;background:#fff;display:inline-block;height:calc(100% - 55px - 34px)}

html.superstrip-hidden .ups-header-consumer .board-content .side-panel{height:calc(100% - 55px)}

.ups-header-consumer .favorites-open .panel{top:55px}

.ups-header-consumer.superstrip-visible .favorites-open .panel,.ups-header-consumer.pa-preview-visible .favorites-open .panel{top:89px}

.ups-header-consumer.superstrip-visible.pa-preview-visible .favorites-open .panel{top:173px}

.ups-header-consumer-search .board-content .side-panel{height:calc(100% - 105px - 34px)}

html.superstrip-hidden .ups-header-consumer-search .board-content .side-panel{height:calc(100% - 105px)}

.ups-header-consumer-search .favorites-open .panel{top:105px}

.ups-header-consumer-search.superstrip-visible .favorites-open .panel,.ups-header-consumer-search.pa-preview-visible .favorites-open .panel{top:139px}

.ups-header-consumer-search.superstrip-visible.pa-preview-visible .favorites-open .panel{top:173px}

header#getty-header.consumer div.ups-desktop.pop_up-header{background-color:#fff;color:#000;font-family:"Roboto",sans-serif;letter-spacing:.8px;margin:0 auto;padding:15px}

header#getty-header.consumer div.ups-desktop.pop_up-header a.ups-logo{height:30px;display:block}

header#getty-header.consumer div.ups-desktop.pop_up-header a.ups-logo img{max-height:100%}

.ups-header-consumer.ups-header-consumer-search div#suggestions-container-ups-search-phrase{background-color:rgba(255,255,255,0.95);border:1px solid #ccc;border-top:none;position:absolute;z-index:300}

.ups-header-consumer.ups-header-consumer-search div#suggestions-container-ups-search-phrase ul.suggestions-list{max-height:500px;overflow:hidden}

@media screen and (max-width: 540px){.ups-header-consumer.ups-header-consumer-search div#suggestions-container-ups-mobile-search-phrase{background-color:white;height:100vh;position:absolute;border-style:none !important;left:0px !important;top:95px !important;width:100% !important}.ups-header-consumer.ups-header-consumer-search div#suggestions-container-ups-mobile-search-phrase ul.suggestions-list li{padding:0px 15px 0px 15px;height:3em;line-height:3em;border-bottom:solid 2px #EBEBEB}}

html.superstrip-visible .search_container .main_body,html.superstrip-visible .editorial_events_container .main_body,html.superstrip-visible .boards_container .main_body,html.superstrip-visible .asset_detail_container .main_body{margin-top:0px}

.search_container .main_body,.editorial_events_container .main_body,.boards_container .main_body,.asset_detail_container .main_body{margin-top:0px}

.search_container .main_body a:hover,.search_container .main_body a:active,.editorial_events_container .main_body a:hover,.editorial_events_container .main_body a:active,.boards_container .main_body a:hover,.boards_container .main_body a:active,.asset_detail_container .main_body a:hover,.asset_detail_container .main_body a:active{text-decoration:none}

.asset_detail_container.favorites-open .content_wrapper,html.superstrip-visible .asset_detail_container.favorites-open .content_wrapper{margin-top:0px}

.asset_detail_container .main_body{margin-top:0px}

body.home-fancy .carousel{padding-top:0px}

body.home-fancy #getty-header{max-width:1280px;margin:0 auto}

body.home-fancy #getty-header.consumer .ups-desktop{padding-left:0px;padding-right:0px}

.front_door_container.footage .content_wrapper{padding-top:0px}

body.quotes_container .quote-body{margin-top:15px}

body.customer_support_container .content_wrapper{padding-top:0}

.home_container,.landing_container{margin-top:0px}

.home_container #header_getty,.landing_container #header_getty{border-bottom:1px solid #cccccc}

.home_container #getty-header,.landing_container #getty-header{max-width:1280px;margin:0 auto}

@media screen and (max-width: 1300px){.home_container #getty-header.consumer .ups-desktop .ups-container,.landing_container #getty-header.consumer .ups-desktop .ups-container{padding:0 20px}}

.home_container .body_container,.landing_container .body_container{margin-top:0}

.carts_container .content_wrapper{margin-top:0px}

.carts_container .content_wrapper #getty-header{max-width:1280px;margin:0 auto}

#header_getty{border-bottom:1px solid #ECECEC;z-index:100}

#header-wrapper{position:relative;z-index:300;background-color:white}

.ups-desktop,.ups-mobile{display:none}

.ups-hidden{display:none}

.full-header .full-header.ups-desktop{display:none}

@media screen and (min-width: 801px){.full-header .full-header.ups-desktop{display:block !important}}

.full-header .full-header.ups-mobile{display:none}

@media screen and (max-width: 800px){.full-header .full-header.ups-mobile{display:block !important}}

.minimal-header .minimal-header.ups-desktop{display:none}

@media screen and (min-width: 801px){.minimal-header .minimal-header.ups-desktop{display:block !important}}

.minimal-header .minimal-header.ups-mobile{display:none}

@media screen and (max-width: 800px){.minimal-header .minimal-header.ups-mobile{display:block !important}}

.pop_up-header .pop_up-header.ups-desktop{display:none}

@media screen and (min-width: 801px){.pop_up-header .pop_up-header.ups-desktop{display:block !important}}

.pop_up-header .pop_up-header.ups-mobile{display:none}

@media screen and (max-width: 800px){.pop_up-header .pop_up-header.ups-mobile{display:block !important}}

html.superstrip-hidden .superstrip{display:none}

.global-notification-container{align-items:center;bottom:0;justify-content:center;position:fixed;width:100%;z-index:17}

.global-notification-banner{max-width:1146px;margin:0 auto;min-height:41px;align-items:center;background-color:#6F43D6;color:#fff;display:flex;justify-content:center;text-align:center;position:relative;border-radius:5px;margin-bottom:4px;border-bottom:1px solid #4316AC;border-top:1px solid rgba(255,255,255,0.1);box-shadow:0 5px 8px rgba(102,102,102,0.25)}

.global-notification-banner:first{border-top:none}

.global-notification-banner:last{border-bottom:none}

@media screen and (min-width: 640px){.global-notification-banner{min-height:51px}}

.global-notification-banner__message{align-items:center;display:flex;flex-flow:row wrap;justify-content:center;padding:2em 2em}

@media screen and (min-width: 768px){.global-notification-banner__message{padding:0.6em 3.5em}}

.global-notification-banner__message a{color:#fff;text-decoration:underline}

.global-notification-banner.rm-sunset .global-notification-banner__message{padding-right:0.75em}

.global-notification-banner__text{padding:2em 0.5em}

@media screen and (min-width: 768px){.global-notification-banner__text{padding:1em 0.5em}}

.global-notification-banner__close-icon-container{align-items:center;align-self:flex-start;cursor:pointer;display:flex;justify-content:center;height:40px;width:40px;position:absolute;right:0;top:0;transition:all .3s ease;border-radius:0px 5px 5px 0px}

.global-notification-banner__close-icon-container:hover{color:#4316AC}

@media screen and (min-width: 640px){.global-notification-banner__close-icon-container{height:50px;width:50px}}

.global-notification-banner__icon{color:#FFFFFF;margin-right:10px;padding:0.5em 1em}

.global-notification-banner__btn,.global-notification-banner .btn{align-items:center;border:1px solid #fff;margin-left:0.8em;margin-right:0.8em;margin-top:1em;padding:0.5em 1em;flex:1 1 100%;color:#fff;text-transform:uppercase;font-size:13px;text-decoration:none}

.global-notification-banner__btn:active,.global-notification-banner__btn:focus,.global-notification-banner__btn:hover:not([disabled]),.global-notification-banner .btn:active,.global-notification-banner .btn:focus,.global-notification-banner .btn:hover:not([disabled]){background-color:#4316AC}

@media screen and (min-width: 768px){.global-notification-banner__btn,.global-notification-banner .btn{flex:none;margin-top:0}}

.global-notification-banner__left-icon-container>*{display:none}

.global-notification-banner.exclamation svg[gi-icon="unisporkal-styles/stylesheets/unisporkal/getty/exclamation"]{display:block}

.emergency-mode{border-radius:0px;max-width:100%;box-shadow:none}

.premium-access-pause__strip .global-notification-banner__icon{margin-top:5px}

.premium-access-pause__strip .global-notification-banner__message{padding-left:5px}

@media screen and (min-width: 768px){.premium-access-renewal__strip .btn{flex:none;margin-top:1em}}

.super-strip-notification{height:auto;min-height:51px;align-items:center;background-color:#6F43D6;color:white;display:flex;justify-content:center;text-align:center;position:relative}

.super-strip-notification svg{fill:white}

.super-strip-notification .btn{align-items:center;border:1px solid white;padding:.5em 1em;color:white;text-transform:uppercase;font-size:13px;background:none;border-radius:.3125em;cursor:pointer;outline:none;text-align:center;text-decoration:none;transition:all .3s ease}

.super-strip-notification .close{top:10px;right:8px}

.super-strip-notification .close:after{font-size:34px}


/*# sourceMappingURL=getty-legacy-8904430d.css.map*/