/*!
 * fireshell
 * Fiercely quick and opinionated front-ends
 * http://getfireshell.com
 * @author Todd Motto
 * @version 1.1.0
 * Copyright 2013. MIT licensed.
 */

@charset "UTF-8";

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */

/* BACKGROUND GRADIENT */

/* BACKGROUND SIZE */

/* BORDER RADIUS */

/* BOX */

/* BOX RGBA */

/* BOX SHADOW */

/* BOX SIZING */

/* COLUMNS */

/* DOUBLE BORDERS */

/* FLEX */

/* FLIP */

/* FONT FACE */

/* OPACITY */

/* OUTLINE RADIUS */

/* RESIZE */

/* ROTATE*/

/* TEXT SHADOW */

/* TRANSFORM  */

/* TRANSITION */

/* TRIPLE BORDERS */

.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear {
  *zoom: 1;
}

.clear:after {
  clear: both;
}

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 62.5%;
}

body {
  font: 300 13px/1.6 'Helvetica Neue', Helvetica, Arial;
  background: #fff;
  color: #444;
}

.logo {
  margin: -100px 0 0 -84px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.nav {
  background-color: rgba(255, 255, 255, 0.7);
  border: #BBB 1px solid;
  border-width: 0 0 1px 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.nav #FilterMenu > ul,
.nav > ul {
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 18px;
  border: #BBB 1px solid;
  border-width: 0 0 1px 1px;
  height: 40px;
  overflow: hidden;
  background-color: #FFF;
}

.nav #FilterMenu > ul.right,
.nav > ul.right {
  float: right;
}

.nav #FilterMenu > ul li,
.nav > ul li {
  float: left;
}

.nav #FilterMenu > ul li a,
.nav > ul li a {
  color: #555;
  text-decoration: none;
  display: block;
  padding: 7px 10px;
}

.nav #FilterMenu > ul li a:hover,
.nav #FilterMenu > ul li a.active,
.nav > ul li a:hover,
.nav > ul li a.active {
  background-color: #FFF;
}

.nav #FilterMenu > ul li a:hover svg path,
.nav #FilterMenu > ul li a.active svg path,
.nav > ul li a:hover svg path,
.nav > ul li a.active svg path {
  fill: #000;
}

.nav #FilterMenu > ul li a svg path,
.nav > ul li a svg path {
  fill: #999;
}

.nav #FilterMenu > ul.left li:hover,
.nav > ul.left li:hover {
  background-color: #999;
}

.nav #FilterMenu > ul.left li:hover a,
.nav > ul.left li:hover a {
  color: #FFF;
  background-color: #999;
}

.nav #FilterMenu > ul.left li.active,
.nav #FilterMenu > ul.left li.active:hover,
.nav > ul.left li.active,
.nav > ul.left li.active:hover {
  background-color: #EEE;
}

.nav #FilterMenu > ul.left li.active a,
.nav #FilterMenu > ul.left li.active:hover a,
.nav > ul.left li.active a,
.nav > ul.left li.active:hover a {
  color: #555;
  background-color: #EEE;
}

.nav #FilterMenu > ul.left li:active,
.nav > ul.left li:active {
  background-color: #555;
}

.nav #FilterMenu > ul.left li:active a,
.nav > ul.left li:active a {
  color: #FFF;
  background-color: #555;
}

.nav .center {
  float: left;
}

#Nav {
  height: 40px;
  overflow: visible;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

#Nav .menuButton {
  width: 50px;
  height: 100%;
  float: left;
  overflow: hidden;
  padding: 0 10px;
  cursor: pointer;
}

#Nav .menuButton .lines {
  display: block;
  box-shadow: 0 0px 0 2px #646464, 0 8px 0 2px #646464, 0 16px 0 2px #646464;
  margin: 10px 0;
}

#Nav .menuButton:hover {
  background-color: #969696;
}

#Nav .menuButton:hover .lines {
  box-shadow: 0 0px 0 2px white, 0 8px 0 2px white, 0 16px 0 2px white;
}

#Nav .menuButton.active {
  background-color: #222;
}

#Nav .menuButton.active .lines {
  box-shadow: 0 0px 0 2px white, 0 8px 0 2px white, 0 16px 0 2px white;
}

#DistanceSlider {
  float: left;
  margin: 8px;
}

#DistanceSlider .meters {
  float: left;
}

#ProjectForm {
  float: left;
  padding: 10px 0 10px 20px;
  margin: 0 20px 0 0;
  border-left: 1px #969696 solid;
}

#ProjectForm label {
  display: block;
  padding-top: 10px;
}

#ProjectForm fieldset {
  margin: 0px 0;
  padding: 0px;
  border: 0;
}

#ProjectForm input[type='text'] {
  width: 100%;
}

#SosiImport,
#PhotosImport,
.addPoints,
#AddPhotos {
  padding: 10px 0 10px 20px;
  margin: 0 20px 0 0;
}

#SosiImport label,
#PhotosImport label,
.addPoints label,
#AddPhotos label {
  display: block;
  padding-top: 10px;
}

#SosiImport h3,
#PhotosImport h3,
.addPoints h3,
#AddPhotos h3 {
  margin-top: 0;
}

#LoginForm {
  padding: 10px 0 0 10px;
}

#LoginForm input {
  margin: 0 0 10px 0;
  text-align: center;
  max-width: 100px;
}

#LoginForm.invalid input {
  -webkit-animation: invalid .5s;
  animation: invalid .5s;
  position: relative;
}

#Search {
  float: left;
  height: 100%;
  padding: 0  20px;
}

#Search input {
  height: 100%;
  padding: 0 10px 0 20px;
  border: #969696 solid;
  border-width: 0 1px;
  width: 100px;
}

#Search input.points {
  border-right: 0;
}

#MetaList input[type='text'] {
  width: 28em;
  border: 0;
  border-bottom: 1px dashed rgba(200, 200, 200, 0.4);
  margin-right: 2em;
}

#MetaList input[type='text']:focus {
  outline-offset: 0;
  outline: 0;
  border-bottom: 1px solid #c8c8c8;
}

