<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * Cropper v0.9.3
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright (c) 2014-2015 Fengyuan Chen and contributors
 * Released under the MIT license
 *
 * Date: 2015-05-10T07:25:08.257Z
 */
.cropper-container {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.cropper-container img {
  display: block;
  width: 100%;
  min-width: 0 !important;
  max-width: none !important;
  height: 100%;
  min-height: 0 !important;
  max-height: none !important;

  image-orientation: 0deg !important;
}
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cropper-drag-box {
  background-color: #fff;
  filter: alpha(opacity=0);
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  filter: alpha(opacity=50);
  opacity: .5;
}
.cropper-view-box {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 1px solid #69f;
  outline-color: rgba(102, 153, 255, .75);
}
.cropper-dashed {
  position: absolute;
  display: block;
  filter: alpha(opacity=50);
  border: 0 dashed #fff;
  opacity: .5;
}
.cropper-dashed.dashed-h {
  top: 33.33333333%;
  left: 0;
  width: 100%;
  height: 33.33333333%;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333333%;
  width: 33.33333333%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px;
}
.cropper-face,
.cropper-line,
.cropper-point {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  filter: alpha(opacity=10);
  opacity: .1;
}
.cropper-face {
  top: 0;
  left: 0;
  cursor: move;
  background-color: #fff;
}
.cropper-line {
  background-color: #69f;
}
.cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize;
}
.cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize;
}
.cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize;
}
.cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize;
}
.cropper-point {
  width: 5px;
  height: 5px;
  background-color: #69f;
  filter: alpha(opacity=75);
  opacity: .75;
}
.cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize;
}
.cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize;
}
.cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize;
}
.cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize;
}
.cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize;
}
.cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize;
}
.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize;
}
.cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  filter: alpha(opacity=100);
  opacity: 1;
}
.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;
  display: block;
  width: 200%;
  height: 200%;
  content: " ";
  background-color: #69f;
  filter: alpha(opacity=0);
  opacity: 0;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 10px;
    height: 10px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 5px;
    height: 5px;
    filter: alpha(opacity=75);
    opacity: .75;
  }
}
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}
.cropper-invisible {
  filter: alpha(opacity=0);
  opacity: 0;
}
.cropper-hide {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: auto!important;
  min-width: 0!important;
  max-width: none!important;
  height: auto!important;
  min-height: 0!important;
  max-height: none!important;
  filter: alpha(opacity=0);
  opacity: 0;
}
.cropper-hidden {
  display: none !important;
}
.cropper-move {
  cursor: move;
}
.cropper-crop {
  cursor: crosshair;
}
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}


.croper-container .cropper-image-container {float:left;width: 100%;min-height:320px;}
.croper-container .cropper-image-container .url-loader {position: absolute;bottom:20px;left:40%;}
.croper-container {width: auto !important;}
.croper-container .cropper-file-loader {float:left;text-align: center;}
.croper-container .cropper-file-loader .buttons {float:left;clear: both;width: 100%;text-align: center;margin-bottom: 20px;box-sizing: border-box;padding-left: 270px}
.croper-container .cropper-file-loader .buttons .btn {float: left;font-size: 14px;background: #333;color: #fff;padding: 5px 15px;border: 1px solid #333;border-radius: 4px;cursor: pointer;margin-right: 10px;}
.croper-container .cropper-file-loader .buttons .btn:hover { background: #2ea24b;border: 1px solid #2ea24b;}
.croper-container .drag-file-here {float:left;width:670px;height: 400px; background-color: #eeeeee; box-shadow: 0 0 1px #666; text-align: center; position: relative; border: 0px solid #dddddd; display: inline-block; margin:20px 60px 10px 60px;}
.croper-container .drag-file-here:after { content: attr(data-content); font-size: 25px; color: #bbbbbb; position: absolute; bottom: 60%; left: 0; top:4px; width: 100%; text-align: center; z-index:0;padding:90px 70px 20px;box-sizing: border-box;}
.croper-container .drag-file-here:before { content: '\e90d'; font-family:"icomoon";box-sizing: border-box;font-size: 60px; color: #dbdbdb; position: absolute; top: 2%; left: 2%; height:96%;width: 96%;overflow: hidden; border:3px dashed #ccc;text-align: center; z-index:0;}
.croper-container .drag-file-here.loading:after { content: 'Please wait, image is loading'; }
.croper-container .drag-file-here.loading:before { content: '\e90d'; }
.croper-container .drag-file-here.notAnImage { background-color: #f2dede; border-color: #ebccd1; }
.croper-container .drag-file-here.notAnImage:after { content: 'The selected file is not an image!'; color: #a94442; }
.croper-container .drag-file-here.notAnImage:before { content: '\e90d'; color: #ebccd1; }
.croper-container .cropper-tools {display: none; margin:5px 15px; min-width: 500px; background: #f7f7f7;border:1px solid #cdcdcd;border-radius: 5px;padding: 5px 5px 5px 0;min-height: 36px;}
.croper-container .cropper-tools.loading {background:#fff url('arrow-loader.gif') center center no-repeat;}
.croper-container .cropper-tools.loading &gt; * {display: none;}
.croper-container .cropper-tools &gt; * {float: left;border: 1px solid #ccc;border-radius: 4px;background: #fff;width: 40px;height: 34px; margin: 0 0 0 5px;cursor: pointer;}
.croper-container .cropper-tools &gt; *:hover { background: #f3f3f3;}
.croper-container .cropper-tools &gt; * i:before {float: left;padding: 9px 0 0 11px;font-size: 17px;color: #666;}
.croper-container .cropper-tools &gt; .btn-cancel {background-color: #EF141A;border-color: #D70F14;color: #fff;} 
.croper-container .cropper-tools &gt; .btn-cancel i:before { color: #fff;font-size: 14px;padding: 10px 0 0 13px;}
.croper-container .cropper-tools &gt; .btn-cancel:hover {color:#fff;background-color:#D70F14;border-color: #86090d;}
.croper-container .cropper-tools &gt; .btn-ok {background-color: #49aa43;border-color: #41983c;color: #fff;} 
.croper-container .cropper-tools &gt; .btn-ok i:before { color: #fff;}
.croper-container .cropper-tools &gt; .btn-ok:hover {color:#fff;background-color:#3c8d37;border-color: #2e6c2a;}
.croper-container .cropper-tools .btn-flip-horizontal { background-image: url('fliph.png');background-position: 4px 3px; background-repeat:no-repeat;}
.croper-container .cropper-tools .btn-flip-vertical { background-image: url('flipv.png');background-position: 5px 3px;background-repeat: no-repeat;}
.croper-container .cropper-tools .btn-rotate .glyphicon-repeat.flipped {transform: scale(-1, 1);margin-right:4px;}
.croper-container .cropper-control {max-width: 762px; max-height: 473px;margin:5px 15px 15px;overflow:hidden;display: none;}</pre></body></html>