@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*=Scroll Bar Style
============================================*/
/*=Column Divider
============================================*/
/*=Gradient
============================================*/
/* @include linear-gradient(top, rgba(black, .04), rgba(black, 0)); */
/*=Border
============================================*/
/*	$side: 1px;	@include border($side 0 $side 0, black); */
/*=Shape
============================================*/
/*= Side Line Center Object
============================================*/
/*=Arrow
============================================*/
/* @include css-arrow(#000,25px,up);  */
/*= Placeholder
========*/
/*
.foo {
  @include placeholder {
    color: green;
  }
}

@include placeholder {
  color: red;
}

*/
/*
$numPerRow: 4;
$margin: 2%;
$include rowMachine($numPerRow, $margin);
*/
/*
$box_shadow:0 0 15px 1px rgba(0, 0, 0, 0.35); $font_size:0.85rem; $font_color:white; $bg:#666; $bg_gradient:linear-gradient(#666, #333);
$bg_after:#666; $bg_gradient_after:linear-gradient(135deg, #666, #333); $box_shadow_after:2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
$bg_before:#444; $bg_gradient_before:linear-gradient(#444, #222);
$bg_active:#333; $bg_gradient_active:linear-gradient(#333, #222);
$bg_active_after:#333; $bg_gradient_active_after:linear-gradient(135deg, #333, #000);
*/
html {
  box-sizing: border-box; }

html, body {
  margin: 0 auto;
  padding: 0;
  font-family: 'arial',tahoma,verdana,Serif;
  font-size: 16px; }

*,
*:before,
*:after {
  box-sizing: inherit; }

img {
  vertical-align: middle; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y; }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    /*
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    */ }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    display: none; }
  .owl-carousel.owl-drag .owl-item {
    /*
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    */ }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
  z-index: 0; }
.owl-carousel .owl-animated-out {
  z-index: 1; }
.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*!
 *  Font Awesome 4.5.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("../../../system/ico/font-awesome/fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("../../../system/ico/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../../../system/ico/font-awesome/fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../../../system/ico/font-awesome/fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../../../system/ico/font-awesome/fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../../../system/ico/font-awesome/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  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.28571em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none; }
  .fa-ul > li {
    position: relative; }

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.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-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: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

.fa-reddit-alien:before {
  content: ""; }

.fa-edge:before {
  content: ""; }

.fa-credit-card-alt:before {
  content: ""; }

.fa-codiepie:before {
  content: ""; }

.fa-modx:before {
  content: ""; }

.fa-fort-awesome:before {
  content: ""; }

.fa-usb:before {
  content: ""; }

.fa-product-hunt:before {
  content: ""; }

.fa-mixcloud:before {
  content: ""; }

.fa-scribd:before {
  content: ""; }

.fa-pause-circle:before {
  content: ""; }

.fa-pause-circle-o:before {
  content: ""; }

.fa-stop-circle:before {
  content: ""; }

.fa-stop-circle-o:before {
  content: ""; }

.fa-shopping-bag:before {
  content: ""; }

.fa-shopping-basket:before {
  content: ""; }

.fa-hashtag:before {
  content: ""; }

.fa-bluetooth:before {
  content: ""; }

.fa-bluetooth-b:before {
  content: ""; }

.fa-percent:before {
  content: ""; }

@font-face {
  font-family: empty;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAQ0AAoAAAAAA+wAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAJ4AAACeXQ48j09TLzIAAAGUAAAAYAAAAGAIIgbWY21hcAAAAfQAAABEAAAARAAyAGlnYXNwAAACOAAAAAgAAAAIAAAAEGhlYWQAAAJAAAAANgAAADb9mzB5aGhlYQAAAngAAAAkAAAAJAHiAeVobXR4AAACnAAAABAAAAAQAAAAAG1heHAAAAKsAAAABgAAAAYABFAAbmFtZQAAArQAAAFdAAABXVqZXRlwb3N0AAAEFAAAACAAAAAgAAMAAAEABAQAAQEBDHNwYWNlLWVtcHR5AAECAAEAOvgcAvgbA/gYBB4KABlT/4uLHgoAGVP/i4sMB4tr+JT4dAUdAAAAfA8dAAAAgREdAAAACR0AAACVEgAFAQEMFxkbHnNwYWNlLWVtcHR5c3BhY2UtZW1wdHl1MHUxdTIwAAACAYkAAgAEAQEEBwoN/JQO/JQO/JQO/JQO+JQU+JQViwwKAAAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAABAAAAAIAHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADAAAAAIAAgAAgAAAAEAIP/9//8AAAAAACD//f//AAH/4wADAAEAAAAAAAAAAAABAAH//wAPAAEAAAABAAAAeR2GXw889QALAgAAAAAAzz54vgAAAADPPni+AAAAAAAAAAAAAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAABQAAAEAAAAAAAOAK4AAQAAAAAAAQAWAAAAAQAAAAAAAgAOAGMAAQAAAAAAAwAWACwAAQAAAAAABAAWAHEAAQAAAAAABQAWABYAAQAAAAAABgALAEIAAQAAAAAACgAoAIcAAwABBAkAAQAWAAAAAwABBAkAAgAOAGMAAwABBAkAAwAWACwAAwABBAkABAAWAHEAAwABBAkABQAWABYAAwABBAkABgAWAE0AAwABBAkACgAoAIcAcwBwAGEAYwBlAC0AZQBtAHAAdAB5AFYAZQByAHMAaQBvAG4AIAAxAC4AMABzAHAAYQBjAGUALQBlAG0AcAB0AHlzcGFjZS1lbXB0eQBzAHAAYQBjAGUALQBlAG0AcAB0AHkAUgBlAGcAdQBsAGEAcgBzAHAAYQBjAGUALQBlAG0AcAB0AHkARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format("woff"); }
/* Include all fonts & customized classes */
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Thin.ttf) format("truetype");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-ThinItalic.ttf) format("truetype");
  font-weight: 100;
  font-style: italic; }
.prompt-100 {
  font-family: "Prompt";
  font-weight: 100;
  font-style: normal; }

.prompt-100i {
  font-family: "Prompt";
  font-weight: 100;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-ExtraLightItalic.ttf) format("truetype");
  font-weight: 200;
  font-style: italic; }
.prompt-200 {
  font-family: "Prompt";
  font-weight: 200;
  font-style: normal; }

.prompt-200i {
  font-family: "Prompt";
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic; }
.prompt-300 {
  font-family: "Prompt";
  font-weight: 300;
  font-style: normal; }

.prompt-300i {
  font-family: "Prompt";
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic; }
.prompt-400 {
  font-family: "Prompt";
  font-weight: 400;
  font-style: normal; }

.prompt-400i {
  font-family: "Prompt";
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic; }
.prompt-500 {
  font-family: "Prompt";
  font-weight: 500;
  font-style: normal; }

.prompt-500i {
  font-family: "Prompt";
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-SemiBoldItalic.ttf) format("truetype");
  font-weight: 600;
  font-style: italic; }
.prompt-600 {
  font-family: "Prompt";
  font-weight: 600;
  font-style: normal; }

.prompt-600i {
  font-family: "Prompt";
  font-weight: 600;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic; }
.prompt-700 {
  font-family: "Prompt";
  font-weight: 700;
  font-style: normal; }

.prompt-700i {
  font-family: "Prompt";
  font-weight: 700;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-ExtraBoldItalic.ttf) format("truetype");
  font-weight: 800;
  font-style: italic; }
.prompt-800 {
  font-family: "Prompt";
  font-weight: 800;
  font-style: normal; }

.prompt-800i {
  font-family: "Prompt";
  font-weight: 800;
  font-style: italic; }

@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-Black.ttf) format("truetype");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: "Prompt";
  src: url(../../../system/fonts/Prompt-BlackItalic.ttf) format("truetype");
  font-weight: 900;
  font-style: italic; }
.prompt-900 {
  font-family: "Prompt";
  font-weight: 900;
  font-style: normal; }

.prompt-900i {
  font-family: "Prompt";
  font-weight: 900;
  font-style: italic; }