#MetaList li i {
  color: rgba(0, 0, 0, 0.1);
  font-weight: 100;
  cursor: pointer;
}

#MetaList li:hover i {
  color: rgba(0, 0, 0, 0.2);
}

#MetaList li:hover i:hover {
  color: rgba(0, 0, 0, 0.5);
}

#MetaList li:hover i:active {
  color: black;
}

#MetaList #MetaList input[type='text']
a:hover i {
  color: black;
}

#MetaList #SaveMeta {
  margin: 2em 1em 2em 0;
  height: 3em;
  width: 10em;
}

#MetaList #AddRow {
  margin: 0 0 0 15px;
  text-align: center;
  width: 100px;
  font-weight: 500;
}

#MetaList fieldset {
  padding: 0 15px;
  margin: 15px 0;
  border: 1px solid rgba(100, 100, 100, 0.1);
  border-width: 1px 0 0;
}

#MetaList ol {
  min-height: 1em;
  margin: 15px;
  padding-left: 5px;
}

#MetaList ol ol {
  padding-left: 20px;
  margin: 0;
}

#MetaList ol ol ol {
  display: none;
}

#MetaList ol li {
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}

#MetaList .sortable-ghost {
  opacity: .2;
}

#MetaList .sortable-chosen {
  background-color: rgba(0, 0, 0, 0.05);
}

@-webkit-keyframes invalid {
  0% {
    left: 20px;
  }

  10% {
    left: -20px;
  }

  30% {
    left: 20px;
  }

  60% {
    left: -20px;
  }

  100% {
    left: 0px;
  }
}

@keyframes invalid {
  0% {
    left: 20px;
  }

  10% {
    left: -20px;
  }

  30% {
    left: 20px;
  }

  60% {
    left: -20px;
  }

  100% {
    left: 0px;
  }
}

h1,
h2,
h3,
h4 {
  font-weight: 200;
  color: #000;
}

h1 {
  font-size: 23px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

::selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #333;
  color: #fff;
  text-shadow: none;
}

.leaflet-marker-icon {
  height: 10px;
  border-radius: 5px;
}

.leaflet-marker-icon.active {
  box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 0 3px;
  width: 12px;
  margin-left: -6px;
}

.icon_555 {
  background-color: rgba(10, 10, 10, 0.2);
}

.icon_00A707 {
  background-color: rgba(0, 167, 7, 0.5);
}

.icon_FF0000 {
  background-color: rgba(255, 0, 0, 0.84);
}

.icon_E8AF0C {
  background-color: #ffff0c;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  border: 1px solid #0000FF;
}

.hidden {
  display: none;
}

.hasBeenChecked {
  background-color: #8e2492;
  width: 12px;
  margin-left: -6px;
}

.hasBeenChecked.icon_0099ff {
  box-shadow: rgba(0, 255, 255, 0.2) 0px 0px 0 3px;
}

.hasBeenChecked.icon_0099ff.active {
  box-shadow: rgba(0, 255, 255, 0.5) 0px 0px 0 3px;
}

.hasBeenChecked.icon_555 {
  box-shadow: rgba(10, 10, 10, 0.2) 0px 0px 0 3px;
}

.hasBeenChecked.icon_555.active {
  box-shadow: rgba(10, 10, 10, 0.5) 0px 0px 0 3px;
}

.hasBeenChecked.icon_00A707 {
  box-shadow: rgba(0, 167, 7, 0.2) 0px 0px 0 3px;
}

.hasBeenChecked.icon_00A707.active {
  box-shadow: rgba(0, 167, 7, 0.5) 0px 0px 0 3px;
}

.hasBeenChecked.icon_FF0000 {
  box-shadow: rgba(255, 0, 0, 0.2) 0px 0px 0 3px;
}

.hasBeenChecked.icon_FF0000.active {
  box-shadow: rgba(255, 0, 0, 0.5) 0px 0px 0 3px;
}

.icon-danger {
  display: inline;
}

.icon-danger i.red:before {
  color: red;
  content: "⚠";
  font-size: 1em;
  line-height: 0em;
  font-weight: bold;
  text-shadow: 0 0 0 1px #000;
  font-style: normal;
}

.icon-danger i.black:before {
  color: black;
  content: "⚠";
  font-size: 1em;
  line-height: 0em;
  font-weight: bold;
  font-style: normal;
}

.icon-scan {
  display: inline;
}

.icon-scan i.red:before {
  color: #1d79b7;
  content: "🌲";
  font-size: 1em;
  line-height: 0em;
  font-weight: bold;
  text-shadow: 0 0 0 1px #000;
  font-style: normal;
}

.icon-scan i.black:before {
  opacity: 0.3;
  content: "🌲";
  font-size: 1em;
  line-height: 0em;
  font-weight: bold;
  font-style: normal;
}

.icon-alert {
  display: inline;
}

.icon-alert i.red:before {
  color: red;
  content: "⚡";
  font-size: 1em;
  line-height: 0em;
  font-weight: bold;
  text-shadow: 0 0 0 1px #000;
  font-style: normal;
}

.icon-alert i.black:before {
  opacity: 0.3;
  content: "⚡";
  font-size: 1em;
  line-height: 0em;
  font-weight: bold;
  font-style: normal;
}

#TimeFilter,
#MetaFilter {
  padding: 0 1em;
}

#TimeFilter .to,
#TimeFilter .from,
#MetaFilter .to,
#MetaFilter .from {
  overflow: hidden;
  padding: 0.5em;
}

#TimeFilter .to label,
#TimeFilter .from label,
#MetaFilter .to label,
#MetaFilter .from label {
  float: left;
  clear: both;
  padding-right: 1em;
}

#TimeFilter .to input,
#TimeFilter .from input,
#MetaFilter .to input,
#MetaFilter .from input {
  float: left;
}

#TimeFilter ol,
#MetaFilter ol {
  padding: 0;
}

.icon_0099ff {
  background-color: rgba(0, 153, 255, 0.88);
}

