/**
 * @description
 * Generates cross-browser-compatible `border-radius` for a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/border-radius
 * @link spec http://www.w3.org/TR/css3-background/#corners
 *
 * @param values
 * @returns
 *   -webkit-border-radius: <values>;
 *           border-radius: <values>;
 *
 * @example
 *   .selector {
 *     ._border-radius(20px 10px);
 *   }
 */
/**
 * @description
 * Generates cross-browser-compatible `box-shadow` for a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/css-boxshadow
 * @link spec http://www.w3.org/TR/css3-background/#the-box-shadow
 *
 * @param values
 * @returns
 *   -webkit-box-shadow: <values>;
 *           box-shadow: <values>;
 *
 * @example
 *   .selector {
 *     ._box-shadow(5px 5px 10px 5px #aaa);
 *   }
 */
/**
 * @description
 * Generates cross-browser-compatible `box-sizing` output for a given element.
 *
 * @author drublic
 *
 * @link caniuse
 * @link spec
 *
 * @param type
 * @returns
 *   -webkit-box-sizing: <type>;
 *      -moz-box-sizing: <type>;
 *           box-sizing: <type>;
 *
 * @example
 *   .selector {
 *     ._box-sizing;
 *   }
 */
/**
 * @description
 * Generates a linear gradient for a given element with a fallback color.
 *
 * @author drublic
 *
 * @link caniuse
 * @link spec
 *
 * @dependency helper-gradient-angle
 * @param direction {top|left}
 * @param fallback {color}
 * @param from {color}
 * @param to {color}
 * @default 'to bottom', #ccc, #ccc, #aaa
 *
 * @returns
 *   background-color: <fallback>;
 *   background-image: -webkit-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:    -moz-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:     -ms-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:      -o-linear-gradient(<direction - converted>, <from>, <to>);
 *   background-image:         linear-gradient(<direction>, <from>, <to>);
 *
 * @example
 *   .selector {
 *     ._linear-gradient(top, #ccc, #ddd, #bbb);
 *   }
 */
/**
 * @description
 * This mixin will enable using the CSS3 value `rem`, which lets you define
 * property-sizes based on the root-element's font-size.
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/rem
 * @link spec http://www.w3.org/TR/css3-values/#relative0
 *
 * @param property
 * @param value
 * @param default-font-size {int} optional
 * @returns
 *   <property>: (<value> * <default-font-size>)px;
 *   <property>: <value>;
 *
 * @example
 *   .selector {
 *     ._rem(font-size, 1.3);
 *   }
 *
 * Note: Depending on the font-size of the root-element `rem` calculates a
 * property of a current element. The fallback solution excepts a
 * `default-font-size`-argument which is 16px by default.
 */
/**
 * @description
 * Sass-mixin for CSS property `tab-size`, generates cross-browser-compatible
 * `tab-size` output.
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/css3-tabsize
 * @link spec http://dev.w3.org/csswg/css-text/#tab-size1
 *
 * @param value int optional
 * @default 4
 * @returns
 *   -moz-tab-size: <value>;
 *     -o-tab-size: <value>;
 *        tab-size: <value>;
 *
 * @example
 *   .selector {
 *     ._tab-size(4);
 *    }
 */
/**
 * @description
 * Generates cross-browser-compatible `transform` for a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/transforms2d http://caniuse.com/transforms3d
 * @link spec
 *
 * @param values
 * @returns
 *   -webkit-transform: <values>;
 *      -moz-transform: <values>;
 *        -o-transform: <values>;
 *       -ms-transform: <values>;
 *           transform: <values>;
 *
 * @example
 *   .selector {
 *     ._transform(rotate(1deg));
 *   }
 */
/**
 * @description
 * Generates cross-browser-compatible `transition` output for a given element.
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/css-transitions
 * @link spec
 *
 * @param values
 * @returns
 *   -webkit-transition: <values>;
 *      -moz-transition: <values>;
 *        -o-transition: <values>;
 *           transition: <values>;
 *
 * @example
 *   .selector {
 *     ._transition(background 0.3s ease-in);
 *   }
 */
/**
 * @description
 * Disables selection of content of a given element
 *
 * @author drublic
 *
 * @link caniuse http://caniuse.com/user-select-none
 *
 * @param value none|auto optional
 * @default none
 * @returns
 *   -webkit-user-select: <value>;
 *      -moz-user-select: <value>;
 *       -ms-user-select: <value>;
 *           user-select: <value>;
 *
 * @example
 *   .selector {
 *     .x-user-select;
 *   }
 */
/**
 * Helper classes and mixins
 *
 * From HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/
 */
/*
 * Image replacement
 */
/*@import url("https://fonts.googleapis.com/css?family=Raleway:200,400,500,700,900");*/
@import url("/helptools/css/fonts/raleway.css");
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}
/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
/*
 * Responsive image
 *
 * Keep images from scaling beyond the width of their parents.
 */