@font-face {
  font-family: 'THSarabunNew';
  src: url("../../../system/fonts/thsarabunnew-webfont.eot");
  src: url("../../../system/fonts/thsarabunnew-webfont.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thsarabunnew-webfont.woff") format("woff"), url("../../../system/fonts/thsarabunnew-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--DSN--*/
@font-face {
  font-family: 'DSNMonTaNa';
  src: url("../../../system/fonts/DSNMonTaNa.eot");
  src: url("../../../system/fonts/DSNMonTaNa.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/DSNMonTaNa.woff") format("woff"), url("../../../system/fonts/DSNMonTaNa.svg#DSNMonTaNa") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'DBComYardX';
  src: url("../../../system/fonts/DBComYardX.eot");
  src: url("../../../system/fonts/DBComYardX.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/DBComYardX.woff") format("woff"), url("../../../system/fonts/DBComYardX.svg#DBComYardX") format("svg"), url("../../../system/fonts/DBComYardX.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--BLOKK--*/
@font-face {
  font-family: 'blokk';
  src: url("../../../system/fonts/blokk.eot");
  src: url("../../../system/fonts/blokk.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/blokk.woff") format("woff"), url("../../../system/fonts/blokk.svg#blokk") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'blokkneue';
  src: url("../../../system/fonts/blokkneue.eot");
  src: url("../../../system/fonts/blokkneue.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/blokkneue.woff") format("woff"), url("../../../system/fonts/blokkneue.svg#blokkneue") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--ED Pensook--*/
@font-face {
  font-family: 'ed_pensook';
  src: url("../../../system/fonts/ed_pensook.eot");
  src: url("../../../system/fonts/ed_pensook.svg#ed_pensook") format("svg"), url("../../../system/fonts/ed_pensook.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/ed_pensook.woff2") format("woff2"), url("../../../system/fonts/ed_pensook.woff") format("woff"), url("../../../system/fonts/ed_pensook.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'ed_pensook_bold';
  src: url("../../../system/fonts/ed_pensook_bold.eot");
  src: url("../../../system/fonts/ed_pensook_bold.svg#ed_pensook_bold") format("svg"), url("../../../system/fonts/ed_pensook_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/ed_pensook_bold.woff2") format("woff2"), url("../../../system/fonts/ed_pensook_bold.woff") format("woff"), url("../../../system/fonts/ed_pensook_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--ED-Sense--*/
@font-face {
  font-family: 'ed_sense';
  src: url("../../../system/fonts/ed_sense.eot");
  src: url("../../../system/fonts/ed_sense.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/ed_sense.woff2") format("woff2"), url("../../../system/fonts/ed_sense.woff") format("woff"), url("../../../system/fonts/ed_sense.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'ed_sense_bold';
  src: url("../../../system/fonts/ed_sense_bold.eot");
  src: url("../../../system/fonts/ed_sense_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/ed_sense_bold.woff2") format("woff2"), url("../../../system/fonts/ed_sense_bold.woff") format("woff"), url("../../../system/fonts/ed_sense_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--PGVIM--*/
@font-face {
  font-family: 'pgvim';
  src: url("../../../system/fonts/pgvim.eot");
  src: url("../../../system/fonts/pgvim.svg#pgvim") format("svg"), url("../../../system/fonts/pgvim.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/pgvim.woff2") format("woff2"), url("../../../system/fonts/pgvim.woff") format("woff"), url("../../../system/fonts/pgvim.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--RSU--*/
@font-face {
  font-family: 'rsu';
  src: url("../../../system/fonts/rsu.eot");
  src: url("../../../system/fonts/rsu.svg#rsu") format("svg"), url("../../../system/fonts/rsu.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/rsu.woff2") format("woff2"), url("../../../system/fonts/rsu.woff") format("woff"), url("../../../system/fonts/rsu.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'rsu_light';
  src: url("../../../system/fonts/rsu_light.eot");
  src: url("../../../system/fonts/rsu_light.svg#rsu_light") format("svg"), url("../../../system/fonts/rsu_light.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/rsu_light.woff2") format("woff2"), url("../../../system/fonts/rsu_light.woff") format("woff"), url("../../../system/fonts/rsu_light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'rsu_bold';
  src: url("../../../system/fonts/rsu_bold.eot");
  src: url("../../../system/fonts/rsu_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/rsu_bold.woff2") format("woff2"), url("../../../system/fonts/rsu_bold.woff") format("woff"), url("../../../system/fonts/rsu_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--Quark--*/
@font-face {
  font-family: 'quark';
  src: url("../../../system/fonts/quark.eot");
  src: url("../../../system/fonts/quark.svg#quark") format("svg"), url("../../../system/fonts/quark.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/quark.woff2") format("woff2"), url("../../../system/fonts/quark.woff") format("woff"), url("../../../system/fonts/quark.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'quark_bold';
  src: url("../../../system/fonts/quark_bold.eot");
  src: url("../../../system/fonts/quark_bold.svg#quark_bold") format("svg"), url("../../../system/fonts/quark_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/quark_bold.woff2") format("woff2"), url("../../../system/fonts/quark_bold.woff") format("woff"), url("../../../system/fonts/quark_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--BoonTook--*/
@font-face {
  font-family: 'boontook_mon_ultra';
  src: url("../../../system/fonts/boontook_mon_ultra.eot");
  src: url("../../../system/fonts/boontook_mon_ultra.svg#boontook_mon_ultra") format("svg"), url("../../../system/fonts/boontook_mon_ultra.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/boontook_mon_ultra.woff2") format("woff2"), url("../../../system/fonts/boontook_mon_ultra.woff") format("woff"), url("../../../system/fonts/boontook_mon_ultra.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'boontook_mon_ultra_oblique';
  src: url("../../../system/fonts/boontook_mon_ultra_oblique.eot");
  src: url("../../../system/fonts/boontook_mon_ultra_oblique.svg#boontook_mon_ultra_oblique") format("svg"), url("../../../system/fonts/boontook_mon_ultra_oblique.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/boontook_mon_ultra_oblique.woff2") format("woff2"), url("../../../system/fonts/boontook_mon_ultra_oblique.woff") format("woff"), url("../../../system/fonts/boontook_mon_ultra_oblique.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'boontook_ultra_oblique';
  src: url("../../../system/fonts/boontook_ultra_oblique.eot");
  src: url("../../../system/fonts/boontook_ultra_oblique.svg#boontook_ultra_oblique") format("svg"), url("../../../system/fonts/boontook_ultra_oblique.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/boontook_ultra_oblique.woff2") format("woff2"), url("../../../system/fonts/boontook_ultra_oblique.woff") format("woff"), url("../../../system/fonts/boontook_ultra_oblique.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'boontook_ultra';
  src: url("../../../system/fonts/boontook_ultra.eot");
  src: url("../../../system/fonts/boontook_ultra.svg#boontook_ultra") format("svg"), url("../../../system/fonts/boontook_ultra.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/boontook_ultra.woff2") format("woff2"), url("../../../system/fonts/boontook_ultra.woff") format("woff"), url("../../../system/fonts/boontook_ultra.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--CS-Prakas--*/
@font-face {
  font-family: 'cs_prakas';
  src: url("../../../system/fonts/cs_prakas.eot");
  src: url("../../../system/fonts/cs_prakas.svg#cs_prakas") format("svg"), url("../../../system/fonts/cs_prakas.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/cs_prakas.woff2") format("woff2"), url("../../../system/fonts/cs_prakas.woff") format("woff"), url("../../../system/fonts/cs_prakas.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'cs_prakas_bold';
  src: url("../../../system/fonts/cs_prakas_bold.eot");
  src: url("../../../system/fonts/cs_prakas_bold.svg#cs_prakas_bold") format("svg"), url("../../../system/fonts/cs_prakas_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/cs_prakas_bold.woff2") format("woff2"), url("../../../system/fonts/cs_prakas_bold.woff") format("woff"), url("../../../system/fonts/cs_prakas_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'cs_prakasfd';
  src: url("../../../system/fonts/cs_prakasfd.eot");
  src: url("../../../system/fonts/cs_prakasfd.svg#cs_prakasfd") format("svg"), url("../../../system/fonts/cs_prakasfd.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/cs_prakasfd.woff2") format("woff2"), url("../../../system/fonts/cs_prakasfd.woff") format("woff"), url("../../../system/fonts/cs_prakasfd.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'cs_prakasfd_bold';
  src: url("../../../system/fonts/cs_prakasfd_bold.eot");
  src: url("../../../system/fonts/cs_prakasfd_bold.svg#cs_prakasfd_bold") format("svg"), url("../../../system/fonts/cs_prakasfd_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/cs_prakasfd_bold.woff2") format("woff2"), url("../../../system/fonts/cs_prakasfd_bold.woff") format("woff"), url("../../../system/fonts/cs_prakasfd_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--CS-Cheangkhan--*/
@font-face {
  font-family: 'cs_cheangkhan';
  src: url("../../../system/fonts/cs_cheangkhan.eot");
  src: url("../../../system/fonts/cs_cheangkhan.svg#cs_cheangkhan") format("svg"), url("../../../system/fonts/cs_cheangkhan.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/cs_cheangkhan.woff2") format("woff2"), url("../../../system/fonts/cs_cheangkhan.woff") format("woff"), url("../../../system/fonts/cs_cheangkhan.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--KT-Smarn--*/
@font-face {
  font-family: 'kt_smarn';
  src: url("../../../system/fonts/kt_smarn.eot");
  src: url("../../../system/fonts/kt_smarn.svg#kt_smarn") format("svg"), url("../../../system/fonts/kt_smarn.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/kt_smarn.woff2") format("woff2"), url("../../../system/fonts/kt_smarn.woff") format("woff"), url("../../../system/fonts/kt_smarn.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'kt_smarnspecial';
  src: url("../../../system/fonts/kt_smarnspecial.eot");
  src: url("../../../system/fonts/kt_smarnspecial.svg#kt_smarnspecial") format("svg"), url("../../../system/fonts/kt_smarnspecial.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/kt_smarnspecial.woff2") format("woff2"), url("../../../system/fonts/kt_smarnspecial.woff") format("woff"), url("../../../system/fonts/kt_smarnspecial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'kt_smarn_seree';
  src: url("../../../system/fonts/kt_smarn_seree.eot");
  src: url("../../../system/fonts/kt_smarn_seree.svg#kt_smarn_seree") format("svg"), url("../../../system/fonts/kt_smarn_seree.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/kt_smarn_seree.woff2") format("woff2"), url("../../../system/fonts/kt_smarn_seree.woff") format("woff"), url("../../../system/fonts/kt_smarn_seree.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--KRR-aengaei--*/
@font-face {
  font-family: 'krr_aengaei';
  src: url("../../../system/fonts/krr_aengaei.eot");
  src: url("../../../system/fonts/krr_aengaei.svg#krr_aengaei") format("svg"), url("../../../system/fonts/krr_aengaei.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/krr_aengaei.woff2") format("woff2"), url("../../../system/fonts/krr_aengaei.woff") format("woff"), url("../../../system/fonts/krr_aengaei.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--KRR-thaispirit--*/
@font-face {
  font-family: 'krr_thaispirit';
  src: url("../../../system/fonts/krr_thaispirit.eot");
  src: url("../../../system/fonts/krr_thaispirit.svg#krr_thaispirit") format("svg"), url("../../../system/fonts/krr_thaispirit.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/krr_thaispirit.woff2") format("woff2"), url("../../../system/fonts/krr_thaispirit.woff") format("woff"), url("../../../system/fonts/krr_thaispirit.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--MAX-PinJohn--*/
@font-face {
  font-family: 'max_pinjohn';
  src: url("../../../system/fonts/max_pinjohn.eot");
  src: url("../../../system/fonts/max_pinjohn.svg#max_pinjohn") format("svg"), url("../../../system/fonts/max_pinjohn.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/max_pinjohn.woff2") format("woff2"), url("../../../system/fonts/max_pinjohn.woff") format("woff"), url("../../../system/fonts/max_pinjohn.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--Thaisans--*/
@font-face {
  font-family: 'thaisans_lite';
  src: url("../../../system/fonts/thaisans_lite.eot");
  src: url("../../../system/fonts/thaisans_lite.svg#thaisans_lite") format("svg"), url("../../../system/fonts/thaisans_lite.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisans_lite.woff2") format("woff2"), url("../../../system/fonts/thaisans_lite.woff") format("woff"), url("../../../system/fonts/thaisans_lite.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
/*--Thaisansneue--*/
@font-face {
  font-family: 'thaisansneue';
  src: url("../../../system/fonts/thaisansneue.eot");
  src: url("../../../system/fonts/thaisansneue.svg#thaisansneue") format("svg"), url("../../../system/fonts/thaisansneue.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue.woff2") format("woff2"), url("../../../system/fonts/thaisansneue.woff") format("woff"), url("../../../system/fonts/thaisansneue.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_extralight';
  src: url("../../../system/fonts/thaisansneue_extralight.eot");
  src: url("../../../system/fonts/thaisansneue_extralight.svg#thaisansneue_extralight") format("svg"), url("../../../system/fonts/thaisansneue_extralight.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_extralight.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_extralight.woff") format("woff"), url("../../../system/fonts/thaisansneue_extralight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_italic';
  src: url("../../../system/fonts/thaisansneue_italic.eot");
  src: url("../../../system/fonts/thaisansneue_italic.svg#thaisansneue_italic") format("svg"), url("../../../system/fonts/thaisansneue_italic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_italic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_italic.woff") format("woff"), url("../../../system/fonts/thaisansneue_italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_bolditalic';
  src: url("../../../system/fonts/thaisansneue_bolditalic.eot");
  src: url("../../../system/fonts/thaisansneue_bolditalic.svg#thaisansneue_bolditalic") format("svg"), url("../../../system/fonts/thaisansneue_bolditalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_bolditalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_bolditalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_bolditalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_light';
  src: url("../../../system/fonts/thaisansneue_light.eot");
  src: url("../../../system/fonts/thaisansneue_light.svg#thaisansneue_light") format("svg"), url("../../../system/fonts/thaisansneue_light.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_light.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_light.woff") format("woff"), url("../../../system/fonts/thaisansneue_light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_extrabolditalic';
  src: url("../../../system/fonts/thaisansneue_extrabolditalic.eot");
  src: url("../../../system/fonts/thaisansneue_extrabolditalic.svg#thaisansneue_extrabolditalic") format("svg"), url("../../../system/fonts/thaisansneue_extrabolditalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_extrabolditalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_extrabolditalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_extrabolditalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_black';
  src: url("../../../system/fonts/thaisansneue_black.eot");
  src: url("../../../system/fonts/thaisansneue_black.svg#thaisansneue_black") format("svg"), url("../../../system/fonts/thaisansneue_black.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_black.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_black.woff") format("woff"), url("../../../system/fonts/thaisansneue_black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_extralightitalic';
  src: url("../../../system/fonts/thaisansneue_extralightitalic.eot");
  src: url("../../../system/fonts/thaisansneue_extralightitalic.svg#thaisansneue_extralightitalic") format("svg"), url("../../../system/fonts/thaisansneue_extralightitalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_extralightitalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_extralightitalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_extralightitalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_bold';
  src: url("../../../system/fonts/thaisansneue_bold.eot");
  src: url("../../../system/fonts/thaisansneue_bold.svg#thaisansneue_bold") format("svg"), url("../../../system/fonts/thaisansneue_bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_bold.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_bold.woff") format("woff"), url("../../../system/fonts/thaisansneue_bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_extrabold';
  src: url("../../../system/fonts/thaisansneue_extrabold.eot");
  src: url("../../../system/fonts/thaisansneue_extrabold.svg#thaisansneue_extrabold") format("svg"), url("../../../system/fonts/thaisansneue_extrabold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_extrabold.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_extrabold.woff") format("woff"), url("../../../system/fonts/thaisansneue_extrabold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_semibolditalic';
  src: url("../../../system/fonts/thaisansneue_semibolditalic.eot");
  src: url("../../../system/fonts/thaisansneue_semibolditalic.svg#thaisansneue_semibolditalic") format("svg"), url("../../../system/fonts/thaisansneue_semibolditalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_semibolditalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_semibolditalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_semibolditalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_ultrabolditalic';
  src: url("../../../system/fonts/thaisansneue_ultrabolditalic.eot");
  src: url("../../../system/fonts/thaisansneue_ultrabolditalic.svg#thaisansneue_ultrabolditalic") format("svg"), url("../../../system/fonts/thaisansneue_ultrabolditalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_ultrabolditalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_ultrabolditalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_ultrabolditalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thasansneue_black_italic';
  src: url("../../../system/fonts/thasansneue_black_italic.eot");
  src: url("../../../system/fonts/thasansneue_black_italic.svg#thasansneue_black_italic") format("svg"), url("../../../system/fonts/thasansneue_black_italic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thasansneue_black_italic.woff2") format("woff2"), url("../../../system/fonts/thasansneue_black_italic.woff") format("woff"), url("../../../system/fonts/thasansneue_black_italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_semibold';
  src: url("../../../system/fonts/thaisansneue_semibold.eot");
  src: url("../../../system/fonts/thaisansneue_semibold.svg#thaisansneue_semibold") format("svg"), url("../../../system/fonts/thaisansneue_semibold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_semibold.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_semibold.woff") format("woff"), url("../../../system/fonts/thaisansneue_semibold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_lightitalic';
  src: url("../../../system/fonts/thaisansneue_lightitalic.eot");
  src: url("../../../system/fonts/thaisansneue_lightitalic.svg#thaisansneue_lightitalic") format("svg"), url("../../../system/fonts/thaisansneue_lightitalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_lightitalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_lightitalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_lightitalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_ultralightitalic';
  src: url("../../../system/fonts/thaisansneue_ultralightitalic.eot");
  src: url("../../../system/fonts/thaisansneue_ultralightitalic.svg#thaisansneue_ultralightitalic") format("svg"), url("../../../system/fonts/thaisansneue_ultralightitalic.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_ultralightitalic.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_ultralightitalic.woff") format("woff"), url("../../../system/fonts/thaisansneue_ultralightitalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_ultrabold';
  src: url("../../../system/fonts/thaisansneue_ultrabold.eot");
  src: url("../../../system/fonts/thaisansneue_ultrabold.svg#thaisansneue_ultrabold") format("svg"), url("../../../system/fonts/thaisansneue_ultrabold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_ultrabold.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_ultrabold.woff") format("woff"), url("../../../system/fonts/thaisansneue_ultrabold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'thaisansneue_ultralight';
  src: url("../../../system/fonts/thaisansneue_ultralight.eot");
  src: url("../../../system/fonts/thaisansneue_ultralight.svg#thaisansneue_ultralight") format("svg"), url("../../../system/fonts/thaisansneue_ultralight.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/thaisansneue_ultralight.woff2") format("woff2"), url("../../../system/fonts/thaisansneue_ultralight.woff") format("woff"), url("../../../system/fonts/thaisansneue_ultralight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'nithan';
  src: url("../../../system/fonts/nithan.eot");
  src: url("../../../system/fonts/nithan.svg#nithan") format("svg"), url("../../../system/fonts/nithan.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/nithan.woff") format("woff"), url("../../../system/fonts/nithan.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'wdbbangna';
  src: url("../../../system/fonts/wdbbangna.eot");
  src: url("../../../system/fonts/wdbbangna.svg#wdbbangna") format("svg"), url("../../../system/fonts/wdbbangna.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/wdbbangna.woff") format("woff"), url("../../../system/fonts/wdbbangna.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'queen-of-camelot-regular';
  src: url("../../../system/fonts/queen-of-camelot-regular.eot");
  src: url("../../../system/fonts/queen-of-camelot-regular.svg#queen-of-camelot-regular") format("svg"), url("../../../system/fonts/queen-of-camelot-regular.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/queen-of-camelot-regular.woff") format("woff"), url("../../../system/fonts/queen-of-camelot-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'frontpageneue';
  src: url("../../../system/fonts/frontpageneue.eot");
  src: url("../../../system/fonts/frontpageneue.svg#frontpageneue") format("svg"), url("../../../system/fonts/frontpageneue.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/frontpageneue.woff") format("woff"), url("../../../system/fonts/frontpageneue.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'syntha';
  src: url("../../../system/fonts/syntha.eot");
  src: url("../../../system/fonts/syntha.svg#syntha") format("svg"), url("../../../system/fonts/syntha.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/syntha.woff") format("woff"), url("../../../system/fonts/syntha.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'paaymaay';
  src: url("../../../system/fonts/paaymaay.eot");
  src: url("../../../system/fonts/paaymaay.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/paaymaay.woff2") format("woff2"), url("../../../system/fonts/paaymaay.woff") format("woff"), url("../../../system/fonts/paaymaay.ttf") format("truetype"), url("../../../system/fonts/paaymaay.svg#paaymaay") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'TS-Som tum-B-NP';
  src: url("../../../system/fonts/TS-Somtum-B-NP.eot");
  src: url("../../../system/fonts/TS-Somtum-B-NP.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/TS-Somtum-B-NP.woff2") format("woff2"), url("../../../system/fonts/TS-Somtum-B-NP.woff") format("woff"), url("../../../system/fonts/TS-Somtum-B-NP.ttf") format("truetype"), url("../../../system/fonts/TS-Somtum-B-NP.svg#TS-Somtum-B-NP") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--Kanit--*/
@font-face {
  font-family: 'Kanit-Regular';
  src: url("../../../system/fonts/Kanit-Regular.eot");
  src: url("../../../system/fonts/Kanit-Regular.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/Kanit-Regular.woff2") format("woff2"), url("../../../system/fonts/Kanit-Regular.woff") format("woff"), url("../../../system/fonts/Kanit-Regular.ttf") format("truetype"), url("../../../system/fonts/Kanit-Regular.svg#Kanit-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Kanit-Bold';
  src: url("../../../system/fonts/Kanit-Bold.eot");
  src: url("../../../system/fonts/Kanit-Bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/Kanit-Bold.woff2") format("woff2"), url("../../../system/fonts/Kanit-Bold.woff") format("woff"), url("../../../system/fonts/Kanit-Bold.ttf") format("truetype"), url("../../../system/fonts/Kanit-Bold.svg#Kanit-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }
/*--TH Baijam--*/
@font-face {
  font-family: 'THBaijam-Bold';
  src: url("../../../system/fonts/THBaijam-Bold.eot");
  src: url("../../../system/fonts/THBaijam-Bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THBaijam-Bold.woff2") format("woff2"), url("../../../system/fonts/THBaijam-Bold.woff") format("woff"), url("../../../system/fonts/THBaijam-Bold.ttf") format("truetype"), url("../../../system/fonts/THBaijam-Bold.svg#THBaijam-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: 'THBaijam-Regular';
  src: url("../../../system/fonts/THBaijam.eot");
  src: url("../../../system/fonts/THBaijam.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THBaijam.woff2") format("woff2"), url("../../../system/fonts/THBaijam.woff") format("woff"), url("../../../system/fonts/THBaijam.ttf") format("truetype"), url("../../../system/fonts/THBaijam.svg#THBaijam") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--TH Fah kwang--*/
@font-face {
  font-family: 'TH-Fah-kwang';
  src: url("../../../system/fonts/THFahkwang.eot");
  src: url("../../../system/fonts/THFahkwang.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THFahkwang.woff2") format("woff2"), url("../../../system/fonts/THFahkwang.woff") format("woff"), url("../../../system/fonts/THFahkwang.ttf") format("truetype"), url("../../../system/fonts/THFahkwang.svg#THFahkwang") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THK2DJuly8--*/
@font-face {
  font-family: 'TH-K2D-July8';
  src: url("../../../system/fonts/THK2DJuly8.eot");
  src: url("../../../system/fonts/THK2DJuly8.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THK2DJuly8.woff2") format("woff2"), url("../../../system/fonts/THK2DJuly8.woff") format("woff"), url("../../../system/fonts/THK2DJuly8.ttf") format("truetype"), url("../../../system/fonts/THK2DJuly8.svg#THK2DJuly8") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THKodchasal--*/
@font-face {
  font-family: 'TH-Kodchasal';
  src: url("../../../system/fonts/THKodchasal.eot");
  src: url("../../../system/fonts/THKodchasal.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THKodchasal.woff2") format("woff2"), url("../../../system/fonts/THKodchasal.woff") format("woff"), url("../../../system/fonts/THKodchasal.ttf") format("truetype"), url("../../../system/fonts/THKodchasal.svg#THKodchasal") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THKoHo--*/
@font-face {
  font-family: 'TH-KoHo';
  src: url("../../../system/fonts/THKoHo.eot");
  src: url("../../../system/fonts/THKoHo.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THKoHo.woff2") format("woff2"), url("../../../system/fonts/THKoHo.woff") format("woff"), url("../../../system/fonts/THKoHo.ttf") format("truetype"), url("../../../system/fonts/THKoHo.svg#THKoHo") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THKrub--*/
@font-face {
  font-family: 'TH-Krub';
  src: url("../../../system/fonts/THKrub.eot");
  src: url("../../../system/fonts/THKrub.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THKrub.woff2") format("woff2"), url("../../../system/fonts/THKrub.woff") format("woff"), url("../../../system/fonts/THKrub.ttf") format("truetype"), url("../../../system/fonts/THKrub.svg#THKrub") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THMaliGrade6--*/
@font-face {
  font-family: 'TH-Mali-Grade6';
  src: url("../../../system/fonts/THMaliGrade6.eot");
  src: url("../../../system/fonts/THMaliGrade6.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THMaliGrade6.woff2") format("woff2"), url("../../../system/fonts/THMaliGrade6.woff") format("woff"), url("../../../system/fonts/THMaliGrade6.ttf") format("truetype"), url("../../../system/fonts/THMaliGrade6.svg#THMaliGrade6") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THNiramitAS--*/
@font-face {
  font-family: 'TH-Niramit-AS';
  src: url("../../../system/fonts/THNiramitAS.eot");
  src: url("../../../system/fonts/THNiramitAS.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THNiramitAS.woff2") format("woff2"), url("../../../system/fonts/THNiramitAS.woff") format("woff"), url("../../../system/fonts/THNiramitAS.ttf") format("truetype"), url("../../../system/fonts/THNiramitAS.svg#THNiramitAS") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THSrisakdi-Bold--*/
@font-face {
  font-family: 'TH-Srisakdi-Bold';
  src: url("../../../system/fonts/THSrisakdi-Bold.eot");
  src: url("../../../system/fonts/THSrisakdi-Bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THSrisakdi-Bold.woff2") format("woff2"), url("../../../system/fonts/THSrisakdi-Bold.woff") format("woff"), url("../../../system/fonts/THSrisakdi-Bold.ttf") format("truetype"), url("../../../system/fonts/THSrisakdi-Bold.svg#THSrisakdi-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }
/*--THSrisakdi--*/
@font-face {
  font-family: 'TH-Srisakdi';
  src: url("../../../system/fonts/THSrisakdi.eot");
  src: url("../../../system/fonts/THSrisakdi.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THSrisakdi.woff2") format("woff2"), url("../../../system/fonts/THSrisakdi.woff") format("woff"), url("../../../system/fonts/THSrisakdi.ttf") format("truetype"), url("../../../system/fonts/THSrisakdi.svg#THSrisakdi") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--THSarabunPSK-Bold--*/
@font-face {
  font-family: 'TH-SarabunPSK-Bold';
  src: url("../../../system/fonts/THSarabunPSK-Bold.eot");
  src: url("../../../system/fonts/THSarabunPSK-Bold.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THSarabunPSK-Bold.woff2") format("woff2"), url("../../../system/fonts/THSarabunPSK-Bold.woff") format("woff"), url("../../../system/fonts/THSarabunPSK-Bold.ttf") format("truetype"), url("../../../system/fonts/THSarabunPSK-Bold.svg#THSarabunPSK-Bold") format("svg");
  font-weight: bold;
  font-style: normal; }
/*--THSarabunPSK--*/
@font-face {
  font-family: 'TH-SarabunPSK';
  src: url("../../../system/fonts/THSarabunPSK.eot");
  src: url("../../../system/fonts/THSarabunPSK.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/THSarabunPSK.woff2") format("woff2"), url("../../../system/fonts/THSarabunPSK.woff") format("woff"), url("../../../system/fonts/THSarabunPSK.ttf") format("truetype"), url("../../../system/fonts/THSarabunPSK.svg#THSarabunPSK") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Kunlasatri-Regular';
  src: url("../../../system/fonts/Kunlasatri.eot");
  src: url("../../../system/fonts/Kunlasatri.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/Kunlasatri.woff2") format("woff2"), url("../../../system/fonts/Kunlasatri.woff") format("woff"), url("../../../system/fonts/Kunlasatri.ttf") format("truetype"), url("../../../system/fonts/Kunlasatri.svg#Kunlasatri") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'PL-EDIT-Regular';
  src: url("../../../system/fonts/PL-EDIT.eot");
  src: url("../../../system/fonts/PL-EDIT.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/PL-EDIT.woff2") format("woff2"), url("../../../system/fonts/PL-EDIT.woff") format("woff"), url("../../../system/fonts/PL-EDIT.ttf") format("truetype"), url("../../../system/fonts/PL-EDIT.svg#PL-EDIT") format("svg");
  font-weight: normal;
  font-style: normal; }
/*--Boon--*/
@font-face {
  font-family: 'Boon-Regular';
  src: url("../../../system/fonts/Boon-300.eot");
  src: url("../../../system/fonts/Boon-300.eot?#iefix") format("embedded-opentype"), url("../../../system/fonts/Boon-300.woff2") format("woff2"), url("../../../system/fonts/Boon-300.woff") format("woff"), url("../../../system/fonts/Boon-300.ttf") format("truetype"), url("../../../system/fonts/Boon-300.svg#Boon-300") format("svg");
  font-weight: 300;
  font-style: normal; }
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 33px; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 30px;
    font-size: 0.9rem; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 28px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #CCCCCC transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.9rem; }
.select2-container--default .select2-results__option[role=group] {
  padding: 0; }
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.bootstrap-touchspin i {
  position: absolute;
  top: 3px;
  left: 5px;
  font-size: 0.95rem;
  font-weight: bold; }
.bootstrap-touchspin .btn {
  font-size: 0.8rem; }
.bootstrap-touchspin > input.input-spin {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
  min-width: 80px; }
.bootstrap-touchspin .bootstrap-touchspin-postfix {
  color: #AAAAAA;
  background-color: #EEEEEE; }
.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
  /*
  i {
  	position: absolute;
  	top: 3px;
  	left: 5px;
  	font-size: 9px;
  	font-weight: normal;
  }
  */ }
  .bootstrap-touchspin .input-group-btn-vertical > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 9px 10px;
    position: relative; }
  .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    border-radius: 0;
    border-top-right-radius: 4px; }
    .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up:hover {
      color: #468c00; }
  .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    margin-top: -2px;
    border-radius: 0;
    border-bottom-right-radius: 4px;
    border-top: 2px solid rgba(255, 255, 255, 0.5); }
    .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down:hover {
      color: #468c00; }
.bootstrap-touchspin .btn-dark-15 {
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  font-weight: bold; }
.bootstrap-touchspin .btn-dark-25 {
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
  font-weight: bold; }

input[type='text'], textarea {
  margin: 0 auto;
  padding: 3px 5px;
  width: 100%;
  font-size: 0.85rem;
  line-height: 1.5em;
  border: 1px solid #CCC;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px; }
  input[type='text']:focus, textarea:focus {
    outline: none; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #EFEFEF;
  -webkit-text-fill-color: #222222;
  -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
  transition: background-color 5000s ease-in-out 0s; }

select {
  margin: 0 auto;
  padding: 5px;
  width: 100%;
  font-size: 0.85rem !important;
  border: 1px solid #CCC;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.gen-form input[type='text'], .gen-form textarea {
  margin: 0 auto;
  padding: 5px;
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.5em;
  border: 1px solid #CCC;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }
.gen-form select {
  margin: 0 auto;
  padding: 5px;
  width: 100%;
  font-size: 0.85rem !important;
  border: 1px solid #CCC;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.form-design {
  position: relative;
  margin: 0 auto;
  padding: 0; }
  .form-design .h-nm {
    position: relative;
    margin: 0 auto;
    padding: 0px;
    text-align: center;
    font-family: 'paaymaay';
    font-size: 2.8rem;
    color: #93BFEA;
    text-shadow: #0662be 0px 1px 0px; }
  .form-design > ul {
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 94%;
    font-family: 'arial'; }
    .form-design > ul.align-left {
      margin: 0;
      width: 100%;
      text-align: left; }
      .form-design > ul.align-left > li {
        padding: 5px 3px; }
      .form-design > ul.align-left .math-box {
        padding: 5px 16px; }
      @media only screen and (max-width: 580px) {
        .form-design > ul.align-left {
          margin: 10px auto;
          text-align: center; } }
    .form-design > ul > li {
      position: relative;
      vertical-align: top;
      display: -moz-inline-stack;
      display: inline-block;
      -webkit-transition: all 0.6s ease 0s;
      -moz-transition: all 0.6s ease 0s;
      -o-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      margin: 0 3px;
      padding: 5px 6px;
      text-align: left; }
    .form-design > ul label {
      margin: 0;
      padding: 0;
      font-size: 0.85rem;
      color: #00a3d9; }
    .form-design > ul input[type='text'], .form-design > ul textarea {
      margin: 0 auto;
      padding: 5px;
      width: 100%;
      font-size: 0.9rem;
      line-height: 1.5em;
      background: #f0f2f3;
      border: 1px solid rgba(0, 179, 0, 0.12);
      -webkit-border-radius: 4px;
      -khtml-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px; }
    .form-design > ul select {
      margin: 0 auto;
      padding: 5px;
      width: 100%;
      font-size: 0.85rem !important;
      border: 1px solid #CCC;
      -webkit-border-radius: 4px;
      -khtml-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px; }
    .form-design > ul .input-dt {
      width: 100px !important;
      cursor: pointer;
      z-index: 9999; }
    .form-design > ul .input-shortest {
      width: 80px !important; }
    .form-design > ul .input-short {
      min-width: 100px !important; }
    .form-design > ul .input-norm {
      min-width: 300px !important; }
    .form-design > ul .captcha-contain.color-white {
      color: #FFF; }
    .form-design > ul .math-box {
      margin: 0 auto;
      padding: 4px 16px;
      display: inline-block;
      color: #666;
      text-align: center;
      background: #ffffff;
      border: 1px solid #CCC;
      -webkit-border-radius: 4px;
      -khtml-border-radius: 4px;
      -moz-border-radius: 4px;
      -ms-border-radius: 4px;
      -o-border-radius: 4px;
      border-radius: 4px; }
    .form-design > ul .font-b-red-star {
      font-weight: bold !important;
      color: #D90000 !important; }
      .form-design > ul .font-b-red-star:after {
        content: ' *'; }
    .form-design > ul .w-185 {
      width: 185px !important; }
    .form-design > ul .w-200 {
      width: 200px !important; }
    .form-design > ul .hidden {
      display: none !important; }
  .form-design #err-container {
    position: relative;
    margin: 0 auto;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.075); }
    .form-design #err-container .valid-err-title {
      position: relative;
      margin: 0 auto;
      padding: 5px; }
      .form-design #err-container .valid-err-title h4 {
        font-size: 1.2rem; }
    .form-design #err-container ul {
      position: relative;
      margin: 0 auto;
      vertical-align: top;
      list-style: none; }
      .form-design #err-container ul li {
        padding: 3px; }
        .form-design #err-container ul li label.chk-valid {
          font-weight: normal;
          font-size: 0.85rem;
          color: #D90000; }
          .form-design #err-container ul li label.chk-valid:before {
            content: "\f071";
            font-family: "FontAwesome";
            font-size: 1rem;
            margin: 0 5px; }
        .form-design #err-container ul li label.chk-invalid {
          color: #00D900; }
          .form-design #err-container ul li label.chk-invalid:before {
            content: "\f14a";
            font-family: "FontAwesome";
            font-size: 1rem;
            margin: 0 5px; }
  .form-design .btn-contain {
    position: relative;
    margin: 0 auto;
    padding: 10px;
    text-align: center; }
    .form-design .btn-contain .btn-register {
      padding: 8px 20px;
      font-family: 'paaymaay';
      font-size: 1.3rem;
      line-height: 23px;
      color: #FFFFFF;
      border: 1px solid #CCCCCC; }
      .form-design .btn-contain .btn-register i {
        color: #004d66;
        text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.5);
        font-size: 1.2rem; }
      .form-design .btn-contain .btn-register:hover {
        cursor: pointer; }
    .form-design .btn-contain .btn-signin {
      padding: 6px 15px;
      font-size: 0.8rem;
      color: #FFFFFF;
      border: 1px solid rgba(204, 204, 204, 0.5); }
      .form-design .btn-contain .btn-signin i {
        color: #004d66;
        text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.5);
        font-size: 1.2rem; }
      .form-design .btn-contain .btn-signin:hover {
        cursor: pointer; }
    .form-design .btn-contain .btn-gen {
      padding: 6px 15px;
      font-size: 0.8rem;
      color: #FFFFFF;
      border: 1px solid rgba(204, 204, 204, 0.5); }
      .form-design .btn-contain .btn-gen i {
        color: #004d66;
        text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.5);
        font-size: 1.2rem; }
      .form-design .btn-contain .btn-gen:hover {
        cursor: pointer; }
    .form-design .btn-contain .btn-save {
      padding: 6px 15px;
      font-size: 0.8rem;
      color: #FFFFFF;
      border: 1px solid rgba(204, 204, 204, 0.4); }
      .form-design .btn-contain .btn-save i {
        color: #d96c00;
        text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.5);
        font-size: 1.2rem; }
      .form-design .btn-contain .btn-save:hover {
        cursor: pointer; }

.checkbox-style1 {
  position: relative;
  margin: 0 auto;
  padding: 5px 10px; }
  .checkbox-style1 input {
    display: none; }
  .checkbox-style1 label span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #a9a9a9;
    background: #EFEFEF; }
  .checkbox-style1 [type=checkbox]:checked + label span:before {
    position: absolute;
    content: '\f14a';
    font-family: 'fontAwesome';
    font-size: 1.3rem;
    color: #D5B741;
    top: -1px;
    left: 0px; }
  .checkbox-style1.green [type=checkbox]:checked + label span:before {
    color: #2db300; }
  .checkbox-style1.blue [type=checkbox]:checked + label span:before {
    color: #00bfff; }
  .checkbox-style1.red [type=checkbox]:checked + label span:before {
    color: #ff0000; }
  .checkbox-style1.orange [type=checkbox]:checked + label span:before {
    color: #ff4000; }
  .checkbox-style1.pink [type=checkbox]:checked + label span:before {
    color: #ff4cff; }
  .checkbox-style1 .txt-checkbox {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0 auto;
    padding: 2px 8px;
    color: #666666;
    font-family: 'tahoma';
    font-size: 0.85rem; }
    .checkbox-style1 .txt-checkbox.font-white {
      color: white; }
    .checkbox-style1 .txt-checkbox.font-yellow {
      color: #faff18; }

.check-radio-style {
  position: relative;
  margin: 0 auto;
  padding: 5px 10px; }
  .check-radio-style input[type=radio].with-font,
  .check-radio-style input[type=checkbox].with-font {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }
  .check-radio-style input[type=radio].with-font ~ label:before,
  .check-radio-style input[type=checkbox].with-font ~ label:before {
    font-family: FontAwesome;
    display: inline-block;
    content: "\f1db";
    letter-spacing: 10px;
    font-size: 1.2rem;
    color: #6fb8a7;
    width: 1.4rem; }
  .check-radio-style input[type=radio].with-font:checked ~ label:before,
  .check-radio-style input[type=checkbox].with-font:checked ~ label:before {
    content: "\f00c";
    font-size: 1.2rem;
    color: darkgreen;
    letter-spacing: 5px; }
  .check-radio-style input[type=checkbox].with-font ~ label:before {
    content: "\f096"; }
  .check-radio-style input[type=checkbox].with-font:checked ~ label:before {
    content: "\f046";
    color: darkgreen; }
  .check-radio-style input[type=radio].with-font:focus ~ label:before,
  .check-radio-style input[type=checkbox].with-font:focus ~ label:before,
  .check-radio-style input[type=radio].with-font:focus ~ label,
  .check-radio-style input[type=checkbox].with-font:focus ~ label {
    color: green; }

.warning-msg {
  position: relative;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  color: #ff5c26; }

#breadcrumb.breadcrumb-contain {
  position: relative;
  margin: 0 auto;
  padding: 5px; }
  #breadcrumb.breadcrumb-contain > ul {
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding: 0 10px;
    width: 94%;
    max-width: 1100px; }
    #breadcrumb.breadcrumb-contain > ul > li {
      position: relative;
      margin: 0 auto;
      padding: 5px; }
      #breadcrumb.breadcrumb-contain > ul > li .txt-contain {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: initial;
        color: rgba(0, 0, 0, 0.8);
        font-size: 0.84rem;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); }
      #breadcrumb.breadcrumb-contain > ul > li .img-contain {
        position: relative;
        margin: 0 auto;
        padding: 0;
        color: rgba(0, 0, 0, 0.8);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); }
  @media only screen and (min-width: 800px) {
    #breadcrumb.breadcrumb-contain > ul > li {
      display: -moz-inline-stack;
      display: inline-block;
      text-align: center; }
      #breadcrumb.breadcrumb-contain > ul > li:nth-child(n+2) {
        padding: 5px 5px 5px 15px; }
        #breadcrumb.breadcrumb-contain > ul > li:nth-child(n+2):before {
          position: absolute;
          margin: 0 auto;
          padding: 0;
          left: 0;
          content: '\f101';
          font-family: 'fontAwesome';
          color: rgba(0, 0, 0, 0.5);
          font-size: 0.84rem; } }
  @media only screen and (max-width: 799px) {
    #breadcrumb.breadcrumb-contain {
      display: none; } }

.pages-filter {
  position: relative;
  margin: 0 auto;
  padding: 0; }
  .pages-filter.filter-fixed {
    position: fixed;
    z-index: 9;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    padding: 10px;
    width: 100%;
    top: 46px;
    background: rgba(255, 255, 255, 0.85); }
  .pages-filter .error-msg-contain {
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding: 5px;
    width: 100%;
    color: #d90000;
    font-size: 0.8rem; }
  .pages-filter > ul {
    position: relative;
    -webkit-transition: all 0.6s ease 0s;
    -moz-transition: all 0.6s ease 0s;
    -o-transition: all 0.6s ease 0s;
    transition: all 0.6s ease 0s;
    top: 0;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center; }
    .pages-filter > ul.filter-fixed {
      position: fixed;
      z-index: 998;
      top: 40px;
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      -webkit-border-radius: 6px;
      -khtml-border-radius: 6px;
      -moz-border-radius: 6px;
      -ms-border-radius: 6px;
      -o-border-radius: 6px;
      border-radius: 6px; }
    .pages-filter > ul > li {
      position: relative;
      -webkit-transition: all 0.6s ease 0s;
      -moz-transition: all 0.6s ease 0s;
      -o-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      vertical-align: middle;
      display: -moz-inline-stack;
      display: inline-block;
      padding: 1px;
      margin: 1px; }
      .pages-filter > ul > li .search-hor-inline {
        position: relative;
        margin: 0 auto;
        padding: 0;
        display: -moz-inline-stack;
        display: inline-block;
        vertical-align: middle; }
      .pages-filter > ul > li .pages-search-btn-contain {
        position: relative;
        left: -3px;
        -webkit-transition: all 0.4s ease 0s;
        -moz-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        margin: 0 auto;
        padding: 6px 15px;
        font-size: 0.85rem;
        color: #FFF;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
        background: #3296c3;
        -webkit-border-radius: 1px;
        -khtml-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px; }
        .pages-filter > ul > li .pages-search-btn-contain.green {
          background: #10a40d; }
        .pages-filter > ul > li .pages-search-btn-contain:hover {
          cursor: pointer;
          background: #41abdb; }
      .pages-filter > ul > li .search-dt-range-contain {
        position: relative;
        margin: 0 auto;
        padding: 0; }
        .pages-filter > ul > li .search-dt-range-contain .search-dt-range-ico {
          position: relative;
          -webkit-transition: all 0.6s ease 0s;
          -moz-transition: all 0.6s ease 0s;
          -o-transition: all 0.6s ease 0s;
          transition: all 0.6s ease 0s;
          margin: 0 auto;
          padding: 4px;
          width: 30px;
          height: 29px;
          color: #FFF;
          background: #74a739; }
          .pages-filter > ul > li .search-dt-range-contain .search-dt-range-ico:before {
            font-family: 'fontAweSome';
            font-size: 0.9rem;
            content: '\f073'; }
          .pages-filter > ul > li .search-dt-range-contain .search-dt-range-ico.active:before {
            font-family: 'fontAweSome';
            content: '\f273'; }
          .pages-filter > ul > li .search-dt-range-contain .search-dt-range-ico:hover {
            cursor: pointer;
            color: rgba(255, 255, 255, 0.8);
            background: #e4ae49; }
        .pages-filter > ul > li .search-dt-range-contain > ol {
          display: none;
          position: absolute;
          list-style: none;
          z-index: 1;
          margin: 0 auto;
          padding: 8px;
          min-width: 250px;
          left: 0;
          top: 27px;
          background: #bcca9b; }
          .pages-filter > ul > li .search-dt-range-contain > ol > li {
            position: relative;
            display: -moz-inline-stack;
            display: inline-block;
            -webkit-transition: all 0.6s ease 0s;
            -moz-transition: all 0.6s ease 0s;
            -o-transition: all 0.6s ease 0s;
            transition: all 0.6s ease 0s;
            text-align: left;
            margin: 1px auto;
            padding: 5px;
            width: calc( (100% - 10px)/2 );
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.8); }
            .pages-filter > ul > li .search-dt-range-contain > ol > li.active {
              background: #468c00 !important;
              color: #FFF; }
            .pages-filter > ul > li .search-dt-range-contain > ol > li label {
              font-size: 0.8rem;
              color: #666; }
            .pages-filter > ul > li .search-dt-range-contain > ol > li .btn-clear-dt {
              margin: 0 auto;
              padding: 7px;
              text-align: center;
              -webkit-transition: all 0.6s ease 0s;
              -moz-transition: all 0.6s ease 0s;
              -o-transition: all 0.6s ease 0s;
              transition: all 0.6s ease 0s;
              font-size: 0.8rem;
              color: #FFF;
              background: #8db013; }
              .pages-filter > ul > li .search-dt-range-contain > ol > li .btn-clear-dt:hover {
                cursor: pointer;
                background: #789610; }
      .pages-filter > ul > li .btn-search-reset {
        margin: 0 auto;
        padding: 7.5px;
        text-align: center;
        -webkit-transition: all 0.6s ease 0s;
        -moz-transition: all 0.6s ease 0s;
        -o-transition: all 0.6s ease 0s;
        transition: all 0.6s ease 0s;
        width: 60px;
        color: #FFF;
        background: #8db013; }
        .pages-filter > ul > li .btn-search-reset.th {
          font-size: 0.8rem; }
        .pages-filter > ul > li .btn-search-reset.en {
          font-size: 0.75rem;
          text-transform: uppercase; }
        .pages-filter > ul > li .btn-search-reset:hover {
          cursor: pointer;
          background: #789610; }
      .pages-filter > ul > li .btn-rss-feed-contain {
        position: relative;
        -webkit-transition: all 0.4s ease 0s;
        -moz-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
        margin: 0 auto;
        padding: 5px 10px;
        height: 29px;
        font-size: 0.85rem;
        color: #FFF;
        text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
        background: #ff9b07;
        -webkit-border-radius: 1px;
        -khtml-border-radius: 1px;
        -moz-border-radius: 1px;
        -ms-border-radius: 1px;
        -o-border-radius: 1px;
        border-radius: 1px; }
        .pages-filter > ul > li .btn-rss-feed-contain:before {
          position: relative;
          content: '\f09e';
          top: 2px;
          font-family: 'fontAwesome';
          color: #FFF;
          font-size: 0.95rem; }
        .pages-filter > ul > li .btn-rss-feed-contain:hover {
          cursor: pointer;
          background: #ff4000; }
      .pages-filter > ul > li .btn-view-contain {
        position: relative;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        width: 62px;
        height: 29px; }
        .pages-filter > ul > li .btn-view-contain .btn-view {
          position: relative;
          margin: 0 auto;
          padding: 0;
          display: -moz-inline-stack;
          display: inline-block;
          -webkit-transition: all 0.6s ease 0s;
          -moz-transition: all 0.6s ease 0s;
          -o-transition: all 0.6s ease 0s;
          transition: all 0.6s ease 0s;
          background: #64d264; }
          .pages-filter > ul > li .btn-view-contain .btn-view.btn-view-thumb {
            width: 30px;
            height: 29px; }
          .pages-filter > ul > li .btn-view-contain .btn-view.btn-view-list {
            width: 30px;
            height: 29px; }
          .pages-filter > ul > li .btn-view-contain .btn-view .ico {
            position: absolute;
            margin: 0;
            padding: 0;
            width: 100%;
            left: 0;
            top: 7px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem; }
            .pages-filter > ul > li .btn-view-contain .btn-view .ico:before {
              font-family: 'fontAwesome'; }
            .pages-filter > ul > li .btn-view-contain .btn-view .ico.ico-view-thumb:before {
              content: '\f00a'; }
            .pages-filter > ul > li .btn-view-contain .btn-view .ico.ico-view-list:before {
              content: '\f0ca'; }
          .pages-filter > ul > li .btn-view-contain .btn-view:hover {
            cursor: pointer;
            background: #006619; }
            .pages-filter > ul > li .btn-view-contain .btn-view:hover .ico {
              color: #ffff4c; }
          .pages-filter > ul > li .btn-view-contain .btn-view.active {
            background: #00b300; }
            .pages-filter > ul > li .btn-view-contain .btn-view.active:hover {
              cursor: initial; }
            .pages-filter > ul > li .btn-view-contain .btn-view.active .ico {
              color: #ffff26; }

.pages-filter .page-no-contain {
  margin: 0 auto;
  padding: 0; }
  .pages-filter .page-no-contain ol.page-no-list-contain {
    position: relative;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center; }
    .pages-filter .page-no-contain ol.page-no-list-contain.bg-green {
      background: #438a3b; }
      .pages-filter .page-no-contain ol.page-no-list-contain.bg-green > li.page-no-ico {
        padding: 5px 0;
        color: #FFF; }
    .pages-filter .page-no-contain ol.page-no-list-contain > li {
      position: relative;
      margin: 0 1px;
      padding: 0;
      display: -moz-inline-stack;
      display: inline-block;
      vertical-align: middle;
      -webkit-transition: all 0.6s ease 0s;
      -moz-transition: all 0.6s ease 0s;
      -o-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      background: rgba(255, 255, 255, 0.2); }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-ico {
        width: 30px; }
        .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-ico:before {
          position: relative;
          font-family: 'fontAweSome'; }
        .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-ico:hover {
          cursor: pointer;
          background: rgba(0, 0, 0, 0.2); }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-next:before {
        top: 1px;
        content: '\f0da';
        font-size: 1.1rem; }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-prev:before {
        top: 1px;
        content: '\f0d9';
        font-size: 1.1rem; }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-first:before {
        content: '\f049';
        font-size: 0.8rem; }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-last:before {
        content: '\f04e';
        font-size: 0.8rem; }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-form-total-page {
        padding: 6px;
        height: 29px;
        left: -2px;
        font-size: 0.85rem;
        background: #FFF;
        border-top: 1px solid #CCC;
        border-bottom: 1px solid #CCC; }
      .pages-filter .page-no-contain ol.page-no-list-contain > li.page-no-sel select#page_no {
        position: relative;
        border-radius: initial; }

.result-bar-contain {
  position: relative;
  margin: 0 auto;
  padding: 6px 15px;
  text-align: center;
  color: #999;
  font-size: 0.8rem; }
  .result-bar-contain .result-txt-contain {
    position: relative;
    margin: 0 auto;
    padding: 3px; }

.select2 {
  font-size: 0.85rem; }

.select2-search {
  background-color: #ffffff;
  border-bottom: 1px dotted #00a3d9; }
  .select2-search input {
    background-color: #ffffff; }

.select2-results {
  background-color: #e1f8ff; }

.select2-results__option {
  background-color: #e1f8ff;
  border-bottom: 1px dotted #00bfff; }
  .select2-results__option:nth-child(odd) {
    background-color: #ccf3ff; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #4cd2ff;
  color: #ffffff; }

.form-control {
  font-size: 0.85rem; }

.kw_hl {
  color: #ff0000; }

.site-ribbon-contain {
  position: absolute;
  z-index: 10002;
  margin: 0 auto;
  padding: 0; }
  .site-ribbon-contain.fixed {
    position: fixed; }
  .site-ribbon-contain.top-left {
    top: 0;
    left: 0; }
  .site-ribbon-contain.top-right {
    top: 0;
    right: 0; }
  .site-ribbon-contain.bottom-left {
    bottom: 0;
    left: 0; }
  .site-ribbon-contain.bottom-right {
    bottom: 0;
    right: 0; }
  .site-ribbon-contain .img-contain {
    position: relative;
    margin: 0 auto;
    padding: 0; }
    .site-ribbon-contain .img-contain img {
      position: relative;
      margin: 0 auto;
      padding: 0;
      max-width: 100%; }
  @media only screen and (max-width: 999px) {
    .site-ribbon-contain {
      max-width: 100px; } }

.popup-contain.popup-style-01 {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  z-index: 10000;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100%; }
  .popup-contain.popup-style-01.active {
    visibility: visible;
    opacity: 1; }

.gen-popup-contain {
  position: relative;
  z-index: 10001;
  margin: 0 auto;
  padding: 5px;
  top: 0;
  top: 15%;
  left: 50%;
  width: 94%;
  max-width: 1000px;
  min-height: 200px;
  text-align: center;
  vertical-align: middle;
  background: #FFF; }
  .gen-popup-contain .close-popup {
    position: relative;
    z-index: 10004;
    margin: 0 auto;
    padding: 0; }
    .gen-popup-contain .close-popup .ribbon-contain {
      width: 0;
      height: 0;
      border-top: 70px solid #619542;
      border-left: 70px solid transparent;
      position: absolute;
      right: -10px;
      top: -10px; }
      .gen-popup-contain .close-popup .ribbon-contain .ribbon-more {
        position: absolute;
        right: 4px;
        top: -62px;
        width: 30px;
        height: 30px;
        padding: 2px;
        -webkit-border-radius: 200px;
        -khtml-border-radius: 200px;
        -moz-border-radius: 200px;
        -ms-border-radius: 200px;
        -o-border-radius: 200px;
        border-radius: 200px;
        border: 2px dotted #ffa64c;
        color: #FFF;
        font-weight: bold;
        background: rgba(255, 255, 255, 0.3); }
      .gen-popup-contain .close-popup .ribbon-contain:hover {
        cursor: pointer;
        opacity: 0.7; }
        .gen-popup-contain .close-popup .ribbon-contain:hover .ribbon-more {
          color: #000000;
          text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5); }
    .gen-popup-contain .close-popup .ribbon-contain {
      z-index: 1;
      opacity: 1;
      top: -11px;
      right: -10px;
      box-shadow: none; }
    .gen-popup-contain .close-popup .ico-close-popup {
      position: absolute;
      z-index: 2;
      top: 0px;
      right: 0px;
      color: #FFF;
      font-size: 1.2rem; }
    .gen-popup-contain .close-popup:hover {
      cursor: pointer; }
      .gen-popup-contain .close-popup:hover .ico-close-popup {
        color: rgba(255, 255, 255, 0.7); }
  .gen-popup-contain #load-popup.load-popup-contain {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-height: 550px;
    overflow: hidden; }
  .gen-popup-contain .img-contain {
    position: relative;
    margin: 0 auto;
    padding: 5px 0; }
    .gen-popup-contain .img-contain img {
      max-width: 100%; }
    .gen-popup-contain .img-contain:hover {
      cursor: move; }
  .gen-popup-contain > ul {
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding: 0; }
    .gen-popup-contain > ul.bg-blue {
      background: #47a2e0;
      color: #FFF; }
    .gen-popup-contain > ul > li {
      position: relative;
      margin: 0;
      padding: 0;
      display: -moz-inline-stack;
      display: inline-block; }
  .gen-popup-contain .tab-panel {
    position: relative;
    margin: 0 auto;
    padding: 5px; }
    .gen-popup-contain .tab-panel span {
      position: relative;
      -webkit-transition: all 0.6s ease 0s;
      -moz-transition: all 0.6s ease 0s;
      -o-transition: all 0.6s ease 0s;
      transition: all 0.6s ease 0s;
      margin: 0 auto;
      padding: 8px 10px;
      background: rgba(255, 255, 255, 0.4);
      border: 1px solid #EEE;
      font-size: 0.8rem;
      color: #666; }
      .gen-popup-contain .tab-panel span:hover {
        cursor: pointer;
        background: #333;
        color: #FFF; }
  @media only screen and (min-width: 1000px) {
    .gen-popup-contain {
      top: 5%;
      margin-left: calc( -1000px/2 ); } }
  @media only screen and (max-width: 1000px) {
    .gen-popup-contain {
      top: 3%;
      margin-left: -47%; }
      .gen-popup-contain .img-contain {
        padding: 0; } }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); }

.main-menu-sortable-placeholder {
  width: 50px;
  height: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px dotted rgba(0, 0, 0, 0.2); }

.content-sortable-placeholder {
  width: 100%;
  height: 2rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px dotted rgba(0, 0, 0, 0.2); }

.gen-placeholder {
  width: 100%;
  height: 2rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1px dotted rgba(0, 0, 0, 0.2); }

.red-placeholder {
  width: 100%;
  height: 2rem;
  background: rgba(250, 37, 0, 0.1);
  border: 1px dotted rgba(250, 37, 0, 0.2); }

.font-red {
  color: #d90000 !important; }

.font-green {
  color: #008c00 !important; }

.font-yellow {
  color: #f0b500 !important; }

.font-orange {
  color: #ff8000 !important; }

.font-size-08 {
  font-size: 0.8rem !important; }

.font-size-085 {
  font-size: 0.85rem !important; }

.font-size-09 {
  font-size: 0.9rem !important; }

.font-size-095 {
  font-size: 0.95rem !important; }

.font-size-10 {
  font-size: 1rem !important; }

.font-size-11 {
  font-size: 1.1rem !important; }

.font-size-12 {
  font-size: 1.2rem !important; }

.font-size-13 {
  font-size: 1.3rem !important; }

.font-size-14 {
  font-size: 1.4rem !important; }

.font-size-15 {
  font-size: 1.5rem !important; }

.font-size-16 {
  font-size: 1.6rem !important; }

.font-size-20 {
  font-size: 2rem !important; }

.txt-underline {
  text-decoration: underline; }

.border-bottom-double-red {
  border-bottom: 4px double #ff4000; }

.w-80 {
  width: 80px; }

.w-50 {
  width: 50px; }

.w-100 {
  width: 100px !important; }

.w-120 {
  width: 120px; }

.w-150 {
  width: 150px; }

.w-180 {
  width: 180px; }

.w-200 {
  width: 200px; }

.w-250 {
  width: 250px; }

.w-290 {
  width: 290px; }

.w-300 {
  width: 300px; }

.w-350 {
  width: 350px; }

.w-420 {
  width: 420px !important; }

.h-5 {
  height: 5px !important; }

.h-10 {
  height: 10px !important; }

.h-20 {
  height: 20px !important; }

.h-30 {
  height: 30px !important; }

.h-40 {
  height: 40px !important; }

.h-50 {
  height: 50px !important; }

.h-60 {
  height: 60px !important; }

.h-70 {
  height: 70px !important; }

.h-80 {
  height: 80px !important; }

.h-90 {
  height: 90px !important; }

.h-100 {
  height: 100px !important; }

.h-120 {
  height: 120px !important; }

.h-130 {
  height: 130px !important; }

.h-140 {
  height: 140px !important; }

.h-150 {
  height: 150px !important; }

.h-160 {
  height: 160px !important; }

.h-170 {
  height: 170px !important; }

.h-180 {
  height: 180px !important; }

.h-185 {
  height: 185px !important; }

.h-190 {
  height: 190px !important; }

.h-195 {
  height: 195px !important; }

.h-200 {
  height: 200px !important; }

.h-250 {
  height: 250px !important; }

.w-50p {
  width: 50%; }

.w-80p {
  width: 80%; }

.w-100p {
  width: 100%; }

.padd-5b {
  padding-bottom: 5px; }

.txt-r {
  text-align: right; }

.txt-l {
  text-align: left; }

.txt-justify {
  text-align: justify; }

.hor-inline {
  display: -moz-inline-stack;
  display: inline-block; }

.hcenter {
  text-align: center; }

.overflow-hidden {
  overflow: hidden; }

.hidden {
  display: none; }

.hidden-important {
  display: none !important; }

.float-r {
  float: right; }

.float-l {
  float: left; }

.clear-both {
  clear: both; }

::-webkit-scrollbar {
  width: 10px;
  height: 10px; }

::-webkit-scrollbar-thumb {
  background: #cccccc;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); }

::-webkit-scrollbar-track {
  background: #e5e5e5;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(100, 100, 100, 0.1); }

.scroll-div-style::-webkit-scrollbar {
  width: 3px !important;
  height: 3px !important; }

.scroll-div-style::-webkit-scrollbar-thumb {
  background: #bde3f0;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); }

.scroll-div-style::-webkit-scrollbar-track {
  background: #f1f9fc;
  -webkit-border-radius: 1px;
  -khtml-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 6px rgba(100, 100, 100, 0.1); }

.overflow-hidden {
  overflow: hidden; }

.hidden {
  display: none; }

.hidden-important {
  display: none !important; }

.float-r {
  float: right; }

.float-l {
  float: left; }

.clear-both {
  clear: both; }

.w-80 {
  width: 80px; }

.w-50 {
  width: 50px; }

.w-100 {
  width: 100px !important; }

.w-120 {
  width: 120px; }

.w-150 {
  width: 150px; }

.w-180 {
  width: 180px; }

.w-200 {
  width: 200px; }

.w-250 {
  width: 250px; }

.w-290 {
  width: 290px; }

.w-300 {
  width: 300px; }

.w-350 {
  width: 350px; }

.w-420 {
  width: 420px !important; }

.h-5 {
  height: 5px !important; }

.h-10 {
  height: 10px !important; }

.h-20 {
  height: 20px !important; }

.h-30 {
  height: 30px !important; }

.h-40 {
  height: 40px !important; }

.h-50 {
  height: 50px !important; }

.h-60 {
  height: 60px !important; }

.h-70 {
  height: 70px !important; }

.h-80 {
  height: 80px !important; }

.h-90 {
  height: 90px !important; }

.h-100 {
  height: 100px !important; }

.h-120 {
  height: 120px !important; }

.h-130 {
  height: 130px !important; }

.h-140 {
  height: 140px !important; }

.h-150 {
  height: 150px !important; }

.h-180 {
  height: 180px !important; }

.h-200 {
  height: 200px !important; }

.h-250 {
  height: 250px !important; }

.w-50p {
  width: 50%; }

.w-80p {
  width: 80%; }

.w-100p {
  width: 100%; }

.hcenter {
  text-align: center; }

.txt-db-adman-x {
  font-family: 'DBAdmanX'; }

.padd-5b {
  padding-bottom: 5px; }

.section-divider {
  position: absolute;
  left: 50%;
  margin-left: -220px;
  top: -25px;
  width: 440px;
  height: 26px;
  background: url("../images/divider/07.png") repeat-x top center; }

.divider {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 40px; }
  .divider.divider-1 {
    background: url("../images/divider/01.png") no-repeat top center; }
  .divider.divider-2 {
    background: url("../images/divider/02.png") no-repeat top center; }
  .divider.divider-3.yellow {
    background: url("../images/divider/03_yellow.png") no-repeat top center; }
  .divider.divider-3.pink {
    background: url("../images/divider/03_pink.png") no-repeat top center; }
  .divider.divider-4 {
    background: url("../images/divider/04.png") no-repeat top center; }
  .divider.divider-5 {
    background: url("../images/divider/05.png") no-repeat top center; }
  .divider.divider-6 {
    background: url("../images/divider/p-1.png") no-repeat top center; }
  .divider.divider-7 {
    background: url("../images/divider/p-2.png") no-repeat top center; }

.mousewheel-ico {
  position: absolute;
  width: 22px;
  height: 34px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  text-align: center;
  background: #FFFFFF; }
  .mousewheel-ico div {
    margin: 0 auto;
    padding: 0;
    height: 8px; }
    .mousewheel-ico div i {
      font-size: 0.8rem;
      color: #bbbbbb; }
  .mousewheel-ico.r {
    right: 8px; }

.ribbon {
  position: absolute;
  z-index: 3;
  top: -2px;
  right: -2px;
  width: 54px;
  height: 51px; }
  .ribbon.new {
    background: url("../images/home/new-ribbon.png") no-repeat top center; }

.shadow-bg {
  position: relative;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  height: 25px;
  background: url("../images/main/shadow.png") no-repeat top center; }

.txt-r {
  text-align: right; }

.txt-l {
  text-align: left; }

.txt-justify {
  text-align: justify; }

.hor-inline {
  display: -moz-inline-stack;
  display: inline-block; }