.small_icon_grey {
  color: #636363;
}

.small_icon_orange {
  color: #ff7f00;
}

.small_icon_red {
  color: red;
}

.small_icon_green {
  color: #00a707;
}

.small_icon_purple {
  color: #8e2492;
}

.filter .station,
.filter .station {
  border-bottom: 2px solid #8e2492;
}

.leaflet-marker-icon .groupIcon {
  display: block;
  padding: 6px 0;
  text-align: center;
  color: white;
  font-weight: bold;
  background-color: rgba(10, 10, 10, 0.5);
  border-radius: 25px;
}

.leaflet-marker-icon.station {
  border-radius: 2em;
  box-shadow: 0 0 0 2px rgba(214, 0, 249, 0.5);
}

.leaflet-marker-icon.danger:before,
.leaflet-marker-icon.activedanger:before {
  color: red;
  content: "⚠";
  font-size: 1em;
  line-height: 0em;
  position: absolute;
  left: 10px;
  top: 5px;
  font-weight: bold;
  text-shadow: 0 0 0 1px #000;
}

.leaflet-marker-icon.scan:before,
.leaflet-marker-icon.activescan:before {
  color: #1d79b7;
  content: "🌲";
  font-size: 1em;
  line-height: 0em;
  position: absolute;
  left: 10px;
  top: 5px;
  font-weight: bold;
  text-shadow: 0 0 0 1px #000;
}

.leaflet-marker-icon.alert:before,
.leaflet-marker-icon.activealert:before {
  color: #1d79b7;
  content: "⚡";
  font-size: 1em;
  line-height: 0em;
  position: absolute;
  left: 10px;
  top: 5px;
  font-weight: bold;
  text-shadow: 0 0 0 1px #000;
}

.leaflet-marker-icon.notDone .groupIcon {
  background-color: rgba(66, 30, 30, 0.8);
}

.leaflet-marker-icon.done .groupIcon {
  background-color: rgba(3, 95, 3, 0.63);
}

.small_icon_blue {
  color: #0099ff;
}

.icon-cog {
  font-size: 2em;
  height: 1em;
  line-height: 1;
}

.toggle .on {
  display: none;
}

.toggle .off {
  display: inline;
}

.toggle.active .on {
  display: inline;
}

.toggle.active .off {
  display: none;
}

.filters.updating {
  opacity: 0.4;
}

.filters.updating a {
  cursor: progress;
}

.icon_photo {
  height: 20px;
  background: white;
  text-align: center;
  line-height: 20px;
  border-radius: 0;
  background: rgba(224, 122, 41, 0.7);
  color: #FFF;
}

.center select {
  font-size: 20px;
}

.leaflet-container .leaflet-popup-content {
  overflow: hidden;
}

.leaflet-container .leaflet-popup-content p.photo {
  min-width: 600px;
  min-height: 400px;
}

.leaflet-container .leaflet-popup-content p.photo img {
  max-width: 600px !important;
}

.leaflet-container .leaflet-popup-content h3 {
  text-align: center;
  margin: auto;
  width: 300px;
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -150px;
}

.info {
  list-style-type: none;
  font-size: 0.8em;
  padding: 10px;
  margin: 10px 0;
  background: rgba(200, 200, 200, 0.2);
  color: #222;
  position: relative;
  font-family: Garamond, Garamond, "Garamond Antiqua", times, serif;
  border-radius: 5px;
}

.info .icon-map-marker {
  font-size: 1.5em;
  position: absolute;
  top: 5px;
  right: 10px;
}

.info .icon-map-marker:hover {
  color: #0099ff;
}

#PointState {
  padding: 0 20px;
}

#PointState a:hover {
  color: red;
  background: #FFF;
  cursor: pointer;
}

#PointState .errors {
  padding: 10px 0 30px;
  margin-top: 10px;
  position: relative;
}

#PointState a.addError {
  display: block;
  text-align: right;
  border: #BBB dashed;
  border-width: 0 0 1px;
  display: block;
  padding: 10px;
}

#PointState a.addError:hover,
#PointState a.addError.active {
  color: #0099ff;
}

#map {
  top: 0;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}

#map.files {
  border: 5px dashed red;
  overflow: hidden;
  z-index: 1000;
}

#FeilMenu,
#MetaFilters {
  width: 440px;
  position: fixed;
  right: 440px;
  top: 40px;
  padding: 10px 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  border: #BBB solid;
  border-width: 0 1px;
  overflow: auto;
  bottom: 2px;
}

#FeilMenu .closeButton,
#MetaFilters .closeButton {
  right: 460px;
}

#FeilMenu ol ol a:hover,
#MetaFilters ol ol a:hover {
  color: red;
  background-color: #FFF;
}

#MetaFilters {
  right: 2px;
}

#MetaFilters ol {
  list-style-type: none;
}

#MetaFilters ol ol {
  padding-left: 1em;
}

#MetaFilters .closeButton {
  right: 20px;
}

#SideAdmin,
#SideMenu {
  width: 440px;
  position: fixed;
  right: 0;
  top: 40px;
  bottom: 0;
  padding-top: 10px;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  border: #BBB solid;
  border-width: 0 0 0 1px;
  overflow: auto;
  padding-bottom: 20px;
  z-index: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

#SideAdmin ul.errors,
#SideMenu ul.errors {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

#SideAdmin img,
#SideMenu img {
  max-width: 100%;
  display: block;
  margin: 0;
}

#SideAdmin .photo,
#SideMenu .photo {
  border: #DDD solid 1px;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 5px;
}

#SideAdmin .photo .left,
#SideAdmin .photo .right,
#SideMenu .photo .left,
#SideMenu .photo .right {
  padding: 10px;
}

#SideAdmin .photo h4,
#SideMenu .photo h4 {
  padding: 0 10px;
  float: left;
}

#SideAdmin .name,
#SideMenu .name {
  font-weight: 200;
}

#SideAdmin .name .checked .off,
#SideMenu .name .checked .off {
  color: #218626;
}