/*
 * Getmore box
 *
 * Simple white box with rounded corners to display content in
 */
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/helptools/fonts/fontawesome/fontawesome-webfont.eot?v=4.6.3');
  src: url('/helptools/fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('/helptools/fonts/fontawesome/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('/helptools/fonts/fontawesome/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('/helptools/fonts/fontawesome/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('/helptools/fonts/fontawesome/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.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(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-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);
  -ms-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 {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.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-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.helpmundo-theme .fa-link-left {
  margin-right: 5px;
}
.helpmundo-theme .text-black {
  color: #333333;
}
.helpmundo-theme .text-orange {
  color: #eb5e00;
}
.helpmundo-theme .text-pink {
  color: #e35b5a;
}
.helpmundo-theme .text-green {
  color: #43b587;
}
.helpmundo-theme .text-info {
  color: #31708f;
}
.helpmundo-theme .text-caption {
  color: #808080;
}
.helpmundo-theme .text-xxxxl {
  font-size: 24px;
}
.helpmundo-theme .text-justify {
  text-align: justify;
}
.helpmundo-theme .text-center {
  text-align: center;
}
.helpmundo-theme p {
  margin: 20px 0;
  line-height: 1.5em;
}
.helpmundo-theme hr {
  border: none;
  border-bottom: 4px solid #dfdfdf;
}
.helpmundo-theme .form_helper {
  float: none;
  color: transparent;
  display: inline-block;
  width: 15px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.helpmundo-theme .form_helper:before {
  font-family: FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  content: '\f059';
  color: #eb5e00;
  font-size: 16px;
}
.helpmundo-theme .label {
  font-size: 12px;
}
.helpmundo-theme .has-tooltip {
  position: relative;
}
.helpmundo-theme .has-tooltip:hover:after {
  content: attr(data-tooltip);
  position: absolute;
  padding: 3px;
  background-color: #F6F6F6;
  border: 1px solid #DADFE0;
  color: #2F2F2F;
  display: block;
  z-index: 500;
  left: 15px;
  max-width: 350px;
  min-width: 220px;
}
.helpmundo-theme .chars-counter {
  font-weight: normal;
  font-style: italic;
  color: #43b587;
}
.helpmundo-theme * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.helpmundo-theme ol {
  margin: 0 0 15px 15px;
}
.helpmundo-theme #content_container {
  width: 960px;
}
.helpmundo-theme .content_footer {
  display: block;
  text-align: justify;
  border-top: 4px solid #DFDFDF;
  padding-top: 20px;
  margin-top: 20px;
}
.helpmundo-theme .content_footer:after {
  content: '';
  display: inline-block;
  width: 100%;
}
.helpmundo-theme div#header div#menu li.submenu li a,
.helpmundo-theme div#header div#menu li.submenu li.last a {
  height: 32px;
}
.helpmundo-theme .note,
.helpmundo-theme .informator {
  position: relative;
  padding-left: 20px;
}
.helpmundo-theme .note:before,
.helpmundo-theme .informator:before {
  content: '';
  position: absolute;
  left: 0;
  font-family: FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.helpmundo-theme .note.note-success,
.helpmundo-theme .informator.note-success,
.helpmundo-theme .note.infos,
.helpmundo-theme .informator.infos {
  color: #3c763d;
  border: none;
  background: none;
}
.helpmundo-theme .note.note-success:before,
.helpmundo-theme .informator.note-success:before,
.helpmundo-theme .note.infos:before,
.helpmundo-theme .informator.infos:before {
  content: '\f14a';
}
.helpmundo-theme .note.note-info,
.helpmundo-theme .informator.note-info {
  color: #31708f;
}
.helpmundo-theme .note.note-info:before,
.helpmundo-theme .informator.note-info:before {
  content: '\f05a';
}
.helpmundo-theme .note.note-warning,
.helpmundo-theme .informator.note-warning {
  color: #eb5e00;
}
.helpmundo-theme .note.note-warning:before,
.helpmundo-theme .informator.note-warning:before {
  content: '\f071';
}
.helpmundo-theme .note.note-danger,
.helpmundo-theme .informator.note-danger {
  color: #e35b5a;
}
.helpmundo-theme .note.note-danger:before,
.helpmundo-theme .informator.note-danger:before {
  content: '\f071';
}
.helpmundo-theme .note.note-hint,
.helpmundo-theme .informator.note-hint {
  color: #43b587;
}
.helpmundo-theme .note.note-hint:before,
.helpmundo-theme .informator.note-hint:before {
  content: '\f0eb';
}
.helpmundo-theme .note a,
.helpmundo-theme .informator a {
  color: inherit;
}
.helpmundo-theme .note-sticker {
  padding: 3px 7px;
  line-height: 1.5;
}
.helpmundo-theme .note-sticker.note-info {
  color: #31708f;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
  border-radius: 5px;
}
.helpmundo-theme .note-sticker.note-warning {
  color: #8a6d3b;
  background-color: #fcf0b1;
  border: 1px solid #e0cba2;
  border-radius: 5px;
}
.helpmundo-theme .note-sticker a {
  color: inherit;
}
.helpmundo-theme a.button.btn,
.helpmundo-theme button.btn,
.helpmundo-theme input[type="submit"].btn {
  height: 30px;
  padding: 1px 15px;
  margin: 0;
}
.helpmundo-theme a.button.btn:focus,
.helpmundo-theme button.btn:focus,
.helpmundo-theme input[type="submit"].btn:focus {
  outline: 0;
}
.helpmundo-theme a.button.btn.btn-disabled,
.helpmundo-theme button.btn.btn-disabled,
.helpmundo-theme input[type="submit"].btn.btn-disabled,
.helpmundo-theme a.button.btn[disabled="disabled"],
.helpmundo-theme button.btn[disabled="disabled"],
.helpmundo-theme input[type="submit"].btn[disabled="disabled"] {
  opacity: 0.7 !important;
  cursor: default !important;
}
.helpmundo-theme a.button.btn.btn-gray,
.helpmundo-theme button.btn.btn-gray,
.helpmundo-theme input[type="submit"].btn.btn-gray {
  background-color: #bbbbbb;
  background-image: -webkit-linear-gradient(top, #a1a1a1, #a5a5a5);
  background-image: -moz-linear-gradient(top, #a1a1a1, #a5a5a5);
  background-image: -ms-linear-gradient(top, #a1a1a1, #a5a5a5);
  background-image: -o-linear-gradient(top, #a1a1a1, #a5a5a5);
  background-image: linear-gradient(to bottom, #a1a1a1, #a5a5a5);
  border-color: #a1a1a1 #888888 #888888 #a1a1a1;
}
.helpmundo-theme a.button.btn.btn-block,
.helpmundo-theme button.btn.btn-block,
.helpmundo-theme input[type="submit"].btn.btn-block {
  width: 100%;
}
.helpmundo-theme input[type="radio"] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.lt-ie9 .helpmundo-theme input[type="radio"] {
  position: static;
  height: auto;
  width: auto;
  clip: auto;
  overflow: visible;
  margin: 0;
  vertical-align: text-bottom;
}
.helpmundo-theme input[type="radio"] + label.radio-label {
  display: inline-block;
  margin: 0;
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all ease 200ms;
  -o-transition: all ease 200ms;
  transition: all ease 200ms;
}
.helpmundo-theme input[type="radio"] + label.radio-label:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
  vertical-align: text-bottom;
  -webkit-transition: all ease 200ms;
  -o-transition: all ease 200ms;
  transition: all ease 200ms;
  font-size: inherit;
  color: #dfdfdf;
  text-align: center;
  font-family: FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.helpmundo-theme input[type="radio"] + label.radio-label:hover:before {
  border-color: #eb5e00;
}
.helpmundo-theme input[type="radio"] + label.radio-label:before {
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.helpmundo-theme input[type="radio"] + label.radio-label:hover:before {
  content: "\f111";
}
.helpmundo-theme input[type="radio"]:checked + label.radio-label:before {
  content: "\f111";
  color: #eb5e00;
}
.helpmundo-theme .form-default input[type="checkbox"] {
  margin: 0 10px 0 0;
}
.helpmundo-theme .form-default select.selectInput,
.helpmundo-theme .form-default input.textInput,
.helpmundo-theme .form-default input[type="text"],
.helpmundo-theme .form-default input[type="password"],
.helpmundo-theme .form-default select {
  height: 30px;
  max-height: 30px;
}
.helpmundo-theme .form-default select.selectInput.disabled,
.helpmundo-theme .form-default input.textInput.disabled,
.helpmundo-theme .form-default input[type="text"].disabled,
.helpmundo-theme .form-default input[type="password"].disabled,
.helpmundo-theme .form-default select.disabled {
  background-color: #eee;
  color: #666;
}
.helpmundo-theme .form-default input[type="text"],
.helpmundo-theme .form-default input[type="password"],
.helpmundo-theme .form-default input[type="email"] {
  padding: 0 10px;
}
.helpmundo-theme .form-default textarea {
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  padding: 5px 10px;
  resize: none;
  border-color: #AAAAAA #C8C8C8 #C8C8C8 #AAAAAA;
  border-style: solid;
  border-width: 1px;
}
.helpmundo-theme .form-default .checkbox-single {
  position: relative;
  padding-left: 20px;
}
.helpmundo-theme .form-default .checkbox-single label {
  font-weight: bold;
}
.helpmundo-theme .form-default .checkbox-single input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 2px;
}
.helpmundo-theme .form-default label {
  display: block;
  margin: 7px 0;
}
.helpmundo-theme .form-default label .req {
  padding-left: 4px;
}
.helpmundo-theme .form-default .form-static-text {
  margin: 7px 0;
}
.helpmundo-theme .form-default .form-label-caption {
  font-weight: normal;
  color: #808080;
}
.helpmundo-theme .form-default .form-group {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-right: 30px;
  position: relative;
  *zoom: 1;
}
.helpmundo-theme .form-default .form-group:before,
.helpmundo-theme .form-default .form-group:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .form-default .form-group:after {
  clear: both;
}
.helpmundo-theme .form-default .form-group .form-label {
  float: left;
  width: 150px;
}
.helpmundo-theme .form-default .form-group .form-input {
  float: left;
  width: 270px;
}
.helpmundo-theme .form-default .form-group .form-input.form-input-text {
  margin: 7px 0;
  width: 370px;
}
.helpmundo-theme .form-default .form-group .form-input.form-input-large {
  width: 755px;
}
.helpmundo-theme .form-default .form-group .form_helper {
  position: absolute;
  top: 5px;
  right: 3px;
}
.helpmundo-theme .form-default .form-group.form-group-xl .form-input {
  width: 750px;
}
.helpmundo-theme .form-default .form-label label {
  font-weight: bold;
}
.helpmundo-theme .form-default .form-label label.optional:after {
  content: 'optional';
  font-style: italic;
  display: block;
  font-weight: normal;
}
.helpmundo-theme .form-default .form-file-preview {
  margin: 10px 0;
}
.helpmundo-theme .form-default .form-file-preview .preview-actions {
  margin-top: 2px;
}
.helpmundo-theme .form-default .form-file-preview .preview-actions a {
  margin-right: 10px;
}
.helpmundo-theme .form-default .form-file-preview .preview-image {
  max-width: 100px;
  max-height: 100px;
}
.helpmundo-theme .form-default .image_upload_container .thumb,
.helpmundo-theme .form-default .preview-image-thumb {
  border: 2px dashed #b3b3b3;
  border-radius: 5px;
  text-align: center;
}
.helpmundo-theme .form-default .image_upload_container .thumb img.image-preview,
.helpmundo-theme .form-default .preview-image-thumb img.image-preview {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
}
.helpmundo-theme .form-default div.form_fieldset {
  padding: 10px;
  font-size: 13px;
  min-height: initial;
}
.helpmundo-theme .form-default div.form_fieldset .form-cols-2 {
  *zoom: 1;
}
.helpmundo-theme .form-default div.form_fieldset .form-cols-2:before,
.helpmundo-theme .form-default div.form_fieldset .form-cols-2:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .form-default div.form_fieldset .form-cols-2:after {
  clear: both;
}
.helpmundo-theme .form-default div.form_fieldset .form-cols-2 > div {
  width: 450px;
  float: left;
}
.helpmundo-theme .form-default div.form_fieldset .form-cols-2 > div:nth-child(2) {
  float: right;
}
.helpmundo-theme .form-default .form-separator {
  border-top: 1px dashed #D6D6D6;
  border-bottom: none;
  margin: 10px 0;
}
.helpmundo-theme .form-default .form-field-caption {
  color: #808080;
  margin: 10px 0;
}
.helpmundo-theme .form-block select.selectInput,
.helpmundo-theme .form-block input.textInput,
.helpmundo-theme .form-block .textareaInput,
.helpmundo-theme .form-block input[type="text"],
.helpmundo-theme .form-block input[type="password"],
.helpmundo-theme .form-block select {
  width: 100%;
}
.helpmundo-theme .input-group {
  position: relative;
}
.helpmundo-theme .input-group .append-text {
  position: absolute;
  right: 7px;
  top: 7px;
  font-style: italic;
  font-weight: bold;
  color: #808080;
}
.helpmundo-theme .input-append-text {
  position: relative;
}
.helpmundo-theme .input-append-text:before {
  content: 'test';
  display: block;
}
.helpmundo-theme .input-colorpicker {
  padding-right: 30px;
  position: relative;
}
.helpmundo-theme .input-colorpicker .input-colorpicker-actions {
  position: absolute;
  right: -10px;
  top: 5px;
  font-size: 16px;
}
.helpmundo-theme .input-colorpicker .input-colorpicker-actions a + a {
  margin-left: 2px;
}
.helpmundo-theme .input-with-actions {
  padding-right: 15px;
  position: relative;
}
.helpmundo-theme .input-with-actions .input-actions {
  position: absolute;
  right: -10px;
  top: 5px;
  font-size: 16px;
}
.helpmundo-theme .input-with-actions .input-actions a + a {
  margin-left: 2px;
}
.helpmundo-theme .input-list .input {
  margin-bottom: 10px;
}
.helpmundo-theme .input-list .input:last-child {
  margin-bottom: 0;
}
.helpmundo-theme .form-actions button + button {
  margin-left: 20px;
}
.helpmundo-theme input[type="text"].is-valid,
.helpmundo-theme input[type="password"].is-valid {
  border: 1px solid #3c763d;
}
.helpmundo-theme input[type="text"].is-invalid,
.helpmundo-theme input[type="password"].is-invalid {
  border: 1px solid #e35b5a;
}
.helpmundo-theme span.req,
.helpmundo-theme .req {
  line-height: 1;
  font-weight: normal;
  font-size: 0.1em;
  position: relative;
  color: #1475cc;
  margin-right: 5px;
}
.helpmundo-theme span.req:after,
.helpmundo-theme .req:after {
  content: '*';
  font-size: 18px;
  position: absolute;
}
.helpmundo-theme span.req.text-xxxxl,
.helpmundo-theme .req.text-xxxxl {
  margin-right: 8px;
}
.helpmundo-theme span.req.text-xxxxl:after,
.helpmundo-theme .req.text-xxxxl:after {
  font-size: 24px;
}
.helpmundo-theme .ms-options-wrap > button {
  background-image: none;
  height: 30px;
  margin: 0;
  font-weight: normal;
  color: #333;
}
.helpmundo-theme .ms-options-wrap > button:hover {
  background: none;
}
.helpmundo-theme .ms-options-wrap > .ms-options > ul > li.optgroup .label {
  color: #333;
}
.helpmundo-theme form .parsley-error {
  border: 1px solid #e35b5a;
}
.helpmundo-theme form .parsley-errors-list {
  display: none;
}
.helpmundo-theme form .parsley-errors-list.filled {
  display: inline-block;
  color: #e35b5a;
  list-style-type: none;
  clear: both;
}
.helpmundo-theme form .parsley-errors-list.filled li {
  float: left;
}
.helpmundo-theme form .parsley-errors-list.filled li:after {
  content: " ";
}
.helpmundo-theme .ui-widget-content {
  background-color: #fff;
  font-size: 13px;
}
.helpmundo-theme .ui-widget-content a {
  color: #ED6502;
}
.helpmundo-theme .col-24 {
  float: left;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-24 {
    width: 100%;
  }
}
.helpmundo-theme .col-23 {
  float: left;
  width: 95%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-23 {
    width: 100%;
  }
}
.helpmundo-theme .col-22 {
  float: left;
  width: 91%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-22 {
    width: 100%;
  }
}
.helpmundo-theme .col-21 {
  float: left;
  width: 87%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-21 {
    width: 100%;
  }
}
.helpmundo-theme .col-20 {
  float: left;
  width: 83%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-20 {
    width: 100%;
  }
}
.helpmundo-theme .col-19 {
  float: left;
  width: 79%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-19 {
    width: 100%;
  }
}
.helpmundo-theme .col-18 {
  float: left;
  width: 75%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-18 {
    width: 100%;
  }
}
.helpmundo-theme .col-17 {
  float: left;
  width: 70%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-17 {
    width: 100%;
  }
}
.helpmundo-theme .col-16 {
  float: left;
  width: 66%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-16 {
    width: 100%;
  }
}
.helpmundo-theme .col-15 {
  float: left;
  width: 62%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-15 {
    width: 100%;
  }
}
.helpmundo-theme .col-14 {
  float: left;
  width: 58%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-14 {
    width: 100%;
  }
}
.helpmundo-theme .col-13 {
  float: left;
  width: 54%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-13 {
    width: 100%;
  }
}
.helpmundo-theme .col-12 {
  float: left;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-12 {
    width: 100%;
  }
}
.helpmundo-theme .col-11 {
  float: left;
  width: 45%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-11 {
    width: 100%;
  }
}
.helpmundo-theme .col-10 {
  float: left;
  width: 41%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-10 {
    width: 100%;
  }
}
.helpmundo-theme .col-9 {
  float: left;
  width: 37%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-9 {
    width: 100%;
  }
}
.helpmundo-theme .col-8 {
  float: left;
  width: 33%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-8 {
    width: 100%;
  }
}
.helpmundo-theme .col-7 {
  float: left;
  width: 29%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-7 {
    width: 100%;
  }
}
.helpmundo-theme .col-6 {
  float: left;
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-6 {
    width: 100%;
  }
}
.helpmundo-theme .col-5 {
  float: left;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-5 {
    width: 100%;
  }
}
.helpmundo-theme .col-4 {
  float: left;
  width: 16%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-4 {
    width: 100%;
  }
}
.helpmundo-theme .col-3 {
  float: left;
  width: 12%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-3 {
    width: 100%;
  }
}
.helpmundo-theme .col-2 {
  float: left;
  width: 8%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-2 {
    width: 100%;
  }
}
.helpmundo-theme .col-1 {
  float: left;
  width: 4%;
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}
@media (max-width: 719px) {
  .helpmundo-theme .col-1 {
    width: 100%;
  }
}
@media (min-width: 720px) and (max-width: 959px) {
  .helpmundo-theme .col-sm-24 {
    float: left;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-23 {
    float: left;
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-22 {
    float: left;
    width: 91%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-21 {
    float: left;
    width: 87%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-20 {
    float: left;
    width: 83%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-19 {
    float: left;
    width: 79%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-18 {
    float: left;
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-17 {
    float: left;
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-16 {
    float: left;
    width: 66%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-15 {
    float: left;
    width: 62%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-14 {
    float: left;
    width: 58%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-13 {
    float: left;
    width: 54%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-12 {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-11 {
    float: left;
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-10 {
    float: left;
    width: 41%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-9 {
    float: left;
    width: 37%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-8 {
    float: left;
    width: 33%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-7 {
    float: left;
    width: 29%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-6 {
    float: left;
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-5 {
    float: left;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-4 {
    float: left;
    width: 16%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-3 {
    float: left;
    width: 12%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-2 {
    float: left;
    width: 8%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-sm-1 {
    float: left;
    width: 4%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .helpmundo-theme .col-md-24 {
    float: left;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-23 {
    float: left;
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-22 {
    float: left;
    width: 91%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-21 {
    float: left;
    width: 87%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-20 {
    float: left;
    width: 83%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-19 {
    float: left;
    width: 79%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-18 {
    float: left;
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-17 {
    float: left;
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-16 {
    float: left;
    width: 66%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-15 {
    float: left;
    width: 62%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-14 {
    float: left;
    width: 58%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-13 {
    float: left;
    width: 54%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-12 {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-11 {
    float: left;
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-10 {
    float: left;
    width: 41%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-9 {
    float: left;
    width: 37%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-8 {
    float: left;
    width: 33%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-7 {
    float: left;
    width: 29%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-6 {
    float: left;
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-5 {
    float: left;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-4 {
    float: left;
    width: 16%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-3 {
    float: left;
    width: 12%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-2 {
    float: left;
    width: 8%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-md-1 {
    float: left;
    width: 4%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
}
@media (min-width: 1200px) {
  .helpmundo-theme .col-lg-24 {
    float: left;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-23 {
    float: left;
    width: 95%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-22 {
    float: left;
    width: 91%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-21 {
    float: left;
    width: 87%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-20 {
    float: left;
    width: 83%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-19 {
    float: left;
    width: 79%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-18 {
    float: left;
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-17 {
    float: left;
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-16 {
    float: left;
    width: 66%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-15 {
    float: left;
    width: 62%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-14 {
    float: left;
    width: 58%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-13 {
    float: left;
    width: 54%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-12 {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-11 {
    float: left;
    width: 45%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-10 {
    float: left;
    width: 41%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-9 {
    float: left;
    width: 37%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-8 {
    float: left;
    width: 33%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-7 {
    float: left;
    width: 29%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-6 {
    float: left;
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-5 {
    float: left;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-4 {
    float: left;
    width: 16%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-3 {
    float: left;
    width: 12%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-2 {
    float: left;
    width: 8%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
  .helpmundo-theme .col-lg-1 {
    float: left;
    width: 4%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
  }
}
.helpmundo-theme .content-container {
  *zoom: 1;
  margin: 0 auto;
  padding: 0 15px;
  width: 960px;
  position: relative;
}
.helpmundo-theme .content-container:before,
.helpmundo-theme .content-container:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .content-container:after {
  clear: both;
}
@media (max-width: 719px) {
  .helpmundo-theme .content-container {
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 720px) and (max-width: 959px) {
  .helpmundo-theme .content-container {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .helpmundo-theme .content-container {
    width: 1200px;
  }
}
.helpmundo-theme .col-row {
  margin-left: -15px;
  margin-right: -15px;
  *zoom: 1;
}
.helpmundo-theme .col-row:before,
.helpmundo-theme .col-row:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .col-row:after {
  clear: both;
}
@media (min-width: 1200px) {
  .helpmundo-theme .hidden-large {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 960px) and (max-width: 1199px) {
  .helpmundo-theme .hidden-medium {
    display: none !important;
    visibility: hidden;
  }
}
@media (min-width: 720px) and (max-width: 959px) {
  .helpmundo-theme .hidden-small {
    display: none !important;
    visibility: hidden;
  }
}
@media (max-width: 719px) {
  .helpmundo-theme .hidden-mobile {
    display: none !important;
    visibility: hidden;
  }
}
.helpmundo-theme .row-space-mobile {
  width: 100%;
  float: left;
  display: none;
}
@media (max-width: 719px) {
  .helpmundo-theme .row-space-mobile {
    display: block;
    height: 30px;
  }
}
.helpmundo-theme table.dataTable thead th {
  padding: 4px 6px;
}
.helpmundo-theme table.dataTable thead .sorting {
  cursor: pointer;
  font-weight: bold;
}
.helpmundo-theme table.dataTable thead .sorting:hover {
  color: #ED6502;
}
.helpmundo-theme table.dataTable thead .sorting,
.helpmundo-theme table.dataTable thead .sorting_asc,
.helpmundo-theme table.dataTable thead .sorting_desc,
.helpmundo-theme table.dataTable thead .sorting_asc_disabled,
.helpmundo-theme table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.helpmundo-theme table.dataTable thead .sorting:hover,
.helpmundo-theme table.dataTable thead .sorting_asc:hover,
.helpmundo-theme table.dataTable thead .sorting_desc:hover,
.helpmundo-theme table.dataTable thead .sorting_asc_disabled:hover,
.helpmundo-theme table.dataTable thead .sorting_desc_disabled:hover {
  color: #ED6502;
}
.helpmundo-theme table.dataTable thead .sorting:after,
.helpmundo-theme table.dataTable thead .sorting_asc:after,
.helpmundo-theme table.dataTable thead .sorting_desc:after,
.helpmundo-theme table.dataTable thead .sorting_asc_disabled:after,
.helpmundo-theme table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  right: 0;
  content: "";
  width: 19px;
  height: 19px;
}
.helpmundo-theme table.dataTable thead .sorting_asc,
.helpmundo-theme table.dataTable thead .sorting_desc {
  background-image: url("/helptools/images/sort_on_bg.gif") !important;
  border-top: 1px solid #D1CFCF !important;
}
.helpmundo-theme table.dataTable thead .sorting:after {
  background-image: url("/helptools/images/charshop/datatables/sort_both.png");
}
.helpmundo-theme table.dataTable thead .sorting_asc:after {
  background-image: url("/helptools/images/charshop/datatables/sort_asc.png");
}
.helpmundo-theme table.dataTable thead .sorting_desc:after {
  background-image: url("/helptools/images/charshop/datatables/sort_desc.png");
}
.helpmundo-theme table.dataTable thead .sorting_asc_disabled:after {
  background-image: url("/helptools/images/charshop/datatables/sort_asc_disabled.png");
}
.helpmundo-theme table.dataTable thead .sorting_desc_disabled:after {
  background-image: url("/helptools/images/charshop/datatables/sort_desc_disabled.png");
}
.helpmundo-theme table.dataTable tbody th,
.helpmundo-theme table.dataTable tbody td {
  /*padding: 2px 6px 0 3px;*/
}
.helpmundo-theme .dataTableFooter {
  *zoom: 1;
  margin-top: 10px;
}
.helpmundo-theme .dataTableFooter:before,
.helpmundo-theme .dataTableFooter:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .dataTableFooter:after {
  clear: both;
}
.helpmundo-theme .dataTableFooter .left {
  float: left;
}
.helpmundo-theme .dataTableFooter .right {
  float: right;
}
.helpmundo-theme .dataTableFooter .group > div {
  float: left;
}
.helpmundo-theme .dataTableFooter .group > div:after {
  content: '|';
  display: inline-block;
  margin: 0 10px;
}
.helpmundo-theme .dataTableFooter .group > div:last-of-type:after {
  display: none;
}
.helpmundo-theme .dataTableFooter .arrow {
  margin: 0 5px;
}
.helpmundo-theme .dataTableFooter .dataTables_processing {
  float: right;
}
.helpmundo-theme td.label label {
  margin-right: 15px;
}
.helpmundo-theme ol.first-level,
.helpmundo-theme ol.second-level {
  padding-left: 0;
  list-style: none;
  counter-reset: item;
}
.helpmundo-theme ol.first-level > li,
.helpmundo-theme ol.second-level > li {
  margin: 15px 0;
}
.helpmundo-theme ol.first-level > li:before,
.helpmundo-theme ol.second-level > li:before {
  content: counter(item) ". ";
  counter-increment: item;
  font-weight: bold;
}
.helpmundo-theme ol.first-level.alpha > li:before,
.helpmundo-theme ol.second-level.alpha > li:before {
  content: counter(item, lower-alpha) ") ";
}
.helpmundo-theme ol.first-level > li {
  margin: 30px 0;
}
.helpmundo-theme ul.second-level {
  padding-left: 20px;
}
.helpmundo-theme .label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.helpmundo-theme .label:hover,
a.helpmundo-theme .label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.helpmundo-theme .label:empty {
  display: none;
}
.btn .helpmundo-theme .label {
  position: relative;
  top: -1px;
}
.helpmundo-theme .label-default {
  background-color: #777777;
}
.helpmundo-theme .label-default[href]:hover,
.helpmundo-theme .label-default[href]:focus {
  background-color: #5e5e5e;
}
.helpmundo-theme .label-primary {
  background-color: #337ab7;
}
.helpmundo-theme .label-primary[href]:hover,
.helpmundo-theme .label-primary[href]:focus {
  background-color: #286090;
}
.helpmundo-theme .label-success {
  background-color: #5cb85c;
}
.helpmundo-theme .label-success[href]:hover,
.helpmundo-theme .label-success[href]:focus {
  background-color: #449d44;
}
.helpmundo-theme .label-info {
  background-color: #5bc0de;
}
.helpmundo-theme .label-info[href]:hover,
.helpmundo-theme .label-info[href]:focus {
  background-color: #31b0d5;
}
.helpmundo-theme .label-warning {
  background-color: #f0ad4e;
}
.helpmundo-theme .label-warning[href]:hover,
.helpmundo-theme .label-warning[href]:focus {
  background-color: #ec971f;
}
.helpmundo-theme .label-danger {
  background-color: #d9534f;
}
.helpmundo-theme .label-danger[href]:hover,
.helpmundo-theme .label-danger[href]:focus {
  background-color: #c9302c;
}
.helpmundo-theme .price-plan {
  text-align: center;
  background: #fff;
  padding: 5px;
  border: 1px solid #dfdfdf;
}
.helpmundo-theme .price-plan > div {
  position: relative;
  margin-bottom: 3px;
  padding: 10px 15px;
}
.helpmundo-theme .price-plan > div:after {
  content: '';
  display: block;
  border-bottom: 1px solid #dfdfdf;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
}
.helpmundo-theme .price-plan > div:nth-child(even) {
  background-color: #fff;
}
.helpmundo-theme .price-plan > div:last-child {
  margin-bottom: 0;
}
.helpmundo-theme .price-plan > div:last-child:after {
  display: none;
}
.helpmundo-theme .price-plan > div.plan-header {
  background: #ff9807;
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.helpmundo-theme .price-plan > div.plan-header .title {
  font-weight: bold;
  font-size: 24px;
}
.helpmundo-theme .price-plan > div.plan-header .caption {
  color: #fff;
}
.helpmundo-theme .price-plan > div.plan-header.plan-header-blue {
  background: #1475cc;
}
.helpmundo-theme .price-plan-col {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  opacity: 1;
  -webkit-transition: opacity ease 200ms;
  -o-transition: opacity ease 200ms;
  transition: opacity ease 200ms;
}
.helpmundo-theme .price-plan-col.inactive {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  opacity: 0.5;
}
.helpmundo-theme .price-plan-alerts .alert {
  margin-top: 20px;
}
.helpmundo-theme .form-default .form-group .form-input-subdomain {
  width: 630px;
}
.helpmundo-theme .form-default .form-group .form-input-subdomain input {
  padding-right: 100px;
}
.helpmundo-theme .custom-image-container .image-uploaded {
  margin-bottom: 10px;
}
.helpmundo-theme .custom-image-container .thumb {
  width: 100%;
  height: auto;
  padding: 2px;
  /*margin-top: 10px;*/
  border: 2px dashed #b3b3b3;
  border-radius: 5px;
  position: relative;
}
.helpmundo-theme .custom-image-container .thumb img.image-preview {
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
  display: block;
}
.helpmundo-theme .custom-image-container .thumb .label {
  position: absolute;
  top: 2px;
  right: 2px;
}
.helpmundo-theme .domain-availability .fa {
  position: absolute;
  left: -20px;
  top: 8px;
}
.helpmundo-theme .domain-availability .fa.fa-check {
  color: #3c763d;
}
.helpmundo-theme .domain-availability .fa.fa-close {
  color: #e35b5a;
}
.helpmundo-theme .overview-container {
  margin-bottom: 30px;
  *zoom: 1;
}
.helpmundo-theme .overview-container:before,
.helpmundo-theme .overview-container:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .overview-container:after {
  clear: both;
}
.helpmundo-theme .overview-container .overview-row {
  *zoom: 1;
}
.helpmundo-theme .overview-container .overview-row:before,
.helpmundo-theme .overview-container .overview-row:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .overview-container .overview-row:after {
  clear: both;
}
.helpmundo-theme .overview-container .overview-row.overview-row-bordered {
  border-bottom: 1px solid #D6D6D6;
}
.helpmundo-theme .overview-container .overview-row.overview-row-bordered .overview-col:first-child {
  border-right: 1px solid #D6D6D6;
}
.helpmundo-theme .overview-container .overview-row.overview-row-header .overview-col:first-child {
  border-right: 1px solid #48595e;
}
.helpmundo-theme .overview-container .overview-row .overview-col {
  width: 50%;
  float: left;
}
.helpmundo-theme .overview-container .overview-head {
  *zoom: 1;
  background: none repeat scroll 0 0 #6F8992;
  color: #fff;
  font-size: 13px;
  padding: 5px 15px;
}
.helpmundo-theme .overview-container .overview-head:before,
.helpmundo-theme .overview-container .overview-head:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .overview-container .overview-head:after {
  clear: both;
}
.helpmundo-theme .overview-container .overview-head a {
  color: #fff;
}
.helpmundo-theme .overview-container .overview-content {
  *zoom: 1;
  border: 1px solid #D6D6D6;
  font-size: 13px;
}
.helpmundo-theme .overview-container .overview-content:before,
.helpmundo-theme .overview-container .overview-content:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .overview-container .overview-content:after {
  clear: both;
}
.helpmundo-theme .overview-container .overview-content .overview-row .overview-col {
  padding: 15px;
}
.helpmundo-theme .overview-container .overview-content .overview-field {
  color: #808080;
  margin-bottom: 10px;
}
.helpmundo-theme .overview-container .overview-content .overview-field .overview-block-title {
  font-weight: bold;
  color: #333333;
}
.helpmundo-theme .overview-container .overview-content .overview-field .field-value {
  float: right;
}
.helpmundo-theme .panel {
  margin-bottom: 30px;
  *zoom: 1;
}
.helpmundo-theme .panel:before,
.helpmundo-theme .panel:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .panel:after {
  clear: both;
}
.helpmundo-theme .panel .panel-heading {
  *zoom: 1;
  background: none repeat scroll 0 0 #6F8992;
  color: #fff;
  font-size: 13px;
  padding: 5px 15px;
}
.helpmundo-theme .panel .panel-heading:before,
.helpmundo-theme .panel .panel-heading:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .panel .panel-heading:after {
  clear: both;
}
.helpmundo-theme .panel .panel-heading a {
  color: #fff;
}
.helpmundo-theme .panel .panel-body {
  *zoom: 1;
  font-size: 13px;
  line-height: 1.7em;
}
.helpmundo-theme .panel .panel-body:before,
.helpmundo-theme .panel .panel-body:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .panel .panel-body:after {
  clear: both;
}
.helpmundo-theme .panel .panel-row {
  *zoom: 1;
  border-left: 1px solid #D6D6D6;
}
.helpmundo-theme .panel .panel-row:before,
.helpmundo-theme .panel .panel-row:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
.helpmundo-theme .panel .panel-row:after {
  clear: both;
}
.helpmundo-theme .panel .panel-row.panel-row-12 {
  width: 50%;
}
.helpmundo-theme .panel .panel-row .panel-col {
  width: 100%;
  padding: 15px;
  background-color: #F6F6F6;
}
.helpmundo-theme .panel .panel-row .panel-col.panel-col-12 {
  width: 50%;
  float: left;
}
.helpmundo-theme .panel .panel-row .panel-col.panel-col-border {
  border-right: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
}
.helpmundo-theme textarea.text-readonly {
  background-color: #f1f3fa;
  padding: 15px;
  color: #333333;
  font-size: 14px;
  line-height: 1.5em;
  border-radius: 5px;
  border: 1px solid #D6D6D6;
  resize: none;
}
.helpmundo-theme .contract-steps {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}
.helpmundo-theme .contract-steps th {
  position: relative;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
}
.helpmundo-theme .contract-steps th h1 {
  background-color: #fe9807;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  padding: 20px;
  margin: 4px;
}
.helpmundo-theme .contract-steps th .download-avv {
  position: absolute;
  top: 28px;
  right: 15px;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: underline;
}
.helpmundo-theme .contract-steps th .download-avv:before {
  content: "\f019";
  font-family: FontAwesome;
  color: #ffffff;
  margin-right: 6px;
  text-decoration: none;
}
.helpmundo-theme .contract-steps td {
  position: relative;
  width: 50%;
  padding: 20px 20px 60px;
  border: 1px solid #d9d9d9;
  font-size: 13px;
}
.helpmundo-theme .contract-steps td:first-child {
  border-right: none;
}
.helpmundo-theme .contract-steps td.is-disabled,
.helpmundo-theme .contract-steps td.disabled {
  background-color: #fafafa;
}
.helpmundo-theme .contract-steps td .form-label label {
  font-weight: normal;
}
.helpmundo-theme .contract-steps td .form-input {
  width: 255px !important;
}
.helpmundo-theme .contract-steps td .btn {
  position: absolute;
  bottom: 15px;
  left: 20px;
}
.helpmundo-theme .contract-steps td strong.headline {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.helpmundo-theme .contract-steps td.notification {
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  padding: 0px 20px;
}
.helpmundo-theme .contract-steps #step1.is-disabled .note.note-info,
.helpmundo-theme .contract-steps #step1.is-disabled .note.note-info:before,
.helpmundo-theme .contract-steps #step1.is-disabled .form-label label,
.helpmundo-theme .contract-steps #step1.is-disabled .form_helper:before {
  color: #666666;
}
.helpmundo-theme .contract-steps #step1 .edit-contract {
  position: absolute;
  font-size: 14px;
  top: 22px;
  right: 15px;
}
.helpmundo-theme .contract-steps #step1 .edit-contract:before {
  font-family: FontAwesome;
  content: "\f044";
  margin-right: 6px;
  text-decoration: none;
}
.helpmundo-theme .contract-steps #step2 label {
  font-weight: normal;
}
.helpmundo-theme .contract-steps #step2.is-disabled label {
  color: #666666;
}
.helpmundo-theme .contract-steps a.button.btn {
  padding: 6px 15px;
}
.helpmundo-theme .contract-steps .btn.is-disabled {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
#missing-contract {
  width: 100%;
  background-color: #fe9807;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 45px 8px;
  border-bottom: 2px solid #db8101;
}
#missing-contract span {
  text-decoration: underline;
}
#missing-contract a {
  color: #ffffff;
  font-weight: bold;
}
html,
body {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #333333;
}
*,
html,
body {
  margin: 0;
  padding: 0;
}
a,
b {
  color: #ED6502;
  text-decoration: underline;
  cursor: pointer;
}
a.black {
  color: #333333;
}
a:hover {
  text-decoration: underline;
}
.errors,
.infoerror {
  color: red;
}
.content_footer {
  display: none;
}
input[type="checkbox"] {
  vertical-align: middle;
}
input[type="checkbox"] + label {
  vertical-align: middle;
}
.errors li {
  float: none;
  white-space: normal;
}
.infos {
  color: green;
}
.infos li {
  float: none;
}
div#main_container {
  /*min-width: 980px;*/
  /*overflow: hidden;*/
  /*padding-bottom: 250px;*/
}
#content_container {
  margin: 10px 45px;
  min-width: 850px;
}
div#header {
  background: url("../images/fon.png") repeat-x scroll 0 0 #666e73;
  min-width: 970px;
  font-size: 12px;
}
h3 {
  font-weight: bold;
  color: #EB5E00;
  font-size: 1.17em;
  margin: 1em 0;
}
div#headerTop {
  height: 56px;
}
div#headerTop div#headerTopMenu {
  padding: 20px 40px 0 40px;
  color: #EEE;
}
div#headerTop div#headerTopMenu div {
  float: right;
}
div#headerTop div#headerTopMenu div.logo {
  float: left;
  margin-top: -5px;
}
div#headerTop div#headerTopMenu div.logo a {
  text-decoration: none;
}
div#headerTop div#headerTopMenu div.logo img {
  border: none;
  vertical-align: middle;
  margin-right: 10px;
}
div#headerTop div#headerTopMenu div.logo span {
  vertical-align: middle;
}
div#headerTop div#headerTopMenu div.logo span.logotext {
  color: #EEEEEE;
}
div#headerTop div#headerTopMenu div.separator {
  padding: 0 10px;
}
div#headerTop div#headerTopMenu a.logout {
  color: #FCCE77;
}
div#header div#menu {
  min-height: 27px;
  border-bottom: 1px solid #2D444F;
  border-top: 1px solid #2D444F;
  padding-left: 30px;
  *zoom: 1;
}
div#header div#menu:before,
div#header div#menu:after {
  content: '';
  /* 1 */
  display: table;
  /* 2 */
}
div#header div#menu:after {
  clear: both;
}
div#header div#menu ul ul {
  margin: 0px;
  padding: 0px;
  background: none;
}
div#header div#menu ul {
  list-style: none outside none;
  background: url("../images/nav1_bg.gif") repeat-x scroll 0 100% #666E73;
  float: left;
  width: 100%;
  margin: 0 0 0 -30px;
  padding: 0 0 0 30px;
}
div#header div#menu li {
  float: left;
  background: url("../images/nav1_sep.gif") no-repeat 100% 0;
}
div#header div#menu li.active {
  background: url("../images/nav1_active.gif") no-repeat 0 0 transparent;
}
div#header div#menu li a {
  color: #FFFFFF;
  line-height: 27px;
  text-decoration: none;
  padding: 0 14px;
  float: left;
  margin: 4px 0 0 0;
}
div#header div#menu li:hover a {
  color: #d6e2e5;
}
div#header div#menu li.submenu {
  position: relative;
}
div#header div#menu li.submenu a {
  float: none;
  margin: 0;
}
div#header div#menu > ul {
  border-bottom: 1px solid #2D444F;
}
div#header div#menu > ul:last-child {
  border-bottom: none;
}
div#header div#menu > ul > li.submenu > a:after {
  margin-left: 0.2em;
  content: "\2193";
}
div#header div#menu > ul > li.submenu > .menu_helper {
  float: right;
}
div#header div#menu li.submenu ul {
  list-style: none outside none;
  display: none;
  position: absolute;
  top: 27px;
  left: -2px;
  border-top: 1px solid #2D444F;
  z-index: 100;
  width: 304px;
}
div#header div#menu li.submenu:hover > ul {
  display: block;
}
div#header div#menu li.submenu li {
  float: none;
  background: url("../images/nav2_li_bg.png") repeat-y scroll 0 0;
  position: relative;
}
div#header div#menu li.submenu li .menu_helper {
  position: absolute;
  right: 5px;
  top: 0;
}
div#header div#menu li.submenu li a {
  color: #2F2F2F;
  display: block;
  background: url("../images/nav2_link_bg.gif") repeat-x scroll 0 100%;
  margin-left: 2px;
  height: 22px;
  line-height: 22px;
  padding-top: 5px;
  float: none;
}
div#header div#menu li.submenu li.last {
  background: url("../images/nav2_last_li_bg.png") no-repeat scroll 0 100% transparent;
}
div#header div#menu li.submenu li.last a {
  background: transparent;
  height: 29px;
}
div#header div#menu li .menu_tip {
  top: 0px;
  left: 0px;
}
div#header div#menu li li .menu_tip {
  top: 0px;
  left: 20px;
}
div#header div#menu .lastlevel a {
  padding-left: 25px;
}
div#header div#menu .header_navi a:hover {
  text-decoration: none !important;
  cursor: default;
}
table.list {
  border-collapse: collapse;
  border-color: #CBD3D4 #CBD3D4 transparent;
  border-style: solid solid none;
  border-width: 1px 1px medium;
  width: 100%;
}
table.list td {
  background: #fff;
}
table.list.fixed {
  table-layout: fixed;
}
table.list.fixed td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
table.list tr.head th {
  background: url("../images/sort_row_bg.gif") repeat-x scroll 0 50% transparent;
  border-color: #F9F9F9 #D1CFCF #F9F9F9 #F9F9F9;
  border-style: solid;
  border-width: 1px;
  font-weight: bold;
  color: #2D444F;
  font-size: 0.9em;
}
table.list tr.filter {
  background: url("../images/filter_row_bg.gif") repeat-x scroll 0 0 #E3EFF1;
}
table.list tr.filter th {
  border-color: #BDBDBD;
  border-style: solid;
  border-width: 0 1px 1px 0;
  padding: 5px;
  /*padding-top: 5px;*/
  white-space: normal;
  vertical-align: top;
}
table.list tr.filter th.right,
table.list tr.zebra_odd th.right {
  text-align: right;
}
select,
input[type="text"],
input[type="password"],
input[type="email"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: none repeat scroll 0 0 #FFFFFF;
  border-color: #AAAAAA #C8C8C8 #C8C8C8 #AAAAAA;
  border-style: solid;
  border-width: 1px;
  font: 12px 'Raleway', sans-serif;
  vertical-align: middle;
  padding: 1px 2px;
  max-height: 20px;
}
table.list tr.filter select,
table.list tr.filter input {
  width: 100% !important;
}
table.list tr.filter input[type="checkbox"] {
  width: auto !important;
}
/*table.list tr.filter select,*/
table.list tr.filter button {
  /*  margin-top: 3px;
    margin-bottom: 3px;*/
}
table.list th,
table.list td {
  padding: 5px 6px 5px 3px;
  text-align: left;
}
table.list td {
  color: #2F2F2F;
  border-color: #DADFE0;
  border-style: solid;
  /*border-width: 0 1px 1px 0;*/
  border-width: 1px;
}
table.list td a {
  text-decoration: underline;
}
table.list tr.zebra_v_top td {
  border-top: 1px solid #A0A0A0;
}
table.list tr.zebra_error td {
  background-color: #ffe0e0;
}
table.list tr:nth-child(2n + 1) > td {
  background-color: #F6F6F6;
}
a.button,
button,
input[type="submit"] {
  background-color: #fd8025;
  background-image: -webkit-linear-gradient(top, #FFAC47, #f56802);
  background-image: -moz-linear-gradient(top, #FFAC47, #f56802);
  background-image: -ms-linear-gradient(top, #FFAC47, #f56802);
  background-image: -o-linear-gradient(top, #FFAC47, #f56802);
  background-image: linear-gradient(to bottom, #FFAC47, #f56802);
  border-color: #ED6502 #ba4f02 #ba4f02 #ED6502;
  border-style: solid;
  border-width: 1px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 1px 7px;
  text-align: center !important;
  white-space: nowrap;
  margin: 0 0 0 5px;
  font: bold 12px arial, helvetica, sans-serif;
  height: 20px;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
}
a.button {
  padding-top: 2px;
  padding-bottom: 2px;
}
a.button span,
button span {
  font: inherit;
}
a.button.add span,
button.add span {
  background: url("../images/add_btn_icon.gif") no-repeat scroll left center;
  padding-left: 20px;
}
a.button:hover,
button:hover {
  background: url("../images/btn_over_bg.gif") repeat-x scroll 0 0 #F77C16;
  text-decoration: none;
}
button.btn-red {
  background-color: #ea8686;
  background-image: -webkit-linear-gradient(top, #e35b5a, #e46261);
  background-image: -moz-linear-gradient(top, #e35b5a, #e46261);
  background-image: -ms-linear-gradient(top, #e35b5a, #e46261);
  background-image: -o-linear-gradient(top, #e35b5a, #e46261);
  background-image: linear-gradient(to bottom, #e35b5a, #e46261);
  border-color: #e35b5a #dc302e #dc302e #e35b5a;
}
div.form_head {
  background: none repeat scroll 0 0 #6F8992;
  color: #FFFFFF;
  padding: 4px 10px;
  font-size: 13px;
}
div.form_fieldset {
  background: none repeat scroll 0 0 #FAFAFA;
  border: 1px solid #D6D6D6;
  margin-bottom: 15px;
  padding: 10px 15px;
}
label input {
  vertical-align: middle;
}
form table.form_holder td.form_td,
form table.form_holder td.buttons {
  border: none;
}
form table.form_table > tbody > tr > td {
  padding-bottom: 5px;
  padding-top: 5px;
  vertical-align: top;
  /*height:31px;*/
  height: 23px;
  /*white-space:nowrap;*/
  border: none;
}
form table.form_table td.label {
  max-width: 300px;
  padding-right: 15px;
}
form table.form_table td.label span.req,
form#editForm span.req,
.req {
  color: #FF0000;
  font-weight: bold;
}
form table.form_table td.label label {
  margin-right: 15px;
}
.errors {
  list-style: none;
}
form table.form_table td.input div.errors,
.errors {
  clear: both;
  color: #D40707;
  font-size: 0.95em;
  font-weight: bold;
  line-height: 1.25em;
  margin: 3px 0 0 9px;
  min-height: 15px;
  padding-left: 16px;
  position: relative;
}
form table.form_table td.input div.errors:before,
.errors:before {
  content: '\25B2';
  position: absolute;
  left: 0;
}
.informatorform table.form_table td.input div.errors:before,
.informator.errors:before {
  display: none;
}
form table.form_table td.input div.errors li,
.errors li {
  font-weight: inherit;
  font-size: inherit;
}
table.list tr.filter input.textInput,
table.list tr.filter select.selectInput,
form table.form_table input.textInput,
form table.form_table select.selectInput,
form input.textInput,
form select.selectInput,
input.styledTextInput,
form table.form_table textarea,
.textareaInput {
  width: 274px;
}
table.list tr.filter input.textInput,
table.list tr.filter select.selectInput,
form table.form_table input.textInput,
form table.form_table select.selectInput,
form input.textInput,
form select.selectInput,
input.styledTextInput {
  height: 20px;
}
form table.form_table input.textInput:disabled,
form table.form_table input.textInput:read-only,
form table.form_table select.selectInput:disabled,
input.styledTextInput:disabled,
select.selectInput:disabled {
  background-color: #ddd !important;
}
/*form table.form_table textarea {
    width: 274px;
    height:154px;
    background: none repeat scroll 0 0 #FFFFFF;
    border-color: #AAAAAA #C8C8C8 #C8C8C8 #AAAAAA;
    border-style: solid;
    border-width: 1px;
    font: 12px arial, helvetica, sans-serif;
    padding: 2px;
}*/
/*table.form_holder > tbody > tr > td {
    padding-bottom: 1em;
}*/
fieldset table.form_holder {
  width: 100%;
}
table.form_holder {
  /*width: 100%;*/
  /*border-collapse: collapse;*/
  /*border-spacing: ;*/
}
table.form_holder td.input p.hint {
  color: #777;
  font-size: 11px;
}
table.form_holder td.form_td {
  vertical-align: top;
}
table.form_holder td.buttons {
  text-align: center;
}
div.paginator {
  margin: 10px 0;
}
div.paginator img {
  border: none;
  position: relative;
  top: 2px;
}
div.paginator span.separator {
  margin: 0 5px;
}
div#titleHolder {
  border-bottom: 4px solid #DFDFDF;
  margin-bottom: 18px;
  margin-top: 20px;
  padding-bottom: 0.25em;
  min-width: 850px;
}
div#titleHolder h3,
div#floating_panel h3,
div#titleHolder h3 a,
div.titleHolder h3 {
  color: #EB5E00;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.2em;
  margin: 0.3em 0.5em 0 0;
  min-height: 18px;
  padding: 0;
  float: left;
}
div#titleHolder h3 a {
  float: none;
  padding-left: 0;
  font-size: 1em;
  margin: 0;
}
div#titleHolder div.buttons {
  float: right;
}
form.inline {
  display: inline;
  margin: 0;
  padding: 0;
}
div.clear {
  clear: both;
}
th.sorting a {
  text-decoration: none;
  display: block;
  padding: 2px 0 0px 5px;
  outline: 0;
}
th.sorting a span {
  color: #2D444F;
  font-size: 0.9em;
  font-weight: bold;
}
th.sorting a:hover span {
  color: #D85909;
}
th.sorting a.static:hover span {
  color: #2D444F;
}
th.sorting a.no_sort {
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}
th.sorting a span {
  display: block;
  margin: 1px 5px;
  padding-right: 1em;
}
th.sorting a.asc,
th.sorting a.desc {
  background: url("../images/sort_on_bg.gif") no-repeat scroll 0 0 transparent;
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
}
th.sorting a.asc span {
  position: relative;
}
th.sorting a.asc span:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "\025b2";
  color: #ED6502;
}
th.sorting a.desc span {
  position: relative;
}
th.sorting a.desc span:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "\025bc";
  color: #ED6502;
}
/*** YELLOW POPUP PANEL ***/
div#floating_panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: none repeat scroll 0 0 #FDFAA4;
  border-bottom: 1px solid #988753;
  display: none;
  opacity: 0.85;
  z-index: 100;
  height: 33px;
  padding-top: 7px;
}
div#floating_panel div#float_content {
  width: 90%;
  margin-left: 5%;
}
div#floating_panel div.buttons {
  float: right;
  margin-top: 6px;
}
/*** FINANCIAL REPORTS ***/
div.report {
  padding: 10px 10px 10px 40px;
  /*width: 800px;*/
  max-width: 75%;
  /*border:1px solid #DEDEDE; margin-bottom:30px;*/
}
div.report h1 {
  font-size: 15px;
  margin-bottom: 2px;
  font-weight: bold;
}
div.report h2 {
  font-size: 12px;
  margin-top: 2px;
}
div.report span.row {
  font-size: 14px;
}
div.column {
  float: left;
  width: 25%;
}
div#countryList {
  width: 100%;
}
div.report table.subrep {
  border-collapse: collapse;
  margin-bottom: 30px;
  margin-top: 10px;
}
div.report table.subrep th {
  border: 1px solid #A0A0A0;
  text-align: left;
}
div.report table.subrep th,
div.report table.subrep td {
  border: 1px solid #A0A0A0;
  padding: 2px;
}
div.report table.subrep td.hidden,
table.list td.hidden {
  border: none;
}
div.report table.subrep td.right_padded {
  padding-right: 40px;
}
div.report table.subrep td.money {
  text-align: right;
}
.report table.list.financial-report-per-order td:nth-child(2),
.report table.list.financial-report-per-order td:nth-child(3),
.report table.list.financial-report-per-order td:nth-child(4) {
  width: 120px;
}
input.countriesCheckbox,
input.catCheckbox,
input.rubCheckbox,
input.regCheckbox {
  margin-right: 5px;
}
div.login {
  background: url("../images/login_box_bg.jpeg") 0 0 no-repeat;
  width: 466px;
  margin: 10% auto 0;
  overflow: hidden;
  padding: 20px 57px 0 57px;
  min-height: 310px;
}
div.login div.title h2 {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4em;
  margin-bottom: 0.5em;
  color: white;
}
div.login .input-left {
  float: left;
  width: 50%;
}
div.login label {
  font-weight: bold;
  color: white;
}
div.login p {
  color: #FFF;
  margin-bottom: 5px;
}
div.login p.errors {
  color: #EA7601;
}
div.login .form-buttons {
  margin-top: 10px;
}
div.login .input-box input.input-text {
  width: 224px;
  background: none repeat scroll 0 0 #FFFFFF;
  border-color: #AAAAAA #C8C8C8 #C8C8C8 #AAAAAA;
  border-style: solid;
  border-width: 1px;
  padding: 2px;
}
div.login .input-right {
  float: right;
  width: 50%;
}
div.login div.clear {
  height: 0px;
  clear: both;
}
div.localSelector {
  float: right;
}
div.footer {
  background: url("../images/login_box_bg.jpeg") no-repeat 0 100%;
  height: 3px;
  width: 581px;
  margin: 0 auto;
}
div.noauth_bottom {
  background: url("../images/login_box_bottom.jpg") no-repeat scroll 0 0 transparent;
  height: 5px;
  overflow: hidden;
  width: 581px;
}
div.login div#messages {
  height: 18px;
}
.registration_link {
  text-align: center;
  font-weight: bold;
}
.ui-widget-header {
  background-color: #666E73 !important;
  background-image: none !important;
  border-bottom-color: #666E73 !important;
  border-top-color: #666E73 !important;
  border-left-color: #666E73 !important;
  border-right-color: #666E73 !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border-bottom-color: #666E73 !important;
  border-top-color: #666E73 !important;
  border-left-color: #666E73 !important;
  border-right-color: #666E73 !important;
}
.ui-widget-content h2 {
  font-weight: bold;
  color: #EB5E00;
  font-size: 1.5em;
}
.ui-widget-content h3 {
  font-weight: bold;
  color: #EB5E00;
  font-size: 1.17em;
}
.ui-widget-content p {
  margin-bottom: 1em;
}
.ui-widget-content ol,
.ui-widget-content ul {
  list-style-position: inside;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #666E73 !important;
}
.ui-state-hover {
  border-color: #CCCCCC !important;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #1C94C4;
  text-decoration: none;
}
.formLabel {
  float: left;
  margin-right: 20px;
  width: 120px;
}
table.addnpproj {
  width: 100%;
}
table.addnpproj td {
  vertical-align: top;
}
table.addnpproj div#meta_title-label,
div#meta_description-label,
div#meta_keywords-label {
  margin-bottom: 10px;
}
table.addnpproj input#headline,
input#meta_title,
input#meta_description,
textarea#meta_keywords {
  width: 80%;
}
div#countries-label,
div#regions-label,
div#cat-label,
div#rubric-label {
  margin: 10px 0;
}
div#tabs {
  margin-bottom: 15px;
}
table.list td.trans_val_donation {
  font-weight: bold;
  color: red;
}
table.list td.trans_val_recharge {
  font-weight: bold;
  color: green;
}
table.list td.trans_val_conditional_donation {
  font-weight: bold;
  color: red;
}
table.list td.trans_val_conditional_sale {
  font-weight: bold;
  color: green;
}
table.list table.report {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
  border: 1px solid #DEDEDE;
}
table.list table.report tr.project_name td {
  background-color: #DEDEDE;
  font-weight: bold;
  border-bottom: 1px solid #000000;
}
table.list table.report tr.subtotal td {
  border-top: 1px solid #000000;
}
table.list table.report tr.project_total td {
  border-bottom: 1px solid #000000;
}
table.list table.report tr td.r {
  text-align: right;
}
table.list table.report tr td.l {
  text-align: left;
}
table.list table.report tr td.c {
  text-align: center;
}
table.list table.report tr td {
  border: 0;
}
table.list td.trans_approved,
table.list td.trans_accepted {
  color: #009000;
}
table.list td.trans_pending {
  color: #000090;
}
table.list td.trans_rejected {
  color: #900000;
}
table.witelabeladmin {
  width: 100%;
}
table.witelabeladmin td {
  vertical-align: top;
}
table.witelabeladmin td.left {
  width: 370px;
}
table.witelabeladmin td.right {
  padding-left: 20px;
}
table.witelabeladmin fieldset {
  width: 100%;
  margin: 10px 0;
  box-sizing: border-box;
  padding: 0.5em;
}
ul.countries,
ul.categories,
ul.projects {
  list-style: none outside none;
  padding-left: 20px;
}
ul.countries li.npo {
  font-weight: bold;
}
ul.countries li,
ul.categories li,
ul.projects li {
  width: 100%;
  clear: both;
}
ul.countries li p {
  float: left;
  /*width: 290px;*/
}
ul.countries li span,
ul.categories li span {
  float: right;
  margin-right: 10px;
  width: 75px;
  text-align: right;
  white-space: nowrap;
}
ul.countries li span.order {
  float: right;
  width: auto;
}
ul.countries li span.order a {
  margin-right: 10px;
}
table.categories,
table.countries {
  width: 100%;
  padding-left: 5px;
}
table.categories td.indent,
table.countries td.indent {
  padding-left: 20px;
}
table.categories td.short,
table.countries td.short {
  width: 75px;
  text-align: right;
  padding-right: 5px;
}
ul.regions,
ul.rubrics {
  list-style: none outside none;
  padding-left: 20px;
}
table.witelabeladmin a.exclude {
  color: green;
}
table.list td.tbl_money,
td.tbl_money,
td.nowrap {
  text-align: right;
  white-space: nowrap;
}
table.witelabeladmin td.link {
  text-align: center;
  padding: 10px;
}
table.witelabeladmin td.link a {
  color: #EB5E00;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.2em;
}
table.witelabeladmin a.order {
  text-decoration: none;
}
table.list > tbody > tr:hover > td,
.mark_donation_row,
.mark_donation_row td {
  background-color: #E0FFE0 !important;
}
label.changed {
  color: red;
}
.menu_helper {
  float: left;
  width: 22px;
  padding-top: 5px;
  padding-left: 2px;
  cursor: pointer;
  position: relative;
}
.menu_helper .menu_tip,
.form_helper .form_tip {
  position: absolute;
  padding: 3px;
  background-color: #F6F6F6;
  border: 1px solid #DADFE0;
  color: #2F2F2F;
  display: none;
}
.menu_helper:hover .menu_tip,
.form_helper:hover .form_tip {
  display: block;
  z-index: 500;
}
.basic_helper {
  cursor: pointer;
  position: relative;
}
.basic_helper .basic_tip {
  position: absolute;
  padding: 3px;
  background-color: #F6F6F6;
  border: 1px solid #DADFE0;
  color: #2F2F2F;
  top: -2px;
  display: none;
}
.basic_helper:hover .basic_tip {
  display: block;
  z-index: 500;
}
.rtl_hint {
  right: 13px;
}
.ltr_hint {
  left: 15px;
}
.empty_hint,
#ui-datepicker-div {
  display: none;
}
.basic_tip,
.menu_tip,
.header_tip,
.form_tip {
  max-width: 350px;
  min-width: 220px;
}
.header_helper {
  cursor: pointer;
  position: relative;
}
.header_helper .header_tip {
  position: absolute;
  padding: 3px;
  background-color: #F6F6F6;
  border: 1px solid #DADFE0;
  color: #2F2F2F;
  top: -2px;
  display: none;
}
.header_helper:hover .header_tip {
  display: block;
  z-index: 500;
}
form.inline_form {
  display: inline;
  margin: 0;
  padding: 0;
}
form.inline_form input.date_input {
  width: 75px;
}
table.list tr.gray td a,
table.list tr.gray td nobr {
  color: gray;
}
table.dashboard {
  border-collapse: collapse;
  float: left;
  margin-right: 20px;
}
table.dashboard tr.heading th {
  background-color: #6F8992;
  text-align: left;
  color: #FFFFFF;
  font-weight: bold;
  padding-left: 10px;
}
table.dashboard th,
table.dashboard td {
  text-align: right;
  font-size: 14px;
  padding: 5px 5px 5px 35px;
  border: 1px solid #CECECE;
}
table.dashboard th {
  background-color: #FAFAFA;
}
table.dashboard tr.closing th,
table.dashboard tr.closing td {
  border-bottom: 1px solid #606060;
}
table.dashboard .aa {
  color: #FF0000 !important;
}
h3.warning {
  color: #A00000;
  font-weight: bold;
  font-size: 12px;
}
#emitter_reverse {
  width: 13px;
  margin-top: 2px;
}
#reverse_emitter {
  float: left;
  margin-right: 10px;
}
.payment_method_image img {
  margin: 12px;
}
.payment_method_image {
  width: 165px;
  height: 70px;
  overflow: hidden;
  background: url(../images/spendentool/tabs.png) no-repeat 0 0;
}
#payment_methods_form .errors {
  list-style: none;
}
#payment_methods_form button,
#payment_methods_form #profSbm-label {
  float: left;
}
#tabtoggler1_menu {
  padding: 0 2px;
}
#tabtoggler1_menu div {
  width: 128px;
  height: 56px;
  display: table;
  overflow: visible;
  background: #eee url(../images/spendentool/tabs.png) no-repeat 0 0;
}
#tabtoggler1_menu span.object img {
  display: inline;
  max-width: 100px;
}
#tabtoggler1_menu .sub {
  text-align: center;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
  overflow: visible;
}
div.pager {
  position: relative;
  left: 50%;
  float: left;
  overflow: visible;
  color: #7c7d80;
  padding: 10px 0 0 0;
}
div.pager ul {
  position: relative;
  right: 50%;
  z-index: 1;
  list-style: none;
}
div.pager li {
  float: left;
}
div.pager a {
  float: left;
  margin: 0 5px;
}
div.pager a.double_left,
div.pager a.double_right {
  width: 15px;
  height: 13px;
  background: url(../images/spendentool/arrows_pager.png) no-repeat 0 0;
  margin: 1px;
}
div.pager a.left,
div.pager a.right {
  width: 12px;
  height: 13px;
  background: url(../images/spendentool/arrows_pager.png) no-repeat 0 -26px;
  margin: 1px 0;
}
div.pager a.double_right {
  background: url(../images/spendentool/arrows_pager.png) no-repeat 0 -13px;
}
div.pager a.right {
  background: url(../images/spendentool/arrows_pager.png) no-repeat 0 -39px;
}
div.pager a:hover {
  text-decoration: underline;
}
div.pager span {
  float: left;
  margin: 0 5px;
}
div#npo_portrait img {
  float: left;
  margin-right: 15px;
}
#partners_form .textareaInput {
  width: 100%;
}
#partners_form .form_td:last-child,
div#npo_portrait {
  width: 444px;
}
div#npo_portrait {
  position: absolute;
}
#donations_form_id .form_head,
#donations_form_id #date_range td {
  text-align: center;
}
#partners_form input[type="checkbox"] {
  margin-right: 5px;
}
.enhanced_toggleResult {
  display: none;
}
#areas_of_operation-element label {
  display: block;
  float: left;
  width: 231px;
}
#areas_of_operation-label,
#sites_to_hide-label,
#drupal_pruefungs-label {
  display: none;
}
#countryList label {
  float: left;
  width: 30%;
}
/*system div for print purposes*/
#div_for_print {
  display: none;
}
#partners_form #cke_mission_description {
  width: 600px;
}
tr.npproject_unapprove td,
tr.npproject_unapprove td a {
  color: black !important;
  background: #FFDAB9 !important;
}
.sponsors-redeemers table.misc-filter-container,
.financial-followupdonations table.misc-filter-container {
  margin: auto;
  width: 100%;
  border: none;
}
.sponsors-redeemers table.misc-filter-container > tbody > tr > td {
  vertical-align: top;
  padding-right: 5px;
}
.financial-followupdonations table.misc-filter-container > tbody > tr > td {
  vertical-align: top;
  padding-right: 5px;
}
.financial-donorsdonations .form_td.donation-source-container {
  padding-left: 10px;
}
.financial-donorsdonations td.donation-source-container .form_fieldset {
  min-height: 0px;
}
.financial-donorsdonations .filter_projects #npo_selector {
  max-width: 380px;
}
.helptools_admin_financial_followupsenders table.misc-filter-container > tbody > tr > td {
  vertical-align: top;
  padding-right: 5px;
}
.helptools_admin_financial_followupsenders .form_fieldset {
  min-height: 0;
}
#terms_of_use_div h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: larger;
  font-weight: bold;
}
#terms_of_use_div p {
  margin-bottom: 10px;
}
#terms_of_use_div ul {
  padding-left: 30px;
  margin-bottom: 10px;
}
/* SEPA */
.partners-edit .form_fieldset h4 {
  font-weight: bold;
}
#sepa-blocks-container ul {
  list-style-type: none;
}
.sepa-number-mode-custom-container span.sepa-number-preview {
  font-weight: bold;
}
#sepa-blocks-container {
  margin-bottom: 15px;
}
#sepa-blocks-container li {
  font-weight: bold;
}
input.textInput.colorpicker-element {
  background: #fff url(../images/spendentool/colorpicker-trans.png) 100% 50% no-repeat !important;
  cursor: pointer;
  width: 100px !important;
}
.system-settings input.textInput {
  width: 300px;
}
form#helptools-dfcolors table.form_holder {
  width: 100%;
}
form#helptools-dfcolors table.form_holder .buttons {
  padding: 10px 0;
  text-align: right;
}
form#helptools-dfcolors table.form_holder .buttons #preview {
  float: left;
}
.order-info div.order-products-container {
  max-height: 300px;
  overflow-y: auto;
}
.order-info td.order-products-container {
  width: 300px;
}
.order-info td.order-products-container ul {
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
}
.order-info td.order-products-container ul li {
  list-style: none;
  margin-bottom: 3px;
}
.order-info td.order-products-container ul li span {
  display: inline-block;
  width: 20px;
}
.informator {
  margin: 0 0 10px 0;
  clear: both;
  /*font-size: 0.95em;*/
  font-weight: bold;
  line-height: 1.25em;
  /*min-height: 15px;*/
  padding: 5px 10px;
}
.informator.errors {
  color: #c00000;
  border: 1px solid #c00000;
  background: #ffeeee;
}
.informator.infos {
  color: #008000;
  border: 1px solid #008000;
  background: #eeffee;
}
/* Edit of payment methods */
.donationsmanage-paymentmethodsedit fieldset {
  border: 1px solid #D6D6D6;
  padding: 0.8em 1.3em;
  background: none repeat scroll 0 0 #FAFAFA;
}
.donationsmanage-paymentmethodsedit fieldset legend {
  width: 100%;
  background: none repeat scroll 0 0 #6F8992;
  color: #fff;
  padding: 0.1em 0.5em;
  position: relative;
  margin-left: -1em;
}
.donationsmanage-paymentmethodsedit .zend_form {
  margin-top: 20px;
}
.donationsmanage-paymentmethodsedit dt#method_information-label {
  display: none;
}
.donationsmanage-paymentmethodsedit dd#method_information-element {
  float: left;
}
.donationsmanage-paymentmethodsedit dt#fees-label {
  display: none;
}
.donationsmanage-paymentmethodsedit dd#fees-element {
  /*float: right;*/
  margin-left: 450px;
}
.donationsmanage-paymentmethodsedit dt#Cancel-label {
  clear: both;
}
.report .project-report {
  border: 1px solid #dedede;
}
.report .project-report h2 {
  font-weight: bold;
  border-bottom: 1px solid #000;
  background: #dedede;
  margin: 0;
}
.report .project-report h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
.report .project-report th {
  font-weight: bold;
  text-align: center;
}
/* Helpwidget manager */
#helpwidget_manage {
  width: 700px;
}
#helpwidget_manage textarea {
  width: 500px;
  height: 100px;
  clear: both;
  float: left;
  margin-top: 15px;
}
#helpwidget_manage #helpwidget_header {
  float: left;
  font-size: 14px;
  padding-right: 40px;
}
#helpwidget_manage .menu_helper {
  float: left;
  padding-top: 1px;
  margin-left: 5px;
}
.bottom-massaction-selector {
  margin: 1em 0;
}
table.list.admin-conditional-donations .head th:nth-child(1) {
  width: 30px;
}
table.list.admin-conditional-donations .head th:nth-child(2) {
  width: 80px;
}
table.list.admin-conditional-donations .head th:nth-child(3) {
  width: 60px;
}
table.list.admin-conditional-donations .head th:nth-child(4) {
  width: 120px;
}
table.list.admin-conditional-donations .head th:nth-child(8) {
  width: 80px;
}
table.bfs-export-sessions th.amount,
table.bfs-export-sessions th.date {
  width: 100px;
}
table.bfs-export-sessions th.id,
table.bfs-export-sessions th.px {
  width: 50px;
}
table.bfs-export-sessions th.donor {
  width: 20%;
}
table.bfs-export-sessions th.started {
  width: 113px;
}
table.bfs-export-sessions tbody.bfs-export-session .donations > td {
  padding: 12px;
}
table.bfs-export-sessions tbody.bfs-export-session .donations > td .list tbody tr:nth-child(2n) {
  background: #F6F6F6;
}
table.bfs-export-sessions tbody.bfs-export-session .overview td {
  background: url("../images/filter_row_bg.gif") repeat-x scroll 0 0 #E3EFF1;
  font-weight: bold;
}
.code {
  font-family: "Courier New", monospace;
  white-space: pre;
}
table.list.evaluations td:nth-child(2) {
  text-align: right;
  white-space: nowrap;
  width: 150px;
}
table.list.evaluations .report {
  background: #fff;
  padding: 1em;
}
table.list.evaluations .report table {
  width: 100%;
}
.donationsmanage-codegenerator .iframe_get_code-options dd {
  margin-bottom: 10px;
}
.donationsmanage-codegenerator textarea {
  font-family: monospace;
}
div.generator {
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  margin-bottom: 1em;
  padding: 10px;
}
div.generator strong {
  display: block;
}
div.generator.url-constructor table {
  width: auto;
}
div.generator.url-constructor td {
  padding: 10px 15px 0 0;
}
div.generator select {
  width: 250px;
}
form.emailtemplate-edit #preview-content {
  width: 500px;
  height: 300px;
}
#project_form [data-retailo="1"] {
  display: none;
}
#project_form .form_td {
  display: block;
  float: left;
  margin-right: 0.5em;
}
#project_form .form_td:first-child {
  display: table-cell;
}
.additional-forms {
  margin-top: 2em;
}
.export {
  clear: both;
}
.round_block {
  padding: 0 0 15px 0;
  margin-bottom: 0.5em;
}
.round_block header,
.round_block .top {
  background-color: #6F8992;
  padding: 4px 10px;
  color: #FFFFFF;
  font-size: 13px;
}
.round_block .gray_block {
  background-color: #FAFAFA;
  border: 1px solid #D6D6D6;
  margin-bottom: 15px;
  padding: 10px 15px;
}
img.image-preview {
  max-width: 100%;
}
form label .menu_helper {
  float: right;
  height: 13px;
  width: auto;
  background: url("../images/spendentool/icon_question.png") no-repeat 0 0;
  cursor: pointer;
  position: relative;
  overflow: visible;
  padding-left: 16px;
  color: #fff;
}
#npo_registration #captcha-container {
  position: relative;
}
#npo_registration #captcha-container img {
  margin-bottom: 2em;
  display: block;
}
#npo_registration #captcha-container a {
  position: absolute;
  top: 55px;
}
.image_upload_container .thumb {
  overflow: hidden;
  border: 2px dashed #808080;
  border-radius: 5px;
  padding: 0;
  margin-top: 10px;
  text-align: center;
}
.image_upload_container .thumb img {
  display: block;
  max-width: none;
}
.image_upload_container .thumb img.image-preview {
  max-width: 100%;
  max-height: 100%;
}
.image-crop-wrap {
  text-align: center;
}
.image-crop-wrap .image-crop-area {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 10px;
  background-color: #FFF;
  border: 1px dashed #9D9E9B;
  border-radius: 4px;
}
/*            jquery Dialog        */
.modal {
  display: none;
}
.no-close .ui-dialog-titlebar-close {
  display: none;
}
.ui-dialog .ui-dialog-buttonpane button {
  height: auto;
}
.table-mass-actions-container {
  padding-top: 10px;
  overflow: hidden;
}
.table-mass-actions-container > div {
  float: left;
  margin-right: 5px;
}
.table-mass-actions-container > div.icons {
  margin-top: -5px;
}
.table-mass-actions-container > div.fade {
  display: none;
}

table.list td.td-with-table {
  padding: 0;
}

table.list tr.changelog td {
  vertical-align: top;
}

table.list td.td-with-table table.table-in-td {
  border-spacing: 0;
  border-collapse: collapse;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}
table.list td.td-with-table table.table-in-td td {
  width: 17rem;
}

table.list td.td-with-table table.table-in-td td i {
  color: #8b8b8b;
}

table.list tr:nth-child(2n+1) table.table-in-td td {
  background-color: #fff;
}

table.list tr:nth-child(2n+1) table.table-in-td tr:nth-child(2n) td {
  background-color: #F6F6F6;
}

