/*!
 *  Font Awesome 4.2.0 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('fontawesome/fontawesome-webfont.eot?v=4.3.0');
  src: url('fontawesome/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),
		url('fontawesome/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),
		url('fontawesome/fontawesome-webfont.woff?v=4.3.0') format('woff'),
		url('fontawesome/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),
		url('fontawesome/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.awesomefont, [class*="fa-"]:before, [class*="fa-"]:after {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  font-size: inherit;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
/* 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 #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.spin, .fa-spin:before, .fa-spin:after {
  -webkit-animation: fa-spin 2s infinite linear;
  -moz-animation: fa-spin 2s infinite linear;
  -o-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.spin-faster, .fa-spin-faster:before, .fa-spin-faster:after {
  -webkit-animation: fa-spin 1s infinite linear;
  -moz-animation: fa-spin 1s infinite linear;
  -o-animation: fa-spin 1s infinite linear;
  animation: fa-spin 1s infinite linear;
}
.spin-fastest, .fa-spin-fastest:before, .fa-spin-fastest:after {
  -webkit-animation: fa-spin 500ms infinite linear;
  -moz-animation: fa-spin 500ms infinite linear;
  -o-animation: fa-spin 500ms infinite linear;
  animation: fa-spin 500ms infinite linear;
}
.pulse, .fa-pulse:before, .fa-pulse:after {
  -webkit-animation: fa-spin 1s infinite steps(8);
  -moz-animation: fa-spin 1s infinite steps(8);
  -o-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
.pulse-faster, .fa-pulse-faster:before, .fa-pulse-faster:after {
  -webkit-animation: fa-spin 500ms infinite steps(8);
  -moz-animation: fa-spin 500ms infinite steps(8);
  -o-animation: fa-spin 500ms infinite steps(8);
  animation: fa-spin 500ms infinite steps(8);
}
@-moz-keyframes fa-spin {
  0% {
    -moz-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
	transform: rotate(359deg);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
	transform: rotate(359deg);
  }
}
@-o-keyframes fa-spin {
  0% {
    -o-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  100% {
    -o-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:before, .fa-rotate-90:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180:before, .fa-rotate-180:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270:before, .fa-rotate-270:after {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal:before, .fa-flip-horizontal:after {
  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:before, .fa-flip-vertical:after {
  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:before, :root .fa-rotate-90:after,
:root .fa-rotate-180:before, :root .fa-rotate-180:after,
:root .fa-rotate-270:before, :root .fa-rotate-270:after,
:root .fa-flip-horizontal:before, :root .fa-flip-horizontal:after,
:root .fa-flip-vertical:before, :root .fa-flip-vertical:after {
  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 {
  top: 0.25em;
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}

.filetype-text {
    font-family: arial;
    font-size: 0.65em;
    font-weight: 700 !important;
}

.fa-inverse {
  color: #ffffff;
}
.fa-right-5:before, [class*="-after"].fa-right-5:after {
	margin-right:5px;
}
.fa-right-10:before, [class*="-after"].fa-right-10:after {
	margin-right:10px;
}
.fa-left-5:before, [class*="-after"].fa-left-5:after {
	margin-left:5px;
}
.fa-left-10:before, [class*="-after"].fa-left-10:after {
	margin-left:10px;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons
   !!! UTÓLAG HOZZÁADVA AZ "-after:after" TAG !!! */