#SideAdmin .name .checked .off:hover,
#SideMenu .name .checked .off:hover {
  color: #089f0f;
}

#SideAdmin .name .checked .on,
#SideMenu .name .checked .on {
  color: #00a707;
}

#SideAdmin .name .checked:hover,
#SideMenu .name .checked:hover {
  color: #00a707;
}

#SideAdmin .name .check .off,
#SideMenu .name .check .off {
  color: #6c486e;
}

#SideAdmin .name .check .off:hover,
#SideMenu .name .check .off:hover {
  color: #862d89;
}

#SideAdmin .name .check.red .on,
#SideMenu .name .check.red .on {
  color: red;
}

#SideAdmin .name .check.red:hover,
#SideMenu .name .check.red:hover {
  color: red;
}

#SideAdmin .name .check.red .off,
#SideMenu .name .check.red .off {
  color: #cc3333;
}

#SideAdmin .name .check.red .off:hover,
#SideMenu .name .check.red .off:hover {
  color: #f20d0d;
}

#SideAdmin .name .check .on,
#SideMenu .name .check .on {
  color: #8e2492;
}

#SideAdmin .name .check:hover,
#SideMenu .name .check:hover {
  color: #8e2492;
}

#SideAdmin .name .prev,
#SideAdmin .name .next,
#SideMenu .name .prev,
#SideMenu .name .next {
  padding: 0 20px;
}

#SideAdmin .name .prev:hover,
#SideAdmin .name .next:hover,
#SideMenu .name .prev:hover,
#SideMenu .name .next:hover {
  color: #0099ff;
}

#SideAdmin .name .prev,
#SideMenu .name .prev {
  padding-left: 0;
}

#SideAdmin .name .next,
#SideMenu .name .next {
  padding-right: 0;
}

#ProjectList {
  padding: 0;
  float: left;
}

#ProjectList #ProjectsList {
  padding: 20px 0;
}

#ProjectList ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 20px;
  min-height: 2em;
}

#ProjectList .clearHolder {
  padding-top: 20px;
}

#ProjectList .toggleFolder {
  margin-top: 10px;
}

#ProjectList .name {
  margin: 0 0.5em;
  width: 150px;
  display: inline-block;
  overflow: visible;
  border: solid lightblue;
  border-width: 0 0 1px 0;
}

#ProjectList .toggledFolder {
  display: none;
  margin: 0 0 0 20px;
}

#ProjectList .toggledFolder .hidden {
  display: none;
}

#ProjectList p.toggledFolder {
  padding-bottom: 10px;
  border-bottom: 1px dashed lightgray;
  margin-bottom: 10px;
}

#ProjectList .toggledFolder.open {
  display: block;
}

#SideMenu {
  left: 0;
  right: auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

#SideMenu .closeButton {
  right: auto;
  left: 415px;
}

#SideMenu.active {
  display: block;
}

#SideMenu ul {
  list-style: none;
  margin-left: 1em;
  padding-left: 0;
  font-size: 1.2rem;
}

#SideMenu ul li {
  border-bottom: 1px solid #969696;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#SideMenu ul li a.active {
  color: #0099ff;
}

#SideMenu ul li i {
  width: 2em;
  display: inline-block;
  padding: 0 0.5em;
}

#SideMenu #LoggedIn {
  display: none;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-container a.removeFromPoint {
  color: #0099ff;
}

.leaflet-container a.addToPoint {
  color: red;
  display: none;
}

.leaflet-container a.activate {
  color: #0a0a0a;
  display: none;
}

.leaflet-container a.deActivate {
  color: #0099ff;
  display: inline;
}

.leaflet-container a.activate {
  color: #555;
}

.leaflet-container .inactive a.activate {
  display: inline;
}

.leaflet-container .inactive a.deActivate {
  display: none;
}

.activePoint a.addToPoint {
  display: inline;
}

.closeButton {
  position: fixed;
  top: 45px;
  right: 20px;
  color: #555;
  z-index: 2000;
}

.closeButton:hover {
  background: transparent;
  color: #FF0000;
}

#Filters {
  display: none;
}

#Filters ul {
  overflow: hidden;
}

#Filters ul li {
  float: left;
  border: 1px solid #999;
  margin-right: 0.5em;
}

#Filters ul li a {
  padding: 0.5em;
  height: 100%;
}

#Filters #ErrorTypes {
  padding-left: 25px;
}

#Filters #ErrorTypes ol {
  display: none;
}

#Projects select {
  min-width: 150px;
  margin-top: 10px;
}

#SideMenuOverlay,
#ImportOverlay,
#MetaEditOverlay {
  position: fixed;
  left: 440px;
  right: 0;
  bottom: 0;
  top: 40px;
  background-color: white;
  display: none;
  overflow: auto;
  padding: 2em;
}

#SideMenuOverlay.active,
#ImportOverlay.active,
#MetaEditOverlay.active {
  display: block;
}

#MetaEditOverlay #LoadedLists ul li .load {
  margin-right: 20px;
}

#Overlay {
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  z-index: 400;
  display: none;
  right: 0;
  z-index: 6000;
  overlay: visible;
  background-color: white;
}

#Overlay .closeButton {
  right: 10px;
  top: 50px;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#Overlay .link {
  position: fixed;
  top: 50px;
  right: 40px;
  color: #0099ff;
  z-index: 700;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) 2px 5px rgba(0, 0, 0, 0.4);
}

#Overlay .link:hover {
  color: red;
}

#Overlay .draggable {
  position: relative;
  width: 100%;
  height: 100%;
}

#Overlay img.large {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  cursor: pointer;
}

.activePoint #Overlay {
  top: 40px;
  right: 441px;
  overflow: hidden;
}

.activePoint #Overlay .closeButton {
  right: 451px;
}

.activePoint #Overlay .link {
  right: 481px;
}

.activePoint #Overlay img.large {
  max-width: 100%;
  margin: 0;
  top: 0;
  left: 0;
}

.activePoint #Overlay.wide,
#Overlay.wide {
  position: fixed;
  top: 0;
  right: 0;
}

