/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/assets/images/photoswipe/default-skin-e3f799c6dec9af194c86decdf7392405.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/assets/images/photoswipe/default-skin-b257fa9c5ac8c515ac4d77a667ce2943.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/assets/images/photoswipe/preloader-e34aafbb485a96eaf2a789b2bf3af6fe.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width: 768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase,.initialism{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff}.bg-primary{background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media(min-width: 768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.428571429;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:"— "}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:""}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:" —"}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media(min-width: 768px){.container{width:750px}}@media(min-width: 992px){.container{width:970px}}@media(min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.3333333333%}.col-xs-2{width:16.6666666667%}.col-xs-3{width:25%}.col-xs-4{width:33.3333333333%}.col-xs-5{width:41.6666666667%}.col-xs-6{width:50%}.col-xs-7{width:58.3333333333%}.col-xs-8{width:66.6666666667%}.col-xs-9{width:75%}.col-xs-10{width:83.3333333333%}.col-xs-11{width:91.6666666667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.3333333333%}.col-xs-pull-2{right:16.6666666667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.3333333333%}.col-xs-pull-5{right:41.6666666667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.3333333333%}.col-xs-pull-8{right:66.6666666667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.3333333333%}.col-xs-pull-11{right:91.6666666667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.3333333333%}.col-xs-push-2{left:16.6666666667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.3333333333%}.col-xs-push-5{left:41.6666666667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.3333333333%}.col-xs-push-8{left:66.6666666667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.3333333333%}.col-xs-push-11{left:91.6666666667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.3333333333%}.col-xs-offset-2{margin-left:16.6666666667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.3333333333%}.col-xs-offset-5{margin-left:41.6666666667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.3333333333%}.col-xs-offset-8{margin-left:66.6666666667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.3333333333%}.col-xs-offset-11{margin-left:91.6666666667%}.col-xs-offset-12{margin-left:100%}@media(min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.3333333333%}.col-sm-2{width:16.6666666667%}.col-sm-3{width:25%}.col-sm-4{width:33.3333333333%}.col-sm-5{width:41.6666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.3333333333%}.col-sm-8{width:66.6666666667%}.col-sm-9{width:75%}.col-sm-10{width:83.3333333333%}.col-sm-11{width:91.6666666667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.3333333333%}.col-sm-pull-2{right:16.6666666667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.3333333333%}.col-sm-pull-5{right:41.6666666667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.3333333333%}.col-sm-pull-8{right:66.6666666667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.3333333333%}.col-sm-pull-11{right:91.6666666667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.3333333333%}.col-sm-push-2{left:16.6666666667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.3333333333%}.col-sm-push-5{left:41.6666666667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.3333333333%}.col-sm-push-8{left:66.6666666667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.3333333333%}.col-sm-push-11{left:91.6666666667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.3333333333%}.col-sm-offset-2{margin-left:16.6666666667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.3333333333%}.col-sm-offset-5{margin-left:41.6666666667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.3333333333%}.col-sm-offset-8{margin-left:66.6666666667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.3333333333%}.col-sm-offset-11{margin-left:91.6666666667%}.col-sm-offset-12{margin-left:100%}}@media(min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.3333333333%}.col-md-2{width:16.6666666667%}.col-md-3{width:25%}.col-md-4{width:33.3333333333%}.col-md-5{width:41.6666666667%}.col-md-6{width:50%}.col-md-7{width:58.3333333333%}.col-md-8{width:66.6666666667%}.col-md-9{width:75%}.col-md-10{width:83.3333333333%}.col-md-11{width:91.6666666667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.3333333333%}.col-md-pull-2{right:16.6666666667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.3333333333%}.col-md-pull-5{right:41.6666666667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.3333333333%}.col-md-pull-8{right:66.6666666667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.3333333333%}.col-md-pull-11{right:91.6666666667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.3333333333%}.col-md-push-2{left:16.6666666667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.3333333333%}.col-md-push-5{left:41.6666666667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.3333333333%}.col-md-push-8{left:66.6666666667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.3333333333%}.col-md-push-11{left:91.6666666667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.3333333333%}.col-md-offset-2{margin-left:16.6666666667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.3333333333%}.col-md-offset-5{margin-left:41.6666666667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.3333333333%}.col-md-offset-8{margin-left:66.6666666667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.3333333333%}.col-md-offset-11{margin-left:91.6666666667%}.col-md-offset-12{margin-left:100%}}@media(min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.3333333333%}.col-lg-2{width:16.6666666667%}.col-lg-3{width:25%}.col-lg-4{width:33.3333333333%}.col-lg-5{width:41.6666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.3333333333%}.col-lg-8{width:66.6666666667%}.col-lg-9{width:75%}.col-lg-10{width:83.3333333333%}.col-lg-11{width:91.6666666667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.3333333333%}.col-lg-pull-2{right:16.6666666667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.3333333333%}.col-lg-pull-5{right:41.6666666667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.3333333333%}.col-lg-pull-8{right:66.6666666667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.3333333333%}.col-lg-pull-11{right:91.6666666667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.3333333333%}.col-lg-push-2{left:16.6666666667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.3333333333%}.col-lg-push-5{left:41.6666666667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.3333333333%}.col-lg-push-8{left:66.6666666667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.3333333333%}.col-lg-push-11{left:91.6666666667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.3333333333%}.col-lg-offset-2{margin-left:16.6666666667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.3333333333%}.col-lg-offset-5{margin-left:41.6666666667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.3333333333%}.col-lg-offset-8{margin-left:66.6666666667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.3333333333%}.col-lg-offset-11{margin-left:91.6666666667%}.col-lg-offset-12{margin-left:100%}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9 ;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio: 0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}input[type=date].input-sm,.input-group-sm input[type=date],input[type=time].input-sm,.input-group-sm input[type=time],input[type=datetime-local].input-sm,.input-group-sm input[type=datetime-local],input[type=month].input-sm,.input-group-sm input[type=month]{line-height:30px}input[type=date].input-lg,.input-group-lg input[type=date],input[type=time].input-lg,.input-group-lg input[type=time],input[type=datetime-local].input-lg,.input-group-lg input[type=datetime-local],input[type=month].input-lg,.input-group-lg input[type=month]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-left:-20px;margin-top:4px \9 }.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=radio].disabled,fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=checkbox].disabled,fieldset[disabled] input[type=checkbox]{cursor:not-allowed}.radio-inline.disabled,fieldset[disabled] .radio-inline,.checkbox-inline.disabled,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,fieldset[disabled] .radio label,.checkbox.disabled label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;min-height:32px}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;min-height:38px}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width: 768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}@media(min-width: 768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:14.333333px}}@media(min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.428571429;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default.focus,.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{background-image:none}.btn-default.disabled,.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled.active,.btn-default[disabled],.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled].active,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:hover,.btn-primary:focus,.btn-primary.focus,.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{background-image:none}.btn-primary.disabled,.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled.active,.btn-primary[disabled],.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary.active{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success.focus,.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled,.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled.active,.btn-success[disabled],.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled].active,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info.focus,.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{background-image:none}.btn-info.disabled,.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled.active,.btn-info[disabled],.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled].active,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning.focus,.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{background-image:none}.btn-warning.disabled,.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled.active,.btn-warning[disabled],.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger.focus,.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{background-image:none}.btn-danger.disabled,.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled.active,.btn-danger[disabled],.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:before,.pager:after{content:" ";display:table}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@font-face{font-family:"Roboto";font-style:normal;font-weight:400;src:local("Roboto"),local("Roboto-Regular"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-regular-7f6652096fad35bb930a2ed1904fc6c4.woff2) format("woff2"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-regular-2b9dfec7807cb4a69fbb276eb62c3d80.woff) format("woff")}@font-face{font-family:"Roboto";font-style:italic;font-weight:400;src:local("Roboto Italic"),local("Roboto-Italic"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-italic-24156e4f865c6069ec8a464df636a1b9.woff2) format("woff2"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-italic-787d5f454c5b1387e1041b95d82a9693.woff) format("woff")}@font-face{font-family:"Roboto";font-style:normal;font-weight:500;src:local("Roboto Medium"),local("Roboto-Medium"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-500-fc764334f6bb6f0282ce721595280bb9.woff2) format("woff2"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-500-4babd1bb2a7bdfbac976e55b714f0a24.woff) format("woff")}@font-face{font-family:"Roboto";font-style:italic;font-weight:500;src:local("Roboto Medium Italic"),local("Roboto-MediumItalic"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-500italic-e64a283b8669cd080300fc4effe74340.woff2) format("woff2"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-500italic-5c56bc963381aa0007ae4919825abc08.woff) format("woff")}@font-face{font-family:"Roboto";font-style:normal;font-weight:700;src:local("Roboto Bold"),local("Roboto-Bold"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-700-21f4b44bd7f86b93c6bac09146f7de33.woff2) format("woff2"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-700-3125c8cad303341c2702a7df5a2ba397.woff) format("woff")}@font-face{font-family:"Roboto";font-style:italic;font-weight:700;src:local("Roboto Bold Italic"),local("Roboto-BoldItalic"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-700italic-3ce3d50bcc4dd38d4ff3bba77036315e.woff2) format("woff2"),url(/assets/fonts/roboto/roboto-v18-latin_cyrillic-700italic-13693411d9d201b239295f39ef7e36e4.woff) format("woff")}[class^=icon-],[class*=" icon-"]{display:inline-block;width:1em;height:1em;margin-bottom:-0.14em;stroke-width:0;stroke:currentColor;fill:currentColor}.icon-ban{width:.8572285714em}.icon-bars{width:.8572285714em}.icon-bolt{width:.50005em}.icon-bookmark{width:.750075em}.icon-check-circle,.icon-check-circle-o,.icon-check-square{width:.8572285714em}.icon-chevron-circle-right{width:.8572285714em}.icon-clock{width:.8572285714em}.icon-cloud-upload{width:1.0715357143em}.icon-envelope{width:.9286642857em}.icon-exclamation{width:.3571785714em}.icon-file,.icon-file-audio{width:.8572285714em}.icon-globe{width:.8572285714em}.icon-home{width:.9286642857em}.icon-level-down,.icon-level-up{width:.5714857143em}.icon-lock{width:.6429214286em}.icon-more{width:2.0002em}.icon-more-small{width:1.6787392857em}.icon-plus{width:.7143571429em}.icon-question-circle{width:.8572285714em}.icon-search{width:.9286642857em}.icon-times{width:.7143571429em}.icon-thumbs-down,.icon-thumbs-up{width:.8929464286em}.userpic{display:inline-block;border:none;margin:1px;box-shadow:0 0 1px rgba(0,0,0,.8);width:50px;height:50px;border-radius:1px}.userpic img{border-radius:1px}.userpic.userpic-large{width:75px;height:75px;border-radius:2px}.userpic.userpic-large img{border-radius:2px}.userpic.userpic-loading{box-shadow:0 0 1px rgba(0,0,0,.4);background-color:#f2f2f2}.userpic.userpic-error{color:#ffd9d9;font-size:50px;text-align:center;padding-top:14px;box-shadow:0 0 1px rgba(255,0,0,.4);background-color:#fff2f2}.user-card{width:263px}.user-card .user-card-info{min-height:97px;padding:10px 8px 0 10px;background-color:#fff;border-top-right-radius:2px;border-top-left-radius:2px;font-size:12px !important;line-height:15px;text-align:left}.user-card .user-card-info .userpic{float:left}.user-card .user-card-info .display-name{font-weight:bold;margin-left:87px;overflow-wrap:break-word;word-wrap:break-word}.user-card .user-card-info .display-name a{color:#008 !important}.user-card .user-card-info .username{color:#999;margin:3px 0 0 87px}.user-card .user-card-info .username .description-trigger{color:#ccc;padding:1px 3px;margin-left:2px}.user-card .user-card-info .username .description-trigger:hover{cursor:pointer;background-color:#eee}.user-card .user-card-info .username .description-trigger [class^=icon-],.user-card .user-card-info .username .description-trigger [class*=" icon-"]{margin-bottom:-0.1em}.user-card .user-card-info .description{color:#666;margin:7px 0 0 87px;overflow:hidden}.user-card .user-card-info .feed-status{color:#666;margin:7px 0 0 87px}.user-card .user-card-info .relationship-status{color:#666;margin:7px 0 6px 87px}.user-card .user-card-info:after{content:"";display:table;clear:both}.user-card .user-card-actions{border-top:1px #e4e4e4 solid;padding:5px 10px 6px 10px;background-color:#f4f4f4;border-bottom-right-radius:2px;border-bottom-left-radius:2px;color:#666;font-size:13px !important;line-height:17px;text-align:left}.user-card .user-card-actions a{font-size:13px !important;color:#559 !important;font-weight:normal !important}.dummy-user .user-tile-name{color:#b8c0e6}body{background:#fff;position:relative;min-height:100%;margin:0 !important;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;overflow-anchor:none}body.mobile-sidebar-open{overflow:hidden}div.jsonly>p{padding-left:2px}@media(min-width: 1200px){.container{width:970px !important}}@media(min-width: 992px){.container.unauthenticated{width:750px !important}}a,a:hover,a:focus{cursor:pointer;color:#008}.settings-error{margin-left:180px}.settings-error{max-width:174px}.header-row{margin-bottom:10px}footer{color:#444;font-size:12px;text-align:center;border-top:1px solid #eee;padding-top:14px;padding-bottom:14px}footer a{color:#339}.error-string{color:#ff5a5f}.radio input[type=radio],.checkbox input[type=checkbox]{margin-top:3px}.pswp__top-bar{background-color:transparent !important}.pswp__counter,.pswp__button--close{background-color:rgba(0,0,0,.3)}.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{top:28px;height:44px;width:44px}.pswp__button--arrow--left:before{left:0;background-position:-132px -37px}.pswp__button--arrow--right:before{right:0;background-position:-88px -37px}header h1{white-space:nowrap}@media(max-width: 767px){header h1{margin-top:15px;margin-bottom:15px}}@media(min-width: 768px){header h1{margin-top:20px;margin-bottom:20px}}header h1 a{color:transparent;text-decoration:none;background-image:url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20322%2092%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M344.6%202L24-83.9l-3.8%2014.5%20320.6%2085.9%204-14.5z%22%20fill%3D%22%23008026%22%2F%3E%0A%3Cpath%20d%3D%22M340.8%2016.5L20-69.4l-4%2014.5L337%2031l3.9-14.5z%22%20fill%3D%22%23004dff%22%2F%3E%0A%3Cpath%20d%3D%22M336.9%2031L16.2-55l-4%2014.5L333%2045.5l3.9-14.5z%22%20fill%3D%22%23750787%22%2F%3E%0A%3Cpath%20d%3D%22M333%2045.5l-320.7-86-3.9%2014.6L329.1%2060l3.9-14.5z%22%20fill%3D%22%23e40303%22%2F%3E%0A%3Cpath%20d%3D%22M329.1%2060L8.4-26%204.5-11.3l320.7%2085.8%204-14.4z%22%20fill%3D%22%23ff8c00%22%2F%3E%0A%3Cpath%20d%3D%22M325.2%2074.4L4.5-11.4.7%203l320.7%2085.8%203.8-14.5z%22%20fill%3D%22%23ffed00%22%2F%3E%0A%3Cpath%20d%3D%22M321.4%2089L.7%203l-4%2014.6%20320.8%2085.8%203.9-14.5z%22%20fill%3D%22%23008026%22%2F%3E%0A%3Cpath%20d%3D%22M317.5%20103.4L-3.2%2017.6l-4%2014.4%20320.8%2086%203.9-14.6z%22%20fill%3D%22%23004dff%22%2F%3E%0A%3Cpath%20d%3D%22M313.6%20118L-7.1%2032-11%2046.5l320.7%2085.9%203.9-14.5z%22%20fill%3D%22%23750787%22%2F%3E%0A%3Cpath%20d%3D%22M309.7%20132.4L-11%2046.5-14.9%2061%20305.8%20147l4-14.5z%22%20fill%3D%22%23e40303%22%2F%3E%0A%3Cpath%20d%3D%22M305.8%20146.9L-14.9%2061l-3.8%2014.5L302%20161.4l3.8-14.5z%22%20fill%3D%22%23ff8c00%22%2F%3E%0A%3Cpath%20d%3D%22M302%20161.4L-18.9%2075.5-22.6%2090%20298%20175.9l3.8-14.5z%22%20fill%3D%22%23ffed00%22%2F%3E%0A%3C%2Fsvg%3E");background-repeat:no-repeat;background-size:contain;-webkit-background-clip:text;background-clip:text}header h1 a:active,header h1 a:focus,header h1 a:hover,header h1 a:visited{color:transparent;text-decoration:none}header h1 .loading{display:inline-block;vertical-align:top;line-height:10px}header h1 .gamma{color:#1d66bf;width:.39em;height:.56em;margin:0 0 .23em .15em;fill:currentColor;stroke:currentColor;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round}header h1 .tagline{color:#bbb;font-size:12px;font-weight:normal;font-style:italic;margin-left:1px}header .mobile-sidebar-toggle{display:none;position:fixed;width:46px;height:46px;z-index:1000;cursor:pointer;color:#86aad5;font-size:30px;text-align:center;margin:15px 0 10px -46px;background-color:#eee;border-radius:5px}@media(max-width: 991px){header .mobile-sidebar-toggle{display:inline-block}}@media(min-width: 768px){header .mobile-sidebar-toggle{margin-top:23px}}header .mobile-sidebar-toggle [class^=icon-],header .mobile-sidebar-toggle [class*=" icon-"]{margin:8px 0 0 0}header .mobile-sidebar-toggle .icon-times{display:none}.mobile-sidebar-open header .mobile-sidebar-toggle .icon-bars{display:none}.mobile-sidebar-open header .mobile-sidebar-toggle .icon-times{display:inline-block}header .mobile-sidebar-toggle .direct-messages-badge{position:absolute;top:-5px;right:-5px;width:18px;height:18px;border-radius:50%;background-color:#e44;color:#fff;font-size:12px;line-height:18px}header .signin-link{display:inline-block;color:#bbb;white-space:nowrap}@media(max-width: 767px){header .signin-link{font-size:20px;margin-top:14px}}@media(min-width: 768px){header .signin-link{font-size:24px;margin-top:27px}}@media(max-width: 767px){h1{font-size:30px}h2{font-size:25px}h3{font-size:20px}h4{font-size:15px}}.inline-header{font-size:24px;margin:0 3px;white-space:nowrap}.inline-header.line-start{margin-left:0}@media(max-width: 767px){.inline-header{font-size:20px}}.sidebar a{color:#000}.sidebar a [class^=icon-],.sidebar a [class*=" icon-"],.sidebar a .userpic{display:none}.sidebar a.bookmarklet-button{color:#000;background-color:#ddd;border-radius:4px;padding:3px 6px;margin:0;white-space:nowrap;text-decoration:none}.sidebar a.bookmarklet-button:hover{color:#fff;background-color:#333;text-decoration:none}.sidebar .logged-in{margin-bottom:23px}.sidebar .logged-in .userpic{float:left;margin-right:11px}.sidebar .logged-in .user .author{font-size:14px;font-weight:bold;line-height:16px;padding-top:2px;min-height:25px;margin-bottom:8px}.sidebar .search-form{display:none}@media(max-width: 991px){.sidebar-overlay{background-color:transparent;transition:background-color .3s}.mobile-sidebar-open .sidebar-overlay{display:block;position:fixed;top:0;left:0;width:100%;height:100%;padding:0;background-color:rgba(0,0,0,.5);z-index:10}.sidebar{position:fixed;display:block;top:0;right:0;max-width:270px;width:75%;height:100%;overflow-y:auto;background-color:#fff;box-shadow:0 0 5px 1px rgba(0,0,0,.5);padding:15px 15px 0 15px;-webkit-transform:translate(275px, 0);transform:translate(275px, 0);-webkit-transition:-webkit-transform .3s;transition:transform .3s}.mobile-sidebar-open .sidebar{-webkit-transform:translate(0, 0);transform:translate(0, 0)}.sidebar .search-form{display:block}.sidebar .box-header,.sidebar .box-header-timeline,.sidebar .box-header-empty{margin-bottom:0 !important}.sidebar .box-body ul li{border-bottom:1px solid #eee;padding:0 !important}.sidebar .box-body ul li a{display:block;padding:10px 0 !important}.sidebar .box-body ul li a:active{background-color:#eee}.sidebar .box-body ul li a [class^=icon-],.sidebar .box-body ul li a [class*=" icon-"]{display:inline-block;color:#333;width:20px;margin-right:6px}.sidebar .box-body ul li a .userpic{display:block;float:left;width:33px;height:33px;margin-top:2px;margin-right:11px}.sidebar .box-body ul li a .updated-ago{margin-top:1px}.sidebar .box-footer{padding-top:10px !important}.sidebar .hidden-on-mobile{display:none}}.post-recipients .post-recipients-label{float:left;margin-top:7px}.post-recipients .react-select-container{margin:0 0 3px 20px}.post-recipients .react-select__control{border:none;box-shadow:none !important;min-height:inherit}.post-recipients .react-select__value-container{padding:3px 5px}.post-recipients .react-select__value-container:after{content:"Add/Edit...";color:#ccc;font-size:.9em;margin-left:-2px}.post-recipients .react-select__control--is-focused .react-select__value-container:after{content:""}.post-recipients .react-select__multi-value{background-color:#ebf5ff;border:1px solid #b3d9ff;border-radius:3px;margin:2px 5px 2px 0}.post-recipients .react-select__multi-value__label{color:#559;font-size:.9em;padding:2px 4px 2px 5px}.post-recipients .react-select__multi-value__remove{padding:1px 3px 0 3px}.post-recipients .react-select__multi-value__remove:hover{color:#fff}.post-recipients .react-select__menu{margin-top:0;border-radius:4px;border:1px solid #66afe9;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);z-index:2000}.post-recipients .react-select__menu-list{max-height:200px;padding:0 10px 10px 0}.post-recipients .react-select__group{padding:6px 0}.post-recipients .react-select__group-heading{color:#666;font-size:1em;font-weight:bold;text-transform:none;padding:0;margin:10px 0 0 10px}.post-recipients .react-select__option{display:inline-block;width:auto;font-size:.9em;color:#559;background-color:#ebf5ff;border:1px solid #b3d9ff;border-radius:3px;padding:2px 5px;margin:10px 0 0 10px}.post-recipients .react-select__option--is-focused{color:#333;background-color:#b3d9ff}label.option-box{display:block}label.option-box .input{display:table-cell}label.option-box .option{display:table-cell;font-weight:normal;padding-left:10px;padding-bottom:5px}.post{padding-top:14px;padding-bottom:14px;border-bottom:1px solid #eee}.post:after{content:"";display:table;clear:both}.post a{color:#559}.post .read-more{color:#559 !important;font-style:italic;white-space:nowrap}.post .p-break{display:block;height:.35em}.post .pilcrow{cursor:pointer}.post .pilcrow:hover{padding:1px;margin:-1px;border-radius:2px;background-color:#d9ebff}.post .post-userpic{float:left;margin-right:10px}.post .post-userpic.has-secondary{position:relative;margin-bottom:4px}.post .post-userpic.has-secondary .userpic-secondary{position:absolute;left:17%;width:33px;height:33px}.post .post-userpic.has-secondary .userpic-secondary.userpic-large{width:50px;height:50px}.post .post-top{color:#666;margin-left:62px;margin-bottom:8px}@media(max-width: 767px){.post .post-top{margin-left:0;min-height:52px}}.post .post-top .post-header{font-size:15px;line-height:21px;margin-bottom:2px}.post .post-top .post-header a{font-weight:bold;color:#008}.post .post-top .post-header .post-recipient{font-weight:500}.post .post-top .post-text{color:#000;font-size:16px;line-height:22px;overflow-wrap:break-word;word-wrap:break-word}.post .post-top .post-text a{color:#008}.post .post-bottom{color:#666;font-size:14px;line-height:19px;margin-left:62px}@media(max-width: 767px){.post .post-bottom{clear:both;margin-left:0}}.post .post-bottom .post-footer [class^=icon-],.post .post-bottom .post-footer [class*=" icon-"]{margin-right:6px;margin-left:1px}.post .post-bottom .post-footer .post-timestamp{color:#666}.post .post-bottom .post-footer .icon-more{margin-right:0;margin-left:0}.spoiler>span{cursor:pointer}.spoiler>span .blur-0,.spoiler>span .blur-1,.spoiler>span .blur-2,.spoiler>span .blur-3,.spoiler>span .blur-4,.spoiler>span .blur-5,.spoiler>span .blur-6,.spoiler>span .blur-7,.spoiler>span .blur-8,.spoiler>span .blur-9{filter:blur(0.06em);transition:filter .5s ease}.spoiler>u{text-decoration:none;transition:filter .5s ease}.spoiler-hidden>span .blur-0{filter:blur(0)}.spoiler-hidden>span .blur-1{filter:blur(0.015em)}.spoiler-hidden>span .blur-2{filter:blur(0.03em)}.spoiler-hidden>span .blur-3{filter:blur(0.045em)}.spoiler-hidden>span .blur-4{filter:blur(0.06em)}.spoiler-hidden>span .blur-5{filter:blur(0.075em)}.spoiler-hidden>span .blur-6{filter:blur(0.09em)}.spoiler-hidden>span .blur-7{filter:blur(0.105em)}.spoiler-hidden>span .blur-8{filter:blur(0.12em)}.spoiler-hidden>span .blur-9{filter:blur(0.135em)}.spoiler-hidden>u{filter:blur(0.25em);cursor:pointer}.spoiler-hidden>u *{pointer-events:none}.post-editor{position:relative}.post-editor:after{content:"";display:table;clear:both}.post-editor .post-textarea{padding:3px 5px;width:100%;max-width:100%;margin-bottom:6px;color:#000;font-size:16px;line-height:22px}.post-editor .post-edit-options{float:left;line-height:22px;margin-bottom:8px}.post-editor .post-edit-options .post-edit-attachments{cursor:pointer}.post-editor .post-edit-options .post-edit-attachments:hover span:last-child{text-decoration:underline}.post-editor .post-edit-options .post-edit-more-trigger{color:#333;margin-left:15px}.post-editor .post-edit-options .post-edit-more{margin-top:6px}.post-editor .post-edit-options .post-edit-more .post-edit-more-checkbox{margin:0 5px 0 1px;vertical-align:middle}.post-editor .post-edit-options .post-edit-more .post-edit-more-labeltext{font-weight:normal;vertical-align:middle}.post-editor .post-edit-actions{text-align:right;margin-bottom:8px}.post-editor .post-edit-actions [class^=icon-],.post-editor .post-edit-actions [class*=" icon-"]{position:absolute;margin:-30px 0 0 -22.1px;color:#666}.post-editor .post-cancel{color:#559;font-size:12px;margin-right:10px}.post-editor .post-error{margin:10px 0 !important}.post-editor .attachments{clear:both}.recently-hidden-post{padding-left:63px}.single-post{border-top:1px solid #eee;padding-top:14px;padding-bottom:0;border-bottom:0 none}.single-post .post-top{margin-left:87px}@media(max-width: 767px){.single-post .post-top{margin-left:0;min-height:77px}}.single-post .post-top .post-header{font-size:19px;line-height:26px}.single-post .post-top .post-text{font-size:21px;line-height:28px}.single-post .post-bottom{margin-left:87px}@media(max-width: 767px){.single-post .post-bottom{margin-left:0}}.single-post .post-editor .post-textarea{font-size:21px;line-height:28px}.direct-post{position:relative}.post-direct-marker{position:absolute;color:#6394d0;opacity:.17;font-size:90px;top:2px;right:0}.single-post .post-direct-marker{font-size:135px;top:12px}.post-from-archive{position:relative;overflow:hidden}.post-from-archive .post-header a{color:#226 !important}.post-from-archive .post-text{color:#432910 !important}.post-from-archive .post-text a{color:#226 !important}.post-from-archive .post-footer{color:#777166 !important}.post-from-archive .post-footer .post-timestamp{color:#777166 !important}.post-from-archive .post-footer a{color:#6a6588 !important}.post-from-archive .likes a{color:#6a6588 !important}.post-archive-marker{position:absolute;color:#704214;opacity:.2;font-size:37px;top:73px;left:8px}@media(max-width: 767px){.post-archive-marker{opacity:.1;left:inherit;top:12px;right:0}}.single-post .post-archive-marker{font-size:56px;top:102px;left:11px}@media(max-width: 767px){.single-post .post-archive-marker{left:inherit;top:11px;right:-1px}}.dummy-post .post-top{color:#eee}.dummy-post .post-top .post-header a{color:#b8c0e6}.dummy-post .post-top .post-text{color:#ddd}.dummy-post .post-bottom{color:#eee}.dummy-post .post-bottom .attachments .attachment{border-color:#e4e4e4;background-color:#f2f2f2;height:100px}.dummy-post .post-bottom .attachments .attachment.dummy-attachment-0{width:75px}.dummy-post .post-bottom .attachments .attachment.dummy-attachment-1{width:100px}.dummy-post .post-bottom .attachments .attachment.dummy-attachment-2{width:150px}.dummy-post .post-bottom .post-footer a{color:#ced5f2}.dummy-post .post-bottom .likes .likes-icon{float:none;margin:0;color:#ffe099}.dummy-post .post-bottom .likes a{color:#ced5f2}.box{clear:both;margin-bottom:23px;border:0;border-radius:8px}.box-header,.box-header-timeline,.box-header-empty{line-height:28px;height:28px;border-bottom:2px #000 solid;color:#000}.box-header-empty{background-color:#fff}.box-header-timeline{font-size:24px;font-weight:500;padding-bottom:2px;overflow:hidden}.box-header-timeline .subheader{color:#ddd}.box-header-timeline .sidelinks{float:right;font-size:14px;font-weight:normal;line-height:30px}@media(max-width: 512px){.box-header-timeline .sidelinks{text-transform:capitalize}.box-header-timeline .sidelinks span{display:none}}.box-subheader{font-style:italic;margin-bottom:7px}.box-message{margin-bottom:15px;padding:5px 10px}.content .box-body{background-color:#fff}.content .box-body:after{content:"";display:table;clear:both}.sidebar .box-header,.sidebar .box-header-empty,.sidebar .box-header-timeline{font-weight:bold;font-size:15px;margin-bottom:10px}.sidebar .box-body{font-size:15px;margin-bottom:3px;background-color:#fff}.sidebar .box-body:after{content:"";display:table;clear:both}.sidebar .box-body a{color:#000;text-decoration:none}.sidebar .box-body ul{list-style:none;margin:0;padding:0}.sidebar .box-body ul li{padding-bottom:3px;white-space:nowrap;overflow:hidden}.sidebar .box-body .updated-ago{display:table;color:#999;font-size:11px}.sidebar .box-footer{padding:5px 0 10px 0;font-size:11px}.sidebar .box-footer a{color:#000}.attachments{margin-bottom:2px}.attachments a{color:#008;text-decoration:none}.attachments a:hover span{text-decoration:underline}.attachments:after{content:"";display:table;clear:both}.image-attachments .attachment{position:relative;display:inline-block;vertical-align:middle;border:1px solid silver;padding:1px;margin:0 8px 8px 0;min-width:36px;min-height:36px;line-height:30px;text-align:center}.image-attachments .attachment img{max-width:525px;max-height:175px}.image-attachments .show-more-images{display:inline-block;color:#fad889;font-size:2em;text-decoration:none;margin-top:2px;margin-bottom:14px}.image-attachments .show-more-images .icon-chevron-circle-right{margin-bottom:-0.2em}.audio-attachments .attachment,.general-attachments .attachment{position:relative;display:block;margin:0 8px 8px 0;overflow-wrap:break-word;word-wrap:break-word}.audio-attachments .attachment [class^=icon-],.audio-attachments .attachment [class*=" icon-"],.general-attachments .attachment [class^=icon-],.general-attachments .attachment [class*=" icon-"]{display:inline;color:#666;margin-left:1px;margin-right:5px}.image-attachments .attachment .remove-attachment{display:block;position:absolute;width:32px;height:32px;line-height:30px;right:1px;top:1px;cursor:pointer;color:#000;font-size:20px;z-index:10;background-color:silver;opacity:.7;border-bottom-left-radius:5px}.image-attachments .attachment .remove-attachment:hover{opacity:1}.image-attachments .attachment .remove-attachment .icon-times{width:14px;height:19.6px;margin:6px 0 0 0}.image-attachments .attachment.removed{border:2px solid #e33;padding:0}.image-attachments .attachment.added{border:2px solid #3d3;padding:0}.audio-attachments .attachment .remove-attachment,.general-attachments .attachment .remove-attachment{display:inline;cursor:pointer;padding:3px 2px 3px 6px;margin:0 0 0 5px;background-color:#eee;border-radius:3px}.audio-attachments .attachment .remove-attachment:hover,.general-attachments .attachment .remove-attachment:hover{background-color:#ddd}.audio-attachments .attachment.removed,.general-attachments .attachment.removed{background-color:#fbb}.audio-attachments .attachment.added,.general-attachments .attachment.added{background-color:#bfb}.dragged-attachment a{display:block;border:1px solid silver;padding:1px;background-color:#fff;-webkit-transform:rotate(3deg);transform:rotate(3deg)}.dragged-attachment .remove-attachment{display:none}.dropzone{display:none}.dragover .dropzone{display:flex;align-items:center;justify-content:center;position:absolute;z-index:1000;width:100.16%;height:105px;min-height:0;padding:0;border:5px dotted #ccc;background-color:#eee;margin-left:-1px;font-size:16px}.dragover .dropzone .dz-message{margin:0}.dropzone-previews .dz-preview{position:relative;display:inline-block;vertical-align:top;margin:0 10px 10px 0;min-height:100px;border:1px solid silver;padding:1px}.dropzone-previews .dz-preview:hover{z-index:1000}.dropzone-previews .dz-preview:hover .dz-details{opacity:1}.dropzone-previews .dz-preview.dz-file-preview .dz-image{border-radius:0;background:#eee}.dropzone-previews .dz-preview.dz-file-preview .dz-details{opacity:1}.dropzone-previews .dz-preview.dz-image-preview{background:#fff}.dropzone-previews .dz-preview.dz-image-preview .dz-details{-webkit-transition:opacity 0.2s linear;-moz-transition:opacity 0.2s linear;-ms-transition:opacity 0.2s linear;-o-transition:opacity 0.2s linear;transition:opacity 0.2s linear}.dropzone-previews .dz-preview:hover .dz-details{opacity:1}.dropzone-previews .dz-preview .dz-details{z-index:20;position:absolute;top:0;left:0;opacity:0;font-size:13px;min-width:100%;max-width:100%;padding:23px 12px;text-align:center;color:rgba(0,0,0,.9);line-height:150%;cursor:pointer}.dropzone-previews .dz-preview .dz-details .dz-size{margin-bottom:1em;font-size:16px}.dropzone-previews .dz-preview .dz-details .dz-filename{white-space:nowrap}.dropzone-previews .dz-preview .dz-details .dz-filename:hover span{border:1px solid rgba(200,200,200,.8);background-color:rgba(255,255,255,.8)}.dropzone-previews .dz-preview .dz-details .dz-filename:not(:hover){overflow:hidden;text-overflow:ellipsis}.dropzone-previews .dz-preview .dz-details .dz-filename:not(:hover) span{border:1px solid transparent}.dropzone-previews .dz-preview .dz-details .dz-filename span,.dropzone-previews .dz-preview .dz-details .dz-size span{background-color:rgba(255,255,255,.1);padding:0 4px;border-radius:2px}.dropzone-previews .dz-preview:hover .dz-image img{-webkit-transform:scale(1.05, 1.05);-moz-transform:scale(1.05, 1.05);-ms-transform:scale(1.05, 1.05);-o-transform:scale(1.05, 1.05);transform:scale(1.05, 1.05);-webkit-filter:blur(8px);filter:blur(8px)}.dropzone-previews .dz-preview .dz-image{border-radius:0;overflow:hidden;width:100px;height:100px;position:relative;display:block;z-index:10}.dropzone-previews .dz-preview .dz-image img{display:block}.dropzone-previews .dz-preview.dz-success .dz-success-mark{-webkit-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation:passing-through 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone-previews .dz-preview.dz-error .dz-error-mark{opacity:1;-webkit-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation:slide-in 3s cubic-bezier(0.77, 0, 0.175, 1)}.dropzone-previews .dz-preview .dz-success-mark,.dropzone-previews .dz-preview .dz-error-mark{pointer-events:none;opacity:0;z-index:500;position:absolute;display:block;top:50%;left:50%;margin-left:-27px;margin-top:-27px}.dropzone-previews .dz-preview .dz-success-mark svg,.dropzone-previews .dz-preview .dz-error-mark svg{display:block;width:54px;height:54px}.dropzone-previews .dz-preview.dz-processing .dz-progress{opacity:1;-webkit-transition:all 0.2s linear;-moz-transition:all 0.2s linear;-ms-transition:all 0.2s linear;-o-transition:all 0.2s linear;transition:all 0.2s linear}.dropzone-previews .dz-preview.dz-complete .dz-progress{opacity:0;-webkit-transition:opacity 0.4s ease-in;-moz-transition:opacity 0.4s ease-in;-ms-transition:opacity 0.4s ease-in;-o-transition:opacity 0.4s ease-in;transition:opacity 0.4s ease-in}.dropzone-previews .dz-preview:not(.dz-processing) .dz-progress{-webkit-animation:pulse 6s ease infinite;-moz-animation:pulse 6s ease infinite;-ms-animation:pulse 6s ease infinite;-o-animation:pulse 6s ease infinite;animation:pulse 6s ease infinite}.dropzone-previews .dz-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:16px;left:50%;top:50%;margin-top:-8px;width:80px;margin-left:-40px;background:rgba(255,255,255,.9);-webkit-transform:scale(1);border-radius:4px;overflow:hidden}.dropzone-previews .dz-preview .dz-progress .dz-upload{background-color:#666;position:absolute;top:0;left:0;bottom:0;width:0;-webkit-transition:width 300ms ease-in-out;-moz-transition:width 300ms ease-in-out;-ms-transition:width 300ms ease-in-out;-o-transition:width 300ms ease-in-out;transition:width 300ms ease-in-out}.dropzone-previews .dz-preview.dz-error .dz-error-message{display:block}.dropzone-previews .dz-preview.dz-error:hover .dz-error-message{opacity:1;pointer-events:auto}.dropzone-previews .dz-preview .dz-error-message{pointer-events:none;z-index:1000;position:absolute;display:block;display:none;opacity:0;-webkit-transition:opacity 0.3s ease;-moz-transition:opacity 0.3s ease;-ms-transition:opacity 0.3s ease;-o-transition:opacity 0.3s ease;transition:opacity 0.3s ease;border-radius:2px;font-size:13px;top:110px;left:-10px;width:120px;background:#be2626;background:linear-gradient(to bottom, #be2626, #a92222);padding:6px 8px;color:#fff}.dropzone-previews .dz-preview .dz-error-message:after{content:"";position:absolute;top:-6px;left:54px;width:0;height:0;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #be2626}.likes{margin-top:8px}.likes .likes-icon{float:left;height:16px;width:16px;margin:2px 2px 0 1px;line-height:1em}.likes .likes-icon .icon-heart{color:#ffb914;fill:#fff6e0}.likes .likes-icon.likes-icon-liked .icon-heart{fill:#ffb914}.likes ul{list-style:none;padding:0;margin:0 4px 0 19px}.likes ul li{display:inline}.comments{font-size:14px;line-height:19px}.comment{color:#444;margin-top:8px}.comment .comment-icon{float:left;height:16px;width:16px;margin:3px 2px 0 1px;text-decoration:none;line-height:1em}.comment .comment-icon .icon-comment{color:#999;fill:#eee}.comment .comment-icon.comment-icon-important .icon-comment{color:#6394d0;fill:#e4edf7}.comment .comment-icon.comment-icon-mine .icon-comment{color:#6394d0;fill:#8aafdc}.comment .comment-icon .icon-comment-plus{color:#999;fill:#fff}.comment .comment-icon.comment-icon-add{margin-top:2px}.comment .comment-body{margin-left:19px;overflow-wrap:break-word;word-wrap:break-word}.comment .comment-timestamp{color:#ccc;white-space:nowrap}.comment .comment-timestamp a{color:#bbb}.comment .comment-textarea{padding:3px 5px;width:100%;max-width:100%;margin-bottom:6px}.comment .comment-edit-actions{font-size:12px;display:flex;justify-content:space-between}.comment .comment-edit-actions .comment-attachments{cursor:pointer;color:#777}.comment .comment-edit-actions .comment-attachments:hover span{text-decoration:underline}.comment .comment-edit-actions .comment-attachments-uploading{color:#999;font-size:10px}.comment .comment-edit-actions .comment-cancel{color:#666;margin-right:10px}.comment .comment-edit-actions .comment-post{margin-top:-2px}.comment .comment-error{margin:10px 0 0 0 !important}.comment .more-comments-link{font-style:italic;text-decoration:none;margin-left:19px}.comment .more-comments-link:hover .more-comments-core{text-decoration:underline}.comment .more-comments-clikes{font-style:italic;color:#bbb}.comment .add-comment-link{font-style:italic;margin-left:1px}.comment:hover .reference-arrow{cursor:pointer;color:#333;background-color:#eee;border-radius:2px;padding:1px 3px;margin:-1px -3px}.comment:hover .reference-arrow:hover{background-color:#d9ebff}.comment:hover .icon-heart,.comment:hover .clikes-number{opacity:1}.comment.hidden-comment .comment-body,.comment.hidden-comment .comment-timestamp a,.comment.hidden-comment .comment-icon .icon-comment{color:#ccc;fill:#f4f4f4;font-style:italic}.comment.highlighted{background-color:#deedff !important;border-radius:3px;padding:4px 7px 5px 7px;margin:4px -7px -5px -7px}.comment.targeted-comment{background-color:#ffb;border-radius:3px;padding:4px 7px 5px 7px;margin:4px -7px -5px -7px}.comment.comment-from-archive .comment-icon .icon-comment{color:#aca393 !important;fill:#fbf3df !important}.comment.comment-from-archive .comment-icon.comment-icon-important .icon-comment{color:#8e9cab !important;fill:#fbf3ef !important}.comment.comment-from-archive .comment-icon.comment-icon-mine .icon-comment{color:#8e9cab !important;fill:#abb6c1 !important}.comment.comment-from-archive .comment-body{color:#777166 !important}.comment.comment-from-archive .comment-body a{color:#6a6588 !important}.comment.comment-from-archive .comment-body .comment-timestamp{color:#e0d4bf !important}.comment.comment-from-archive .comment-body .comment-timestamp a{color:#cec4b0 !important}.comment.comment-from-archive.hidden-comment .comment-icon .icon-comment{color:#e0d4bf !important;fill:#fffbe2 !important}.comment.comment-from-archive.hidden-comment .comment-body{color:#e0d4bf !important}.comment.comment-from-archive.hidden-comment .comment-body .comment-timestamp a{color:#e0d4bf !important}.comments-archive-revival{margin:8px 0 -12px 0}.comments-archive-revival .icon-bolt{margin-left:5px}.user-profile{border-top:1px solid #eee;padding-top:14px;padding-bottom:14px;border-bottom:1px solid #eee}.user-profile .userpic{float:left;margin-right:14px}.user-profile .profile-displayname{font-size:24px;font-weight:500;line-height:27px}.user-profile .profile-displayname.profile-loading{color:#999}.user-profile .profile-displayname a{color:#333;text-decoration:none}.user-profile .profile-displayname a:active,.user-profile .profile-displayname a:focus,.user-profile .profile-displayname a:hover,.user-profile .profile-displayname a:visited{color:#333;text-decoration:none}.user-profile .profile-username{color:#999;margin-top:4px}@media(max-width: 767px){.user-profile .profile-username{margin-top:6px}}.user-profile .profile-description{color:#000;overflow-wrap:break-word;word-wrap:break-word;padding-top:10px;margin-left:90px}@media(max-width: 767px){.user-profile .profile-description{clear:both;padding-top:13px;margin-left:0}}.user-profile .profile-description .p-break{display:block;height:.35em}.user-profile .profile-description.profile-description-collapsed{display:-webkit-box;height:51.76px;font-size:14px;line-height:1.42;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis}.profile-stats{text-align:right}.profile-stats .profile-stats-item{white-space:nowrap}@media(max-width: 767px){.profile-stats{margin-top:14px;border-top:1px solid #eee;padding-top:4px;text-align:left}.profile-stats .profile-stats-item{display:inline-block;margin-right:15px;margin-top:10px}}.profile-status-and-controls{color:#999;padding-top:14px;padding-bottom:14px;border-bottom:1px solid #eee}.profile-status-and-controls .text{color:#333}.profile-status-and-controls a{white-space:nowrap}.profile-status-and-controls .profile-status{color:#333;margin-right:20px}.profile-status-and-controls .profile-controls{text-align:right}@media(max-width: 767px){.profile-status-and-controls .profile-controls{margin-top:14px;border-top:1px solid #eee;padding-top:14px;text-align:left}}.profile-status-and-controls .alert-warning{margin:10px 0 0 0}.user-subheader{padding:14px 0;border-bottom:1px solid #eee;margin:0}.user-subheader .user-subheader-page-number{float:right;color:#ddd}.user-subheader .user-subheader-sidelinks{float:right;font-size:14px;font-weight:normal;line-height:18px}.feed-message{padding-top:14px}.hidden-posts-toggle{padding:14px 0 14px 0;border-bottom:1px solid #eee}.hidden-posts-toggle a:hover{text-decoration:none}.hidden-posts-toggle a:hover span:last-child{text-decoration:underline}ul.tile-list{padding:10px 0 0 0;margin:0 -5px}ul.tile-list .user-tile{list-style-type:none;text-align:center;min-width:110px;height:110px;padding:0 5px}ul.tile-list .user-tile .userpic{margin-bottom:6px}ul.tile-list .user-tile .userpic .userpic-overlay{position:absolute;margin:-50px 0 0 0px;width:50px;height:50px;text-align:center;padding-top:16px;background-color:rgba(255,255,255,.9)}ul.tile-list .user-tile .user-tile-name{display:block;font-size:12px;line-height:15px}ul.tile-list.with-actions{margin:0 -15px}ul.tile-list.with-actions .user-tile{text-align:left;height:85px;padding:8px 15px 0 15px}ul.tile-list.with-actions .user-tile .userpic{float:left;margin-right:11px;margin-bottom:1px}ul.tile-list.with-actions .user-tile .user-tile-name{font-size:14px;line-height:20px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}ul.tile-list .user-actions{margin-top:13px}ul.tile-list .user-actions .user-action{margin-right:10px}ul.tile-list .user-actions .user-action.user-action-good{color:#3c763d}ul.tile-list .user-actions .user-action.user-action-bad{color:#a94442}ul.tile-list .user-actions .user-action [class^=icon-],ul.tile-list .user-actions .user-action [class*=" icon-"]{margin-right:3px}ul.tile-list.large-pics .user-tile{height:140px}.list-controls .manage-controls{text-align:right;float:right}.list-controls .filter-controls{float:left}.create-post{padding-top:14px;padding-bottom:8px;border-bottom:1px solid #eee}.create-post .post-textarea{color:#999}.create-post .post-edit-options,.create-post .post-edit-actions{display:none}.create-post.expanded .post-textarea{color:#000}.create-post.expanded .post-edit-options,.create-post.expanded .post-edit-actions{display:block}.create-post .post-edit-options .xs-screen{display:none}.create-post .post-edit-options .other-screens{display:inline}@media(max-width: 767px){.create-post .post-edit-options{font-size:12px}}@media(max-width: 539px){.create-post .post-edit-options .xs-screen{display:inline}.create-post .post-edit-options .other-screens{display:none}}.create-post button{overflow:hidden;max-width:60%}@media(max-width: 767px){.create-post button{max-width:50%}}@media(max-width: 539px){.create-post button{max-width:44%}}@media(max-width: 359px){.create-post button{max-width:38%}}.create-post .alert-warning{margin:2px 0 10px 0}.create-post textarea{position:relative}.create-post .post-edit-actions [class^=icon-],.create-post .post-edit-actions [class*=" icon-"]{position:absolute;margin:-30px 0 0 -22.1px;color:#666}.pager{padding:14px 0;margin:0}.pager li>a,.pager li>a:hover,.pager li>a:focus{background:none;border:0;padding:0}.pager li>a:hover{text-decoration:underline}.character-counter{position:absolute;display:block;top:25px;right:11px;z-index:2;color:#999;font-size:13px;line-height:34px;height:34px;margin:0;pointer-events:none}.has-error .character-counter{color:#d00}.radio-feedVisibility{margin-top:5px}.radio-groupVisibility{margin-top:0}.checkbox-displayNames-useYou{margin:20px 0}.preferences-form-group{margin-bottom:25px}.realtime-switch{font-size:12px;font-weight:normal;vertical-align:middle;line-height:17px;margin-top:6px}.realtime-switch-label{display:inline-block;visibility:hidden;vertical-align:middle;margin-right:5px;color:#666}.realtime-switch:hover .realtime-switch-label{visibility:visible}.realtime-switch-range{display:inline-block;position:relative;z-index:0;width:37px;height:17px;border-radius:100px;cursor:pointer;background-color:#aaa;font-size:12px;line-height:17px;font-weight:normal;text-align:center;vertical-align:middle}.realtime-switch.on .realtime-switch-range{background-color:#1d66bf}.realtime-switch-state{position:relative;visibility:hidden;z-index:10;left:5.5px;color:#eee}.realtime-switch.on .realtime-switch-state{left:-7.5px;color:#b3d7ff}.realtime-switch:hover .realtime-switch-state{visibility:visible}.realtime-switch-toggle{position:absolute;left:2px;top:2px;right:0;bottom:0;z-index:20;height:13px;width:13px;border-radius:100px;background-color:#fff;transition-property:all;transition-duration:.3s;transition-timing-function:cubic-bezier(0.5, 1.5, 0.5, 1)}.realtime-switch.on .realtime-switch-toggle{left:22px}.bookmarklet h1{font-size:22px}.bookmarklet h1 .gamma{margin-left:3px}.bookmarklet .create-post{padding:0;border:none}.bookmarklet .post-linked-image{display:inline-block;position:relative;cursor:pointer;border:1px solid silver;padding:1px;margin:4px 8px 4px 0}.bookmarklet .post-linked-image img{max-width:200px;max-height:100px;width:auto;height:auto}.bookmarklet .post-linked-image:hover:before{content:"";display:block;position:absolute;left:0;top:0;width:100%;height:100%;background-color:silver;opacity:.7}.bookmarklet .post-linked-image:hover:after{content:"×";display:block;position:absolute;left:0;top:50%;width:100%;margin-top:-43px;text-align:center;color:#333;font-size:70px;line-height:70px}.bookmarklet .post-linked-image-empty{display:inline-block;width:140px;height:104px;padding-top:32px;margin:4px 8px 4px 0;border:1px solid silver;background-color:#fff;color:#999;font-size:12px;font-style:italic;text-align:center;line-height:140%}.bookmarklet .brand-new-post{font-size:20px;line-height:24px;text-align:center;margin-top:150px}.bookmarklet .brand-new-post a{font-size:17px;text-decoration:underline}.search-form input,.search-form button{display:inline-block;vertical-align:middle;width:auto;height:34px}.search-form button{margin-left:5px}.search-form.in-header{display:none;float:left;margin-top:29px;opacity:.5}@media(min-width: 768px){.search-form.in-header{display:block}}.search-form.in-header.focused{opacity:1}.search-form.in-sidebar{margin:0 0 15px 0}.search-form.in-sidebar input{width:78%}.search-form.in-results{padding:14px 0;border-bottom:1px solid #eee}.search-form.in-results input{width:72%}.search-form.in-results button{margin-left:10px}.search-operators li{margin-bottom:5px}.tippy-box[data-theme~=gamma]{background-color:#fff;border-radius:2px;box-shadow:0 0 5px 1px rgba(0,0,0,.5);padding:3px 6px}.tippy-box[data-theme~=gamma][data-animation=fade][data-state=visible]{opacity:1}.tippy-box[data-theme~=gamma][data-animation=fade][data-state=hidden]{opacity:0}.tippy-box[data-theme~=gamma][data-animation=fade][data-state=hidden] .tippy-arrow:before{display:none}.tippy-box[data-theme~=gamma] .tippy-arrow:before{content:"";position:absolute;z-index:-1;left:-5px;top:-5px;width:10px;height:10px;transform:rotate(45deg)}.tippy-box[data-theme~=gamma][data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-theme~=gamma][data-placement^=bottom]>.tippy-arrow:before{background-color:#fff;box-shadow:-2px -2px 3px -1px rgba(0,0,0,.5)}.tippy-box[data-theme~=gamma][data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-theme~=gamma][data-placement^=top]>.tippy-arrow:before{background-color:#f4f4f4;box-shadow:2px 2px 3px -1px rgba(0,0,0,.5)}.tippy-box[data-theme~=gamma] .tippy-content{position:relative;border-radius:2px;z-index:1;background-color:#fff;color:#333;font-size:12px;text-align:left;line-height:1.5;max-width:180px;max-height:180px;overflow-x:hidden;overflow-y:auto}.tippy-box[data-theme~=gamma-dropdown]{padding:0}.tippy-box[data-theme~=gamma-dropdown] .tippy-content{font-size:14px;line-height:19px;max-width:200px;max-height:222px}.tippy-box[data-theme~=gamma-usercard]{padding:0}.tippy-box[data-theme~=gamma-usercard] .tippy-content{max-width:none;max-height:none}
.throbber-post-like,.throbber-post-hide{margin:0 2px 0 5px}.throbber-post-edit{margin-right:10px}.throbber-more-likes{margin-left:5px}.throbber-more-comments{position:absolute;margin-top:1px}.throbber-comment-attachment{margin:0 5px 0 10px}.throbber-comment-edit{margin-right:10px}.throbber-clikes{margin:-3px 0 0 2px}.throbber-user-card{margin-left:5px}.throbber-profile-controls{margin:0 5px 0 8px}.throbber-settings{margin-left:10px}
.backlinks{margin-top:8px}
.piece-of-text *{padding-top:.15em;padding-bottom:.15em}.shortened-link:after{content:"…"}.shortened-link del{display:inline-block;width:1px;height:1px;margin-left:-1px;overflow:hidden}
.comment-likes-and-more{display:inline-block;width:4.3em;height:1.18em;vertical-align:text-bottom;white-space:nowrap;color:#ccc}.comment-likes-and-more>span{display:inline-block;margin-top:-0.09em;max-width:100%;overflow:hidden}.comment-likes-and-more .clikes-trigger{position:relative;z-index:2;min-width:19px}.comment-likes-and-more .more-menu-trigger{position:relative;z-index:1;padding:0 .8em;margin-left:-0.8em}.comment-likes{white-space:nowrap}.comment-likes .clikes-trigger{display:inline-block;height:18px;padding:0 4px;margin-left:0;vertical-align:bottom;cursor:pointer;border-radius:2px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;outline:none}.comment-likes .icon-heart{display:inline-block;margin-bottom:-0.5px;opacity:.8;font-size:12px;color:#ffb914;fill:#fff6e0}.comment-likes .clikes-number{display:inline-block;height:18px;line-height:18px;vertical-align:top;opacity:.7;color:#9d9d9d;font-size:10px;margin-left:2px}.comment-likes .icon-plus,.comment-likes .icon-times{display:inline-block;line-height:17px;vertical-align:baseline;margin-bottom:0;color:#ffb914;font-size:11px;margin-left:3px}.comment-likes .icon-times{color:#ccc}.comment-likes.clikes-zero{color:#ddd}.comment-likes.clikes-zero .icon-heart{color:#dcdcdc;fill:#fff}.comment-likes.clikes-open .clikes-trigger{background-color:#f2f2f2}.comment-likes.clikes-open .icon-heart,.comment-likes.clikes-open .clikes-number{opacity:1}.comment-likes.clikes-liked .icon-heart{fill:#ffb914}.comment-from-archive .comment-likes{color:#e0d4bf !important}.comment-from-archive .comment-likes .icon-heart{color:#f6c361 !important;fill:#fffdd6 !important}.comment-from-archive .comment-likes.clikes-zero{color:#f1e5ce !important}.comment-from-archive .comment-likes.clikes-zero .icon-heart{color:#f2e4ca !important;fill:#ffffea !important}.comment-from-archive .comment-likes.clikes-liked .icon-heart{fill:#f6c361 !important}.comment-from-archive .comment-likes .clikes-number{color:#b0a796 !important}.clikes-loading{color:#666;font-style:italic}.clikes-error{color:#b22}.clikes-empty-list{color:#666}.clikes-list{list-style:none;padding:0;margin:0;color:#666}.clikes-list li{display:inline}
.more-menu-trigger{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none;outline:none !important}.more-menu-trigger .icon-more{color:#999;fill:#eee}.more-menu-trigger:hover .icon-more{color:#777;fill:#ccc}.more-menu-trigger .icon-more-small{color:#ccc;fill:#f2f2f2}.more-menu-trigger:hover .icon-more-small{color:#aaa;fill:#ddd}ul.more-menu-items{list-style:none;padding:0;margin:0}ul.more-menu-items li{display:block;padding:0}ul.more-menu-items li:hover{background-color:#eee}ul.more-menu-items li.danger:hover{color:#300 !important;background-color:#fcc !important}ul.more-menu-items li a{display:block;padding:6px 12px;color:#000;text-decoration:none;white-space:nowrap}ul.more-menu-items li:first-child a{padding-top:8px}ul.more-menu-items li:first-child a:not(:last-child) a{padding-bottom:5px}ul.more-menu-items li:last-child a{padding-bottom:8px}ul.more-menu-items li:last-child a:not(:first-child) a{padding-top:5px}

/*# sourceMappingURL=app-6d9ebdd269c9f553637f.css.map*/