.fa-glass:before, .fa-glass-after:after {
	content:"\f000";
}
.fa-music:before, .fa-music-after:after {
	content:"\f001";
}
.fa-search:before, .fa-search-after:after {
	content:"\f002";
}
.fa-envelope-o:before, .fa-envelope-o-after:after {
	content:"\f003";
}
.fa-heart:before, .fa-heart-after:after {
	content:"\f004";
}
.fa-star:before, .fa-star-after:after {
	content:"\f005";
}
.fa-star-o:before, .fa-star-o-after:after {
	content:"\f006";
}
.fa-user:before, .fa-user-after:after {
	content:"\f007";
}
.fa-film:before, .fa-film-after:after {
	content:"\f008";
}
.fa-th-large:before, .fa-th-large-after:after {
	content:"\f009";
}
.fa-th:before, .fa-th-after:after {
	content:"\f00a";
}
.fa-th-list:before, .fa-th-list-after:after {
	content:"\f00b";
}
.fa-check:before, .fa-check-after:after {
	content:"\f00c";
}
.fa-remove:before, .fa-remove-after:after,
.fa-close:before, .fa-close-after:after,
.fa-times:before, .fa-times-after:after {
	content:"\f00d";
}
.fa-search-plus:before, .fa-search-plus-after:after {
	content:"\f00e";
}
.fa-search-minus:before, .fa-search-minus-after:after {
	content:"\f010";
}
.fa-power-off:before, .fa-power-off-after:after {
	content:"\f011";
}
.fa-signal:before, .fa-signal-after:after {
	content:"\f012";
}
.fa-gear:before, .fa-gear-after:after,
.fa-cog:before, .fa-cog-after:after {
	content:"\f013";
}
.fa-trash-o:before, .fa-trash-o-after:after {
	content:"\f014";
}
.fa-home:before, .fa-home-after:after {
	content:"\f015";
}
.fa-file-o:before, .fa-file-o-after:after {
	content:"\f016";
}
.fa-clock-o:before, .fa-clock-o-after:after {
	content:"\f017";
}
.fa-road:before, .fa-road-after:after {
	content:"\f018";
}
.fa-download:before, .fa-download-after:after {
	content:"\f019";
}
.fa-arrow-circle-o-down:before, .fa-arrow-circle-o-down-after:after {
	content:"\f01a";
}
.fa-arrow-circle-o-up:before, .fa-arrow-circle-o-up-after:after {
	content:"\f01b";
}
.fa-inbox:before, .fa-inbox-after:after {
	content:"\f01c";
}
.fa-play-circle-o:before, .fa-play-circle-o-after:after {
	content:"\f01d";
}
.fa-rotate-right:before, .fa-rotate-right-after:after,
.fa-repeat:before, .fa-repeat-after:after {
	content:"\f01e";
}
.fa-refresh:before, .fa-refresh-after:after {
	content:"\f021";
}
.fa-list-alt:before, .fa-list-alt-after:after {
	content:"\f022";
}
.fa-lock:before, .fa-lock-after:after {
	content:"\f023";
}
.fa-flag:before, .fa-flag-after:after {
	content:"\f024";
}
.fa-headphones:before, .fa-headphones-after:after {
	content:"\f025";
}
.fa-volume-off:before, .fa-volume-off-after:after {
	content:"\f026";
}
.fa-volume-down:before, .fa-volume-down-after:after {
	content:"\f027";
}
.fa-volume-up:before, .fa-volume-up-after:after {
	content:"\f028";
}
.fa-qrcode:before, .fa-qrcode-after:after {
	content:"\f029";
}
.fa-barcode:before, .fa-barcode-after:after {
	content:"\f02a";
}
.fa-tag:before, .fa-tag-after:after {
	content:"\f02b";
}
.fa-tags:before, .fa-tags-after:after {
	content:"\f02c";
}
.fa-book:before, .fa-book-after:after {
	content:"\f02d";
}
.fa-bookmark:before, .fa-bookmark-after:after {
	content:"\f02e";
}
.fa-print:before, .fa-print-after:after {
	content:"\f02f";
}
.fa-camera:before, .fa-camera-after:after {
	content:"\f030";
}
.fa-font:before, .fa-font-after:after {
	content:"\f031";
}
.fa-bold:before, .fa-bold-after:after {
	content:"\f032";
}
.fa-italic:before, .fa-italic-after:after {
	content:"\f033";
}
.fa-text-height:before, .fa-text-height-after:after {
	content:"\f034";
}
.fa-text-width:before, .fa-text-width-after:after {
	content:"\f035";
}
.fa-align-left:before, .fa-align-left-after:after {
	content:"\f036";
}
.fa-align-center:before, .fa-align-center-after:after {
	content:"\f037";
}
.fa-align-right:before, .fa-align-right-after:after {
	content:"\f038";
}
.fa-align-justify:before, .fa-align-justify-after:after {
	content:"\f039";
}
.fa-list:before, .fa-list-after:after {
	content:"\f03a";
}
.fa-dedent:before, .fa-dedent-after:after,
.fa-outdent:before, .fa-outdent-after:after {
	content:"\f03b";
}
.fa-indent:before, .fa-indent-after:after {
	content:"\f03c";
}
.fa-video-camera:before, .fa-video-camera-after:after {
	content:"\f03d";
}
.fa-photo:before, .fa-photo-after:after,
.fa-image:before, .fa-image-after:after,
.fa-picture-o:before, .fa-picture-o-after:after {
	content:"\f03e";
}
.fa-pencil:before, .fa-pencil-after:after {
	content:"\f040";
}
.fa-map-marker:before, .fa-map-marker-after:after {
	content:"\f041";
}
.fa-adjust:before, .fa-adjust-after:after {
	content:"\f042";
}
.fa-tint:before, .fa-tint-after:after {
	content:"\f043";
}
.fa-edit:before, .fa-edit-after:after,
.fa-pencil-square-o:before, .fa-pencil-square-o-after:after {
	content:"\f044";
}
.fa-share-square-o:before, .fa-share-square-o-after:after {
	content:"\f045";
}
.fa-check-square-o:before, .fa-check-square-o-after:after {
	content:"\f046";
}
.fa-arrows:before, .fa-arrows-after:after {
	content:"\f047";
}
.fa-step-backward:before, .fa-step-backward-after:after {
	content:"\f048";
}
.fa-fast-backward:before, .fa-fast-backward-after:after {
	content:"\f049";
}
.fa-backward:before, .fa-backward-after:after {
	content:"\f04a";
}
.fa-play:before, .fa-play-after:after {
	content:"\f04b";
}
.fa-pause:before, .fa-pause-after:after {
	content:"\f04c";
}
.fa-stop:before, .fa-stop-after:after {
	content:"\f04d";
}
.fa-forward:before, .fa-forward-after:after {
	content:"\f04e";
}
.fa-fast-forward:before, .fa-fast-forward-after:after {
	content:"\f050";
}
.fa-step-forward:before, .fa-step-forward-after:after {
	content:"\f051";
}
.fa-eject:before, .fa-eject-after:after {
	content:"\f052";
}
.fa-chevron-left:before, .fa-chevron-left-after:after {
	content:"\f053";
}
.fa-chevron-right:before, .fa-chevron-right-after:after {
	content:"\f054";
}
.fa-plus-circle:before, .fa-plus-circle-after:after {
	content:"\f055";
}
.fa-minus-circle:before, .fa-minus-circle-after:after {
	content:"\f056";
}
.fa-times-circle:before, .fa-times-circle-after:after {
	content:"\f057";
}
.fa-check-circle:before, .fa-check-circle-after:after {
	content:"\f058";
}
.fa-question-circle:before, .fa-question-circle-after:after {
	content:"\f059";
}
.fa-info-circle:before, .fa-info-circle-after:after {
	content:"\f05a";
}
.fa-crosshairs:before, .fa-crosshairs-after:after {
	content:"\f05b";
}
.fa-times-circle-o:before, .fa-times-circle-o-after:after {
	content:"\f05c";
}
.fa-check-circle-o:before, .fa-check-circle-o-after:after {
	content:"\f05d";
}
.fa-ban:before, .fa-ban-after:after {
	content:"\f05e";
}
.fa-arrow-left:before, .fa-arrow-left-after:after {
	content:"\f060";
}
.fa-arrow-right:before, .fa-arrow-right-after:after {
	content:"\f061";
}
.fa-arrow-up:before, .fa-arrow-up-after:after {
	content:"\f062";
}
.fa-arrow-down:before, .fa-arrow-down-after:after {
	content:"\f063";
}
.fa-mail-forward:before, .fa-mail-forward-after:after,
.fa-share:before, .fa-share-after:after {
	content:"\f064";
}
.fa-expand:before, .fa-expand-after:after {
	content:"\f065";
}
.fa-compress:before, .fa-compress-after:after {
	content:"\f066";
}
.fa-plus:before, .fa-plus-after:after {
	content:"\f067";
}
.fa-minus:before, .fa-minus-after:after {
	content:"\f068";
}
.fa-asterisk:before, .fa-asterisk-after:after {
	content:"\f069";
}
.fa-exclamation-circle:before, .fa-exclamation-circle-after:after {
	content:"\f06a";
}
.fa-gift:before, .fa-gift-after:after {
	content:"\f06b";
}
.fa-leaf:before, .fa-leaf-after:after {
	content:"\f06c";
}
.fa-fire:before, .fa-fire-after:after {
	content:"\f06d";
}
.fa-eye:before, .fa-eye-after:after {
	content:"\f06e";
}
.fa-eye-slash:before, .fa-eye-slash-after:after {
	content:"\f070";
}
.fa-warning:before, .fa-warning-after:after,
.fa-exclamation-triangle:before, .fa-exclamation-triangle-after:after {
	content:"\f071";
}
.fa-plane:before, .fa-plane-after:after {
	content:"\f072";
}
.fa-calendar:before, .fa-calendar-after:after {
	content:"\f073";
}
.fa-random:before, .fa-random-after:after {
	content:"\f074";
}
.fa-comment:before, .fa-comment-after:after {
	content:"\f075";
}
.fa-magnet:before, .fa-magnet-after:after {
	content:"\f076";
}
.fa-chevron-up:before, .fa-chevron-up-after:after {
	content:"\f077";
}
.fa-chevron-down:before, .fa-chevron-down-after:after {
	content:"\f078";
}
.fa-retweet:before, .fa-retweet-after:after {
	content:"\f079";
}
.fa-shopping-cart:before, .fa-shopping-cart-after:after {
	content:"\f07a";
}
.fa-folder:before, .fa-folder-after:after {
	content:"\f07b";
}
.fa-folder-open:before, .fa-folder-open-after:after {
	content:"\f07c";
}
.fa-arrows-v:before, .fa-arrows-v-after:after {
	content:"\f07d";
}
.fa-arrows-h:before, .fa-arrows-h-after:after {
	content:"\f07e";
}
.fa-bar-chart-o:before, .fa-bar-chart-o-after:after,
.fa-bar-chart:before, .fa-bar-chart-after:after {
	content:"\f080";
}
.fa-twitter-square:before, .fa-twitter-square-after:after {
	content:"\f081";
}
.fa-facebook-square:before, .fa-facebook-square-after:after {
	content:"\f082";
}
.fa-camera-retro:before, .fa-camera-retro-after:after {
	content:"\f083";
}
.fa-key:before, .fa-key-after:after {
	content:"\f084";
}
.fa-gears:before, .fa-gears-after:after,
.fa-cogs:before, .fa-cogs-after:after {
	content:"\f085";
}
.fa-comments:before, .fa-comments-after:after {
	content:"\f086";
}
.fa-thumbs-o-up:before, .fa-thumbs-o-up-after:after {
	content:"\f087";
}
.fa-thumbs-o-down:before, .fa-thumbs-o-down-after:after {
	content:"\f088";
}
.fa-star-half:before, .fa-star-half-after:after {
	content:"\f089";
}
.fa-heart-o:before, .fa-heart-o-after:after {
	content:"\f08a";
}
.fa-sign-out:before, .fa-sign-out-after:after {
	content:"\f08b";
}
.fa-linkedin-square:before, .fa-linkedin-square-after:after {
	content:"\f08c";
}
.fa-thumb-tack:before, .fa-thumb-tack-after:after {
	content:"\f08d";
}
.fa-external-link:before, .fa-external-link-after:after {
	content:"\f08e";
}
.fa-sign-in:before, .fa-sign-in-after:after {
	content:"\f090";
}
.fa-trophy:before, .fa-trophy-after:after {
	content:"\f091";
}
.fa-github-square:before, .fa-github-square-after:after {
	content:"\f092";
}
.fa-upload:before, .fa-upload-after:after {
	content:"\f093";
}
.fa-lemon-o:before, .fa-lemon-o-after:after {
	content:"\f094";
}
.fa-phone:before, .fa-phone-after:after {
	content:"\f095";
}
.fa-square-o:before, .fa-square-o-after:after {
	content:"\f096";
}
.fa-bookmark-o:before, .fa-bookmark-o-after:after {
	content:"\f097";
}
.fa-phone-square:before, .fa-phone-square-after:after {
	content:"\f098";
}
.fa-twitter:before, .fa-twitter-after:after {
	content:"\f099";
}
.fa-facebook:before, .fa-facebook-after:after {
	content:"\f09a";
}
.fa-github:before, .fa-github-after:after {
	content:"\f09b";
}
.fa-unlock:before, .fa-unlock-after:after {
	content:"\f09c";
}
.fa-credit-card:before, .fa-credit-card-after:after {
	content:"\f09d";
}
.fa-rss:before, .fa-rss-after:after {
	content:"\f09e";
}
.fa-hdd-o:before, .fa-hdd-o-after:after {
	content:"\f0a0";
}
.fa-bullhorn:before, .fa-bullhorn-after:after {
	content:"\f0a1";
}
.fa-bell:before, .fa-bell-after:after {
	content:"\f0f3";
}
.fa-certificate:before, .fa-certificate-after:after {
	content:"\f0a3";
}
.fa-hand-o-right:before, .fa-hand-o-right-after:after {
	content:"\f0a4";
}
.fa-hand-o-left:before, .fa-hand-o-left-after:after {
	content:"\f0a5";
}
.fa-hand-o-up:before, .fa-hand-o-up-after:after {
	content:"\f0a6";
}
.fa-hand-o-down:before, .fa-hand-o-down-after:after {
	content:"\f0a7";
}
.fa-arrow-circle-left:before, .fa-arrow-circle-left-after:after {
	content:"\f0a8";
}
.fa-arrow-circle-right:before, .fa-arrow-circle-right-after:after {
	content:"\f0a9";
}
.fa-arrow-circle-up:before, .fa-arrow-circle-up-after:after {
	content:"\f0aa";
}
.fa-arrow-circle-down:before, .fa-arrow-circle-down-after:after {
	content:"\f0ab";
}
.fa-globe:before, .fa-globe-after:after {
	content:"\f0ac";
}
.fa-wrench:before, .fa-wrench-after:after {
	content:"\f0ad";
}
.fa-tasks:before, .fa-tasks-after:after {
	content:"\f0ae";
}
.fa-filter:before, .fa-filter-after:after {
	content:"\f0b0";
}
.fa-briefcase:before, .fa-briefcase-after:after {
	content:"\f0b1";
}
.fa-arrows-alt:before, .fa-arrows-alt-after:after {
	content:"\f0b2";
}
.fa-group:before, .fa-group-after:after,
.fa-users:before, .fa-users-after:after {
	content:"\f0c0";
}
.fa-chain:before, .fa-chain-after:after,
.fa-link:before, .fa-link-after:after {
	content:"\f0c1";
}
.fa-cloud:before, .fa-cloud-after:after {
	content:"\f0c2";
}
.fa-flask:before, .fa-flask-after:after {
	content:"\f0c3";
}
.fa-cut:before, .fa-cut-after:after,
.fa-scissors:before, .fa-scissors-after:after {
	content:"\f0c4";
}
.fa-copy:before, .fa-copy-after:after,
.fa-files-o:before, .fa-files-o-after:after {
	content:"\f0c5";
}
.fa-paperclip:before, .fa-paperclip-after:after {
	content:"\f0c6";
}
.fa-save:before, .fa-save-after:after,
.fa-floppy-o:before, .fa-floppy-o-after:after {
	content:"\f0c7";
}
.fa-square:before, .fa-square-after:after {
	content:"\f0c8";
}
.fa-navicon:before, .fa-navicon-after:after,
.fa-reorder:before, .fa-reorder-after:after,
.fa-bars:before, .fa-bars-after:after {
	content:"\f0c9";
}
.fa-list-ul:before, .fa-list-ul-after:after {
	content:"\f0ca";
}
.fa-list-ol:before, .fa-list-ol-after:after {
	content:"\f0cb";
}
.fa-strikethrough:before, .fa-strikethrough-after:after {
	content:"\f0cc";
}
.fa-underline:before, .fa-underline-after:after {
	content:"\f0cd";
}
.fa-table:before, .fa-table-after:after {
	content:"\f0ce";
}
.fa-magic:before, .fa-magic-after:after {
	content:"\f0d0";
}
.fa-truck:before, .fa-truck-after:after {
	content:"\f0d1";
}
.fa-pinterest:before, .fa-pinterest-after:after {
	content:"\f0d2";
}
.fa-pinterest-square:before, .fa-pinterest-square-after:after {
	content:"\f0d3";
}
.fa-google-plus-square:before, .fa-google-plus-square-after:after {
	content:"\f0d4";
}
.fa-google-plus:before, .fa-google-plus-after:after {
	content:"\f0d5";
}
.fa-money:before, .fa-money-after:after {
	content:"\f0d6";
}
.fa-caret-down:before, .fa-caret-down-after:after {
	content:"\f0d7";
}
.fa-caret-up:before, .fa-caret-up-after:after {
	content:"\f0d8";
}
.fa-caret-left:before, .fa-caret-left-after:after {
	content:"\f0d9";
}
.fa-caret-right:before, .fa-caret-right-after:after {
	content:"\f0da";
}
.fa-columns:before, .fa-columns-after:after {
	content:"\f0db";
}
.fa-unsorted:before, .fa-unsorted-after:after,
.fa-sort:before, .fa-sort-after:after {
	content:"\f0dc";
}
.fa-sort-down:before, .fa-sort-down-after:after,
.fa-sort-desc:before, .fa-sort-desc-after:after {
	content:"\f0dd";
}
.fa-sort-up:before, .fa-sort-up-after:after,
.fa-sort-asc:before, .fa-sort-asc-after:after {
	content:"\f0de";
}
.fa-envelope:before, .fa-envelope-after:after {
	content:"\f0e0";
}
.fa-linkedin:before, .fa-linkedin-after:after {
	content:"\f0e1";
}
.fa-rotate-left:before, .fa-rotate-left-after:after,
.fa-undo:before, .fa-undo-after:after {
	content:"\f0e2";
}
.fa-legal:before, .fa-legal-after:after,
.fa-gavel:before, .fa-gavel-after:after {
	content:"\f0e3";
}
.fa-dashboard:before, .fa-dashboard-after:after,
.fa-tachometer:before, .fa-tachometer-after:after {
	content:"\f0e4";
}
.fa-comment-o:before, .fa-comment-o-after:after {
	content:"\f0e5";
}
.fa-comments-o:before, .fa-comments-o-after:after {
	content:"\f0e6";
}
.fa-flash:before, .fa-flash-after:after,
.fa-bolt:before, .fa-bolt-after:after {
	content:"\f0e7";
}
.fa-sitemap:before, .fa-sitemap-after:after {
	content:"\f0e8";
}
.fa-umbrella:before, .fa-umbrella-after:after {
	content:"\f0e9";
}
.fa-paste:before, .fa-paste-after:after,
.fa-clipboard:before, .fa-clipboard-after:after {
	content:"\f0ea";
}
.fa-lightbulb-o:before, .fa-lightbulb-o-after:after {
	content:"\f0eb";
}
.fa-exchange:before, .fa-exchange-after:after {
	content:"\f0ec";
}
.fa-cloud-download:before, .fa-cloud-download-after:after {
	content:"\f0ed";
}
.fa-cloud-upload:before, .fa-cloud-upload-after:after {
	content:"\f0ee";
}
.fa-user-md:before, .fa-user-md-after:after {
	content:"\f0f0";
}
.fa-stethoscope:before, .fa-stethoscope-after:after {
	content:"\f0f1";
}
.fa-suitcase:before, .fa-suitcase-after:after {
	content:"\f0f2";
}
.fa-bell-o:before, .fa-bell-o-after:after {
	content:"\f0a2";
}
.fa-coffee:before, .fa-coffee-after:after {
	content:"\f0f4";
}
.fa-cutlery:before, .fa-cutlery-after:after {
	content:"\f0f5";
}
.fa-file-text-o:before, .fa-file-text-o-after:after {
	content:"\f0f6";
}
.fa-building-o:before, .fa-building-o-after:after {
	content:"\f0f7";
}
.fa-hospital-o:before, .fa-hospital-o-after:after {
	content:"\f0f8";
}
.fa-ambulance:before, .fa-ambulance-after:after {
	content:"\f0f9";
}
.fa-medkit:before, .fa-medkit-after:after {
	content:"\f0fa";
}
.fa-fighter-jet:before, .fa-fighter-jet-after:after {
	content:"\f0fb";
}
.fa-beer:before, .fa-beer-after:after {
	content:"\f0fc";
}
.fa-h-square:before, .fa-h-square-after:after {
	content:"\f0fd";
}
.fa-plus-square:before, .fa-plus-square-after:after {
	content:"\f0fe";
}
.fa-angle-double-left:before, .fa-angle-double-left-after:after {
	content:"\f100";
}
.fa-angle-double-right:before, .fa-angle-double-right-after:after {
	content:"\f101";
}
.fa-angle-double-up:before, .fa-angle-double-up-after:after {
	content:"\f102";
}
.fa-angle-double-down:before, .fa-angle-double-down-after:after {
	content:"\f103";
}
.fa-angle-left:before, .fa-angle-left-after:after {
	content:"\f104";
}
.fa-angle-right:before, .fa-angle-right-after:after {
	content:"\f105";
}
.fa-angle-up:before, .fa-angle-up-after:after {
	content:"\f106";
}
.fa-angle-down:before, .fa-angle-down-after:after {
	content:"\f107";
}
.fa-desktop:before, .fa-desktop-after:after {
	content:"\f108";
}
.fa-laptop:before, .fa-laptop-after:after {
	content:"\f109";
}
.fa-tablet:before, .fa-tablet-after:after {
	content:"\f10a";
}
.fa-mobile-phone:before, .fa-mobile-phone-after:after,
.fa-mobile:before, .fa-mobile-after:after {
	content:"\f10b";
}
.fa-circle-o:before, .fa-circle-o-after:after {
	content:"\f10c";
}
.fa-quote-left:before, .fa-quote-left-after:after {
	content:"\f10d";
}
.fa-quote-right:before, .fa-quote-right-after:after {
	content:"\f10e";
}
.fa-spinner:before, .fa-spinner-after:after {
	content:"\f110";
}
.fa-circle:before, .fa-circle-after:after {
	content:"\f111";
}
.fa-mail-reply:before, .fa-mail-reply-after:after,
.fa-reply:before, .fa-reply-after:after {
	content:"\f112";
}
.fa-github-alt:before, .fa-github-alt-after:after {
	content:"\f113";
}
.fa-folder-o:before, .fa-folder-o-after:after {
	content:"\f114";
}
.fa-folder-open-o:before, .fa-folder-open-o-after:after {
	content:"\f115";
}
.fa-smile-o:before, .fa-smile-o-after:after {
	content:"\f118";
}
.fa-frown-o:before, .fa-frown-o-after:after {
	content:"\f119";
}
.fa-meh-o:before, .fa-meh-o-after:after {
	content:"\f11a";
}
.fa-gamepad:before, .fa-gamepad-after:after {
	content:"\f11b";
}
.fa-keyboard-o:before, .fa-keyboard-o-after:after {
	content:"\f11c";
}
.fa-flag-o:before, .fa-flag-o-after:after {
	content:"\f11d";
}
.fa-flag-checkered:before, .fa-flag-checkered-after:after {
	content:"\f11e";
}
.fa-terminal:before, .fa-terminal-after:after {
	content:"\f120";
}
.fa-code:before, .fa-code-after:after {
	content:"\f121";
}
.fa-mail-reply-all:before, .fa-mail-reply-all-after:after,
.fa-reply-all:before, .fa-reply-all-after:after {
	content:"\f122";
}
.fa-star-half-empty:before, .fa-star-half-empty-after:after,
.fa-star-half-full:before, .fa-star-half-full-after:after,
.fa-star-half-o:before, .fa-star-half-o-after:after {
	content:"\f123";
}
.fa-location-arrow:before, .fa-location-arrow-after:after {
	content:"\f124";
}
.fa-crop:before, .fa-crop-after:after {
	content:"\f125";
}
.fa-code-fork:before, .fa-code-fork-after:after {
	content:"\f126";
}
.fa-unlink:before, .fa-unlink-after:after,
.fa-chain-broken:before, .fa-chain-broken-after:after {
	content:"\f127";
}
.fa-question:before, .fa-question-after:after {
	content:"\f128";
}
.fa-info:before, .fa-info-after:after {
	content:"\f129";
}
.fa-exclamation:before, .fa-exclamation-after:after {
	content:"\f12a";
}
.fa-superscript:before, .fa-superscript-after:after {
	content:"\f12b";
}
.fa-subscript:before, .fa-subscript-after:after {
	content:"\f12c";
}
.fa-eraser:before, .fa-eraser-after:after {
	content:"\f12d";
}
.fa-puzzle-piece:before, .fa-puzzle-piece-after:after {
	content:"\f12e";
}
.fa-microphone:before, .fa-microphone-after:after {
	content:"\f130";
}
.fa-microphone-slash:before, .fa-microphone-slash-after:after {
	content:"\f131";
}
.fa-shield:before, .fa-shield-after:after {
	content:"\f132";
}
.fa-calendar-o:before, .fa-calendar-o-after:after {
	content:"\f133";
}
.fa-fire-extinguisher:before, .fa-fire-extinguisher-after:after {
	content:"\f134";
}
.fa-rocket:before, .fa-rocket-after:after {
	content:"\f135";
}
.fa-maxcdn:before, .fa-maxcdn-after:after {
	content:"\f136";
}
.fa-chevron-circle-left:before, .fa-chevron-circle-left-after:after {
	content:"\f137";
}
.fa-chevron-circle-right:before, .fa-chevron-circle-right-after:after {
	content:"\f138";
}
.fa-chevron-circle-up:before, .fa-chevron-circle-up-after:after {
	content:"\f139";
}
.fa-chevron-circle-down:before, .fa-chevron-circle-down-after:after {
	content:"\f13a";
}
.fa-html5:before, .fa-html5-after:after {
	content:"\f13b";
}
.fa-css3:before, .fa-css3-after:after {
	content:"\f13c";
}
.fa-anchor:before, .fa-anchor-after:after {
	content:"\f13d";
}
.fa-unlock-alt:before, .fa-unlock-alt-after:after {
	content:"\f13e";
}
.fa-bullseye:before, .fa-bullseye-after:after {
	content:"\f140";
}
.fa-ellipsis-h:before, .fa-ellipsis-h-after:after {
	content:"\f141";
}
.fa-ellipsis-v:before, .fa-ellipsis-v-after:after {
	content:"\f142";
}
.fa-rss-square:before, .fa-rss-square-after:after {
	content:"\f143";
}
.fa-play-circle:before, .fa-play-circle-after:after {
	content:"\f144";
}
.fa-ticket:before, .fa-ticket-after:after {
	content:"\f145";
}
.fa-minus-square:before, .fa-minus-square-after:after {
	content:"\f146";
}
.fa-minus-square-o:before, .fa-minus-square-o-after:after {
	content:"\f147";
}
.fa-level-up:before, .fa-level-up-after:after {
	content:"\f148";
}
.fa-level-down:before, .fa-level-down-after:after {
	content:"\f149";
}
.fa-check-square:before, .fa-check-square-after:after {
	content:"\f14a";
}
.fa-pencil-square:before, .fa-pencil-square-after:after {
	content:"\f14b";
}
.fa-external-link-square:before, .fa-external-link-square-after:after {
	content:"\f14c";
}
.fa-share-square:before, .fa-share-square-after:after {
	content:"\f14d";
}
.fa-compass:before, .fa-compass-after:after {
	content:"\f14e";
}
.fa-toggle-down:before, .fa-toggle-down-after:after,
.fa-caret-square-o-down:before, .fa-caret-square-o-down-after:after {
	content:"\f150";
}
.fa-toggle-up:before, .fa-toggle-up-after:after,
.fa-caret-square-o-up:before, .fa-caret-square-o-up-after:after {
	content:"\f151";
}
.fa-toggle-right:before, .fa-toggle-right-after:after,
.fa-caret-square-o-right:before, .fa-caret-square-o-right-after:after {
	content:"\f152";
}
.fa-euro:before, .fa-euro-after:after,
.fa-eur:before, .fa-eur-after:after {
	content:"\f153";
}
.fa-gbp:before, .fa-gbp-after:after {
	content:"\f154";
}
.fa-dollar:before, .fa-dollar-after:after,
.fa-usd:before, .fa-usd-after:after {
	content:"\f155";
}
.fa-rupee:before, .fa-rupee-after:after,
.fa-inr:before, .fa-inr-after:after {
	content:"\f156";
}
.fa-cny:before, .fa-cny-after:after,
.fa-rmb:before, .fa-rmb-after:after,
.fa-yen:before, .fa-yen-after:after,
.fa-jpy:before, .fa-jpy-after:after {
	content:"\f157";
}
.fa-ruble:before, .fa-ruble-after:after,
.fa-rouble:before, .fa-rouble-after:after,
.fa-rub:before, .fa-rub-after:after {
	content:"\f158";
}
.fa-won:before, .fa-won-after:after,
.fa-krw:before, .fa-krw-after:after {
	content:"\f159";
}
.fa-bitcoin:before, .fa-bitcoin-after:after,
.fa-btc:before, .fa-btc-after:after {
	content:"\f15a";
}
.fa-file:before, .fa-file-after:after {
	content:"\f15b";
}
.fa-file-text:before, .fa-file-text-after:after {
	content:"\f15c";
}
.fa-sort-alpha-asc:before, .fa-sort-alpha-asc-after:after {
	content:"\f15d";
}
.fa-sort-alpha-desc:before, .fa-sort-alpha-desc-after:after {
	content:"\f15e";
}
.fa-sort-amount-asc:before, .fa-sort-amount-asc-after:after {
	content:"\f160";
}
.fa-sort-amount-desc:before, .fa-sort-amount-desc-after:after {
	content:"\f161";
}
.fa-sort-numeric-asc:before, .fa-sort-numeric-asc-after:after {
	content:"\f162";
}
.fa-sort-numeric-desc:before, .fa-sort-numeric-desc-after:after {
	content:"\f163";
}
.fa-thumbs-up:before, .fa-thumbs-up-after:after {
	content:"\f164";
}
.fa-thumbs-down:before, .fa-thumbs-down-after:after {
	content:"\f165";
}
.fa-youtube-square:before, .fa-youtube-square-after:after {
	content:"\f166";
}
.fa-youtube:before, .fa-youtube-after:after {
	content:"\f167";
}
.fa-xing:before, .fa-xing-after:after {
	content:"\f168";
}
.fa-xing-square:before, .fa-xing-square-after:after {
	content:"\f169";
}
.fa-youtube-play:before, .fa-youtube-play-after:after {
	content:"\f16a";
}
.fa-dropbox:before, .fa-dropbox-after:after {
	content:"\f16b";
}
.fa-stack-overflow:before, .fa-stack-overflow-after:after {
	content:"\f16c";
}
.fa-instagram:before, .fa-instagram-after:after {
	content:"\f16d";
}
.fa-flickr:before, .fa-flickr-after:after {
	content:"\f16e";
}
.fa-adn:before, .fa-adn-after:after {
	content:"\f170";
}
.fa-bitbucket:before, .fa-bitbucket-after:after {
	content:"\f171";
}
.fa-bitbucket-square:before, .fa-bitbucket-square-after:after {
	content:"\f172";
}
.fa-tumblr:before, .fa-tumblr-after:after {
	content:"\f173";
}
.fa-tumblr-square:before, .fa-tumblr-square-after:after {
	content:"\f174";
}
.fa-long-arrow-down:before, .fa-long-arrow-down-after:after {
	content:"\f175";
}
.fa-long-arrow-up:before, .fa-long-arrow-up-after:after {
	content:"\f176";
}
.fa-long-arrow-left:before, .fa-long-arrow-left-after:after {
	content:"\f177";
}
.fa-long-arrow-right:before, .fa-long-arrow-right-after:after {
	content:"\f178";
}
.fa-apple:before, .fa-apple-after:after {
	content:"\f179";
}
.fa-windows:before, .fa-windows-after:after {
	content:"\f17a";
}
.fa-android:before, .fa-android-after:after {
	content:"\f17b";
}
.fa-linux:before, .fa-linux-after:after {
	content:"\f17c";
}
.fa-dribbble:before, .fa-dribbble-after:after {
	content:"\f17d";
}
.fa-skype:before, .fa-skype-after:after {
	content:"\f17e";
}
.fa-foursquare:before, .fa-foursquare-after:after {
	content:"\f180";
}
.fa-trello:before, .fa-trello-after:after {
	content:"\f181";
}
.fa-female:before, .fa-female-after:after {
	content:"\f182";
}
.fa-male:before, .fa-male-after:after {
	content:"\f183";
}
.fa-gittip:before, .fa-gittip-after:after {
	content:"\f184";
}
.fa-sun-o:before, .fa-sun-o-after:after {
	content:"\f185";
}
.fa-moon-o:before, .fa-moon-o-after:after {
	content:"\f186";
}
.fa-archive:before, .fa-archive-after:after {
	content:"\f187";
}
.fa-bug:before, .fa-bug-after:after {
	content:"\f188";
}
.fa-vk:before, .fa-vk-after:after {
	content:"\f189";
}
.fa-weibo:before, .fa-weibo-after:after {
	content:"\f18a";
}
.fa-renren:before, .fa-renren-after:after {
	content:"\f18b";
}
.fa-pagelines:before, .fa-pagelines-after:after {
	content:"\f18c";
}
.fa-stack-exchange:before, .fa-stack-exchange-after:after {
	content:"\f18d";
}
.fa-arrow-circle-o-right:before, .fa-arrow-circle-o-right-after:after {
	content:"\f18e";
}
.fa-arrow-circle-o-left:before, .fa-arrow-circle-o-left-after:after {
	content:"\f190";
}
.fa-toggle-left:before, .fa-toggle-left-after:after,
.fa-caret-square-o-left:before, .fa-caret-square-o-left-after:after {
	content:"\f191";
}
.fa-dot-circle-o:before, .fa-dot-circle-o-after:after {
	content:"\f192";
}
.fa-wheelchair:before, .fa-wheelchair-after:after {
	content:"\f193";
}
.fa-vimeo-square:before, .fa-vimeo-square-after:after {
	content:"\f194";
}
.fa-turkish-lira:before, .fa-turkish-lira-after:after,
.fa-try:before, .fa-try-after:after {
	content:"\f195";
}
.fa-plus-square-o:before, .fa-plus-square-o-after:after {
	content:"\f196";
}
.fa-space-shuttle:before, .fa-space-shuttle-after:after {
	content:"\f197";
}
.fa-slack:before, .fa-slack-after:after {
	content:"\f198";
}
.fa-envelope-square:before, .fa-envelope-square-after:after {
	content:"\f199";
}
.fa-wordpress:before, .fa-wordpress-after:after {
	content:"\f19a";
}
.fa-openid:before, .fa-openid-after:after {
	content:"\f19b";
}
.fa-institution:before, .fa-institution-after:after,
.fa-bank:before, .fa-bank-after:after,
.fa-university:before, .fa-university-after:after {
	content:"\f19c";
}
.fa-mortar-board:before, .fa-mortar-board-after:after,
.fa-graduation-cap:before, .fa-graduation-cap-after:after {
	content:"\f19d";
}
.fa-yahoo:before, .fa-yahoo-after:after {
	content:"\f19e";
}
.fa-google:before, .fa-google-after:after {
	content:"\f1a0";
}
.fa-reddit:before, .fa-reddit-after:after {
	content:"\f1a1";
}
.fa-reddit-square:before, .fa-reddit-square-after:after {
	content:"\f1a2";
}
.fa-stumbleupon-circle:before, .fa-stumbleupon-circle-after:after {
	content:"\f1a3";
}
.fa-stumbleupon:before, .fa-stumbleupon-after:after {
	content:"\f1a4";
}
.fa-delicious:before, .fa-delicious-after:after {
	content:"\f1a5";
}
.fa-digg:before, .fa-digg-after:after {
	content:"\f1a6";
}
.fa-pied-piper:before, .fa-pied-piper-after:after {
	content:"\f1a7";
}
.fa-pied-piper-alt:before, .fa-pied-piper-alt-after:after {
	content:"\f1a8";
}
.fa-drupal:before, .fa-drupal-after:after {
	content:"\f1a9";
}
.fa-joomla:before, .fa-joomla-after:after {
	content:"\f1aa";
}
.fa-language:before, .fa-language-after:after {
	content:"\f1ab";
}
.fa-fax:before, .fa-fax-after:after {
	content:"\f1ac";
}
.fa-building:before, .fa-building-after:after {
	content:"\f1ad";
}
.fa-child:before, .fa-child-after:after {
	content:"\f1ae";
}
.fa-paw:before, .fa-paw-after:after {
	content:"\f1b0";
}
.fa-spoon:before, .fa-spoon-after:after {
	content:"\f1b1";
}
.fa-cube:before, .fa-cube-after:after {
	content:"\f1b2";
}
.fa-cubes:before, .fa-cubes-after:after {
	content:"\f1b3";
}
.fa-behance:before, .fa-behance-after:after {
	content:"\f1b4";
}
.fa-behance-square:before, .fa-behance-square-after:after {
	content:"\f1b5";
}
.fa-steam:before, .fa-steam-after:after {
	content:"\f1b6";
}
.fa-steam-square:before, .fa-steam-square-after:after {
	content:"\f1b7";
}
.fa-recycle:before, .fa-recycle-after:after {
	content:"\f1b8";
}
.fa-automobile:before, .fa-automobile-after:after,
.fa-car:before, .fa-car-after:after {
	content:"\f1b9";
}
.fa-cab:before, .fa-cab-after:after,
.fa-taxi:before, .fa-taxi-after:after {
	content:"\f1ba";
}
.fa-tree:before, .fa-tree-after:after {
	content:"\f1bb";
}
.fa-spotify:before, .fa-spotify-after:after {
	content:"\f1bc";
}
.fa-deviantart:before, .fa-deviantart-after:after {
	content:"\f1bd";
}
.fa-soundcloud:before, .fa-soundcloud-after:after {
	content:"\f1be";
}
.fa-database:before, .fa-database-after:after {
	content:"\f1c0";
}
.fa-file-pdf-o:before, .fa-file-pdf-o-after:after {
	content:"\f1c1";
}
.fa-file-word-o:before, .fa-file-word-o-after:after {
	content:"\f1c2";
}
.fa-file-excel-o:before, .fa-file-excel-o-after:after {
	content:"\f1c3";
}
.fa-file-powerpoint-o:before, .fa-file-powerpoint-o-after:after {
	content:"\f1c4";
}
.fa-file-photo-o:before, .fa-file-photo-o-after:after,
.fa-file-picture-o:before, .fa-file-picture-o-after:after,
.fa-file-image-o:before, .fa-file-image-o-after:after {
	content:"\f1c5";
}
.fa-file-zip-o:before, .fa-file-zip-o-after:after,
.fa-file-archive-o:before, .fa-file-archive-o-after:after {
	content:"\f1c6";
}
.fa-file-sound-o:before, .fa-file-sound-o-after:after,
.fa-file-audio-o:before, .fa-file-audio-o-after:after {
	content:"\f1c7";
}
.fa-file-movie-o:before, .fa-file-movie-o-after:after,
.fa-file-video-o:before, .fa-file-video-o-after:after {
	content:"\f1c8";
}
.fa-file-code-o:before, .fa-file-code-o-after:after {
	content:"\f1c9";
}
.fa-vine:before, .fa-vine-after:after {
	content:"\f1ca";
}
.fa-codepen:before, .fa-codepen-after:after {
	content:"\f1cb";
}
.fa-jsfiddle:before, .fa-jsfiddle-after:after {
	content:"\f1cc";
}
.fa-life-bouy:before, .fa-life-bouy-after:after,
.fa-life-buoy:before, .fa-life-buoy-after:after,
.fa-life-saver:before, .fa-life-saver-after:after,
.fa-support:before, .fa-support-after:after,
.fa-life-ring:before, .fa-life-ring-after:after {
	content:"\f1cd";
}
.fa-circle-o-notch:before, .fa-circle-o-notch-after:after {
	content:"\f1ce";
}
.fa-ra:before, .fa-ra-after:after,
.fa-rebel:before, .fa-rebel-after:after {
	content:"\f1d0";
}
.fa-ge:before, .fa-ge-after:after,
.fa-empire:before, .fa-empire-after:after {
	content:"\f1d1";
}
.fa-git-square:before, .fa-git-square-after:after {
	content:"\f1d2";
}
.fa-git:before, .fa-git-after:after {
	content:"\f1d3";
}
.fa-hacker-news:before, .fa-hacker-news-after:after {
	content:"\f1d4";
}
.fa-tencent-weibo:before, .fa-tencent-weibo-after:after {
	content:"\f1d5";
}
.fa-qq:before, .fa-qq-after:after {
	content:"\f1d6";
}
.fa-wechat:before, .fa-wechat-after:after,
.fa-weixin:before, .fa-weixin-after:after {
	content:"\f1d7";
}
.fa-send:before, .fa-send-after:after,
.fa-paper-plane:before, .fa-paper-plane-after:after {
	content:"\f1d8";
}
.fa-send-o:before, .fa-send-o-after:after,
.fa-paper-plane-o:before, .fa-paper-plane-o-after:after {
	content:"\f1d9";
}
.fa-history:before, .fa-history-after:after {
	content:"\f1da";
}
.fa-circle-thin:before, .fa-circle-thin-after:after {
	content:"\f1db";
}
.fa-header:before, .fa-header-after:after {
	content:"\f1dc";
}
.fa-paragraph:before, .fa-paragraph-after:after {
	content:"\f1dd";
}
.fa-sliders:before, .fa-sliders-after:after {
	content:"\f1de";
}
.fa-share-alt:before, .fa-share-alt-after:after {
	content:"\f1e0";
}
.fa-share-alt-square:before, .fa-share-alt-square-after:after {
	content:"\f1e1";
}
.fa-bomb:before, .fa-bomb-after:after {
	content:"\f1e2";
}
.fa-soccer-ball-o:before, .fa-soccer-ball-o-after:after,
.fa-futbol-o:before, .fa-futbol-o-after:after {
	content:"\f1e3";
}
.fa-tty:before, .fa-tty-after:after {
	content:"\f1e4";
}
.fa-binoculars:before, .fa-binoculars-after:after {
	content:"\f1e5";
}
.fa-plug:before, .fa-plug-after:after {
	content:"\f1e6";
}
.fa-slideshare:before, .fa-slideshare-after:after {
	content:"\f1e7";
}
.fa-twitch:before, .fa-twitch-after:after {
	content:"\f1e8";
}
.fa-yelp:before, .fa-yelp-after:after {
	content:"\f1e9";
}
.fa-newspaper-o:before, .fa-newspaper-o-after:after {
	content:"\f1ea";
}
.fa-wifi:before, .fa-wifi-after:after {
	content:"\f1eb";
}
.fa-calculator:before, .fa-calculator-after:after {
	content:"\f1ec";
}
.fa-paypal:before, .fa-paypal-after:after {
	content:"\f1ed";
}
.fa-google-wallet:before, .fa-google-wallet-after:after {
	content:"\f1ee";
}
.fa-cc-visa:before, .fa-cc-visa-after:after {
	content:"\f1f0";
}
.fa-cc-mastercard:before, .fa-cc-mastercard-after:after {
	content:"\f1f1";
}
.fa-cc-discover:before, .fa-cc-discover-after:after {
	content:"\f1f2";
}
.fa-cc-amex:before, .fa-cc-amex-after:after {
	content:"\f1f3";
}
.fa-cc-paypal:before, .fa-cc-paypal-after:after {
	content:"\f1f4";
}
.fa-cc-stripe:before, .fa-cc-stripe-after:after {
	content:"\f1f5";
}
.fa-bell-slash:before, .fa-bell-slash-after:after {
	content:"\f1f6";
}
.fa-bell-slash-o:before, .fa-bell-slash-o-after:after {
	content:"\f1f7";
}
.fa-trash:before, .fa-trash-after:after {
	content:"\f1f8";
}
.fa-copyright:before, .fa-copyright-after:after {
	content:"\f1f9";
}
.fa-at:before, .fa-at-after:after {
	content:"\f1fa";
}
.fa-eyedropper:before, .fa-eyedropper-after:after {
	content:"\f1fb";
}
.fa-paint-brush:before, .fa-paint-brush-after:after {
	content:"\f1fc";
}
.fa-birthday-cake:before, .fa-birthday-cake-after:after {
	content:"\f1fd";
}
.fa-area-chart:before, .fa-area-chart-after:after {
	content:"\f1fe";
}
.fa-pie-chart:before, .fa-pie-chart-after:after {
	content:"\f200";
}
.fa-line-chart:before, .fa-line-chart-after:after {
	content:"\f201";
}
.fa-lastfm:before, .fa-lastfm-after:after {
	content:"\f202";
}
.fa-lastfm-square:before, .fa-lastfm-square-after:after {
	content:"\f203";
}
.fa-toggle-off:before, .fa-toggle-off-after:after {
	content:"\f204";
}
.fa-toggle-on:before, .fa-toggle-on-after:after {
	content:"\f205";
}
.fa-bicycle:before, .fa-bicycle-after:after {
	content:"\f206";
}
.fa-bus:before, .fa-bus-after:after {
	content:"\f207";
}
.fa-ioxhost:before, .fa-ioxhost-after:after {
	content:"\f208";
}
.fa-angellist:before, .fa-angellist-after:after {
	content:"\f209";
}
.fa-cc:before, .fa-cc-after:after {
	content:"\f20a";
}
.fa-shekel:before, .fa-shekel-after:after,
.fa-sheqel:before, .fa-sheqel-after:after,
.fa-ils:before, .fa-ils-after:after {
	content:"\f20b";
}
.fa-meanpath:before, .fa-meanpath-after:after {
	content:"\f20c";
}
.fa-buysellads:before, .fa-buysellads-after:after {
  content: "\f20d";
}
.fa-connectdevelop:before, .fa-connectdevelop-after:after {
  content: "\f20e";
}
.fa-dashcube:before, .fa-dashcube-after:after {
  content: "\f210";
}
.fa-forumbee:before, .fa-forumbee-after:after {
  content: "\f211";
}
.fa-leanpub:before, .fa-leanpub-after:after {
  content: "\f212";
}
.fa-sellsy:before, .fa-sellsy-after:after {
  content: "\f213";
}
.fa-shirtsinbulk:before, .fa-shirtsinbulk-after:after {
  content: "\f214";
}
.fa-simplybuilt:before, .fa-simplybuilt-after:after {
  content: "\f215";
}
.fa-skyatlas:before, .fa-skyatlas-after:after {
  content: "\f216";
}
.fa-cart-plus:before, .fa-cart-plus-after:after {
  content: "\f217";
}
.fa-cart-arrow-down:before, .fa-cart-arrow-down-after:after {
  content: "\f218";
}
.fa-diamond:before, .fa-diamond-after:after {
  content: "\f219";
}
.fa-ship:before, .fa-ship-after:after {
  content: "\f21a";
}
.fa-user-secret:before, .fa-user-secret-after:after {
  content: "\f21b";
}
.fa-motorcycle:before, .fa-motorcycle-after:after {
  content: "\f21c";
}
.fa-street-view:before, .fa-street-view-after:after {
  content: "\f21d";
}
.fa-heartbeat:before, .fa-heartbeat-after:after {
  content: "\f21e";
}
.fa-venus:before, .fa-venus-after:after {
  content: "\f221";
}
.fa-mars:before, .fa-mars-after:after {
  content: "\f222";
}
.fa-mercury:before, .fa-mercury-after:after {
  content: "\f223";
}
.fa-transgender:before, .fa-transgender-after:after {
  content: "\f224";
}
.fa-transgender-alt:before, .fa-transgender-alt-after:after {
  content: "\f225";
}
.fa-venus-double:before, .fa-venus-double-after:after {
  content: "\f226";
}
.fa-mars-double:before, .fa-mars-double-after:after {
  content: "\f227";
}
.fa-venus-mars:before, .fa-venus-mars-after:after {
  content: "\f228";
}
.fa-mars-stroke:before, .fa-mars-stroke-after:after {
  content: "\f229";
}
.fa-mars-stroke-v:before, .fa-mars-stroke-v-after:after {
  content: "\f22a";
}
.fa-mars-stroke-h:before, .fa-mars-stroke-h-after:after {
  content: "\f22b";
}
.fa-neuter:before, .fa-neuter-after:after {
  content: "\f22c";
}
.fa-facebook-official:before, .fa-facebook-official-after:after {
  content: "\f230";
}
.fa-pinterest-p:before, .fa-pinterest-p-after:after {
  content: "\f231";
}
.fa-whatsapp:before, .fa-whatsapp-after:after {
  content: "\f232";
}
.fa-server:before, .fa-server-after:after {
  content: "\f233";
}
.fa-user-plus:before, .fa-user-plus-after:after {
  content: "\f234";
}
.fa-user-times:before, .fa-user-times-after:after {
  content: "\f235";
}
.fa-hotel:before, .fa-hotel-after:after
.fa-bed:before, .fa-bed-after:after {
  content: "\f236";
}
.fa-viacoin:before, .fa-viacoin-after:after {
  content: "\f237";
}
.fa-train:before, .fa-train-after:after {
  content: "\f238";
}
.fa-subway:before, .fa-subway-after:after {
  content: "\f239";
}
.fa-medium:before, .fa-medium-after:after {
  content: "\f23a";
}