.activePoint #Overlay.wide .closeButton,
#Overlay.wide .closeButton {
  top: 10px;
  right: 10px;
}

.activePoint #Overlay.wide .link,
#Overlay.wide .link {
  top: 10px;
  right: 40px;
}

.activePoint #Overlay.wide .draggable,
#Overlay.wide .draggable {
  cursor: move;
}

.activePoint #Overlay.wide img.large,
#Overlay.wide img.large {
  max-width: 4000px;
  max-height: 4000px;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-left: -3000px;
  margin-top: -2000px;
  cursor: move;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0;
}

#DropPoint {
  float: right;
}

#DropPoint a {
  padding: 0 20px;
  font-size: 18px;
  line-height: 40px;
}

#DropPoint a:hover {
  background-color: transparent;
  color: red;
}

#CenterPoint {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -5px;
  margin-top: -5px;
  z-index: 200;
}

#MetaList ol ol .add {
  display: none;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

@page {
    margin: 0.5cm;
}

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*!
 *  Font Awesome 3.2.1
 *  the iconic font designed for Bootstrap
 *  ------------------------------------------------------------------------------
 *  The full suite of pictographic icons, examples, and documentation can be
 *  found at http://fontawesome.io.  Stay up to date on Twitter at
 *  http://twitter.com/fontawesome.
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - The Font Awesome font is licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Font Awesome documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Author - Dave Gandy
 *  ------------------------------------------------------------------------------
 *  Email: dave@fontawesome.io
 *  Twitter: http://twitter.com/davegandy
 *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=3.2.1");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=3.2.1") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=3.2.1") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=3.2.1") format("truetype"), url("../fonts/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* FONT AWESOME CORE
 * -------------------------- */

[class^="icon-"],
[class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}

/* makes the font 33% larger relative to the icon container */

.icon-large:before {
  vertical-align: -10%;
  font-size: 1.3333333333em;
}

/* makes sure icons active on rollover in links */

a [class^="icon-"],
a [class*=" icon-"] {
  display: inline;
}

/* increased font size for icon-large */

[class^="icon-"].icon-fixed-width,
[class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.1428571429em;
  text-align: right;
  padding-right: 0.2857142857em;
}

[class^="icon-"].icon-fixed-width.icon-large,
[class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.4285714286em;
}

.icons-ul {
  margin-left: 2.1428571429em;
  list-style-type: none;
}

.icons-ul > li {
  position: relative;
}

.icons-ul .icon-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  text-align: center;
  line-height: inherit;
}

[class^="icon-"].hide,
[class*=" icon-"].hide {
  display: none;
}

.icon-muted {
  color: #eeeeee;
}

.icon-light {
  color: white;
}

.icon-dark {
  color: #333333;
}

.icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  border-radius: 3px;
}

.icon-2x {
  font-size: 2em;
}

.icon-2x.icon-border {
  border-width: 2px;
  border-radius: 4px;
}

.icon-3x {
  font-size: 3em;
}

.icon-3x.icon-border {
  border-width: 3px;
  border-radius: 5px;
}

.icon-4x {
  font-size: 4em;
}

.icon-4x.icon-border {
  border-width: 4px;
  border-radius: 6px;
}

.icon-5x {
  font-size: 5em;
}

.icon-5x.icon-border {
  border-width: 5px;
  border-radius: 7px;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

[class^="icon-"].pull-left,
[class*=" icon-"].pull-left {
  margin-right: .3em;
}

[class^="icon-"].pull-right,
[class*=" icon-"].pull-right {
  margin-left: .3em;
}

/* BOOTSTRAP SPECIFIC CLASSES
 * -------------------------- */

/* Bootstrap 2.0 sprites.less reset */

[class^="icon-"],
[class*=" icon-"] {
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  margin-top: 0;
}

/* more sprites.less reset */

.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"] {
  background-image: none;
}

/* keeps Bootstrap styles with and without icons the same */

.btn [class^="icon-"].icon-large,
.btn [class*=" icon-"].icon-large,
.nav [class^="icon-"].icon-large,
.nav [class*=" icon-"].icon-large {
  line-height: .9em;
}

.btn [class^="icon-"].icon-spin,
.btn [class*=" icon-"].icon-spin,
.nav [class^="icon-"].icon-spin,
.nav [class*=" icon-"].icon-spin {
  display: inline-block;
}

.nav-tabs [class^="icon-"],
.nav-tabs [class^="icon-"].icon-large,
.nav-tabs [class*=" icon-"],
.nav-tabs [class*=" icon-"].icon-large,
.nav-pills [class^="icon-"],
.nav-pills [class^="icon-"].icon-large,
.nav-pills [class*=" icon-"],
.nav-pills [class*=" icon-"].icon-large {
  line-height: .9em;
}

.btn [class^="icon-"].pull-left.icon-2x,
.btn [class^="icon-"].pull-right.icon-2x,
.btn [class*=" icon-"].pull-left.icon-2x,
.btn [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em;
}

.btn [class^="icon-"].icon-spin.icon-large,
.btn [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em;
}

.btn.btn-small [class^="icon-"].pull-left.icon-2x,
.btn.btn-small [class^="icon-"].pull-right.icon-2x,
.btn.btn-small [class*=" icon-"].pull-left.icon-2x,
.btn.btn-small [class*=" icon-"].pull-right.icon-2x {
  margin-top: .25em;
}

.btn.btn-large [class^="icon-"],
.btn.btn-large [class*=" icon-"] {
  margin-top: 0;
}

.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-top: .05em;
}

.btn.btn-large [class^="icon-"].pull-left.icon-2x,
.btn.btn-large [class*=" icon-"].pull-left.icon-2x {
  margin-right: .2em;
}

.btn.btn-large [class^="icon-"].pull-right.icon-2x,
.btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-left: .2em;
}

/* Fixes alignment in nav lists */

.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
  line-height: inherit;
}

/* EXTRAS
 * -------------------------- */

/* Stacked and layered icon */

.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%;
}

