/*!
 * Cropper v0.8.0
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright 2014-2015 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2015-02-19T06:49:29.144Z
 */
.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;
}
.cropper-modal,
.cropper-canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cropper-canvas {
  background-color: #fff;
  filter: alpha(opacity=0);
  opacity: 0;
}
.cropper-modal {
  background-color: #000;
  filter: alpha(opacity=50);
  opacity: .5;
}
.cropper-cropbox {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
}
.cropper-viewer {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.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: #000;
}
.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 {
  background-color: #000;
  filter: alpha(opacity=75);
  opacity: .75;
}
.cropper-point.point-e {
  top: 50%;
  right: -1px;
  margin-top: -3px;
  width: 5px;
  height: 19px;
  background:url('images/east.png') no-repeat;
  cursor: e-resize;
}
.cropper-point.point-n {
   top: -1px;
  left: 50%;
  margin-left: -3px;
  width: 21px;
  height: 5px;
  background:url('images/north.png') no-repeat;
  cursor: n-resize;
}
.cropper-point.point-w {
  top: 50%;
  left: -1px;
  margin-top: -3px;
  width: 8px;
  height: 18px;
  background:url('images/east.png') no-repeat;
  cursor: w-resize;
}
.cropper-point.point-s {
  bottom: -1px;
  left: 50%;
  width: 19px;
  height: 5px;
  background:url('images/north.png') no-repeat;
  margin-left: -3px;
  cursor: s-resize;
}
.cropper-point.point-ne {
  top: -1px;
  right: -3px;
  width: 21px;
  height: 21px;
  background:url('images/north-east.png') no-repeat;
  cursor: ne-resize;
}
.cropper-point.point-nw {
   top: -1px;
  left: -1px;
  width: 21px;
  height: 21px;
  background:url('images/north-west.png') no-repeat;
  cursor: nw-resize;
}
.cropper-point.point-sw {
  bottom: -3px;
  left: -1px;
  width: 21px;
  height: 21px;
  background:url('images/south-west.png') no-repeat;
  cursor: sw-resize;
}
.cropper-point.point-se {
  right: -2px;
  bottom: -3px;
  width: 21px;
  height: 21px;
  cursor: se-resize;
  background:url('images/south-east.png') no-repeat;
  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: #000;
  filter: alpha(opacity=0);
  opacity: 0;
}
@media (min-width: 768px) {
  .cropper-point.point-se {
    width: 21px;
  height: 21px;
  }
}
@media (min-width: 992px) {
  .cropper-point.point-se {
    width: 21px;
  height: 21px;
  }
}
@media (min-width: 1200px) {
  .cropper-point.point-se {
    width: 21px;
    height: 21px;
    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;
  max-width: none !important;
  height: auto !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-canvas,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
.img-container {
  background-color: #f7f7f7;
  width: 100%;
  text-align: center;
}
