/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: 'Roboto Mono', monospace;
  color: black;
  background: #f7f7f7;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic; color: #05a;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #ff0048;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #14a1cc; }

.cm-s-default .cm-code {color: #ff0048 ;}
.cm-s-default pre.div {background: rgba(255,255,216,.6) ;}
.cm-s-default .cm-escape {color: #c33 ;}
.cm-s-default .cm-formula {color: #05a ;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #090;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 64px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {}

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

/* show_hint */
.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 2px;

  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  max-width: 19em;
  overflow: hidden;
  white-space: pre;
  color: black;
  cursor: pointer;
}

.CodeMirror-hint.media {
  background: #dfe;
}

.CodeMirror-hint.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  src: url('/fonts/fa5/fa-solid-900.eot');
  src: url('/fonts/fa5/fa-solid-900.eot#iefix') format('embedded-opentype'), url('/fonts/fa5/fa-solid-900.woff') format('woff'), url('/fonts/fa5/fa-solid-900.ttf') format('truetype'), url('/fonts/fa5/fa-solid-900.svg#fontawesome') format('svg');
  font-style: normal;
  font-weight: 900;
  font-display: auto;
}

i {
  display: inline-block;
  font-family: 'Font Awesome 5 Free' !important;
  font-style: normal;
  font-weight: 900;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

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

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

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

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

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }
.fa-ul > li {
  position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

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

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

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

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

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

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows:before {
  content: "\f0b2"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-h:before {
  content: "\f337"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-v:before {
  content: "\f338"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-reorder:before {
  content: "\f0c9"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell-o:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle-o:before {
  content: "\f058"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square-o:before {
  content: "\f14a"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-o:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file-o:before {
  content: "\f15b"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text-o:before {
  content: "\f15c"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-haykal:before {
  content: "\f666"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down:before {
  content: "\f3be";}

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-send:before {
  content: "\f1d8"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-toggle-right:before {
  content: "\f04b"; }

.fa-play-circle-o:before {
  content: "\f04b"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-repeat:before {
  content: "\f01e"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in:before {
  content: "\f2f6"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle-o:before {
  content: "\f057"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("/fonts/fa5/fa-brands-400.eot");
  src: url("/fonts/fa5/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/fonts/fa5/fa-brands-400.woff2") format("woff2"), url("/fonts/fa5/fa-brands-400.woff") format("woff"), url("/fonts/fa5/fa-brands-400.ttf") format("truetype"), url("/fonts/fa5/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands'; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("/fonts/fa5/fa-regular-400.eot");
  src: url("/fonts/fa5/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/fonts/fa5/fa-regular-400.woff2") format("woff2"), url("/fonts/fa5/fa-regular-400.woff") format("woff"), url("/fonts/fa5/fa-regular-400.ttf") format("truetype"), url("/fonts/fa5/fa-regular-400.svg#fontawesome") format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("/fonts/fa5/fa-solid-900.eot");
  src: url("/fonts/fa5/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/fonts/fa5/fa-solid-900.woff2") format("woff2"), url("/fonts/fa5/fa-solid-900.woff") format("woff"), url("/fonts/fa5/fa-solid-900.ttf") format("truetype"), url("/fonts/fa5/fa-solid-900.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #333;
}

.hljs-comment,
.hljs-template_comment,
.diff .hljs-header,
.hljs-javadoc {
  color: #998;
  font-style: italic;
}

.hljs-keyword,
.css .rule .hljs-keyword,
.hljs-winutils,
.javascript .hljs-title,
.nginx .hljs-title,
.hljs-subst,
.hljs-request,
.hljs-status {
  color: #333;
  font-weight: bold;
}

.hljs-number,
.hljs-hexcolor,
.ruby .hljs-constant {
  color: #099;
}

.hljs-string,
.hljs-tag .hljs-value,
.hljs-phpdoc,
.tex .hljs-formula {
  color: #d25;
}

.hljs-title,
.hljs-id {
  color: #b25;
  font-weight: normal;
}

.hljs-class .hljs-title,
.haskell .hljs-type,
.vhdl .hljs-literal,
.tex .hljs-command {
  color: #458;
  font-weight: bold;
}

.hljs-tag,
.hljs-tag .hljs-title,
.hljs-rules .hljs-property,
.django .hljs-tag .hljs-keyword {
  color: #000080;
  font-weight: normal;
}

.hljs-attribute,
.hljs-variable,
.lisp .hljs-body {
  color: #008080;
}

.hljs-regexp {
  color: #009926;
}

.hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.lisp .hljs-keyword,
.tex .hljs-special,
.hljs-prompt {
  color: #990073;
}

.hljs-built_in,
.lisp .hljs-title,
.clojure .hljs-built_in {
  color: #0086b3;
}

.hljs-preprocessor,
.hljs-pragma,
.hljs-pi,
.hljs-doctype,
.hljs-shebang,
.hljs-cdata {
  color: #999;
  font-weight: bold;
}

.hljs-deletion {
  background: #fdd;
}

.hljs-addition {
  background: #dfd;
}

.hljs-change {
  background: #0086b3;
}

.hljs-chunk {
  color: #aaa;
}

.GnBu .q1-6 {
  background:rgb(199,233,180) !important;
  fill: rgb(199,233,180) !important;
  color: #000 !important;
}
.GnBu .q2-6 {
  background:rgb(127,205,187) !important;
  fill: rgb(127,205,187) !important;
  color: #000 !important;
}
.GnBu .q3-6 {
  background:rgb(65,182,196) !important;
  fill: rgb(65,182,196) !important;
  color: #fff !important;
}
.GnBu .q4-6 {
  background:rgb(44,127,184) !important;
  fill: rgb(44,127,184) !important;
  color: #fff !important;
}
.GnBu .q5-6 {
  background:rgb(37,52,148) !important;
  fill: rgb(37,52,148) !important;
  color: #fff !important;
}

.crayon-red-1{background:#ffc7c7 !important;}.crayon-rose-1{background:#f4d2d2 !important;}.crayon-mandarin-1{background:#ffddc7 !important;}.crayon-orange-1{background:#ffe9c7 !important;}.crayon-copper-1{background:#f1e4d5 !important;}.crayon-yellow-1{background:#fffbc7 !important;}.crayon-green-1{background:#defbcb !important;}.crayon-forest-1{background:#d7f4d2 !important;}.crayon-salad-1{background:#d5f1e0 !important;}.crayon-teal-1{background:#d5f1f1 !important;}.crayon-ocean-1{background:#d5ebf1 !important;}.crayon-sky-1{background:#ceeaf8 !important;}.crayon-blue-1{background:#c7e5ff !important;}.crayon-indigo-1{background:#d9d1fa !important;}.crayon-violet-1{background:#e0d6f5 !important;}.crayon-purple-1{background:#f3d6f5 !important;}.crayon-red-2{background:#ffa8a8 !important;}.crayon-rose-2{background:#eebaba !important;}.crayon-mandarin-2{background:#ffcba8 !important;}.crayon-orange-2{background:#ffdca8 !important;}.crayon-copper-2{background:#e9d5be !important;}.crayon-yellow-2{background:#fff9a8 !important;}.crayon-green-2{background:#ccf8af !important;}.crayon-forest-2{background:#c1eeba !important;}.crayon-salad-2{background:#bee9cf !important;}.crayon-teal-2{background:#bee9e9 !important;}.crayon-ocean-2{background:#bee1e9 !important;}.crayon-sky-2{background:#b3def4 !important;}.crayon-blue-2{background:#a8d7ff !important;}.crayon-indigo-2{background:#c6baf7 !important;}.crayon-violet-2{background:#d1c2f0 !important;}.crayon-purple-2{background:#edc2f0 !important;}.crayon-red-3{background:#ff8a8a !important;}.crayon-rose-3{background:#e8a1a1 !important;}.crayon-mandarin-3{background:#ffb98a !important;}.crayon-orange-3{background:#ffd08a !important;}.crayon-copper-3{background:#e2c6a7 !important;}.crayon-yellow-3{background:#fff78a !important;}.crayon-green-3{background:#baf692 !important;}.crayon-forest-3{background:#abe8a1 !important;}.crayon-salad-3{background:#a7e2be !important;}.crayon-teal-3{background:#a7e2e2 !important;}.crayon-ocean-3{background:#a7d6e2 !important;}.crayon-sky-3{background:#98d3f0 !important;}.crayon-blue-3{background:#8ac8ff !important;}.crayon-indigo-3{background:#b4a3f5 !important;}.crayon-violet-3{background:#c2adeb !important;}.crayon-purple-3{background:#e7adeb !important;}.crayon-red-4{background:#ff6b6b !important;color:#fff !important}.crayon-rose-4{background:#e18989 !important;color:#fff !important}.crayon-mandarin-4{background:#ffa66b !important;}.crayon-orange-4{background:#ffc46b !important;}.crayon-copper-4{background:#dab890 !important;}.crayon-yellow-4{background:#fff56b !important;}.crayon-green-4{background:#a8f476 !important;}.crayon-forest-4{background:#95e189 !important;}.crayon-salad-4{background:#90daae !important;}.crayon-teal-4{background:#90dada !important;}.crayon-ocean-4{background:#90cbda !important;}.crayon-sky-4{background:#7ec8ed !important;}.crayon-blue-4{background:#6bbaff !important;}.crayon-indigo-4{background:#a18cf2 !important;}.crayon-violet-4{background:#b399e6 !important;}.crayon-purple-4{background:#e099e6 !important;}.crayon-red-5{background:#ff4d4d !important;color:#fff !important}.crayon-rose-5{background:#db7070 !important;color:#fff !important}.crayon-mandarin-5{background:#ff944d !important;color:#fff !important}.crayon-orange-5{background:#ffb84d !important;}.crayon-copper-5{background:#d2a979 !important;}.crayon-yellow-5{background:#fff34d !important;}.crayon-green-5{background:#97f25a !important;}.crayon-forest-5{background:#7edb70 !important;}.crayon-salad-5{background:#79d29d !important;}.crayon-teal-5{background:#79d2d2 !important;}.crayon-ocean-5{background:#79c1d2 !important;}.crayon-sky-5{background:#63bce9 !important;}.crayon-blue-5{background:#4dacff !important;}.crayon-indigo-5{background:#8e75f0 !important;color:#fff !important}.crayon-violet-5{background:#a385e0 !important;color:#fff !important}.crayon-purple-5{background:#da85e0 !important;color:#fff !important}.crayon-red-6{background:#ff2e2e !important;color:#fff !important}.crayon-rose-6{background:#d55858 !important;color:#fff !important}.crayon-mandarin-6{background:#ff822e !important;color:#fff !important}.crayon-orange-6{background:#ffab2e !important;}.crayon-copper-6{background:#cb9a62 !important;}.crayon-yellow-6{background:#fff12e !important;}.crayon-green-6{background:#85ef3e !important;}.crayon-forest-6{background:#68d558 !important;}.crayon-salad-6{background:#62cb8c !important;}.crayon-teal-6{background:#62cbcb !important;}.crayon-ocean-6{background:#62b6cb !important;}.crayon-sky-6{background:#48b1e5 !important;}.crayon-blue-6{background:#2e9dff !important;color:#fff !important}.crayon-indigo-6{background:#7b5eed !important;color:#fff !important}.crayon-violet-6{background:#9470db !important;color:#fff !important}.crayon-purple-6{background:#d470db !important;color:#fff !important}.crayon-red-7{background:#ff0f0f !important;color:#fff !important}.crayon-rose-7{background:#cf3f3f !important;color:#fff !important}.crayon-mandarin-7{background:#ff6f0f !important;color:#fff !important}.crayon-orange-7{background:#ff9f0f !important;color:#fff !important}.crayon-copper-7{background:#c38b4b !important;color:#fff !important}.crayon-yellow-7{background:#ffef0f !important;}.crayon-green-7{background:#73ed21 !important;}.crayon-forest-7{background:#52cf3f !important;color:#fff !important}.crayon-salad-7{background:#4bc37b !important;color:#fff !important}.crayon-teal-7{background:#4bc3c3 !important;color:#fff !important}.crayon-ocean-7{background:#4babc3 !important;color:#fff !important}.crayon-sky-7{background:#2da5e1 !important;color:#fff !important}.crayon-blue-7{background:#0f8fff !important;color:#fff !important}.crayon-indigo-7{background:#6847eb !important;color:#fff !important}.crayon-violet-7{background:#855cd6 !important;color:#fff !important}.crayon-purple-7{background:#ce5cd6 !important;color:#fff !important}.crayon-red-8{background:#f00000 !important;color:#fff !important}.crayon-rose-8{background:#c03030 !important;color:#fff !important}.crayon-mandarin-8{background:#f06000 !important;color:#fff !important}.crayon-orange-8{background:#f09000 !important;color:#fff !important}.crayon-copper-8{background:#b47c3c !important;color:#fff !important}.crayon-yellow-8{background:#f0e000 !important;}.crayon-green-8{background:#63de12 !important;}.crayon-forest-8{background:#43c030 !important;color:#fff !important}.crayon-salad-8{background:#3cb46c !important;color:#fff !important}.crayon-teal-8{background:#3cb4b4 !important;color:#fff !important}.crayon-ocean-8{background:#3c9cb4 !important;color:#fff !important}.crayon-sky-8{background:#1e96d2 !important;color:#fff !important}.crayon-blue-8{background:#0080f0 !important;color:#fff !important}.crayon-indigo-8{background:#5530e8 !important;color:#fff !important}.crayon-violet-8{background:#7547d1 !important;color:#fff !important}.crayon-purple-8{background:#c847d1 !important;color:#fff !important}.crayon-red-9{background:#d10000 !important;color:#fff !important}.crayon-rose-9{background:#a72a2a !important;color:#fff !important}.crayon-mandarin-9{background:#d15400 !important;color:#fff !important}.crayon-orange-9{background:#d17d00 !important;color:#fff !important}.crayon-copper-9{background:#9d6c34 !important;color:#fff !important}.crayon-yellow-9{background:#d1c300 !important;color:#fff !important}.crayon-green-9{background:#57c110 !important;color:#fff !important}.crayon-forest-9{background:#3ba72a !important;color:#fff !important}.crayon-salad-9{background:#349d5e !important;color:#fff !important}.crayon-teal-9{background:#349d9d !important;color:#fff !important}.crayon-ocean-9{background:#34889d !important;color:#fff !important}.crayon-sky-9{background:#1a83b7 !important;color:#fff !important}.crayon-blue-9{background:#0070d1 !important;color:#fff !important}.crayon-indigo-9{background:#4219e6 !important;color:#fff !important}.crayon-violet-9{background:#63c !important;color:#fff !important}.crayon-purple-9{background:#c233cc !important;color:#fff !important}.crayon-red-10{background:#b30000 !important;color:#fff !important}.crayon-rose-10{background:#8f2424 !important;color:#fff !important}.crayon-mandarin-10{background:#b34700 !important;color:#fff !important}.crayon-orange-10{background:#b36b00 !important;color:#fff !important}.crayon-copper-10{background:#865c2d !important;color:#fff !important}.crayon-yellow-10{background:#b3a700 !important;color:#fff !important}.crayon-green-10{background:#4aa50d !important;color:#fff !important}.crayon-forest-10{background:#328f24 !important;color:#fff !important}.crayon-salad-10{background:#2d8650 !important;color:#fff !important}.crayon-teal-10{background:#2d8686 !important;color:#fff !important}.crayon-ocean-10{background:#2d7486 !important;color:#fff !important}.crayon-sky-10{background:#16709c !important;color:#fff !important}.crayon-blue-10{background:#005fb3 !important;color:#fff !important}.crayon-indigo-10{background:#3c17cf !important;color:#fff !important}.crayon-violet-10{background:#5c2eb8 !important;color:#fff !important}.crayon-purple-10{background:#ae2eb8 !important;color:#fff !important}.crayon-red-11{background:#940000 !important;color:#fff !important}.crayon-rose-11{background:#761e1e !important;color:#fff !important}.crayon-mandarin-11{background:#943b00 !important;color:#fff !important}.crayon-orange-11{background:#945900 !important;color:#fff !important}.crayon-copper-11{background:#6f4c25 !important;color:#fff !important}.crayon-yellow-11{background:#948a00 !important;color:#fff !important}.crayon-green-11{background:#3d890b !important;color:#fff !important}.crayon-forest-11{background:#29761e !important;color:#fff !important}.crayon-salad-11{background:#256f43 !important;color:#fff !important}.crayon-teal-11{background:#256f6f !important;color:#fff !important}.crayon-ocean-11{background:#25606f !important;color:#fff !important}.crayon-sky-11{background:#125c81 !important;color:#fff !important}.crayon-blue-11{background:#004f94 !important;color:#fff !important}.crayon-indigo-11{background:#3514b8 !important;color:#fff !important}.crayon-violet-11{background:#5229a3 !important;color:#fff !important}.crayon-purple-11{background:#9b29a3 !important;color:#fff !important}.crayon-red-12{background:#750000 !important;color:#fff !important}.crayon-rose-12{background:#5e1717 !important;color:#fff !important}.crayon-mandarin-12{background:#752f00 !important;color:#fff !important}.crayon-orange-12{background:#754600 !important;color:#fff !important}.crayon-copper-12{background:#583d1d !important;color:#fff !important}.crayon-yellow-12{background:#756d00 !important;color:#fff !important}.crayon-green-12{background:#316d09 !important;color:#fff !important}.crayon-forest-12{background:#215e17 !important;color:#fff !important}.crayon-salad-12{background:#1d5835 !important;color:#fff !important}.crayon-teal-12{background:#1d5858 !important;color:#fff !important}.crayon-ocean-12{background:#1d4c58 !important;color:#fff !important}.crayon-sky-12{background:#0f4967 !important;color:#fff !important}.crayon-blue-12{background:#003f75 !important;color:#fff !important}.crayon-indigo-12{background:#2e12a1 !important;color:#fff !important}.crayon-violet-12{background:#47248f !important;color:#fff !important}.crayon-purple-12{background:#88248f !important;color:#fff !important}@font-face{font-family:'PT Sans';font-style:normal;font-weight:normal;src:local('PT Sans'),url("/static/fonts/PT_Sans/regular.ttf")}@font-face{font-family:'PT Sans';font-style:normal;font-weight:bold;src:local('PT Sans Bold'),url("/static/fonts/PT_Sans/bold.ttf")}@font-face{font-family:'PT Sans';font-style:italic;font-weight:bold;src:local('PT Sans Bold Italic'),url("/static/fonts/PT_Sans/bold_italic.ttf")}@font-face{font-family:'PT Sans';font-style:italic;font-weight:normal;src:local('PT Sans Italic'),url("/static/fonts/PT_Sans/italic.ttf")}@font-face{font-family:'PT Sans Narrow';font-style:normal;font-weight:normal;src:local('PT Sans Narrow'),local('PTSans-Narrow'),url("/static/fonts/PT_Sans_Narrow/regular.ttf")}@font-face{font-family:'PT Sans Narrow';font-style:normal;font-weight:bold;src:local('PT Sans Narrow Bold'),local('PTSans-NarrowBold'),url("/static/fonts/PT_Sans_Narrow/bold.ttf")}@font-face{font-family:'Open Sans Condensed';font-style:normal;font-weight:300;src:local('Open Sans Cond Light'),local('OpenSans-CondensedLight'),url("/static/fonts/Open_Sans_Condensed/light.ttf")}@font-face{font-family:'Open Sans Condensed';font-style:normal;font-weight:bold;src:local('Open Sans Cond Bold'),local('OpenSans-CondensedBold'),url("/static/fonts/Open_Sans_Condensed/bold.ttf")}@font-face{font-family:'Open Sans Condensed';font-style:italic;font-weight:300;src:local('Open Sans Cond Light Italic'),local('OpenSans-CondensedLightItalic'),url("/static/fonts/Open_Sans_Condensed/light_italic.ttf")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans'),url("/static/fonts/Open_Sans/OpenSans-Regular.ttf")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:normal;src:local('Open Sans Italic'),url("/static/fonts/Open_Sans/OpenSans-Italic.ttf")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url("/static/fonts/Open_Sans/OpenSans-Light.ttf")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:300;src:local('Open Sans Light Italic'),local('OpenSansLight-Italic'),url("/static/fonts/Open_Sans/OpenSans-LightItalic.ttf")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:bold;src:local('Open Sans Bold'),url("/static/fonts/Open_Sans/OpenSans-Bold.ttf")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:bold;src:local('Open Sans Bold Italic'),url("/static/fonts/Open_Sans/OpenSans-BoldItalic.ttf")}@font-face{font-family:'Roboto Mono';font-style:normal;font-weight:400;src:local('Roboto Mono'),local('RobotoMono-Regular'),url("/static/fonts/Roboto_Mono/RobotoMono-Regular.ttf")}@font-face{font-family:'Roboto Mono';font-style:normal;font-weight:bold;src:local('Roboto Mono Medium'),local('RobotoMono-Medium'),url("/static/fonts/Roboto_Mono/RobotoMono-Medium.ttf")}@font-face{font-family:'Roboto Mono';font-style:italic;font-weight:400;src:local('Roboto Mono Italic'),local('RobotoMono-Italic'),url("/static/fonts/Roboto_Mono/RobotoMono-Italic.ttf")}@font-face{font-family:'Roboto Mono';font-style:italic;font-weight:bold;src:local('Roboto Mono Medium Italic'),local('RobotoMono-MediumItalic'),url("/static/fonts/Roboto_Mono/RobotoMono-MediumItalic.ttf")}.hidden{display:none}.inline-block{display:inline-block}.color-brand{color:#fb1f1f !important}.color-alt{color:#197f99 !important}.color-primary{color:#5cb85c !important}.color-warn{color:#f2e100 !important}.color-danger{color:#c33 !important}.color-subtle{color:#444 !important}.left-float{float:left}.right-float{float:right}.centered{text-align:center}.left-align{text-align:left}.right-align{text-align:right}.justify{text-align:justify}.middle,.middle *{vertical-align:middle}.prewrap{white-space:pre-wrap}.no-overflow{overflow:hidden}.relative{position:relative}.clear{clear:both}.clear-after:after{content:'';display:table;width:100%}.nopadding,.no-padding{padding:0 !important}.nomargin,.no-margin{margin:0 !important}.nowrap{white-space:nowrap}.buffer-top{margin-top:32px}.buffer-bottom{margin-bottom:32px}@media all and (max-width:576px){.no-small-screen{display:none !important}}@media all and (min-width:577px){.small-screen{display:none !important}}@media all and (max-width:1023px){.no-medium-screen{display:none !important}}@media all and (min-width:1024px){.medium-screen{display:none !important}}.row{padding:0 !important;list-style:none outside !important;}.row::after{content:'';display:table;width:100%}.row > *{float:left;margin:0;margin-left:4%;width:4.666666666666667%;}.row > *:first-child{margin-left:0}.row .span-1{width:4.666666666666667%}.row .span-2{width:13.333333333333334%}.row .span-3{width:22%}.row .span-4{width:30.666666666666668%}.row .span-5{width:39.333333333333336%}.row .span-6{width:48%}.row .span-7{width:56.66666666666667%}.row .span-8{width:65.33333333333334%}.row .span-9{width:74%}.row .span-10{width:82.66666666666667%}.row .span-11{width:91.33333333333334%}.row .span-12{width:100%}@media all and (max-width:1023px){.row:not(.mobile) > *{float:none;width:100% !important;margin:8px 0 !important;}.row:not(.mobile) > *:first-child{margin-top:0 !important}}@media all and (max-width:576px){.row.mobile > *{float:none;width:100% !important;margin:8px 0 !important;}.row.mobile > *:first-child{margin-top:0 !important}}.crop{white-space:nowrap;max-width:9em;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}a,a:visited{color:#197f99}a:hover{color:#135f73}a.noline{text-decoration:none}em,.em{font-style:italic;color:#135f73}strong,.strong{font-weight:600;color:#0f4c5c}.small{font-size:80%}.large{font-size:125%}.enormous{font-size:250%;}.enormous.margin{margin:64px 0}a.padAround + a,em.padAround + em,strong.padAround + strong,span.padAround + span{margin-left:6px}a.leftDot::before,em.leftDot::before,strong.leftDot::before,span.leftDot::before{content:' · ';font-style:normal;font-weight:normal}@media all and (min-width:577px){.pull-left{float:left;margin-right:24px}.pull-right{float:right;margin-left:24px}}img{max-width:100%}img.circle{border-radius:1000px}img.pinlike{border-radius:4px}img.avatar{position:relative;top:-2px;border-radius:1000px;vertical-align:middle;margin:0 4px;}img.avatar.small{width:24px;height:24px}p,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,hr,.block{margin:1em 0}.compact p,.compact h1,.compact h2,.compact h3,.compact h4,.compact h5,.compact h6,.compact ul,.compact ol,.compact dl,.compact li,.compact hr,.compact .block{margin:.5em 0}h1{font:300 200%/120% Open Sans Condensed,sans-serif;margin:0 0 .75em;}h1 .subtle{font-size:40%}h2{font:400 150%/120% PT Sans Narrow,sans-serif;color:#333;}h2 .subtle{font-size:40%}h3{font:300 120%/120% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;color:#135f73;}h3 .subtle{font-size:50%}h4{font:300 120%/120% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;color:#444;}h4 .subtle{font-size:50%}h5{font:normal 100%/120% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;color:#444;}h5 .subtle{font-size:50%}h6{font:300 100%/120% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;color:#444}h1 img,h2 img,h3 img,h4 img{vertical-align:middle;margin-right:12px}hr{border:0;height:1px;background:#eee}dl dt{color:#333;margin:.5em 0}dl dd{padding:2px 8px;margin-left:8px;border-left:1px dotted #ddd;}dl dd p,dl dd ul,dl dd ol,dl dd li{margin:.5em 0}ul,ol{padding-left:24px}code{font:95% monospace;color:#d25;background:rgba(0,0,0,0.05);border-radius:4px;padding:2px 4px}pre{white-space:pre-wrap;background:rgba(0,0,0,0.05);padding:8px 16px;border-radius:4px;line-height:120%;text-align:left;}pre code{font-size:85%;color:#333;background:transparent;padding:0}pre.error code{color:#c33}.kicker{font:300 120%/150% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;color:#555;padding:8px 24px;border:4px solid #197f99;border-radius:16px/64px;border-width:0 4px}.subtle,.sidenote{font:300 80%/150% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;color:#444;line-height:1.5;}.subtle.smaller,.sidenote.smaller{font-size:85%}.sidenote{float:right;width:172px;min-height:172px;padding:16px;margin-left:24px;background:#ffc;color:#444;font:300 80%/120% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;-webkit-box-shadow:0 0 16px rgba(0,0,0,0.1) inset,0 1px 3px rgba(0,0,0,0.4);box-shadow:0 0 16px rgba(0,0,0,0.1) inset,0 1px 3px rgba(0,0,0,0.4)}blockquote,.blockquote{position:relative;margin-left:0;margin-right:0;padding:8px 48px;}blockquote::before,.blockquote::before{content:"“";font:128px Times,serif;font-weight:bold;opacity:.05;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=5)";filter:alpha(opacity=5);position:absolute;left:0;top:-16px}blockquote .author,.blockquote .author{margin-left:48px;font-style:italic}figure img,.figure img{vertical-align:middle}figure.bordered img,.figure.bordered img{border:1px solid #ccc}figure.lifted img,.figure.lifted img{-webkit-box-shadow:0 1px 12px rgba(0,0,0,0.4);box-shadow:0 1px 12px rgba(0,0,0,0.4)}figure.wide img,.figure.wide img{width:100%}.caption{font-style:italic;color:#444}.elasticEmbed{max-width:100%;position:relative;padding-bottom:56.25%;height:0;overflow:hidden;border:0;}.elasticEmbed iframe,.elasticEmbed embed,.elasticEmbed object{position:absolute;width:100%;height:100%;border:0;top:0;left:0}kbd{font:95% monospace;position:relative;display:inline-block;padding:2px 8px;margin:0 4px;border:1px solid #ccc;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.4) inset,0 -16px 16px rgba(0,0,0,0.1) inset;box-shadow:0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.4) inset,0 -16px 16px rgba(0,0,0,0.1) inset;border-radius:4px;text-decoration:none !important;white-space:nowrap}.block.definition,.block.example,.block.stressed{position:relative;border-left:1px solid #197f99;padding:8px 32px;margin-left:32px;}.block.definition::before,.block.example::before,.block.stressed::before,.block.definition::after,.block.example::after,.block.stressed::after{content:'';display:block;position:absolute;height:1px;left:0;right:0}.block.definition::before,.block.example::before,.block.stressed::before{top:0}.block.definition::after,.block.example::after,.block.stressed::after{bottom:0}.block.definition > .tab,.block.example > .tab,.block.stressed > .tab{position:absolute;color:#fff;padding:6px 6px;margin:0;font-size:18px;line-height:125%;border-radius:4px 4px 0 0;top:-32px;right:100%;-webkit-transform-origin:100% 100%;-moz-transform-origin:100% 100%;-o-transform-origin:100% 100%;-ms-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-o-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);white-space:nowrap}.block.definition{background:-webkit-linear-gradient(left, #f1fafd, #fff);background:-moz-linear-gradient(left, #f1fafd, #fff);background:-o-linear-gradient(left, #f1fafd, #fff);background:-ms-linear-gradient(left, #f1fafd, #fff);background:linear-gradient(to right, #f1fafd, #fff);border-color:#197f99;}.block.definition::before,.block.definition::after{background:-webkit-linear-gradient(left, #197f99, #fff);background:-moz-linear-gradient(left, #197f99, #fff);background:-o-linear-gradient(left, #197f99, #fff);background:-ms-linear-gradient(left, #197f99, #fff);background:linear-gradient(to right, #197f99, #fff)}.block.definition > .tab{background:#197f99}.block.example{background:-webkit-linear-gradient(left, #f7fbf7, #fff);background:-moz-linear-gradient(left, #f7fbf7, #fff);background:-o-linear-gradient(left, #f7fbf7, #fff);background:-ms-linear-gradient(left, #f7fbf7, #fff);background:linear-gradient(to right, #f7fbf7, #fff);border-color:#5cb85c;}.block.example::before,.block.example::after{background:-webkit-linear-gradient(left, #5cb85c, #fff);background:-moz-linear-gradient(left, #5cb85c, #fff);background:-o-linear-gradient(left, #5cb85c, #fff);background:-ms-linear-gradient(left, #5cb85c, #fff);background:linear-gradient(to right, #5cb85c, #fff)}.block.example > .tab{background:#5cb85c}.block.stressed{background:-webkit-linear-gradient(left, #f6f6f6, #fff);background:-moz-linear-gradient(left, #f6f6f6, #fff);background:-o-linear-gradient(left, #f6f6f6, #fff);background:-ms-linear-gradient(left, #f6f6f6, #fff);background:linear-gradient(to right, #f6f6f6, #fff);border-color:#444;}.block.stressed::before,.block.stressed::after{background:-webkit-linear-gradient(left, #444, #fff);background:-moz-linear-gradient(left, #444, #fff);background:-o-linear-gradient(left, #444, #fff);background:-ms-linear-gradient(left, #444, #fff);background:linear-gradient(to right, #444, #fff)}.block.stressed > .tab{background:#444}.block.incut{background:rgba(0,0,0,0.05);padding:4px 16px;overflow:hidden;border-radius:4px}.block.warning{background:#fffabc;color:#8f5f20;border:4px solid #f2e100;border-width:0 4px;padding:8px 32px;border-radius:8px}.block.danger{background:#faebeb;color:#333;border:4px solid #c33;border-width:0 4px;padding:8px 32px;border-radius:8px}.block.info,.block.recap,.block.thesis,.block.success,.block.tip,.block.summary,.block.attention,.block.critical,.block.error{position:relative;padding:4px 32px;margin:32px 24px;background:rgba(0,0,0,0.05);border:4px solid transparent;}.block.info::after,.block.recap::after,.block.thesis::after,.block.success::after,.block.tip::after,.block.summary::after,.block.attention::after,.block.critical::after,.block.error::after{content:'';font-weight:900;font-family:"Font Awesome 5 Free";font-size:28px;text-align:center;width:48px;height:48px;line-height:48px;color:#fcfcfc;position:absolute;top:-22px;left:-22px;border-radius:64px}.block.info{border-color:#197f99;}.block.info::after{content:"\f129";background:#197f99}.block.thesis{border-color:#197f99;}.block.thesis::after{content:"\f061";background:#197f99}.block.recap{border-color:#197f99;}.block.recap::after{content:"\f01e";background:#197f99}.block.success{border-color:#5cb85c;}.block.success::after{content:"\f00c";background:#5cb85c}.block.summary{border-color:#5cb85c;}.block.summary::after{content:"\f0ca";background:#5cb85c}.block.tip{background:#fffcd0;border-color:#fff244;}.block.tip::after{content:"\f0eb";color:#333;background:#fff244}.block.attention{background:#fff2d0;border-color:#fc4;}.block.attention::after{content:"\f12a";background:#fc4}.block.critical{background:#faebeb;border-color:#c33;}.block.critical::after{content:"\f12a";background:#c33}.block.error{background:#faebeb;border-color:#c33;}.block.error::after{content:"\f00d";background:#c33}.officialAnswer{margin:1em 0;background:#fffabc;color:#8f5f20;border:4px solid #f2e100;border-width:0 4px;padding:8px 32px;border-radius:8px}.moderationNotice{margin:1em 0;background:#fffabc;color:#8f5f20;border:4px solid #f2e100;border-width:0 4px;padding:8px 32px;border-radius:8px}.moderationNotice.danger{background:#faebeb;color:#333;border:4px solid #c33;border-width:0 4px;padding:8px 32px;border-radius:8px}p.block.info,p.block.recap,p.block.thesis,p.block.success,p.block.tip,p.block.summary,p.block.attention,p.block.critical,p.block.error,p.block.definition,p.block.example,p.block.stressed{padding-top:1em;padding-bottom:1em}.clue{display:none}.inversed,.inversed *{color:#fff;text-shadow:0 1px 3px rgba(0,0,0,0.75)}.fixedBackground{background-attachment:fixed;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;background-position:50% 50%}.thumb img{cursor:pointer;vertical-align:middle}.thumb.ws img{width:120px}.thumb.wm img{width:180px}.thumb.wl img{width:240px}.thumb.hs img{height:120px}.thumb.hm img{height:180px}.thumb.hl img{height:240px}.strawberry{background:#fdd;color:#a55}.banana{background:#ffc;color:#aa5}.orange{background:#fe8;color:#a70}.kiwi{background:#cfa;color:#4a2}table{margin:0;max-width:100%;border-spacing:0;border-collapse:collapse;}table tr.top th,table tr.top td{vertical-align:top}table tr.bottom th,table tr.bottom td{vertical-align:bottom}table tr.middle th,table tr.middle td{vertical-align:middle}table tr.left-align th,table tr.left-align td{text-align:left}table tr.right-align th,table tr.right-align td{text-align:right}table tr.centered th,table tr.centered td{text-align:center}table td.selected{background:#5cb85c;color:#fff}table tr.highlighted td,table tr.highlighted th{background:rgba(25,127,153,0.05)}table tr.strike td,table tr.strike th,table td.strike,table th.strike{text-decoration:line-through}table tr.border-bottom th,table tr.border-bottom td{border-bottom:1px solid #e7e7e7}table tr.border-top th,table tr.border-top td{border-top:1px solid #f3f3f3}table th,table td{padding:8px 12px;text-align:left;}table th.left-align,table td.left-align,table th.align-left,table td.align-left{text-align:left}table th.right-align,table td.right-align,table th.align-right,table td.align-right{text-align:right}table th.centered,table td.centered,table th.align-center,table td.align-center{text-align:center}table th.justify,table td.justify{text-align:justify}table th.top,table td.top{vertical-align:top !important}table th.bottom,table td.bottom{vertical-align:bottom !important}table th.middle,table td.middle{vertical-align:middle !important}table th.icon,table td.icon{padding-left:4px !important;padding-right:4px !important;width:16px;text-align:center;}table th.icon img,table td.icon img{vertical-align:middle}table th.terse,table td.terse{padding-right:0 !important;}table th.terse img,table td.terse img{vertical-align:middle}table th.hollow,table td.hollow{padding:0 !important}table th{font-size:20px;font-weight:normal;color:#444}table tbody th{font:300 120% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif}table thead:first-child tr:first-child td:first-child,table tbody:first-child tr:first-child td:first-child,table tfoot:first-child tr:first-child td:first-child,table thead:first-child tr:first-child th:first-child,table tbody:first-child tr:first-child th:first-child,table tfoot:first-child tr:first-child th:first-child{border-top-left-radius:4px}table thead:first-child tr:first-child td:last-child,table tbody:first-child tr:first-child td:last-child,table tfoot:first-child tr:first-child td:last-child,table thead:first-child tr:first-child th:last-child,table tbody:first-child tr:first-child th:last-child,table tfoot:first-child tr:first-child th:last-child{border-top-right-radius:4px}table thead:last-child tr:last-child td:first-child,table tbody:last-child tr:last-child td:first-child,table tfoot:last-child tr:last-child td:first-child,table thead:last-child tr:last-child th:first-child,table tbody:last-child tr:last-child th:first-child,table tfoot:last-child tr:last-child th:first-child{border-bottom-left-radius:4px}table thead:last-child tr:last-child td:last-child,table tbody:last-child tr:last-child td:last-child,table tfoot:last-child tr:last-child td:last-child,table thead:last-child tr:last-child th:last-child,table tbody:last-child tr:last-child th:last-child,table tfoot:last-child tr:last-child th:last-child{border-bottom-right-radius:4px}table.terse td,table tr.terse td,table.terse th,table tr.terse th{padding:4px 8px}table.wide{width:100%}table.centered{margin-left:auto;margin-right:auto}table.rows td,table.rows th{border-top:1px solid #f3f3f3}table.rows tr:first-child td,table.rows tr:first-child th{border-top-width:0}table.rows thead + tbody tr:first-child td,table.rows tbody + tfoot tr:first-child td,table.rows thead + tbody tr:first-child th,table.rows tbody + tfoot tr:first-child th{border-top-width:1px}table.rows a{text-decoration:none}table.rows tr.border-bottom td,table.rows tr.border-bottom th{border-bottom-width:2px}table.cols td,table.cols th{border-right:1px solid #f5f5f5;}table.cols td:last-child,table.cols th:last-child{border-right:0}table.striped tbody tr:nth-child(2n + 1) td{background:#eaeaea}table.bordered{border-collapse:separate;border-radius:4px;border:1px solid #ccc}table.hover tr:hover td{background:#f5f5f5 !important}table td.condensed{padding:0}table.top td,table.top th{vertical-align:top}table.bottom td,table.bottom th{vertical-align:bottom}table.middle td,table.middle th{vertical-align:middle}table.no-head thead{display:none}.textContainer{max-width:640px}i + span,img + span,i + strong,img + strong,i + em,img + em,i + a,img + a{margin-left:6px}span + i,strong + i,em + i,a + i,span + img,strong + img,em + img,a + img{margin-left:6px}.padded{margin:4px}table.controls td:first-child,table.controls th:first-child{padding-left:0}table.controls td:last-child,table.controls th:last-child{padding-right:0}table.controls td input[type='text']:not(.inline),table.controls th input[type='text']:not(.inline),table.controls td input[type='number']:not(.inline),table.controls th input[type='number']:not(.inline),table.controls td input[type='password']:not(.inline),table.controls th input[type='password']:not(.inline),table.controls td input[type='email']:not(.inline),table.controls th input[type='email']:not(.inline),table.controls td input[type='date']:not(.inline),table.controls th input[type='date']:not(.inline),table.controls td input[type='search']:not(.inline),table.controls th input[type='search']:not(.inline),table.controls td select:not(.inline),table.controls th select:not(.inline),table.controls td textarea:not(.inline),table.controls th textarea:not(.inline){width:100%}@media screen and (max-width:576px){table.controls,table.controls tbody,table.controls thead,table.controls tr,table.controls td,table.controls th{width:auto !important;display:block;padding:2px 0}}.frame{background:rgba(0,0,0,0.05);border-radius:4px;padding:8px 16px}input[type='text'],input[type='number'],input[type='password'],input[type='email'],input[type='date'],input[type='search'],select,textarea{display:inline-block;border:1px solid #ccc;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none;font:18px/1.5 Open Sans,PT Sans,Tahoma,Verdana,sans-serif;font-weight:300;border-radius:2px;outline:none;padding:4px 6px;background:#fff;}input[type='text']:focus,input[type='number']:focus,input[type='password']:focus,input[type='email']:focus,input[type='date']:focus,input[type='search']:focus,select:focus,textarea:focus{border-color:#197f99;-webkit-box-shadow:0 0 6px rgba(25,127,153,0.5);box-shadow:0 0 6px rgba(25,127,153,0.5)}input[type='text'].hollow,input[type='number'].hollow,input[type='password'].hollow,input[type='email'].hollow,input[type='date'].hollow,input[type='search'].hollow,select.hollow,textarea.hollow{background:transparent;border-radius:0;border-width:0;}input[type='text'].hollow:focus,input[type='number'].hollow:focus,input[type='password'].hollow:focus,input[type='email'].hollow:focus,input[type='date'].hollow:focus,input[type='search'].hollow:focus,select.hollow:focus,textarea.hollow:focus{-webkit-box-shadow:none;box-shadow:none}input[type='text'].inplace,input[type='number'].inplace,input[type='password'].inplace,input[type='email'].inplace,input[type='date'].inplace,input[type='search'].inplace,select.inplace,textarea.inplace{background:transparent;border-radius:0;border-width:0 0 1px;}input[type='text'].inplace:focus,input[type='number'].inplace:focus,input[type='password'].inplace:focus,input[type='email'].inplace:focus,input[type='date'].inplace:focus,input[type='search'].inplace:focus,select.inplace:focus,textarea.inplace:focus{-webkit-box-shadow:0 8px 8px -8px rgba(25,127,153,0.5);box-shadow:0 8px 8px -8px rgba(25,127,153,0.5)}input[type='text'].wide,input[type='number'].wide,input[type='password'].wide,input[type='email'].wide,input[type='date'].wide,input[type='search'].wide,select.wide,textarea.wide{width:100%}input[type='text'][readonly],input[type='number'][readonly],input[type='password'][readonly],input[type='email'][readonly],input[type='date'][readonly],input[type='search'][readonly],select[readonly],textarea[readonly],input[type='text'][disabled],input[type='number'][disabled],input[type='password'][disabled],input[type='email'][disabled],input[type='date'][disabled],input[type='search'][disabled],select[disabled],textarea[disabled]{background:rgba(0,0,0,0.05)}input[type='radio'],input[type='checkbox']{font-size:24px;margin:0;}input[type='radio'] + label,input[type='checkbox'] + label,input[type='radio'] + span,input[type='checkbox'] + span{margin-left:6px}input[type='search']{border-radius:32px}input.btn,button.btn{-webkit-appearance:none;-moz-appearance:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.btn,a.btn{position:relative;display:inline-block;font:400 18px/1.5 Open Sans,PT Sans Narrow,sans-serif;text-align:center;text-decoration:none !important;cursor:pointer;min-width:16px;white-space:nowrap;margin:0;padding:6px 12px;border-radius:4px;border:0;background:#ddd;border-bottom-width:1px;border-bottom-style:solid;border-color:#a6a6a6;color:#444;}.btn:hover,a.btn:hover{background:#d2d2d2}.btn.active,a.btn.active,.btn:active,a.btn:active{background:#bcbcbc}.btn i,a.btn i{position:relative;top:1px;line-height:100%}.btn.large,a.btn.large{font-size:18px;padding:8px 16px}.btn.wide,a.btn.wide{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%}.btn.brand,a.btn.brand{background:#fb1f1f;border-color:#d00404;color:#fff;}.btn.brand:hover,a.btn.brand:hover{background:#fb1111}.btn.brand:active,a.btn.brand:active,.btn.brand.active,a.btn.brand.active{background:#eb0404}.btn.ivory,a.btn.ivory{background:#f7eed1;border-color:#e6ca70;color:#333;}.btn.ivory:hover,a.btn.ivory:hover{background:#f4e7be}.btn.ivory:active,a.btn.ivory:active,.btn.ivory.active,a.btn.ivory.active{background:#edd897}.btn.alt,a.btn.alt{background:#197f99;border-color:#135f73;color:#fff;}.btn.alt:hover,a.btn.alt:hover{background:#187991}.btn.alt:active,a.btn.alt:active,.btn.alt.active,a.btn.alt.active{background:#156c82}.btn.primary,a.btn.primary{background:#5cb85c;border-color:#3f903f;color:#fff;}.btn.primary:hover,a.btn.primary:hover{background:#52b452}.btn.primary:active,a.btn.primary:active,.btn.primary.active,a.btn.primary.active{background:#47a347}.btn.warn,a.btn.warn{background:#f2e100;border-color:#b5a900;color:#8f5f20;}.btn.warn:hover,a.btn.warn:hover{background:#e6d600}.btn.warn:active,a.btn.warn:active,.btn.warn.active,a.btn.warn.active{background:#cebf00}.btn.danger,a.btn.danger{background:#c33;border-color:#992626;color:#fff;}.btn.danger:hover,a.btn.danger:hover{background:#c23030}.btn.danger:active,a.btn.danger:active,.btn.danger.active,a.btn.danger.active{background:#ad2b2b}.btn.disabled,a.btn.disabled,.btn[disabled],a.btn[disabled]{background:#a6a6a6 !important;border-color:#858585 !important;color:#333}.btn + .btn,a.btn + .btn{margin-left:6px}.btn-group{display:inline-block;}.btn-group .btn{border-radius:0;}.btn-group .btn:first-child{border-top-left-radius:4px;border-bottom-left-radius:4px}.btn-group .btn:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.btn-group .btn + .btn{margin-left:0;border-left-style:solid;border-left-width:1px}input.cmd,button.cmd{-webkit-appearance:none;-moz-appearance:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.cmd,a.cmd{position:relative;display:inline-block;vertical-align:middle;text-decoration:none !important;font-size:17.099999999999998px;text-align:center;cursor:pointer;border-radius:32px;padding:0;border:0;width:28px;height:28px;line-height:28px;margin:0 6px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background:#ddd;color:#444;}.cmd:hover,a.cmd:hover{background:#d2d2d2}.cmd.brand,a.cmd.brand{background:#fb1f1f;border-color:#d00404;color:#fff;}.cmd.brand:hover,a.cmd.brand:hover{background:#fb1111}.cmd.alt,a.cmd.alt{background:#197f99;border-color:#135f73;color:#fff;}.cmd.alt:hover,a.cmd.alt:hover{background:#187991}.cmd.primary,a.cmd.primary{background:#5cb85c;border-color:#3f903f;color:#fff;}.cmd.primary:hover,a.cmd.primary:hover{background:#52b452}.cmd.warn,a.cmd.warn{background:#f2e100;border-color:#b5a900;color:#8f5f20;}.cmd.warn:hover,a.cmd.warn:hover{background:#e6d600}.cmd.danger,a.cmd.danger{background:#c33;border-color:#992626;color:#fff;}.cmd.danger:hover,a.cmd.danger:hover{background:#c23030}.cmd i,a.cmd i{vertical-align:middle}label.error{position:relative;display:block;background:rgba(0,0,0,0.75);color:#fff;font-size:14px;padding:6px 12px;border-radius:4px;margin-top:8px;border:2px solid #222;}label.error::after{content:'';display:block;position:absolute;top:-14px;left:16px;border:6px solid transparent;border-bottom-color:#222}.upload-area{position:relative;background:rgba(0,0,0,0.05);border-radius:4px;padding:8px;}.upload-area input[type='file']{display:block;position:absolute;z-index:2;top:0;bottom:0;left:0;right:0;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);cursor:pointer}@media screen and (min-width:1024px){.upload-area{padding-left:132px;}.upload-area::before{content:"\f093";font-weight:900;font-family:"Font Awesome 5 Free";font-size:32px;position:absolute;top:24px;left:16px;text-align:center;width:96px;height:96px;line-height:96px;border:1px solid #197f99;background:#fcfcfc;-webkit-box-shadow:0 0 6px rgba(25,127,153,0.5);box-shadow:0 0 6px rgba(25,127,153,0.5);border-radius:1000px}}.contextHelp{position:relative;z-index:50;font:400 12px/1.5 Open Sans,PT Sans,Tahoma,Verdana,sans-serif;}.contextHelp p,.contextHelp ul,.contextHelp ol,.contextHelp li{margin:8px 0}@media screen and (min-width:577px){.contextHelp{display:inline-block;vertical-align:middle;font-size:17.099999999999998px;line-height:18px;padding:2px 8px;}.contextHelp:hover{z-index:60}.contextHelp::before{content:'\f059';font-weight:900;font-family:"Font Awesome 5 Free";color:#197f99}.contextHelp .body{font-size:14px;position:absolute;top:120%;right:0;width:320px;padding:8px;background:rgba(0,0,0,0.75);color:#fff;border-radius:4px;visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-webkit-transition:0.2s all;-moz-transition:0.2s all;-o-transition:0.2s all;-ms-transition:0.2s all;transition:0.2s all;-webkit-transform:translate(0,16px);-moz-transform:translate(0,16px);-o-transform:translate(0,16px);-ms-transform:translate(0,16px);transform:translate(0,16px);}.contextHelp .body em,.contextHelp .body a,.contextHelp .body strong{color:#70cfe8}.contextHelp.right .body{left:auto;right:0}.contextHelp.left .body{left:0;right:auto}.contextHelp:hover .body{visibility:visible;opacity:1;-ms-filter:none;filter:none;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-o-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}.pin,a.pin{display:inline-block;border-radius:32px;padding:4px 6px;margin:2px;text-decoration:none !important;background:#ddd;color:#444;white-space:nowrap;border-radius:4px;font:400 18px Open Sans,PT Sans Narrow,sans-serif;line-height:100%;}.pin.small,a.pin.small{font-size:16px;padding:2px 4px}.pin.extraSmall,a.pin.extraSmall{font-size:14px;padding:2px 4px;}.pin.extraSmall i,a.pin.extraSmall i{font-size:12px;line-height:0}.pin.circle,a.pin.circle{border-radius:1000px}.pin a,a.pin a{color:inherit;text-decoration:none}.pin a + span,a.pin a + span,.pin span + a,a.pin span + a,.pin + i,a.pin + i,.pin + span,a.pin + span,.pin + a,a.pin + a,a + .pin,a + a.pin{margin-left:6px}.pin + .pin,a.pin + .pin{margin-left:2px}.pin i,a.pin i,.pin img,a.pin img{position:relative;top:-1px;vertical-align:middle;font-size:14px}.pin.blank,a.pin.blank{background:rgba(0,0,0,0.05);}.pin.blank,a.pin.blank,.pin.blank i,a.pin.blank i{color:#333}.pin.dark,a.pin.dark{background:#444;}.pin.dark,a.pin.dark,.pin.dark i,a.pin.dark i{color:#fcfcfc}.pin.primary,a.pin.primary{background:#5cb85c;}.pin.primary,a.pin.primary,.pin.primary i,a.pin.primary i{color:#fff}.pin.warn,a.pin.warn{background:#f2e100;}.pin.warn,a.pin.warn,.pin.warn i,a.pin.warn i{color:#8f5f20}.pin.danger,a.pin.danger{background:#c33;}.pin.danger,a.pin.danger,.pin.danger i,a.pin.danger i{color:#fff}.pin.brand,a.pin.brand{background:#fb1f1f;}.pin.brand,a.pin.brand,.pin.brand i,a.pin.brand i{color:#fff}.pin.alt,a.pin.alt{background:#197f99;}.pin.alt,a.pin.alt,.pin.alt i,a.pin.alt i{color:#fff}.pin input[type='checkbox'],a.pin input[type='checkbox'],.pin input[type='radio'],a.pin input[type='radio']{position:relative;top:-1px}.dropdown{display:none;position:absolute;z-index:10;width:216px;top:110%;left:0;background:#fcfcfc;border-radius:4px;-webkit-box-shadow:0 1px 16px rgba(0,0,0,0.25);box-shadow:0 1px 16px rgba(0,0,0,0.25);padding:4px 8px;}.dropdown.wide{width:320px}.dropdown.right{left:auto;right:0}.dropdown .stacknav a{line-height:32px}@media screen and (max-width:480px){.dropdown{width:288px}}.pill,a.pill{display:block;background:rgba(0,0,0,0.05);padding:6px 12px;border-radius:4px;}.pill i,a.pill i{font-size:14px;color:#444}.pill img,a.pill img{vertical-align:middle;position:relative;top:-1px}.pill,a.pill,.pill a,a.pill a{text-decoration:none}.pill + .pill,a.pill + .pill{margin-top:8px}.pill a + a,a.pill a + a,.pill i + a,a.pill i + a,.pill a + strong,a.pill a + strong,.pill a + span,a.pill a + span{margin-left:6px}.stacknav a{display:block;text-decoration:none;font-size:85%;font-family:Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;font-weight:400;color:#333;line-height:28px;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.stacknav a i{width:24px;text-align:center;margin-left:0}.stacknav a img{position:relative;top:-2px;vertical-align:middle;margin:4px}.stacknav a:hover{color:#197f99}.stacknav a.active{color:#fb1f1f}.stacknav .title{font-family:Open Sans,PT Sans,Tahoma,Verdana,sans-serif;font-size:12px;font-weight:400;color:#333;line-height:24px}.stacknav.large a{font-size:20px;line-height:48px;}.stacknav.large a i{width:48px}.stacknav hr{margin:4px 0}.stacknav + .stacknav{margin-top:8px}.stacknav.sidebars a{border-right:2px solid #ddd;padding-right:6px;}.stacknav.sidebars a.active{border-right-color:#fb1f1f;background:-webkit-linear-gradient(left, rgba(251,31,31,0) 50%, rgba(251,31,31,0.05) 100%);background:-moz-linear-gradient(left, rgba(251,31,31,0) 50%, rgba(251,31,31,0.05) 100%);background:-o-linear-gradient(left, rgba(251,31,31,0) 50%, rgba(251,31,31,0.05) 100%);background:-ms-linear-gradient(left, rgba(251,31,31,0) 50%, rgba(251,31,31,0.05) 100%);background:linear-gradient(to right, rgba(251,31,31,0) 50%, rgba(251,31,31,0.05) 100%)}.stacknav.sidebars hr{position:relative;margin:0;background:-webkit-linear-gradient(left, rgba(0,0,0,0), #ddd);background:-moz-linear-gradient(left, rgba(0,0,0,0), #ddd);background:-o-linear-gradient(left, rgba(0,0,0,0), #ddd);background:-ms-linear-gradient(left, rgba(0,0,0,0), #ddd);background:linear-gradient(to right, rgba(0,0,0,0), #ddd)}.tocnav p{margin:0}.tocnav ul,.tocnav li{position:relative;display:block;list-style:none outside;margin:0;padding:0;font-size:18px;line-height:22px}.tocnav li{margin:6px 0}.tocnav a{text-decoration:none;font-family:Open Sans,PT Sans,Tahoma,Verdana,sans-serif;font-weight:400;color:#197f99;line-height:18px;}.tocnav a:hover{color:#197f99}.tocnav a.active{color:#fb1f1f}.tocnav hr{margin:8px 0}.tocnav ul ul,.stacknav .tocnav ul{margin-left:12px;padding-left:12px;border-left:1px solid #eee;}.tocnav ul ul li::before,.stacknav .tocnav ul li::before{content:'';display:block;width:8px;height:6px;border-bottom:1px solid #eee;position:absolute;top:2px;left:-13px}@media screen and (min-width:577px){.pillnav{position:relative;overflow:hidden;margin-bottom:16px;text-align:center;padding-top:4px;white-space:nowrap;}.pillnav .pin{margin:0 4px;border-radius:16px;padding:2px 6px}.pillnav::after{content:'';display:block;height:16px;position:absolute;z-index:1;left:64px;right:64px;-webkit-box-shadow:0 0 32px rgba(0,0,0,0.15),0 0 1px #ddd;box-shadow:0 0 32px rgba(0,0,0,0.15),0 0 1px #ddd;border-radius:480px/16px}.pillnav a{position:relative;z-index:5;display:inline-block;text-decoration:none;padding:8px 16px;}.pillnav a.active{color:#444;}.pillnav a.active::after,.pillnav a.active::before{content:'';display:block;border:9px solid transparent;position:absolute;bottom:-1px;left:50%;margin-left:-9px}.pillnav a.active::before{bottom:0;border-bottom-color:#ddd}.pillnav a.active::after{border-bottom-color:#fff}.pillnav.stacked{padding:16px 0;}.pillnav.stacked::after{height:auto;top:16px;bottom:16px;right:-16px;left:auto;width:16px;border-radius:16px/480px}.pillnav.stacked a{display:block;text-align:left;}.pillnav.stacked a.active::before,.pillnav.stacked a.active::after{border-bottom-color:transparent;bottom:auto;left:auto;top:50%;margin-top:-9px}.pillnav.stacked a.active::before{border-right-color:#ddd;right:1px}.pillnav.stacked a.active::after{border-right-color:#fff;right:0}}@media screen and (max-width:576px){.pillnav{margin-bottom:16px;}.pillnav a{display:block;text-decoration:none;padding:12px;border-radius:4px;}.pillnav a.active{background:rgba(0,0,0,0.05);color:#444}}.subnav{font-size:80%;}.subnav a{text-decoration:none;}.subnav a::after{content:"\f105";font-weight:900;font-family:"Font Awesome 5 Free";color:#444;margin:0 4px}.forknav td{padding:0;}.forknav td a{text-decoration:none;font-size:85%;font-family:Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;font-weight:400;color:#333;}.forknav td a::before,.forknav td a::after{font-weight:900;font-family:"Font Awesome 5 Free";color:#197f99}.forknav td:first-child{text-align:left;}.forknav td:first-child a::before{content:"\f104";margin-right:6px}.forknav td:last-child{text-align:right;}.forknav td:last-child a::after{content:"\f105";margin-left:6px}.breadcrumbs{margin-bottom:16px;}.breadcrumbs > *{position:relative;display:inline-block;vertical-align:middle;text-decoration:none;padding:0 20px;background:rgba(0,0,0,0.05);white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;max-width:33%;}.breadcrumbs > *::before,.breadcrumbs > *::after{content:'';display:block;position:absolute;top:0;border-style:solid;border-color:transparent;border-width:16px 8px}.breadcrumbs > *::before{border-left-color:#fcfcfc;left:0}.breadcrumbs > *::after{border-color:#fcfcfc;border-left-color:transparent;right:-8px;z-index:3}.breadcrumbs > *:first-child{padding-left:12px;border-top-left-radius:4px;border-bottom-left-radius:4px;}.breadcrumbs > *:first-child::before{display:none}.breadcrumbs > * i{margin-bottom:-2px}.breadcrumbs .pin{margin-top:0;margin-bottom:0}.bullet-list a,.bullet-list .elem{display:inline-block;text-decoration:none}.bullet-list > *::before{content:'•';color:#444;padding:0 6px;display:inline-block}.bullet-list > *:first-child::before{display:none}@media screen and (min-width:577px){.grid{display:table;width:100%;}.grid .cell{display:table-cell;vertical-align:middle;}.grid .cell.right{text-align:right}.grid .cell h1,.grid .cell h2,.grid .cell h3,.grid .cell h4{margin:0}}header.grid{margin:0 0 1em}.outliner > header > .handle{display:none}@media screen and (min-width:1024px){.outliner > section,.outliner > header{position:relative;margin-left:16px;padding:4px 28px}.outliner > header > .handle{display:block;position:absolute;top:12px;left:-18px;width:32px;height:32px;line-height:32px;text-align:center;vertical-align:middle;border-radius:32px;background:rgba(0,0,0,0.05);color:#444;}.outliner > header > .handle.brand{background:#fb1f1f;color:#fff}.outliner > header > .handle.alt{background:#197f99;color:#fff}.outliner > header > .handle.primary{background:#5cb85c;color:#fff}.outliner > header > .handle.warn{background:#f2e100;color:#8f5f20}.outliner > header > .handle.danger{background:#c33;color:#fff}.outliner > header h1,.outliner > header h2,.outliner > header h3,.outliner > header h4{margin:0;line-height:48px}.outliner > header aside{float:right;text-align:right;margin:8px 0}.outliner > section::after{content:'';display:block;position:absolute;top:0;left:-4px;bottom:0;width:4px;border-radius:4px;background:rgba(0,0,0,0.05)}}.toolbar{position:relative;margin-bottom:16px;font:400 85%/150% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;}.toolbar a{display:inline-block;text-decoration:none;border:1px solid #eee;padding:2px 8px;border-radius:4px;background:#fafafa;color:#333;}.toolbar a:hover{color:#197f99}.toolbar a.active{background:#f5f5f5;color:#197f99}.toolbar a + a,.toolbar a + .group,.toolbar .group + .group{margin-left:8px}.toolbar .group{display:inline-block;position:relative;}.toolbar .group a{margin-left:-1px;border-radius:0;}.toolbar .group a:first-child{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.toolbar .group a:last-child{border-top-right-radius:4px;border-bottom-right-radius:4px}.toolbar.stacked a{display:block}.toolbar.stacked a + a,.toolbar.stacked a + .group,.toolbar.stacked .group + .group{margin-left:0;margin-top:8px}@media screen and (min-width:1024px){.toolbar .pin-left{position:absolute;top:0;left:0}.toolbar .pin-right{position:absolute;top:0;right:0}}.progress{border-radius:4px;background:rgba(0,0,0,0.05);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;height:24px;line-height:24px;}.progress .bar{text-align:center;border-radius:4px;height:24px;-webkit-box-shadow:0 -1px 0 rgba(0,0,0,0.2) inset;box-shadow:0 -1px 0 rgba(0,0,0,0.2) inset;text-shadow:0 1px 0 rgba(0,0,0,0.2);min-width:64px;max-width:100%;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.progress .bar.brand{background:#fb1f1f;color:#fff}.progress .bar.alt{background:#197f99;color:#fff}.progress .bar.primary{background:#5cb85c;color:#fff}.progress .bar.warn{background:#f2e100;color:#8f5f20}.progress .bar.danger{background:#c33;color:#fff}.tiles > .tile{display:block;margin-bottom:16px;width:100%;vertical-align:top}@media screen and (min-width:577px){.tiles.w2 > .tile{display:inline-block;width:49%;margin-left:2%;}.tiles.w2 > .tile:nth-child(2n + 1){margin-left:0}}@media screen and (min-width:1024px){.tiles.w3 > .tile{width:32%;}.tiles.w3 > .tile:nth-child(2n + 1){margin-left:2%}.tiles.w3 > .tile:nth-child(3n + 1){margin-left:0}.tiles.w4 > .tile{width:23.5%;}.tiles.w4 > .tile:nth-child(3n + 1){margin-left:2%}.tiles.w4 > .tile:nth-child(4n + 1){margin-left:0}}.conversation > aside{position:relative;z-index:2;width:64px;}.conversation > aside img{width:48px;height:48px;vertical-align:middle}.conversation > section{position:relative;z-index:1;background:rgba(0,0,0,0.05);border-radius:4px;padding:2px;margin:0 64px;}.conversation > section > .wrap,.conversation > section textarea{background:#fff;border-radius:4px}.conversation > section > .wrap{padding:4px 16px;border:1px solid rgba(0,0,0,0.05)}.conversation > section textarea{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:4px;margin:0 !important;vertical-align:middle}.conversation > section::before{content:'';position:absolute;border:8px solid transparent;top:16px}.conversation > section footer{color:#444;font-size:12px;text-align:right}.conversation.left > aside{float:left;text-align:left}.conversation.left > section::before{left:-16px;border-left-color:transparent;border-right-color:rgba(0,0,0,0.05)}.conversation.left > section footer{text-align:left}.conversation.right > aside{float:right;text-align:right}.conversation.right > section::before{left:auto;right:-16px;border-right-color:transparent;border-left-color:rgba(0,0,0,0.05)}.conversation.right > section footer{text-align:left}.conversation + .conversation{margin-top:24px}@media screen and (max-width:576px){.conversation > aside{margin-top:12px;width:32px;}.conversation > aside img{width:24px;height:24px}.conversation > section{margin:0 32px}}.scrollpane.horizontal{overflow-x:auto}.search-hl{background:#f2e100;color:#8f5f20;border-radius:4px}.sortable .handle,.sortableGroup .handle,.sortable .movable,.sortableGroup .movable{cursor:move}.sortable .ui-sortable-placeholder,.sortableGroup .ui-sortable-placeholder{vertical-align:middle}.submits,.loading{display:block;min-width:16px;min-height:16px;margin:24px 0}.loading{height:64px;background:url("/static/img/loading.svg") center center no-repeat}a.subtle{color:#444;text-decoration:none}.papertag,a.papertag{position:relative;display:inline-block;text-decoration:none;margin:4px;padding:4px 8px;background:#eaeaea;border:1px solid #f3f3f3;border-radius:20px/10px;border-top-right-radius:2px;border-bottom-right-radius:2px;font:400 16px Open Sans,PT Sans Narrow,sans-serif;line-height:16px;color:#135f73;}.papertag a,a.papertag a{text-decoration:none;margin-right:6px}.papertag i,a.papertag i{font-size:16px}.papertag.movable,a.papertag.movable{cursor:move}.papertag.right,a.papertag.right{border-radius:24px/8px;border-top-left-radius:3px;border-bottom-left-radius:3px}@media screen and (min-width:1024px){.slowfade{-webkit-transition:opacity 10s;-moz-transition:opacity 10s;-o-transition:opacity 10s;-ms-transition:opacity 10s;transition:opacity 10s;opacity:.1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";filter:alpha(opacity=10);}.slowfade:hover,.slowfade.atTop{-webkit-transition:opacity 0.2s;-moz-transition:opacity 0.2s;-o-transition:opacity 0.2s;-ms-transition:opacity 0.2s;transition:opacity 0.2s;opacity:1;-ms-filter:none;filter:none}}.showOnScroll{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);}.showOnScroll.showing{-webkit-transition:opacity 2s;-moz-transition:opacity 2s;-o-transition:opacity 2s;-ms-transition:opacity 2s;transition:opacity 2s;opacity:1;-ms-filter:none;filter:none}.qrcode{position:relative;display:inline-block;}.qrcode::after{content:'';display:block;padding-bottom:100%}.qrcode svg{display:inline-block;position:absolute;top:0;left:0;right:0;bottom:0}.qrcode path{shape-rendering:crispEdges}.qrcode.primary path{fill:#5cb85c !important}.qrcode.alt path{fill:#197f99 !important}.qrcode.brand path{fill:#fb1f1f !important}.qrcode.warn path{fill:#f2e100 !important}.qrcode.danger path{fill:#c33 !important}[data-tooltip]{position:relative;}[data-tooltip]::after{content:attr(data-tooltip);position:absolute;background:rgba(0,0,0,0.85);border:2px solid #000;color:#fff;font-size:85%;width:320px;padding:8px;bottom:105%;left:50%;margin-left:-168px;border-radius:4px}[data-tooltip]::before{content:'';position:absolute;top:-5%;left:50%;margin-left:-8px;border:8px solid transparent;border-top-color:#000}[data-tooltip]::before,[data-tooltip]::after{z-index:5;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-webkit-transition:0.3s opacity, 0.3s -webkit-transform;-moz-transition:0.3s opacity, 0.3s -moz-transform;-o-transition:0.3s opacity, 0.3s -o-transform;-ms-transition:0.3s opacity, 0.3s -ms-transform;transition:0.3s opacity, 0.3s transform;-webkit-transform:translateY(32px);-moz-transform:translateY(32px);-o-transform:translateY(32px);-ms-transform:translateY(32px);transform:translateY(32px)}[data-tooltip]:hover::before,[data-tooltip]:hover::after{opacity:1;-ms-filter:none;filter:none;-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.masonry .item{display:block;margin-bottom:16px}@media screen and (min-width:1024px){.masonry .gutter{width:2%}.masonry .item{width:6.5%;}.masonry .item.w2{width:15%}.masonry .item.w3{width:23.5%}.masonry .item.w4{width:32%}.masonry .item.w5{width:40.5%}.masonry .item.w6{width:49%}.masonry .item.w7{width:57.5%}.masonry .item.w8{width:66%}.masonry .item.w9{width:74.5%}.masonry .item.w10{width:83%}.masonry .item.w11{width:91.5%}.masonry .item.w12{width:100%}}.editpane > .input,.editpane > .output{border:1px solid #ddd;border-radius:4px;margin:4px 0}.editpane > .input{background:rgba(0,0,0,0.05);}.editpane > .input > label{display:block;border-bottom:1px solid #d2d2d2;padding:0 8px}.editpane > .input textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;border:0;margin:0;padding:4px;border-bottom:1px solid #d2d2d2;font:14px/150% monospace}.editpane > .input .field{padding:8px;border-bottom:1px solid #d2d2d2}.editpane > .output{background:#fcfcfc;padding:8px}.editpane > .toolbar{text-align:right;margin-bottom:4px;}.editpane > .toolbar a{text-align:center;}.editpane > .toolbar a::before{font-weight:900;font-family:"Font Awesome 5 Free"}.editpane > .toolbar a.toggleEditor::before{content:"\f121"}.editpane > .toolbar a.toggleOutput::before{content:"\f0db"}.editpane > .toolbar a.showMarkupCheatSheet::before{content:"\f05a"}.editpane.outputDisabled > .output{display:none !important}.conversation .editpane{padding:0;background:transparent}@media screen and (min-width:1024px){.editpane{background:#fafafa;border-radius:4px;padding:4px;overflow:hidden;}.editpane > .input,.editpane > .output{float:left;width:49.8%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0}.editpane > .output{margin-left:.4%;overflow-x:auto}.outputDisabled > .input{float:none;display:block;width:auto}.editpane.nosplit,.editpane.nosplit > .input,.editpane.nosplit > .output{float:none;display:block;width:auto}.editpane.nosplit > .output{margin-top:4px;margin-left:0}}@media screen and (min-width:1024px) and (max-width:1408px){.container .editpane,.container .editpane > .input,.container .editpane > .output{float:none;display:block;width:auto}.container .editpane > .output{margin-top:4px;margin-left:0}}.sidepin{position:absolute;bottom:100%;right:100%;-webkit-transform-origin:100% 100%;-moz-transform-origin:100% 100%;-o-transform-origin:100% 100%;-ms-transform-origin:100% 100%;transform-origin:100% 100%;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-o-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.tileLink,a.tileLink{display:block;text-decoration:none;text-align:center;padding:16px;border-radius:4px;font:400 85% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;}.tileLink:hover,a.tileLink:hover{background:rgba(0,0,0,0.05)}.tileLink i,a.tileLink i{color:#444;font-size:48px}.tileLink span,a.tileLink span,.tileLink label,a.tileLink label{display:block}.topic-list{display:-webkit-box;display:-moz-box;display:-webkit-flex;display:-ms-flexbox;display:box;display:flex;-webkit-box-lines:multiple;-moz-box-lines:multiple;-o-box-lines:multiple;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.topic-list.w33 .topic{-webkit-box-flex:1;-moz-box-flex:1;-o-box-flex:1;box-flex:1;-webkit-flex:33%;-ms-flex:33%;flex:33%}.topic-list.w25 .topic{-webkit-box-flex:1;-moz-box-flex:1;-o-box-flex:1;box-flex:1;-webkit-flex:33%;-ms-flex:33%;flex:33%}.topic-list.w50 .topic{-webkit-box-flex:1;-moz-box-flex:1;-o-box-flex:1;box-flex:1;-webkit-flex:50%;-ms-flex:50%;flex:50%}.topic-list .topic{position:relative;display:block;text-decoration:none;}.topic-list .topic .wrap{margin:4px;border:1px solid #135f73;background:#fcfcfc;border-radius:4px}.topic-list .topic .title{background:#156c82;padding:8px;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,0.75);border-bottom:1px solid #135f73;border-top-left-radius:4px;border-top-right-radius:4px}.topic-list .topic .count{position:absolute;right:12px;top:12px;width:24px;height:24px;text-align:center;background:#fcfcfc;border-radius:24px;color:#444}.topic-list .topic .body{padding:8px;height:200px;-o-text-overflow:ellipsis;text-overflow:ellipsis;overflow-y:auto}#edit-actions{position:fixed;bottom:8px;left:50%;-webkit-transform:translate(-50%,0);-moz-transform:translate(-50%,0);-o-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);z-index:10;background:#fff;padding:8px;border-radius:4px;-webkit-box-shadow:0 0 6px rgba(0,0,0,0.35);box-shadow:0 0 6px rgba(0,0,0,0.35)}#notices{z-index:2000;}#notices .notice{position:relative;padding:8px 8px 8px 40px;margin:8px;background:rgba(255,255,255,0.95);background-position:12px center;background-repeat:no-repeat;border-radius:4px;font:300 100% Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;}#notices .notice::before{font-weight:900;font-family:"Font Awesome 5 Free";position:absolute;top:12px;left:16px}#notices .notice.info{background:#5cb85c;color:#fff;-webkit-box-shadow:0 1px 1px #2a602a;box-shadow:0 1px 1px #2a602a;}#notices .notice.info::before{content:'\f00c'}#notices .notice.warn{background:#f2e100;color:#8f5f20;-webkit-box-shadow:0 1px 1px #797000;box-shadow:0 1px 1px #797000;}#notices .notice.warn::before{content:'\f071'}#notices .notice.error{background:#c33;color:#fff;-webkit-box-shadow:0 1px 1px #661919;box-shadow:0 1px 1px #661919;}#notices .notice.error::before{content:'\f00d'}@media screen and (min-width:577px){#notices{position:fixed;right:0;bottom:24px;width:50%}}@media screen and (min-width:1024px){#notices{width:25%}}#ibox{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);padding:4% 10%;z-index:1000;overflow-y:scroll}#ibox-wrapper{position:relative;margin:4% 12%;padding:32px;background:#fcfcfc;opacity:.95;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";filter:alpha(opacity=95);}#ibox-wrapper img{max-width:100%}#ibox-close{right:-12px}@media screen and (max-width:576px){#ibox{top:auto;left:auto;right:auto;bottom:auto;padding:64px 2%;border-bottom:8px dashed #fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.6);box-shadow:0 1px 3px rgba(0,0,0,0.6)}#ibox-wrapper{margin:2%}}.semiquiz input[type="text"],.semiquiz select,.semiquiz .inputText-review{position:relative;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;font-family:Open Sans,PT Sans,Tahoma,Verdana,sans-serif;font-size:18px;background:#fff;margin:2px;}.semiquiz input[type="text"].error,.semiquiz select.error,.semiquiz .inputText-review.error{border-color:#c33}.semiquiz input[type="text"],.semiquiz .inputText-review{background:#fff;border:1px solid #ddd;border-radius:2px;padding:4px 8px;line-height:16px;outline:0;}.semiquiz input[type="text"]:focus,.semiquiz .inputText-review:focus{border-color:#197f99}.semiquiz select.error{border:1px solid #c33;background:#fff5f5}.semiquiz input[type="checkbox"],.semiquiz input[type="radio"]{font-size:20px;margin:0 12px}.semiquiz fieldset{position:relative;margin-left:8px;border:0;border-left:4px solid transparent;border-radius:8px;line-height:1.5em;}.semiquiz fieldset .item{padding:6px 8px}.semiquiz fieldset.error{border-left-color:#c33}.semiquiz fieldset .item.error{border-radius:4px;background:#fff5f5}.semiquiz fieldset.sortableGroup .item,.semiquiz fieldset.associativeGroup .item{position:relative;z-index:5;border-radius:4px;background:#fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.25);box-shadow:0 1px 3px rgba(0,0,0,0.25);}.semiquiz fieldset.sortableGroup .item::before,.semiquiz fieldset.associativeGroup .item::before{content:"\f0b2";font-weight:900;font-family:"Font Awesome 5 Free";font-size:12px;color:#444;margin:0 6px}.semiquiz fieldset.sortableGroup .item.error,.semiquiz fieldset.associativeGroup .item.error{background:#fee !important}.semiquiz fieldset.sortableGroup.inline .item,.semiquiz fieldset.associativeGroup.inline .item{display:inline-block;margin:4px}.semiquiz fieldset.sortableGroup.no-marker .item::before,.semiquiz fieldset.associativeGroup.no-marker .item::before{display:none}.semiquiz fieldset.sortableGroup:not(.disabled) .item,.semiquiz fieldset.associativeGroup:not(.disabled) .item{cursor:move;}.semiquiz fieldset.sortableGroup:not(.disabled) .item:hover,.semiquiz fieldset.associativeGroup:not(.disabled) .item:hover{background:#fffff5;}.semiquiz fieldset.sortableGroup:not(.disabled) .item:hover::before,.semiquiz fieldset.associativeGroup:not(.disabled) .item:hover::before{color:#333}.semiquiz fieldset.sortableGroup .item + .item,.semiquiz fieldset.associativeGroup .item + .item{margin-top:4px}.semiquiz fieldset.associativeGroup .categories,.semiquiz fieldset.associativeGroup .items{display:table-cell;padding:0 16px}.semiquiz fieldset.associativeGroup .category{margin:24px 0}.semiquiz fieldset.associativeGroup .dropTarget{position:relative;min-height:32px;min-width:180px;padding:8px;padding-left:32px;border-radius:4px;background:#f5f5f5;border:1px solid #ccc;}.semiquiz fieldset.associativeGroup .dropTarget.active{border-color:#197f99;-webkit-box-shadow:0 0 6px rgba(25,127,153,0.5);box-shadow:0 0 6px rgba(25,127,153,0.5)}.semiquiz fieldset.associativeGroup .dropTarget::before{content:"\f01a";font-weight:900;font:36px "Font Awesome 5 Free";position:absolute;top:6px;left:8px;color:#ccc}.semiquiz fieldset.associativeGroup .dropTarget.active::before{color:#197f99}.semiquiz .inputText-review{min-height:24px;}.semiquiz .inputText-review mark{background:#fee;border-bottom:1px solid #c33;color:#c33}.semiquiz .inputText-review ins{text-decoration:none;position:relative;top:-16px;color:#c33;padding:2px 4px;background:#fff;border-radius:4px;border:1px solid #c33;}.semiquiz .inputText-review ins::after,.semiquiz .inputText-review ins::before{display:none}.semiquiz .inputText-review .masked:first-child:last-child{visibility:hidden}.semiquiz .solution{background:#ecf4e3;border-radius:4px;padding:8px 16px;margin:1em 0}.semiquiz .onPassed,.semiquiz .onFailed{padding:8px 32px;border-left:1px solid #ddd}.semiquiz .onPassed{border-color:#5cb85c;background:-webkit-linear-gradient(left, #eff8ef, #fcfcfc);background:-moz-linear-gradient(left, #eff8ef, #fcfcfc);background:-o-linear-gradient(left, #eff8ef, #fcfcfc);background:-ms-linear-gradient(left, #eff8ef, #fcfcfc);background:linear-gradient(to right, #eff8ef, #fcfcfc)}.semiquiz .onFailed{border-color:#c33;background:-webkit-linear-gradient(left, #faebeb, #fcfcfc);background:-moz-linear-gradient(left, #faebeb, #fcfcfc);background:-o-linear-gradient(left, #faebeb, #fcfcfc);background:-ms-linear-gradient(left, #faebeb, #fcfcfc);background:linear-gradient(to right, #faebeb, #fcfcfc)}.semislide{position:relative;display:inline-block;width:100%;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;background-position:50% 50%;}.semislide .sizer-16-9{margin-top:56.25%}.semislide .content,.semislide .overlay{position:absolute;display:block;top:0;left:0;right:0;bottom:0;padding:8px 5%;overflow:hidden;}.semislide .content::before,.semislide .overlay::before{content:'';display:inline-block;height:100%;vertical-align:middle}.semislide .content .wrap,.semislide .overlay .wrap{display:inline-block;vertical-align:middle;width:100%}.semislide .content.play,.semislide .overlay.play{text-align:center;}.semislide .content.play i,.semislide .overlay.play i{padding:32px 64px;border-radius:64px;background:rgba(0,0,0,0.5);color:#fff}.semislide .content.play:hover i,.semislide .overlay.play:hover i{background:rgba(0,0,0,0.75)}.semislide .content.certificate,.semislide .overlay.certificate{text-align:center;height:100%;}.semislide .content.certificate .wrap,.semislide .overlay.certificate .wrap,.semislide .content.certificate .centered,.semislide .overlay.certificate .centered{height:100%}.semislide .content.certificate svg,.semislide .overlay.certificate svg{width:100%;height:90%}.semislide.thumb{-webkit-box-shadow:0 1px 5px rgba(0,0,0,0.5);box-shadow:0 1px 5px rgba(0,0,0,0.5);}.semislide.thumb .content{font-size:9px;}.semislide.thumb .content .block .tab{display:none}.semislide.thumb a.overlay{z-index:2;display:block;text-decoration:none;}.semislide.thumb a.overlay .handle{position:absolute;top:8px;right:8px;color:#444;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);-webkit-transition:0.3s opacity;-moz-transition:0.3s opacity;-o-transition:0.3s opacity;-ms-transition:0.3s opacity;transition:0.3s opacity}.semislide.thumb a.overlay:hover{-webkit-box-shadow:0 0 8px 2px #197f99,0 0 0 2px #197f99;box-shadow:0 0 8px 2px #197f99,0 0 0 2px #197f99;}.semislide.thumb a.overlay:hover .handle{opacity:1;-ms-filter:none;filter:none}.semislide.white{background-color:#fff}.semislide.black{background-color:#333;}.semislide.black *{color:#fff}.semislide.primary{background-color:#5cb85c;}.semislide.primary *{color:#fff}.semislide.primary-gradient{background:-webkit-linear-gradient(top, #85ca85, #3f903f);background:-moz-linear-gradient(top, #85ca85, #3f903f);background:-o-linear-gradient(top, #85ca85, #3f903f);background:-ms-linear-gradient(top, #85ca85, #3f903f);background:linear-gradient(to bottom, #85ca85, #3f903f);}.semislide.primary-gradient *{color:#fff}.semislide.alt{background:#197f99;}.semislide.alt *{color:#fff}.semislide.alt-gradient{background:-webkit-linear-gradient(top, #29b8dc, #135f73);background:-moz-linear-gradient(top, #29b8dc, #135f73);background:-o-linear-gradient(top, #29b8dc, #135f73);background:-ms-linear-gradient(top, #29b8dc, #135f73);background:linear-gradient(to bottom, #29b8dc, #135f73);}.semislide.alt-gradient *{color:#fff}.semislide.warn{background:#f2e100;}.semislide.warn *{color:#8f5f20}.semislide.warn-gradient{background:-webkit-linear-gradient(top, #fff136, #b5a900);background:-moz-linear-gradient(top, #fff136, #b5a900);background:-o-linear-gradient(top, #fff136, #b5a900);background:-ms-linear-gradient(top, #fff136, #b5a900);background:linear-gradient(to bottom, #fff136, #b5a900);}.semislide.warn-gradient *{color:#8f5f20}.semislideScreen{position:absolute;top:0;bottom:0;left:0;right:0;background:#333;}.semislideScreen .statusBar{position:absolute;z-index:100;bottom:0;left:0;right:0;padding:8px;text-align:center}.semislideScreen > .wrap{position:absolute;overflow:hidden;top:32px;left:0;right:0;bottom:0}.semislideScreen .semislide{height:100%}.semislideScreen > .status{position:absolute;top:0;left:0;right:0;height:32px;line-height:32px;}.semislideScreen > .status table td,.semislideScreen > .status table th{padding:0}.semislideScreen > .status a{padding:0 16px;text-decoration:none}.semislideScreen .nav{position:absolute;z-index:100;top:0;bottom:0;width:8%;padding:16px;}.semislideScreen .nav::before{content:'';display:inline-block;vertical-align:middle;height:100%}.semislideScreen .nav i{display:inline-block;vertical-align:middle;width:96px;height:96px;line-height:96px;background:rgba(0,0,0,0.5);color:#fff;font-size:48px;text-align:center;border-radius:4px}.semislideScreen .nav.left{left:0;text-align:left}.semislideScreen .nav.right{right:0;text-align:right}.semislideScreen .progressBar{position:absolute;z-index:200;top:0;left:0;right:0;height:2px;}.semislideScreen .progressBar .bar{position:absolute;top:0;left:0;bottom:0;background:#c33;-webkit-transition:0.4s width;-moz-transition:0.4s width;-o-transition:0.4s width;-ms-transition:0.4s width;transition:0.4s width;}.semislideScreen .progressBar .bar::after{content:'';position:absolute;top:0;bottom:0;right:-1px;width:4px;background:#d14747;-webkit-box-shadow:0 0 2px #c33,0 0 16px #c33;box-shadow:0 0 2px #c33,0 0 16px #c33;border-radius:4px}.semislideScreen .hoverable{opacity:.02;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=2)";filter:alpha(opacity=2);-webkit-transition:2s opacity;-moz-transition:2s opacity;-o-transition:2s opacity;-ms-transition:2s opacity;transition:2s opacity;}.semislideScreen .hoverable.halftone{opacity:.33;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=33)";filter:alpha(opacity=33)}.semislideScreen .hoverable:hover{opacity:1;-ms-filter:none;filter:none;-webkit-transition:0.4s opacity;-moz-transition:0.4s opacity;-o-transition:0.4s opacity;-ms-transition:0.4s opacity;transition:0.4s opacity}.semislideScreen .semislide{position:absolute;top:0;left:0;right:0;bottom:0;z-index:10;display:none;}.semislideScreen .semislide.active{display:block;z-index:20}@media screen and (min-width:1024px){.semislideScreen .semislide .content{padding:8px 15%;font-size:24px}}.semislidePrePlay{max-width:640px;margin:0 auto}@media screen and (max-width:768px){.semislideScreen .nav{width:48px;}.semislideScreen .nav i{font-size:32px;width:48px;height:48px;line-height:48px}}.countdown.critical{color:#c33}.eventLog h4{margin:8px 0;}.eventLog h4 i{font-size:26px;vertical-align:middle}.eventLog a{text-decoration:none;margin:0}.eventLog img{margin:0;border-radius:1000px}.eventLog ul{padding:0;margin:0;list-style:none outside}.eventLog li{position:relative;margin:0;padding:2px;padding-left:64px;border-radius:4px;}.eventLog li:hover{background:#f7f7f7}.eventLog li .icon,.eventLog li .time{position:absolute;top:8px;height:16px;line-height:16px}.eventLog .time{left:4px;font-size:12px;color:#444}.eventLog .icon{left:32px;width:32px;text-align:center}.eventLog td.without-pad{padding:0}.eventLog .info .icon{color:#197f99}.eventLog .success .icon{color:#5cb85c}.eventLog .warning{background:#fffde4 !important;}.eventLog .warning .icon{color:#8f5f20}.eventLog .critical .icon{color:#c33}.eventLog.nopad li{padding-left:40px;}.eventLog.nopad li .icon{left:0}table.tasks tr.open a{color:#5cb85c}table.tasks tr.private a{color:#197f99}.courseHeading > .wrap{background:rgba(255,255,255,0.9)}.courseHeading .percentageGraph{margin-top:8px}.courseHeading a{text-decoration:none}.courseHeading h1{font:300 28px Open Sans Condensed,sans-serif;margin:16px 0;line-height:120%;}.courseHeading h1 a{color:#333}@media screen and (max-width:1023px){.courseHeading{text-align:center}}@media screen and (min-width:1024px){.courseHeading > .wrap{display:table;}.courseHeading > .wrap section,.courseHeading > .wrap aside{display:table-cell;vertical-align:middle}.courseHeading > .wrap section{width:85%}.courseHeading > .wrap aside{width:15%}}.courseCover{overflow:hidden;padding-top:32px;}.courseCover > .wrap{position:relative;z-index:3;background:rgba(255,255,255,0.9);padding:32px !important}.courseCover .sidepin .pin{margin-right:0}.courseCard{position:relative;z-index:1;}.courseCard,.courseCard a{text-decoration:none}.courseCard > *{position:relative;z-index:2;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1),0 0 32px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1),0 0 32px rgba(0,0,0,0.1)}.courseCard .nowrap{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.courseCard::after{content:'';display:block;position:absolute;z-index:1;height:16px;left:16px;right:16px;bottom:0;-webkit-box-shadow:0 0 16px rgba(0,0,0,0.2);box-shadow:0 0 16px rgba(0,0,0,0.2);border-radius:128px/16px}.courseCard .cover{display:block;background-position:50% 50%;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;background-repeat:no-repeat;padding-top:48px;border-radius:4px 4px 0 0;}.courseCard .cover .wrap{background:rgba(255,255,255,0.85);padding:8px 16px;}.courseCard .cover .wrap h1{margin:0;font-size:22px;line-height:28px;color:#333}.courseCard .body{background:#fcfcfc;padding:8px 16px;border-radius:0 0 4px 4px}.courseCard .statusIcon{position:absolute;top:-8px;right:-8px;width:24px;height:24px;text-align:center;border-radius:32px;}.courseCard .statusIcon.primary{background:#5cb85c;color:#fff}.courseCard .statusIcon.alt{background:#197f99;color:#fff}.courseCard .statusIcon.danger{background:#c33;color:#fff}.coverGuidebox{height:320px;border-bottom:4px dotted #ccc}.courseTrails a{position:relative;display:inline-block;vertical-align:middle;text-decoration:none;font-size:13px;line-height:20px;border-radius:16px;background:#888;color:#fff;}.courseTrails a + a{margin-left:12px;}.courseTrails a + a::before{content:'';position:absolute;background:#888;top:8px;width:8px;height:4px;left:-10px;border-radius:4px}.courseTrails a.finished{background:#5cb85c;color:#fff}.courseTrails a.finished + a::before{background:#5cb85c}.courseTrails a.started{background:#ba4}.courseTrails a.started + a::before{background:#8cab8c}.courseTrails a.unit{padding:0 6px;text-align:center}.courseTrails a.item{padding:4px;}.courseTrails a.item::before{top:2px}.courseTrails a[data-current]::after{font-weight:900;font-family:"Font Awesome 5 Free";font-size:14px;content:"\f041";color:#444;position:absolute;top:-18px;left:50%;display:inline-block;width:32px;margin-left:-16px;text-align:center}.itemStudyControls{position:relative;overflow:hidden;text-align:center;padding:16px;background:-webkit-linear-gradient(left, rgba(252,252,252,0) 0%, #e7f4e7 50%, rgba(252,252,252,0) 100%);background:-moz-linear-gradient(left, rgba(252,252,252,0) 0%, #e7f4e7 50%, rgba(252,252,252,0) 100%);background:-o-linear-gradient(left, rgba(252,252,252,0) 0%, #e7f4e7 50%, rgba(252,252,252,0) 100%);background:-ms-linear-gradient(left, rgba(252,252,252,0) 0%, #e7f4e7 50%, rgba(252,252,252,0) 100%);background:linear-gradient(to right, rgba(252,252,252,0) 0%, #e7f4e7 50%, rgba(252,252,252,0) 100%);font-size:18px;font-weight:300;font-family:Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;}.itemStudyControls::before,.itemStudyControls::after{content:'';display:block;position:absolute;left:32px;right:32px;height:16px;border-radius:240px/16px;-webkit-box-shadow:0 0 12px rgba(21,48,21,0.25);box-shadow:0 0 12px rgba(21,48,21,0.25)}.itemStudyControls::before{top:-16px}.itemStudyControls::after{bottom:-16px}.itemStudyControls hr{margin:8px 0;background:transparent}.issueIncut{position:relative;overflow:hidden;padding:16px 64px;background:-webkit-linear-gradient(left, #fcfcfc 0%, #fafafa 50%, #fcfcfc 100%);background:-moz-linear-gradient(left, #fcfcfc 0%, #fafafa 50%, #fcfcfc 100%);background:-o-linear-gradient(left, #fcfcfc 0%, #fafafa 50%, #fcfcfc 100%);background:-ms-linear-gradient(left, #fcfcfc 0%, #fafafa 50%, #fcfcfc 100%);background:linear-gradient(to right, #fcfcfc 0%, #fafafa 50%, #fcfcfc 100%);}.issueIncut::before,.issueIncut::after{content:'';display:block;position:absolute;left:32px;right:32px;height:16px;border-radius:240px/16px;-webkit-box-shadow:0 0 12px rgba(55,55,55,0.25);box-shadow:0 0 12px rgba(55,55,55,0.25)}.issueIncut::before{top:-16px}.issueIncut::after{bottom:-16px}.issueChangeStatus{position:relative;overflow:hidden;text-align:center;margin:16px 0;}.issueChangeStatus .pin{position:relative;z-index:2}.issueChangeStatus::after{content:'.............................................................................................................................................................................................................................';letter-spacing:4px;position:absolute;z-index:1;display:block;top:10px;left:0;right:0;line-height:0}.issueChangeStatus.primary::after{color:#5cb85c}.issueChangeStatus.alt::after{color:#197f99}.themeSelector{position:relative;display:inline-block;overflow:hidden;height:256px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.5);box-shadow:0 1px 3px rgba(0,0,0,0.5);}.themeSelector.active{-webkit-box-shadow:0 0 8px 2px #197f99,0 0 0 2px #197f99;box-shadow:0 0 8px 2px #197f99,0 0 0 2px #197f99}.themeSelector::after{content:'';display:block;position:absolute;z-index:10;top:0;bottom:0;left:0;right:0}.themeSelector iframe{position:relative;z-index:1;margin:0;width:1152px;height:256px;border:0}.personaBlock::after{content:'';display:table;width:100%}.personaBlock > aside{float:left;width:120px;}.personaBlock > aside img{width:96px;height:96px;border-radius:1000px;padding:6px;border:2px solid rgba(0,0,0,0.05)}.personaBlock > section{position:relative;margin-left:120px;}.personaBlock > section::after{content:'';display:block;position:absolute;top:128px;bottom:0;left:-66px;width:4px;border-radius:8px;background:rgba(0,0,0,0.05)}.personaBlock h2{margin:0;padding-top:32px}.personaBlock .subtitle{color:#135f73;font-style:italic}@media screen and (max-width:576px){.personaBlock > aside{width:64px;}.personaBlock > aside img{width:48px;height:48px;padding:2px}.personaBlock > section{margin-left:64px;}.personaBlock > section::after{display:none}.personaBlock h2{padding-top:8px}}.completionReport td,.completionReport th{border:1px solid #fafafa}.completionReport td.completion{font:300 20px/1.5 Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;border:1px solid #fafafa;}.completionReport td.completion.started{background:#f1fafd;-webkit-box-shadow:0 0 0 1px #70cfe8 inset;box-shadow:0 0 0 1px #70cfe8 inset}.completionReport td.completion.finished{background:#d6edd6;-webkit-box-shadow:0 0 0 1px #5cb85c inset;box-shadow:0 0 0 1px #5cb85c inset}.completionReport td.completion a{display:inline-block;position:relative;text-decoration:none;}.completionReport td.completion a::after{content:attr(data-user) " — " attr(data-course);position:absolute;display:block;width:256px;left:-120px;bottom:100%;font:400 16px/1.5 Open Sans,PT Sans,Tahoma,Verdana,sans-serif;color:#fff;background:rgba(0,0,0,0.8);padding:8px 4px;border-radius:4px;border:2px solid #000;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);visibility:hidden}.completionReport td.completion a:hover::after{opacity:1;-ms-filter:none;filter:none;visibility:visible}a.blogpost{text-decoration:none;color:#444;background:rgba(0,0,0,0.05);}a.blogpost > .wrap{padding:16px}a.blogpost:nth-of-type(1){background:#c6ecf6}a.blogpost:nth-of-type(2){background:#d4f1f8}a.blogpost:nth-of-type(2){background:#c6ecf6}a.blogpost:hover{background:#197f99;-webkit-box-shadow:0 0 12px rgba(25,127,153,0.5);box-shadow:0 0 12px rgba(25,127,153,0.5);}a.blogpost:hover,a.blogpost:hover *{color:#fff}a.blogpost .image{height:120px;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;background-position:50% 50%}.bundle .page{margin:0 auto;max-width:640px;padding:5% 10%;background:#fff;-webkit-box-shadow:0 1px 12px #000,0 0 64px rgba(0,0,0,0.1);box-shadow:0 1px 12px #000,0 0 64px rgba(0,0,0,0.1);}.bundle .page + .page{margin-top:16px}.bundle .slide{border:1px solid #eee;padding:16px;}.bundle .slide + .slide{margin-top:16px}.promo.eduterra{font-weight:300;font-family:Open Sans,Helvetica Neue,Segoe UI,Helvetica,Arial,sans-serif;}.promo.eduterra a{display:block;text-decoration:none;color:#fff;text-shadow:0 0 16px rgba(0,24,72,0.5)}.promo.eduterra p,.promo.eduterra .large{font-size:20px}.promo.eduterra .btn{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.6);box-shadow:0 1px 1px rgba(0,0,0,0.6)}.reportIssueHandle{position:relative;z-index:100;text-align:center;}.reportIssueHandle a{display:inline-block;text-decoration:none;background:rgba(0,0,0,0.75);color:#fff;white-space:nowrap;padding:2px 12px;border-radius:8px 8px 0 0;}.reportIssueHandle a.active{text-shadow:0 0 8px #197f99}@media screen and (min-width:1024px){.reportIssueHandle{position:fixed;bottom:0;right:48px}}.domSelectionArea.active{position:relative;z-index:1000;padding:16px;-webkit-box-shadow:0 0 0 65000px rgba(0,0,0,0.75);box-shadow:0 0 0 65000px rgba(0,0,0,0.75)}.domHighlighted{cursor:pointer;-webkit-box-shadow:0 0 8px 1px rgba(25,127,153,0.5),0 0 0 1px #197f99;box-shadow:0 0 8px 1px rgba(25,127,153,0.5),0 0 0 1px #197f99;background:#ffc !important}.domSelected{-webkit-box-shadow:0 0 8px 2px #197f99,0 0 0 2px #197f99;box-shadow:0 0 8px 2px #197f99,0 0 0 2px #197f99;background:#ffc !important}.reportIssueOverlay{position:fixed;z-index:2000;bottom:48px;left:20%;right:20%;text-align:center;background:rgba(0,0,0,0.75);color:#fff;padding:8px 16px;border-radius:4px;}.reportIssueOverlay label,.reportIssueOverlay .controls{display:block;margin:16px 0}a.searchResult{text-decoration:none;display:block;border-radius:4px;padding:12px 4px;}a.searchResult:hover{background:rgba(0,0,0,0.05)}a.searchResult .title{font-size:120%}a.searchResult em{padding:0 4px;background:#f2e100;color:#8f5f20;border-radius:4px}.widgetBox{margin-bottom:32px;}.widgetBox h2{margin:0 0 8px}.widgetBox h4{margin:8px 0}.announcement{padding:16px;position:relative;border:4px solid rgba(0,0,0,0.05);}.announcement a.read{position:absolute;border-radius:128px;width:24px;height:24px;line-height:24px;right:-12px;top:-12px;background:rgba(0,0,0,0.85);border:2px solid #fff;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.25);box-shadow:0 1px 3px rgba(0,0,0,0.25);color:#fff;text-align:center}.announcement.info{background:#b8e7f3;border-color:#197f99}.announcement.warning{background:#fff2d0;border-color:color-attention}.announcement.critical{background:#f2cccc;border-color:#c33}.debtorNotification,.smtpNotification{background:#f2e100;border-bottom:1px solid #bbb;padding:4px 12px;overflow:hidden}.certificatePreview{text-align:center;}.certificatePreview svg{max-width:100%;height:100%}.notauthblock{background-color:transparent;}.notauthblock .block.warn{background:#fffabc;color:#8f5f20;padding:8px 32px}@media screen and (max-width:1024px){.unit-tocnav{display:none}}@media screen and (min-width:1023px){.btn.data-switch{display:none}}.legend{color:#444;font-style:italic;}.legend .days{display:inline-block;margin:6px}.legend .day{position:relative;z-index:5;display:inline-block;vertical-align:middle;width:9px;height:9px;line-height:11px;border-radius:1px;background:#e5e5e5;text-align:center;margin:1px;font-size:0;}.legend .day.hidden{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}.legend .day.disabled{background:#f5f5f5}.calendarGraph .graph{text-align:center}.calendarGraph .quarter{display:inline-block;margin:8px 0}.calendarGraph .weekdays{display:inline-block;vertical-align:bottom;margin:2px;}.calendarGraph .weekdays .weekday{font-size:9px;line-height:11px}.calendarGraph .month{display:inline-block;cursor:none;}.calendarGraph .month .title{text-align:center;white-space:nowrap;color:#444;font-size:12px}.calendarGraph .week{display:inline-block;vertical-align:top;width:9px;line-height:0;margin:1px}.calendarGraph .day,.calendarGraph a.day{position:relative;text-decoration:none;z-index:5;display:inline-block;vertical-align:middle;width:9px;height:9px;line-height:9px;border-radius:1px;background:#f5f5f5;text-align:center;margin:1px;font-size:0;cursor:none;-webkit-transform-origin:5px 5px;-moz-transform-origin:5px 5px;-o-transform-origin:5px 5px;-ms-transform-origin:5px 5px;transform-origin:5px 5px;color:#000;}.calendarGraph .day.hidden,.calendarGraph a.day.hidden{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}.calendarGraph .day.disabled,.calendarGraph a.day.disabled{background:#fff;-webkit-box-shadow:0 0 0 1px #f5f5f5 inset;box-shadow:0 0 0 1px #f5f5f5 inset}.calendarGraph .day:hover,.calendarGraph a.day:hover,.calendarGraph .day.active,.calendarGraph a.day.active{font-size:7px;-webkit-transform:scale(2);-moz-transform:scale(2);-o-transform:scale(2);-ms-transform:scale(2);transform:scale(2);z-index:6;-webkit-box-shadow:0 1px 5px rgba(0,0,0,0.25);box-shadow:0 1px 5px rgba(0,0,0,0.25)}.calendarGraph .day:hover,.calendarGraph a.day:hover{z-index:7}@media screen and (min-width:1280px){.calendarGraph .quarter:nth-child(2n) .weekday:nth-child(2n + 1),.calendarGraph .quarter:nth-child(2n + 1) .weekday:nth-child(2n){opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}}.weeksGraph{height:64px;}.weeksGraph .graph{position:relative;display:inline-block;border:1px solid #eee;border-radius:4px;white-space:nowrap;padding:2px}.weeksGraph .week{display:inline-block;position:relative;vertical-align:bottom;background:#f5f5f5;height:64px;width:8px;border-radius:2px;}.weeksGraph .week.hidden{opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0)}.weeksGraph .week.disabled{background:#fff}.weeksGraph .week + .week{margin-left:2px}.weeksGraph .week::after{content:attr(data-title);position:absolute;width:144px;top:-32px;left:-64px;z-index:6;background:#222;color:#fff;font-size:12px;line-height:12px;border-radius:4px;padding:6px;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);visibility:hidden}.weeksGraph .week::before{content:'';position:absolute;top:-8px;left:-2px;z-index:6;width:0;height:0;border:6px solid transparent;border-top-color:#222;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);visibility:hidden}.weeksGraph .week:hover::before,.weeksGraph .week:hover::after{opacity:1;-ms-filter:none;filter:none;visibility:visible}.weeksGraph .bar{position:absolute;left:0;right:0;bottom:0;border-radius:2px;background:#ddd}.weeksGraph .max,.weeksGraph .min{position:absolute;font-size:8px;line-height:8px;left:101%}.weeksGraph .max{top:0}.weeksGraph .min{bottom:0}@media screen and (max-width:768px){.weeksGraph{padding:48px 0;overflow:auto}}.punchcardGraph{display:inline-block;text-align:left;font-size:12px;white-space:nowrap;}.punchcardGraph .weekday label{display:inline-block;width:32px;text-align:center}.punchcardGraph .weekday .hour{position:relative;display:inline-block;vertical-align:middle;text-align:center;height:18px;width:18px;line-height:18px;padding:1px;border-radius:1000px;}.punchcardGraph .weekday .hour::before{content:attr(data-title);display:block;position:absolute;z-index:10;width:144px;top:-32px;left:-56px;padding:4px 0;background:#222;color:#fff;border-radius:4px;visibility:hidden}.punchcardGraph .weekday .hour::after{content:'';display:block;position:absolute;z-index:10;border:6px solid transparent;border-top-color:#222;top:-8px;left:4px;visibility:hidden}.punchcardGraph .weekday .hour:hover{-webkit-box-shadow:0 0 3px rgba(0,0,0,0.25);box-shadow:0 0 3px rgba(0,0,0,0.25);}.punchcardGraph .weekday .hour:hover::before,.punchcardGraph .weekday .hour:hover::after{visibility:visible}.punchcardGraph .weekday .hole{position:relative;top:-1px;display:inline-block;vertical-align:middle;width:2px;height:2px;border-radius:1000px;background:#ccc}.punchcardGraph .topLabels,.punchcardGraph .bottomLabels{font-size:9px;margin:8px 0;margin-left:22px;line-height:20px;}.punchcardGraph .topLabels label,.punchcardGraph .bottomLabels label{position:relative;display:inline-block;width:32px;text-align:center;background:#eee;padding:0 2px;border-radius:4px;margin:2px;}.punchcardGraph .topLabels label::before,.punchcardGraph .bottomLabels label::before{content:'';position:absolute;left:13px;border:5px solid transparent}.punchcardGraph .topLabels label::before{border-top-color:#eee;bottom:-10px}.punchcardGraph .bottomLabels{margin-left:42px;}.punchcardGraph .bottomLabels label::before{border-bottom-color:#eee;top:-10px}.demographyGraph{margin:24px 0;height:240px;text-align:center;}.demographyGraph .inner.male{fill:#70cfe8}.demographyGraph .inner.female{fill:#f788b2}.demographyGraph .outer{fill:transparent;stroke-width:1px;}.demographyGraph .outer.male{stroke:#197f99}.demographyGraph .outer.female{stroke:#e16}.demographyGraph text{font-size:12px;}.demographyGraph text.male{fill:#197f99}.demographyGraph text.female{fill:#e16}.demographyGraph text.age{fill:#888}.demographyGraph .axis{shape-rendering:crispEdges;}.demographyGraph .axis line{stroke-opacity:.1;stroke:#000}.demographyGraph .axis .tick{font-size:9px}.demographyGraph .axis path{fill:transparent}.demographyGraph .pieChart .slice{opacity:.75;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";filter:alpha(opacity=75);}.demographyGraph .pieChart .slice .male{fill:#197f99}.demographyGraph .pieChart .slice .female{fill:#e16}.demographyGraph .pieChart .slice text{font-size:9px;fill:#fff}@media screen and (max-width:768px){.punchcardGraph,.demographyGraph{width:100%;text-align:center;padding:48px 0;overflow:auto}}.percentageGraph .background{fill:#000;opacity:.05;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=5)";filter:alpha(opacity=5)}.rollGraph{margin:16px;}.rollGraph .axis{stroke:#ddd;stroke-dasharray:2,2;shape-rendering:crispEdges}.rollGraph .label{text-anchor:end}.rollGraph .bar{fill:#197f99;}.rollGraph .bar.primary{fill:#5cb85c}.rollGraph .bar.warn{fill:#f2e100}.rollGraph .bar.danger{fill:#c33}.rollGraph:hover .group{opacity:.4;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";filter:alpha(opacity=40)}.rollGraph .group:hover{opacity:1 !important;-ms-filter:none !important;filter:none !important}html,body{margin:0;font:400 18px/1.5 Open Sans,PT Sans,Tahoma,Verdana,sans-serif;color:#333;background:#fcfcfc;text-rendering:optimizeLegibility}.rootlevel{position:relative;z-index:2;}.rootlevel > .wrap{position:relative;padding:16px 32px;}.rootlevel > .wrap::before,.rootlevel > .wrap::after{content:'';display:table;clear:both}@media screen and (max-width:576px){.rootlevel > .wrap{padding-left:8px;padding-right:8px}}.columnLayout .rootlevel > .wrap{width:960px;margin:0 auto}@media screen and (max-width:1023px){.columnLayout .rootlevel > .wrap{width:640px}}@media screen and (max-width:768px){.columnLayout .rootlevel > .wrap{width:auto}}header.rootlevel{font:400 18px Open Sans,PT Sans,Tahoma,Verdana,sans-serif;z-index:6;background:transparent;}header.rootlevel > .wrap{padding-top:0;padding-bottom:0}header.rootlevel .headerLink{display:inline-block;color:#197f99;text-decoration:none;padding:0 12px;line-height:48px;height:48px;vertical-align:middle;overflow:hidden;white-space:nowrap;-o-text-overflow:ellipsis;text-overflow:ellipsis;max-width:100%;}header.rootlevel .headerLink.active{color:#fb1f1f}header.rootlevel nav{float:left;max-width:75%;}header.rootlevel nav.right{float:right}header.rootlevel .logo .headerLink{padding-left:0}header.rootlevel .logo img{max-height:48px;vertical-align:top;margin-right:8px}header.rootlevel .notificationsBadge{position:absolute;font:400 18px Open Sans,PT Sans Narrow,sans-serif;top:2px;left:8px;display:inline-block;text-decoration:none;background:#c33;color:#fff;line-height:16px;padding:2px 6px;border-radius:16px;border:2px solid #fff}@media screen and (max-width:576px){header.rootlevel .logo img + span{display:none}}footer.rootlevel{z-index:1;font-size:12.6px;background:transparent;color:#333;}footer.rootlevel a{color:#197f99;text-decoration:none}.rootlevel.slide{background-position:50% 50%;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;background-repeat:no-repeat;z-index:5}.rootlevel.darkIncut{background:#555 url("/static/img/patterns/linen.png") repeat;-webkit-box-shadow:0 1px 12px rgba(0,0,0,0.5) inset;box-shadow:0 1px 12px rgba(0,0,0,0.5) inset;}.rootlevel.darkIncut > .wrap{padding-top:32px}.container{margin:16px 0;}.container > aside::before,.container > section::before{content:'';display:table}@media screen and (min-width:1024px){.container > section{min-height:480px}.container > aside{float:left;width:240px;}.container > aside + section{margin-left:272px}.container > aside.wide{width:288px;}.container > aside.wide + section{margin-left:320px}.container > aside.narrow{width:192px;}.container > aside.narrow + section{margin-left:224px}.container > aside.right{float:right;}.container > aside.right + section{margin-left:0;margin-right:272px}.container > aside.right.wide + section{margin-right:320px}.container > aside.right.narrow + section{margin-right:224px}.container > aside.padTop{padding-top:32px}}.statusbar{padding:2px 12px;background:#fcfcfc;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.5);box-shadow:0 0 3px rgba(0,0,0,0.5);}.statusbar.inversed{background:#555 url("/static/img/patterns/linen.png") repeat;-webkit-box-shadow:0 1px 12px rgba(0,0,0,0.5) inset;box-shadow:0 1px 12px rgba(0,0,0,0.5) inset}@media screen and (min-width:1024px){.statusbar{position:fixed;z-index:100;bottom:0;left:0;right:0}}[data-sticky]{position:relative;-webkit-transition:.1s -webkit-transform}.g-recaptcha.centered > div{margin:auto}