.icon-stack [class^="icon-"],
.icon-stack [class*=" icon-"] {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1em;
  line-height: inherit;
  *line-height: 2em;
}

.icon-stack .icon-stack-base {
  font-size: 2em;
  *line-height: 1em;
}

/* Animated rotating icon */

.icon-spin {
  display: inline-block;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}

/* Prevent stack and spinners from being taken inline when inside a link */

a .icon-stack,
a .icon-spin {
  display: inline-block;
  text-decoration: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(359deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* Icon rotations and mirroring */

.icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

/* ensure rotation occurs inside anchor tags */

a .icon-rotate-90:before,
a .icon-rotate-180:before,
a .icon-rotate-270:before,
a .icon-flip-horizontal:before,
a .icon-flip-vertical:before {
  display: inline-block;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 * readers do not read off random characters that represent icons */

.icon-glass:before {
  content: "";
}

.icon-music:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-envelope-alt:before {
  content: "";
}

.icon-heart:before {
  content: "";
}

.icon-star:before {
  content: "";
}

.icon-star-empty:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-film:before {
  content: "";
}

.icon-th-large:before {
  content: "";
}

.icon-th:before {
  content: "";
}

.icon-th-list:before {
  content: "";
}

.icon-ok:before {
  content: "";
}

.icon-remove:before {
  content: "";
}

.icon-zoom-in:before {
  content: "";
}

.icon-zoom-out:before {
  content: "";
}

.icon-power-off:before,
.icon-off:before {
  content: "";
}

.icon-signal:before {
  content: "";
}

.icon-gear:before,
.icon-cog:before {
  content: "";
}

.icon-trash:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-file-alt:before {
  content: "";
}

.icon-time:before {
  content: "";
}

.icon-road:before {
  content: "";
}

.icon-download-alt:before {
  content: "";
}

.icon-download:before {
  content: "";
}

.icon-upload:before {
  content: "";
}

.icon-inbox:before {
  content: "";
}

.icon-play-circle:before {
  content: "";
}

.icon-rotate-right:before,
.icon-repeat:before {
  content: "";
}

.icon-refresh:before {
  content: "";
}

.icon-list-alt:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-flag:before {
  content: "";
}

.icon-headphones:before {
  content: "";
}

.icon-volume-off:before {
  content: "";
}

.icon-volume-down:before {
  content: "";
}

.icon-volume-up:before {
  content: "";
}

.icon-qrcode:before {
  content: "";
}

.icon-barcode:before {
  content: "";
}

.icon-tag:before {
  content: "";
}

.icon-tags:before {
  content: "";
}

.icon-book:before {
  content: "";
}

.icon-bookmark:before {
  content: "";
}

.icon-print:before {
  content: "";
}

.icon-camera:before {
  content: "";
}

.icon-font:before {
  content: "";
}

.icon-bold:before {
  content: "";
}

.icon-italic:before {
  content: "";
}

.icon-text-height:before {
  content: "";
}

.icon-text-width:before {
  content: "";
}

.icon-align-left:before {
  content: "";
}

.icon-align-center:before {
  content: "";
}

.icon-align-right:before {
  content: "";
}

.icon-align-justify:before {
  content: "";
}

.icon-list:before {
  content: "";
}

.icon-indent-left:before {
  content: "";
}

.icon-indent-right:before {
  content: "";
}

.icon-facetime-video:before {
  content: "";
}

.icon-picture:before {
  content: "";
}

.icon-pencil:before {
  content: "";
}

.icon-map-marker:before {
  content: "";
}

.icon-adjust:before {
  content: "";
}

.icon-tint:before {
  content: "";
}

.icon-edit:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-move:before {
  content: "";
}

.icon-step-backward:before {
  content: "";
}

.icon-fast-backward:before {
  content: "";
}

.icon-backward:before {
  content: "";
}

.icon-play:before {
  content: "";
}

.icon-pause:before {
  content: "";
}

.icon-stop:before {
  content: "";
}

.icon-forward:before {
  content: "";
}

.icon-fast-forward:before {
  content: "";
}

.icon-step-forward:before {
  content: "";
}

.icon-eject:before {
  content: "";
}

.icon-chevron-left:before {
  content: "";
}

.icon-chevron-right:before {
  content: "";
}

.icon-plus-sign:before {
  content: "";
}

.icon-minus-sign:before {
  content: "";
}

.icon-remove-sign:before {
  content: "";
}

.icon-ok-sign:before {
  content: "";
}

.icon-question-sign:before {
  content: "";
}

.icon-info-sign:before {
  content: "";
}

.icon-screenshot:before {
  content: "";
}

.icon-remove-circle:before {
  content: "";
}

.icon-ok-circle:before {
  content: "";
}

.icon-ban-circle:before {
  content: "";
}

.icon-arrow-left:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-mail-forward:before,
.icon-share-alt:before {
  content: "";
}

.icon-resize-full:before {
  content: "";
}

.icon-resize-small:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-asterisk:before {
  content: "";
}

.icon-exclamation-sign:before {
  content: "";
}

.icon-gift:before {
  content: "";
}

.icon-leaf:before {
  content: "";
}

.icon-fire:before {
  content: "";
}

.icon-eye-open:before {
  content: "";
}

.icon-eye-close:before {
  content: "";
}

.icon-warning-sign:before {
  content: "";
}

.icon-plane:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-random:before {
  content: "";
}

.icon-comment:before {
  content: "";
}

.icon-magnet:before {
  content: "";
}

.icon-chevron-up:before {
  content: "";
}

.icon-chevron-down:before {
  content: "";
}

.icon-retweet:before {
  content: "";
}

.icon-shopping-cart:before {
  content: "";
}

.icon-folder-close:before {
  content: "";
}

.icon-folder-open:before {
  content: "";
}

.icon-resize-vertical:before {
  content: "";
}

.icon-resize-horizontal:before {
  content: "";
}

.icon-bar-chart:before {
  content: "";
}

.icon-twitter-sign:before {
  content: "";
}

.icon-facebook-sign:before {
  content: "";
}

.icon-camera-retro:before {
  content: "";
}

.icon-key:before {
  content: "";
}

.icon-gears:before,
.icon-cogs:before {
  content: "";
}

.icon-comments:before {
  content: "";
}

.icon-thumbs-up-alt:before {
  content: "";
}

.icon-thumbs-down-alt:before {
  content: "";
}

.icon-star-half:before {
  content: "";
}

.icon-heart-empty:before {
  content: "";
}

.icon-signout:before {
  content: "";
}

.icon-linkedin-sign:before {
  content: "";
}

.icon-pushpin:before {
  content: "";
}

.icon-external-link:before {
  content: "";
}

.icon-signin:before {
  content: "";
}

.icon-trophy:before {
  content: "";
}

.icon-github-sign:before {
  content: "";
}

.icon-upload-alt:before {
  content: "";
}

.icon-lemon:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-unchecked:before,
.icon-check-empty:before {
  content: "";
}

.icon-bookmark-empty:before {
  content: "";
}

.icon-phone-sign:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-github:before {
  content: "";
}

.icon-unlock:before {
  content: "";
}

.icon-credit-card:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-hdd:before {
  content: "";
}

.icon-bullhorn:before {
  content: "";
}

.icon-bell:before {
  content: "";
}

.icon-certificate:before {
  content: "";
}

.icon-hand-right:before {
  content: "";
}

.icon-hand-left:before {
  content: "";
}

.icon-hand-up:before {
  content: "";
}

.icon-hand-down:before {
  content: "";
}

.icon-circle-arrow-left:before {
  content: "";
}

.icon-circle-arrow-right:before {
  content: "";
}

.icon-circle-arrow-up:before {
  content: "";
}

.icon-circle-arrow-down:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-wrench:before {
  content: "";
}

.icon-tasks:before {
  content: "";
}

.icon-filter:before {
  content: "";
}

.icon-briefcase:before {
  content: "";
}

.icon-fullscreen:before {
  content: "";
}

.icon-group:before {
  content: "";
}

.icon-link:before {
  content: "";
}

.icon-cloud:before {
  content: "";
}

.icon-beaker:before {
  content: "";
}

.icon-cut:before {
  content: "";
}

.icon-copy:before {
  content: "";
}

.icon-paperclip:before,
.icon-paper-clip:before {
  content: "";
}

.icon-save:before {
  content: "";
}

.icon-sign-blank:before {
  content: "";
}

.icon-reorder:before {
  content: "";
}

.icon-list-ul:before {
  content: "";
}

.icon-list-ol:before {
  content: "";
}

.icon-strikethrough:before {
  content: "";
}

.icon-underline:before {
  content: "";
}

.icon-table:before {
  content: "";
}

.icon-magic:before {
  content: "";
}

.icon-truck:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-pinterest-sign:before {
  content: "";
}

.icon-google-plus-sign:before {
  content: "";
}

.icon-google-plus:before {
  content: "";
}

.icon-money:before {
  content: "";
}

.icon-caret-down:before {
  content: "";
}

.icon-caret-up:before {
  content: "";
}

.icon-caret-left:before {
  content: "";
}

.icon-caret-right:before {
  content: "";
}

.icon-columns:before {
  content: "";
}

.icon-sort:before {
  content: "";
}

.icon-sort-down:before {
  content: "";
}

.icon-sort-up:before {
  content: "";
}

.icon-envelope:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-rotate-left:before,
.icon-undo:before {
  content: "";
}

.icon-legal:before {
  content: "";
}

.icon-dashboard:before {
  content: "";
}

.icon-comment-alt:before {
  content: "";
}

.icon-comments-alt:before {
  content: "";
}

.icon-bolt:before {
  content: "";
}

.icon-sitemap:before {
  content: "";
}

.icon-umbrella:before {
  content: "";
}

.icon-paste:before {
  content: "";
}

.icon-lightbulb:before {
  content: "";
}

.icon-exchange:before {
  content: "";
}

.icon-cloud-download:before {
  content: "";
}

.icon-cloud-upload:before {
  content: "";
}

.icon-user-md:before {
  content: "";
}

.icon-stethoscope:before {
  content: "";
}

.icon-suitcase:before {
  content: "";
}

.icon-bell-alt:before {
  content: "";
}

.icon-coffee:before {
  content: "";
}

.icon-food:before {
  content: "";
}

.icon-file-text-alt:before {
  content: "";
}

.icon-building:before {
  content: "";
}

.icon-hospital:before {
  content: "";
}

.icon-ambulance:before {
  content: "";
}

.icon-medkit:before {
  content: "";
}

.icon-fighter-jet:before {
  content: "";
}

.icon-beer:before {
  content: "";
}

.icon-h-sign:before {
  content: "";
}

.icon-plus-sign-alt:before {
  content: "";
}

.icon-double-angle-left:before {
  content: "";
}

.icon-double-angle-right:before {
  content: "";
}

.icon-double-angle-up:before {
  content: "";
}

.icon-double-angle-down:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

.icon-angle-right:before {
  content: "";
}

.icon-angle-up:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-desktop:before {
  content: "";
}

.icon-laptop:before {
  content: "";
}

.icon-tablet:before {
  content: "";
}

.icon-mobile-phone:before {
  content: "";
}

.icon-circle-blank:before {
  content: "";
}

.icon-quote-left:before {
  content: "";
}

.icon-quote-right:before {
  content: "";
}

.icon-spinner:before {
  content: "";
}

.icon-circle:before {
  content: "";
}

.icon-mail-reply:before,
.icon-reply:before {
  content: "";
}

.icon-github-alt:before {
  content: "";
}

.icon-folder-close-alt:before {
  content: "";
}

.icon-folder-open-alt:before {
  content: "";
}

.icon-expand-alt:before {
  content: "";
}

.icon-collapse-alt:before {
  content: "";
}

.icon-smile:before {
  content: "";
}

.icon-frown:before {
  content: "";
}

.icon-meh:before {
  content: "";
}

.icon-gamepad:before {
  content: "";
}

.icon-keyboard:before {
  content: "";
}

.icon-flag-alt:before {
  content: "";
}

.icon-flag-checkered:before {
  content: "";
}

.icon-terminal:before {
  content: "";
}

.icon-code:before {
  content: "";
}

.icon-reply-all:before {
  content: "";
}

.icon-mail-reply-all:before {
  content: "";
}

.icon-star-half-full:before,
.icon-star-half-empty:before {
  content: "";
}

.icon-location-arrow:before {
  content: "";
}

.icon-crop:before {
  content: "";
}

.icon-code-fork:before {
  content: "";
}

.icon-unlink:before {
  content: "";
}

.icon-question:before {
  content: "";
}

.icon-info:before {
  content: "";
}

.icon-exclamation:before {
  content: "";
}

.icon-superscript:before {
  content: "";
}

.icon-subscript:before {
  content: "";
}

.icon-eraser:before {
  content: "";
}

.icon-puzzle-piece:before {
  content: "";
}

.icon-microphone:before {
  content: "";
}

.icon-microphone-off:before {
  content: "";
}

.icon-shield:before {
  content: "";
}

.icon-calendar-empty:before {
  content: "";
}

.icon-fire-extinguisher:before {
  content: "";
}

.icon-rocket:before {
  content: "";
}

.icon-maxcdn:before {
  content: "";
}

.icon-chevron-sign-left:before {
  content: "";
}

.icon-chevron-sign-right:before {
  content: "";
}

.icon-chevron-sign-up:before {
  content: "";
}

.icon-chevron-sign-down:before {
  content: "";
}

.icon-html5:before {
  content: "";
}

.icon-css3:before {
  content: "";
}

.icon-anchor:before {
  content: "";
}

.icon-unlock-alt:before {
  content: "";
}

.icon-bullseye:before {
  content: "";
}

.icon-ellipsis-horizontal:before {
  content: "";
}

.icon-ellipsis-vertical:before {
  content: "";
}

.icon-rss-sign:before {
  content: "";
}

.icon-play-sign:before {
  content: "";
}

.icon-ticket:before {
  content: "";
}

.icon-minus-sign-alt:before {
  content: "";
}

.icon-check-minus:before {
  content: "";
}

.icon-level-up:before {
  content: "";
}

.icon-level-down:before {
  content: "";
}

.icon-check-sign:before {
  content: "";
}

.icon-edit-sign:before {
  content: "";
}

.icon-external-link-sign:before {
  content: "";
}

.icon-share-sign:before {
  content: "";
}

.icon-compass:before {
  content: "";
}

.icon-collapse:before {
  content: "";
}

.icon-collapse-top:before {
  content: "";
}

.icon-expand:before {
  content: "";
}

.icon-euro:before,
.icon-eur:before {
  content: "";
}

.icon-gbp:before {
  content: "";
}

.icon-dollar:before,
.icon-usd:before {
  content: "";
}

.icon-rupee:before,
.icon-inr:before {
  content: "";
}

.icon-yen:before,
.icon-jpy:before {
  content: "";
}

.icon-renminbi:before,
.icon-cny:before {
  content: "";
}

.icon-won:before,
.icon-krw:before {
  content: "";
}

.icon-bitcoin:before,
.icon-btc:before {
  content: "";
}

.icon-file:before {
  content: "";
}

.icon-file-text:before {
  content: "";
}

.icon-sort-by-alphabet:before {
  content: "";
}

.icon-sort-by-alphabet-alt:before {
  content: "";
}

.icon-sort-by-attributes:before {
  content: "";
}

.icon-sort-by-attributes-alt:before {
  content: "";
}

.icon-sort-by-order:before {
  content: "";
}

.icon-sort-by-order-alt:before {
  content: "";
}

.icon-thumbs-up:before {
  content: "";
}

.icon-thumbs-down:before {
  content: "";
}

.icon-youtube-sign:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-xing:before {
  content: "";
}

.icon-xing-sign:before {
  content: "";
}

.icon-youtube-play:before {
  content: "";
}

.icon-dropbox:before {
  content: "";
}

.icon-stackexchange:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-flickr:before {
  content: "";
}

.icon-adn:before {
  content: "";
}

.icon-bitbucket:before {
  content: "";
}

.icon-bitbucket-sign:before {
  content: "";
}

.icon-tumblr:before {
  content: "";
}

.icon-tumblr-sign:before {
  content: "";
}

.icon-long-arrow-down:before {
  content: "";
}

.icon-long-arrow-up:before {
  content: "";
}

.icon-long-arrow-left:before {
  content: "";
}

.icon-long-arrow-right:before {
  content: "";
}

.icon-apple:before {
  content: "";
}

.icon-windows:before {
  content: "";
}

.icon-android:before {
  content: "";
}

.icon-linux:before {
  content: "";
}

.icon-dribbble:before {
  content: "";
}

.icon-skype:before {
  content: "";
}

.icon-foursquare:before {
  content: "";
}

.icon-trello:before {
  content: "";
}

.icon-female:before {
  content: "";
}

.icon-male:before {
  content: "";
}

.icon-gittip:before {
  content: "";
}

.icon-sun:before {
  content: "";
}

.icon-moon:before {
  content: "";
}

.icon-archive:before {
  content: "";
}

.icon-bug:before {
  content: "";
}

.icon-vk:before {
  content: "";
}

.icon-weibo:before {
  content: "";
}

.icon-renren:before {
  content: "";
}

body,
html,
main {
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: 14px;
  color: #555;
  background: #fafafa url("/assets/img/bg.png");
  font-family: 'Open Sans', 'Helvetica Neue', 'Actor' , sans-serif sans-serif;
}

a {
  color: #222;
  text-decoration: none;
}

a:hover {
  background-color: #EEE;
  color: #222;
}

a:active {
  color: #0099ff;
  background-color: #EEE;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0.25em;
}

ol,
ul {
  margin: 0.5em;
}

.right {
  float: right;
}

.left {
  float: left;
}

/*# sourceMappingURL=style.unprefixed.css.map */