/**
 * Background noise recipe
 * 
 * This recipe use a sass function to generate a .png file
 * 
 * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
 * @link https://github.com/DanielRapp/Noisy
 * 
 * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
 * @link https://gist.github.com/1021332
 * 
 * Ported to a sass gem by Antti Salonen @antsa
 * @link https://github.com/antsa/sassy_noise
 * 
 * Mixin:        background-noise
 * Function:     background_noise
 * 
 * @author Daniel Rapp @DanielRapp
 * @author Aaron Russell @aaronrussell
 * @author Philipp Bosch @philippbosch
 * @author Antti Salonen @antsa
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 *
 * @class Gradients
 * @author David Kaneda http://www.davidkaneda.com/
 *
 */
/**
 * Adds a background gradient into a specified selector.
 * 
 *     @include background-gradient(#444, 'glossy');
 * 
 * You can also use color-stops if you want full control of the gradient:
 * 
 *     @include background-gradient(#444, color-stops(#333, #222, #111));
 * 
 * @param {color} $bg-color
 * The base color of the gradient.
 * 
 * @param {string/list} $type
 * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
 *
 *     @include background-gradient(red, 'glossy');
 *
 * It can also accept a list of color-stop values:;
 * 
 *     @include background-gradient(black, color-stops(#333, #111, #000));
 * 
 * @param {string} $direction
 * The direction of the gradient.
 */
/**
 * Blueprint grid background pattern
 * 
 * @link http://lea.verou.me/css3patterns/#blueprint-grid
 *
 * @author Lea Verou http://lea.verou.me/ for the original pattern
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
 */
/**
 * Background overlay inspired by Google Chrome modal overlay
 * 
 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
 */
/**
 * Striped background pattern
 * 
 * @link http://lea.verou.me/css3patterns/
 *
 * @author Lea Verou http://lea.verou.me/ for the original pattern
 * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
 */
/**
 *
 * Before compass 0.11.5, you need to add
 * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
 * To your configuration (config.rb)
 * @see https://github.com/chriseppstein/compass/issues/401
 *
 * @link http://lea.verou.me/css3patterns/#tartan
 *
 * @author Marta Armada http://swwweet.com/ for the original pattern
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
 */
/**
 * Carbon Fiber background pattern
 *
 * @author Lea Verou http://lea.verou.me/ for the original pattern
 * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
 *
 * @link http://lea.verou.me/css3patterns/
 *
 */
/**
 * Normalize.css
 * Opposite approche from CSS reset
 * 
 * Based on normalize.css commit 9576d48fc234c5224b1fc4dccba2f5965243843d
 *
 * @link http://github.com/necolas/normalize.css
 */
/* normalize.css 2011-07-12T10:51 UTC · http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 element display
   ========================================================================== */
/* =============================================================================
   Base
   ========================================================================== */
/* =============================================================================
   Links
   ========================================================================== */
/* =============================================================================
   Typography
   ========================================================================== */
/* =============================================================================
   Lists
   ========================================================================== */
/* =============================================================================
   Embedded content
   ========================================================================== */
/* =============================================================================
   Figures
   ========================================================================== */
/* =============================================================================
   Forms
   ========================================================================== */
/* =============================================================================
   Tables
   ========================================================================== */
/**
 *
 * @author David Kaneda - http://www.davidkaneda.com
 *
 */
/**
 * @class Color
 */
/**
 * Returns the brightness (out of 100) of a specified color.
 * @todo explain why this is useful
 * @param {color} $color The color you want the brightness value of
 * @return {measurement}
 */
/**
 * Returns the luminosity for a specified color
 * @todo explain why this is useful
 * @param {color} The color to check
 * @return {measurement}
 */
/**
 * Glass effect
 * Use this on image for better effect render
 * 
 * Inspired from Simurai's IMDB redisign
 *
 * @link http://lab.simurai.com/redesign/imdb
 * @thanks Simurai @simurai
 */
/**
 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
 * IE8 need to have :before and not ::before
 * So use only : and not :: if you want to support IE8
 * IE9 Webkit Firefox Opera understand ::
 */
/**
 * Scotch tape effect with pure CSS
 * 
 * @thanks Nick La @nickla for original concept
 * @link http://webdesignerwall.com/tutorials/css3-image-styles
 * 
 * @author David Kaneda http://www.davidkaneda.com
 *
 */
/**
 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
 * IE8 need to have :before and not ::before
 * So use only : and not :: if you want to support IE8
 * IE9 Webkit Firefox Opera understand ::
 */
/**
 * Corner folded with pure CSS
 * 
 * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
 * IE8 is not supported because it not render properly box-shadow and
 * pseudo element should be selected with ::element and not :element
 * 
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
 * @todo Nix in .4
 */
/**
 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
 * IE8 need to have :before and not ::before
 * So use only : and not :: if you want to support IE8
 * IE9 Webkit Firefox Opera understand ::
 */
/**
 * Corner folded with pure CSS
 * 
 * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
 * IE8 is not supported because it not render properly box-shadow and
 * pseudo element should be selected with ::element and not :element
 * 
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
 */
/**
 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
 * IE8 need to have :before and not ::before
 * So use only : and not :: if you want to support IE8
 * IE9 Webkit Firefox Opera understand ::
 */
/**
 * Form element inline mixin
 * This mixin allow you to have a label inline with your input
 * It's simply based on inline-block behavior
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Vertical alignement for page
 * Inspired by http://css-tricks.com/snippets/css/center-div-with-dynamic-height/
 * 
 * Usage:
 * 
 * SCSS
 * @include vertical-align-requirement;
 * .v-align-container { @include vertical-align-container }
 * .v-align-content-container { @include vertical-align-content-container }
 * .v-align-content { @include vertical-align-content }
 * 
 * HTML
 * <body>
 *     <div class="v-align-container">
 *         <div class="v-align-content-container">
 *             <div class="v-align-content">
 *             Your content !
 *             </div>
 *         </div> 
 *     </div>
 * </body>
 *
 * @thanks Chris Coyier @chriscoyier
 * @autor Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Media Queries Mixins
 * 
 * @todo Do we have to take care of print ?
 * 
 * @require sass-3.2 (you need eventually to do "sudo gem install sass --pre")
 * @author Maxime Thirouin <maxime.thirouin@gmail.com>
 */
/*
$media-query-width-big: 1280px;
$media-query-width-medium: 960px;
$media-query-width-small: 480px;
*/
/**
 * Drop shadow mixins from Nicolas Gallagher demo
 * 
 * @thanks Nicolas Gallagher @necolas, @simurai, @cameronmoll, @matthamm
 * 
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Drop shadow curled
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Drop shadow curved
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Drop shadow flying
 *
 * @thanks Geoffrey Crofte @geoffrey_crofte
 * @link http://www.creativejuiz.fr/trytotry/css3-box-shadow-after-before/
 */
/**
 * Drop shadow w/ lifted corners
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Drop shadow w/ perspective
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Drop shadow raised
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Drop shadow rules required for transform on drop shadow
 * 
 * /!\ This is required if you want to apply some transform on the element using drop shadow
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
 */
/**
 * Shadow along the top edge of the browser viewport
 * 
 * @link http://playground.genelocklin.com/depth/
 */
/**
* Shapes !
* Polygons, ellipses and symbols
* 
* @thanks Chris Coyier @chriscoyier
* @link http://css-tricks.com/examples/ShapesOfCSS/
* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
*/
/**
 * Shape/Ellipse
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Hexagon
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Octagon
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Parallelogram
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Pentagon
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Rectangle
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Rhombus
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Square
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Star
 *
 * @todo check if setting a z-index by default is a good thing
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Trapezoid
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Triangle
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol/Diamond
 *
 * @todo add height support
 * 
 * @author Alexander Futekov
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol/Egg
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol/Heart
 * 
 * @author Nicolas Gallagher @necolas
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol/Infinity
 * 
 * @author Nicolas Gallagher @necolas
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol/Pacman
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Symbol/Yin-yang
 *
 * @author Alexander Futekov
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Micro clearfix hack
 * 
 * The clearfix hack is a popular way to clear floats without resorting to using presentational markup. This article presents an update to the clearfix method that further reduces the amount of CSS required.
 * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
 * IE8 need to have :before and not ::before
 * So use only : and not :: if you want to support IE8
 * IE9 Webkit Firefox Opera understand ::
 */
/**
 * UI convex effect from one color
 *
 * @todo merge with ui-button ?
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * UI Glossy helper
 *
 * @deprecated
 * @todo Remove in 0.4
 * @see background/gradients
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * UI simple gradient from one color
 *
 * @todo merge with ui-button ?
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Shape/Polygon/Triangle
 *
 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
 */
/**
 * Keyboard key touch
 * A simple stylesheet for rendering beautiful keyboard-style elements.

 * @author Michael Hüneburg http://michaelhue.com/keyscss
 * @link https://github.com/michaelhue/keyscss (commit 76bb603e921d0145362e0f60eabb79d4f69cbda0)
 *
 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
 * Menu dropdown helper
 *
 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
*/
/**
 * Ui background overlay inspired by Google Chrome modal overlay
 * 
 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
 */
/**
 * Background overlay inspired by Google Chrome modal overlay
 * 
 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
 */
/**
 * <hr /> separator style
 *
 * @author Chris Coyier @chriscoyier
 * @link http://jsfiddle.net/chriscoyier/GaEzp/35/
 *
 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
 */
/**
 * Micro clearfix hack
 * 
 * The clearfix hack is a popular way to clear floats without resorting to using presentational markup. This article presents an update to the clearfix method that further reduces the amount of CSS required.
 * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
 *
 * @thanks Nicolas Gallagher @necolas
 * @link http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
 * IE8 need to have :before and not ::before
 * So use only : and not :: if you want to support IE8
 * IE9 Webkit Firefox Opera understand ::
 */
/**
 *
 * @class Gradients
 * @author David Kaneda http://www.davidkaneda.com/
 *
 */
/**
 * Adds a background gradient into a specified selector.
 * 
 *     @include background-gradient(#444, 'glossy');
 * 
 * You can also use color-stops if you want full control of the gradient:
 * 
 *     @include background-gradient(#444, color-stops(#333, #222, #111));
 * 
 * @param {color} $bg-color
 * The base color of the gradient.
 * 
 * @param {string/list} $type
 * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
 *
 *     @include background-gradient(red, 'glossy');
 *
 * It can also accept a list of color-stop values:;
 * 
 *     @include background-gradient(black, color-stops(#333, #111, #000));
 * 
 * @param {string} $direction
 * The direction of the gradient.
 */
/**
 * @class Webfont Icon
 * Great to use with the [Pictos font](http://pictos.drewwilson.com/)
 * 
 */
/**
 * @cfg {color} $webfont-icon-base-color
 * The default color of icons when using the {@link #webfont-icon} mixin.
 * 
 * Defaults to `white`.
 */
/**
 * @cfg {color} $webfont-icon-default-stroke
 * The default color to use on the border of icons, when using the {@link #webfont-icon} mixin.
 * 
 * Defaults to `null`.
 */
/**
 * @cfg {string} $webfont-icon-default-gradient
 * The default gradient to use when using the {@link #webfont-icon} mixin.
 * 
 * Defaults to `matte`.
 */
/* line 41, ../../../submodules/compass-recipes/stylesheets/recipes/_webfont-icon.scss */
.webfont-icon-base {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
  text-shadow: none;
  -webkit-user-select: none;
  user-select: none;
}

/**
 * Includes a character into the specified selector, styled as an icon.
 * 
 *     @include webfont-icon('a');
 * 
 * @param {color} $color
 * The color of the icon. Defaults to {@link #$webfont-icon-default-background $webfont-icon-default-background}.
 * 
 * @param {measurement} $size
 * The size of the icon
 * 
 * @param {color} $stroke
 * The color of the border. Defautls to {@link #$webfont-icon-default-border $webfont-icon-default-border}.
 * 
 * @param {boolean} $include-staes
 * True to include states for hover and active. Defaults to `true`.
 */
/* line 1, ../../../themes/scss/include/_base.scss */
* {
  margin: 0;
  padding: 0;
}

/* line 6, ../../../themes/scss/include/_base.scss */
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

/* line 11, ../../../themes/scss/include/_base.scss */
#jqt {
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: "Avenir Next", "Avenir";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
/* line 21, ../../../themes/scss/include/_base.scss */
#jqt a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-drag: none;
}
/* line 25, ../../../themes/scss/include/_base.scss */
#jqt a :active {
  pointer-events: none;
}
/* line 30, ../../../themes/scss/include/_base.scss */
#jqt .selectable, #jqt input, #jqt textarea {
  -webkit-user-select: auto;
}
/* line 34, ../../../themes/scss/include/_base.scss */
#jqt.notransform {
  -webkit-transform: none !important;
}
/* line 39, ../../../themes/scss/include/_base.scss */
#jqt > * {
  display: block;
  left: 0;
  top: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  z-index: 0;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-flex: 1;
  box-flex: 1;
}
/* line 53, ../../../themes/scss/include/_base.scss */
#jqt > .current {
  z-index: 10;
}
/* line 57, ../../../themes/scss/include/_base.scss */
#jqt > *:not(.current):not(.in):not(.out) {
  display: none;
}
/* line 61, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d), #jqt.autoscroll:not(.animating3d) {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* line 65, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) > *, #jqt.autoscroll:not(.animating3d) > * {
  height: 100%;
}
/* line 68, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) .scroll, #jqt.autoscroll:not(.animating3d) .scroll {
  position: relative;
  -webkit-box-flex: 1;
  box-flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* line 77, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) .scroll {
  overflow-y: scroll;
}
/* line 83, ../../../themes/scss/include/_base.scss */
#jqt .scroll {
  -webkit-margin-collapse: separate;
}
/* line 87, ../../../themes/scss/include/_base.scss */
#jqt .in, #jqt .out {
  -webkit-animation-duration: 250ms;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
/* line 93, ../../../themes/scss/include/_base.scss */
#jqt .in:after, #jqt .out:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* line 101, ../../../themes/scss/include/_base.scss */
#jqt .in input, #jqt .in a, #jqt .out input, #jqt .out a {
  pointer-events: none;
}
/* line 106, ../../../themes/scss/include/_base.scss */
#jqt .in {
  z-index: 10;
}
/* line 109, ../../../themes/scss/include/_base.scss */
#jqt .out {
  z-index: 0 !important;
}
/* line 113, ../../../themes/scss/include/_base.scss */
#jqt.supports3d {
  -webkit-perspective: 1000;
}
/* line 116, ../../../themes/scss/include/_base.scss */
#jqt.supports3d > * {
  -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

/* Fade */
/* line 3, ../../../themes/scss/include/_animations.scss */
#jqt .fade.in {
  -webkit-animation-name: fadeIn;
}

/* line 7, ../../../themes/scss/include/_animations.scss */
#jqt .fade.out {
  z-index: 10;
  -webkit-animation-name: fadeOut;
}

@-webkit-keyframes fadeIn {
  /* line 13, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 16, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  /* line 22, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 1;
  }

  /* line 25, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 1;
  }
}

/* Disolve */
/* line 34, ../../../themes/scss/include/_animations.scss */
#jqt .dissolve.in {
  -webkit-animation-name: dissolveIn;
}

/* line 38, ../../../themes/scss/include/_animations.scss */
#jqt .dissolve.out {
  -webkit-animation-name: dissolveOut;
}

@-webkit-keyframes dissolveIn {
  /* line 43, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 46, ../../../themes/scss/include/_animations.scss */
  5% {
    opacity: 0;
  }

  /* line 49, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes dissolveOut {
  /* line 55, ../../../themes/scss/include/_animations.scss */
  5% {
    opacity: 1;
  }

  /* line 58, ../../../themes/scss/include/_animations.scss */
  100% {
    opacity: 0;
  }
}

/* #Popin' */
/* line 67, ../../../themes/scss/include/_animations.scss */
#jqt .pop.in {
  -webkit-animation-name: popIn;
}

/* line 71, ../../../themes/scss/include/_animations.scss */
#jqt .pop.out {
  -webkit-animation-name: popOut;
}

@-webkit-keyframes popIn {
  /* line 76, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 79, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }

  /* line 83, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes popOut {
  /* line 90, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  /* line 94, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }
}

/* Slide Left */
/* line 104, ../../../themes/scss/include/_animations.scss */
#jqt .slideleft.in {
  -webkit-animation-name: slideLeftIn;
}

/* line 108, ../../../themes/scss/include/_animations.scss */
#jqt .slideleft.out {
  -webkit-animation-name: slideLeftOut;
}

@-webkit-keyframes slideLeftIn {
  /* line 113, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(90%);
  }

  /* line 116, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes slideLeftOut {
  /* line 122, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(-10%);
  }

  /* line 125, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(-100%);
  }
}

/* Slide Right */
/* line 134, ../../../themes/scss/include/_animations.scss */
#jqt .slideright.in {
  -webkit-animation-name: slideRightIn;
}

/* line 138, ../../../themes/scss/include/_animations.scss */
#jqt .slideright.out {
  -webkit-animation-name: slideRightOut;
}

@-webkit-keyframes slideRightIn {
  /* line 143, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(-90%);
  }

  /* line 146, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(0);
  }
}

@-webkit-keyframes slideRightOut {
  /* line 152, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateX(10%);
  }

  /* line 155, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateX(100%);
  }
}

/* Slide Up */
/* line 163, ../../../themes/scss/include/_animations.scss */
#jqt .slideup.in {
  -webkit-animation-name: slideUpIn;
}

/* line 166, ../../../themes/scss/include/_animations.scss */
#jqt .slideup.out {
  -webkit-animation-name: slideUpOut;
}

@-webkit-keyframes slideUpIn {
  /* line 171, ../../../themes/scss/include/_animations.scss */
  20% {
    -webkit-transform: translateY(80%);
  }

  /* line 174, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-webkit-keyframes slideUpOut {
  /* line 180, ../../../themes/scss/include/_animations.scss */
  20% {
    -webkit-transform: translateY(-20%);
  }

  /* line 183, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(-100%);
  }
}

/* Slide Down */
/* line 192, ../../../themes/scss/include/_animations.scss */
#jqt .slidedown.in {
  -webkit-animation-name: slideDownIn;
}

/* line 195, ../../../themes/scss/include/_animations.scss */
#jqt .slidedown.out {
  -webkit-animation-name: slideDownOut;
}

@-webkit-keyframes slideDownIn {
  /* line 200, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateY(-80%);
  }

  /* line 203, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(0%);
  }
}

@-webkit-keyframes slideDownOut {
  /* line 209, ../../../themes/scss/include/_animations.scss */
  0% {
    -webkit-transform: translateY(20%);
  }

  /* line 212, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: translateY(100%);
  }
}

/* line 217, ../../../themes/scss/include/_animations.scss */
#jqt .slideleft, #jqt .slideright, #jqt .slideup, #jqt .slidedown {
  -webkit-animation-timing-function: ease-in-out;
}

/* Flip Left */
/* line 225, ../../../themes/scss/include/_animations.scss */
#jqt .flipleft {
  -webkit-backface-visibility: hidden;
}

/* line 229, ../../../themes/scss/include/_animations.scss */
#jqt .flipleft.in {
  -webkit-animation-name: flipLeftIn;
}

/* line 233, ../../../themes/scss/include/_animations.scss */
#jqt .flipleft.out {
  -webkit-animation-name: flipLeftOut;
}

@-webkit-keyframes flipLeftIn {
  /* line 238, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 241, ../../../themes/scss/include/_animations.scss */
  5% {
    opacity: 1;
    -webkit-transform: rotateY(180deg) scale(0.8);
  }

  /* line 245, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
}

@-webkit-keyframes flipLeftOut {
  /* line 251, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) scale(1);
  }

  /* line 254, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(-180deg) scale(0.8);
  }
}

/* Flip Right */
/* line 263, ../../../themes/scss/include/_animations.scss */
#jqt .flipright {
  -webkit-backface-visibility: hidden;
}

/* line 267, ../../../themes/scss/include/_animations.scss */
#jqt .flipright.in {
  -webkit-animation-name: flipRightIn;
}

/* line 271, ../../../themes/scss/include/_animations.scss */
#jqt .flipright.out {
  -webkit-animation-name: flipRightOut;
}

@-webkit-keyframes flipRightIn {
  /* line 276, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 279, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(-180deg) scale(0.8);
  }

  /* line 282, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
}

@-webkit-keyframes flipRightOut {
  /* line 288, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) scale(1);
  }

  /* line 291, ../../../themes/scss/include/_animations.scss */
  100% {
    -webkit-transform: rotateY(180deg) scale(0.8);
  }
}

/* Swap Right */
/* line 300, ../../../themes/scss/include/_animations.scss */
#jqt .swapright {
  -webkit-animation-duration: .7s;
  -webkit-transform: perspective(800);
  -webkit-animation-timing-function: ease-out;
}

/* line 305, ../../../themes/scss/include/_animations.scss */
#jqt .swapright.in {
  -webkit-animation-name: swapRightIn;
}

/* line 308, ../../../themes/scss/include/_animations.scss */
#jqt .swapright.out {
  -webkit-animation-name: swapRightOut;
}

@-webkit-keyframes swapRightIn {
  /* line 313, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 316, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
    opacity: 0;
  }

  /* line 320, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
    opacity: 1;
  }

  /* line 324, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes swapRightOut {
  /* line 331, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }

  /* line 335, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
    opacity: .5;
  }

  /* line 339, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
    opacity: 0;
  }
}

/* Swap Left */
/* line 347, ../../../themes/scss/include/_animations.scss */
#jqt .swapleft {
  -webkit-animation-duration: .7s;
  -webkit-transform: perspective(800);
  -webkit-animation-timing-function: ease-out;
}

/* line 352, ../../../themes/scss/include/_animations.scss */
#jqt .swapleft.in {
  -webkit-animation-name: swapLeftIn;
}

/* line 355, ../../../themes/scss/include/_animations.scss */
#jqt .swapleft.out {
  -webkit-animation-name: swapLeftOut;
}

@-webkit-keyframes swapLeftIn {
  /* line 360, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 363, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
    opacity: 0;
  }

  /* line 367, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
    opacity: 1;
  }

  /* line 371, ../../../themes/scss/include/_animations.scss */
  95% {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
  }
}

@-webkit-keyframes swapLeftOut {
  /* line 378, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }

  /* line 382, ../../../themes/scss/include/_animations.scss */
  35% {
    -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
    opacity: .5;
  }

  /* line 386, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
    opacity: 0;
  }
}

/* Cube Left */
/* line 400, ../../../themes/scss/include/_animations.scss */
#jqt .cubeleft.in, #jqt .cubeleft.out, #jqt .cuberight.in, #jqt .cuberight.out {
  -webkit-animation-duration: .6s;
  -webkit-transform: perspective(800);
}

/* line 407, ../../../themes/scss/include/_animations.scss */
#jqt .cubeleft.in {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation-name: cubeLeftIn;
}

/* line 412, ../../../themes/scss/include/_animations.scss */
#jqt .cubeleft.out {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation-name: cubeLeftOut;
}

@-webkit-keyframes cubeLeftIn {
  /* line 418, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 421, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(90deg) translateZ(320px);
    opacity: .5;
  }

  /* line 425, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes cubeLeftOut {
  /* line 432, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }

  /* line 436, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(-90deg) translateZ(320px);
    opacity: .5;
  }
}

/* Cube Right */
/* line 444, ../../../themes/scss/include/_animations.scss */
#jqt .cuberight.in {
  -webkit-transform-origin: 100% 50%;
  -webkit-animation-name: cubeRightIn;
}

/* line 449, ../../../themes/scss/include/_animations.scss */
#jqt .cuberight.out {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation-name: cubeRightOut;
}

@-webkit-keyframes cubeRightIn {
  /* line 455, ../../../themes/scss/include/_animations.scss */
  0% {
    opacity: 0;
  }

  /* line 458, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(-90deg) translateZ(320px);
    opacity: .5;
  }

  /* line 462, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes cubeRightOut {
  /* line 469, ../../../themes/scss/include/_animations.scss */
  5% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }

  /* line 473, ../../../themes/scss/include/_animations.scss */
  95% {
    -webkit-transform: rotateY(90deg) translateZ(320px);
    opacity: .5;
  }
}

/* line 3, ../../../themes/scss/include/_skeleton.scss */
body {
  background: black;
}

/* line 7, ../../../themes/scss/include/_skeleton.scss */
.base-chevron, #jqt ul li.arrow:after, #jqt ul li.forward:after {
  content: '›';
  width: 22px;
  height: 100%;
  vertical-align: middle;
  font-size: 30px;
  line-height: 38px;
  font-family: Futura, "Futura Condensed", Helvetica, Arial, sans-serif;
  font-weight: bold;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 10;
}

/* line 24, ../../../themes/scss/include/_skeleton.scss */
.base-flatlists, #jqt ul.metal, #jqt ul.edgetoedge, #jqt ul.plastic {
  margin: 0;
  padding: 0;
  border-width: 0 0 0 1px;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 33, ../../../themes/scss/include/_skeleton.scss */
#jqt > * {
  background-color: #555658;
}
/* line 37, ../../../themes/scss/include/_skeleton.scss */
#jqt h1, #jqt h2 {
  font: bold 18px "Avenir Next", "Avenir";
  margin: 10px 20px 6px;
  color: #bbbcbe;
  text-shadow: #3c3d3e 0 -1px 0;
}
/* line 43, ../../../themes/scss/include/_skeleton.scss */
#jqt .toolbar {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #2f3031;
  border-bottom: 1px solid black;
  z-index: 10;
  position: relative;
  padding: 10px;
  height: 44px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
}
/* line 56, ../../../themes/scss/include/_skeleton.scss */
#jqt .toolbar > h1 {
  position: absolute;
  overflow: hidden;
  left: 50%;
  bottom: 9px;
  margin: 1px 0 0 -75px;
  width: 150px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: white;
  text-shadow: #161717 0 -1px 0;
}
/* line 75, ../../../themes/scss/include/_skeleton.scss */
#jqt.black-translucent .toolbar {
  padding-top: 30px;
  height: 64px;
}
/* line 79, ../../../themes/scss/include/_skeleton.scss */
#jqt.landscape .toolbar > h1 {
  margin-left: -125px;
  width: 250px;
}
/* line 84, ../../../themes/scss/include/_skeleton.scss */
#jqt .button, #jqt .back, #jqt .cancel, #jqt .add {
  position: absolute;
  overflow: hidden;
  width: auto;
  height: 30px;
  font-family: inherit;
  font-size: 12px;
  font-weight: bold;
  line-height: 30px;
  text-overflow: ellipsis;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  bottom: 6px;
  right: 10px;
  margin: 0;
  padding: 0 10px;
  color: #e2e3e3;
  text-shadow: black 0 -1px 0;
  border: 1px solid black;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: none;
  background-color: #0a0a0a;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2f3031), color-stop(50%, #161717), color-stop(51%, #0a0a0a), color-stop(100%, #000000));
  background-image: -webkit-linear-gradient(top, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
  background-image: linear-gradient(top, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
  -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
  box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
}
/* line 115, ../../../themes/scss/include/_skeleton.scss */
#jqt .button.active, #jqt .back.active, #jqt .cancel.active, #jqt .add.active {
  border-color: black;
  background-image: none;
  background-color: black;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #262627), color-stop(50%, #0d0d0d), color-stop(51%, #000000), color-stop(100%, #000000));
  background-image: -webkit-linear-gradient(top, #262627, #0d0d0d 50%, #000000 51%, #000000);
  background-image: linear-gradient(top, #262627, #0d0d0d 50%, #000000 51%, #000000);
  color: #d8d9d9;
  text-shadow: black 0 -1px 0;
}
/* line 123, ../../../themes/scss/include/_skeleton.scss */
#jqt .back {
  max-width: 60px;
  margin-left: 15px;
  overflow: visible;
  padding-left: 5px;
}
/* line 130, ../../../themes/scss/include/_skeleton.scss */
#jqt .back:after, #jqt .back:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 1px;
  left: 1px;
  -webkit-transform: rotate(45deg) translate3d(0.2px, 0, 0);
  transform: rotate(45deg) translate3d(0.2px, 0, 0);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  background-image: none;
  background-color: #0a0a0a;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #2f3031), color-stop(50%, #161717), color-stop(51%, #0a0a0a), color-stop(100%, #000000));
  background-image: -webkit-linear-gradient(top left, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
  background-image: linear-gradient(top left, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
  background-size: 100% 98%;
  -webkit-border-radius: 0 0 0 2px;
  border-radius: 0 0 0 2px;
  -webkit-mask-image: -webkit-linear-gradient(45deg, black, black 15px, rgba(0, 0, 0, 0) 15px);
  -webkit-mask-image: -webkit-gradient(linear, left bottom, right top, from(black), color-stop(50%, black), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-clip: border-box;
  -webkit-background-clip: content-box;
}
/* line 160, ../../../themes/scss/include/_skeleton.scss */
#jqt .back:after {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
}
/* line 165, ../../../themes/scss/include/_skeleton.scss */
#jqt .back:before {
  margin-left: -1px;
  background: black none;
}
/* line 170, ../../../themes/scss/include/_skeleton.scss */
#jqt .back.active:after {
  background-image: none;
  background-color: black;
  background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #262627), color-stop(50%, #0d0d0d), color-stop(51%, #000000), color-stop(100%, #000000));
  background-image: -webkit-linear-gradient(left top, #262627, #0d0d0d 50%, #000000 51%, #000000);
  background-image: linear-gradient(left top, #262627, #0d0d0d 50%, #000000 51%, #000000);
}
/* line 173, ../../../themes/scss/include/_skeleton.scss */
#jqt .back.active:before {
  background-color: black;
}
/* line 180, ../../../themes/scss/include/_skeleton.scss */
#jqt .whiteButton, #jqt .grayButton, #jqt .redButton, #jqt .blueButton, #jqt .greenButton {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 20px;
  padding: 10px;
  text-align: center;
  text-decoration: inherit;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.4) 0 0 0 5px, rgba(255, 255, 255, 0.3) 0 1px 0 5px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.4) 0 0 0 5px, rgba(255, 255, 255, 0.3) 0 1px 0 5px;
}
/* line 69, ../../../themes/scss/include/_widgets.scss */
#jqt .whiteButton.active, #jqt .whiteButton:active, #jqt .grayButton.active, #jqt .grayButton:active, #jqt .redButton.active, #jqt .redButton:active, #jqt .blueButton.active, #jqt .blueButton:active, #jqt .greenButton.active, #jqt .greenButton:active {
  background-image: none;
  background-color: #3c8101;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #5fcd01), color-stop(50%, #479b01), color-stop(51%, #3c8101), color-stop(100%, #306801));
  background-image: -webkit-linear-gradient(top, #5fcd01, #479b01 50%, #3c8101 51%, #306801);
  background-image: linear-gradient(top, #5fcd01, #479b01 50%, #3c8101 51%, #306801);
  color: white;
  text-shadow: #244f00 0 -1px 0;
}
/* line 184, ../../../themes/scss/include/_skeleton.scss */
#jqt .whiteButton {
  background-image: none;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(50%, #fbfbfb), color-stop(51%, #eeeeee), color-stop(100%, #e1e1e1));
  background-image: -webkit-linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
  background-image: linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
  color: #151515;
  text-shadow: white 0 1px 0;
}
/* line 189, ../../../themes/scss/include/_skeleton.scss */
#jqt .grayButton {
  background-image: none;
  background-color: #444444;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6a6a6a), color-stop(50%, #515151), color-stop(51%, #444444), color-stop(100%, #373737));
  background-image: -webkit-linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
  background-image: linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
  color: white;
  text-shadow: #2b2b2b 0 -1px 0;
}
/* line 194, ../../../themes/scss/include/_skeleton.scss */
#jqt .redButton {
  background-image: none;
  background-color: #d83b38;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e57a78), color-stop(50%, #dc504d), color-stop(51%, #d83b38), color-stop(100%, #ce2c28));
  background-image: -webkit-linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
  background-image: linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
  color: white;
  text-shadow: #b92724 0 -1px 0;
}
/* line 198, ../../../themes/scss/include/_skeleton.scss */
#jqt .redButton.active, #jqt .redButton:active {
  background-image: none;
  background-color: #c12926;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #de5856), color-stop(50%, #d52e2b), color-stop(51%, #c12926), color-stop(100%, #ac2422));
  background-image: -webkit-linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
  background-image: linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
  color: white;
  text-shadow: #97201e 0 -1px 0;
}
/* line 205, ../../../themes/scss/include/_skeleton.scss */
#jqt .blueButton {
  background-image: none;
  background-color: #2f7ce3;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #72a6ec), color-stop(50%, #458ae6), color-stop(51%, #2f7ce3), color-stop(100%, #1d6fdb));
  background-image: -webkit-linear-gradient(top, #72a6ec, #458ae6 50%, #2f7ce3 51%, #1d6fdb);
  background-image: linear-gradient(top, #72a6ec, #458ae6 50%, #2f7ce3 51%, #1d6fdb);
  color: white;
  text-shadow: #1a63c5 0 -1px 0;
}
/* line 210, ../../../themes/scss/include/_skeleton.scss */
#jqt .greenButton {
  background-image: none;
  background-color: #53b401;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #76fe04), color-stop(50%, #5fcd01), color-stop(51%, #53b401), color-stop(100%, #479b01));
  background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
  background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
  color: white;
  text-shadow: #3c8101 0 -1px 0;
}
/* line 214, ../../../themes/scss/include/_skeleton.scss */
#jqt .greenButton.active, #jqt .greenButton:active {
  background-image: none;
  background-color: #408b01;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #63d801), color-stop(50%, #4ca501), color-stop(51%, #408b01), color-stop(100%, #357201));
  background-image: -webkit-linear-gradient(top, #63d801, #4ca501 50%, #408b01 51%, #357201);
  background-image: linear-gradient(top, #63d801, #4ca501 50%, #408b01 51%, #357201);
  color: white;
  text-shadow: #295900 0 -1px 0;
}
/* line 221, ../../../themes/scss/include/_skeleton.scss */
#jqt .leftButton, #jqt .cancel, #jqt .back {
  left: 10px;
  right: auto;
}
/* line 226, ../../../themes/scss/include/_skeleton.scss */
#jqt .add {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}
/* line 234, ../../../themes/scss/include/_skeleton.scss */
#jqt ul {
  padding: 0;
  margin: 5px 10px 10px 10px;
  -webkit-margin-collapse: separate;
}
/* line 236, ../../../themes/scss/include/_skeleton.scss */
#jqt ul, #jqt ul.individual li {
  background-color: #555658;
  color: #d5d6d7;
  text-shadow: #3c3d3e 0 -1px 0;
  border: 1px solid #2f3031;
  font: bold 18px "Avenir Next", "Avenir";
}
/* line 245, ../../../themes/scss/include/_skeleton.scss */
#jqt ul:first-child {
  margin-top: 15px;
}
/* line 251, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li {
  border-top: 1px solid #48494b;
  list-style-type: none;
  overflow: hidden;
  padding: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  /* expensive way to avoid flickr */
  position: relative;
}
/* line 258, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a {
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  padding: 10px;
  margin: -10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  color: white;
  text-shadow: #3c3d3e 0 -1px 0;
}
/* line 270, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active, #jqt ul li a.selected {
  background-image: none;
  background-color: #53b401;
  color: white;
  text-shadow: #3c8101 0 -1px 0;
  -webkit-box-shadow: #5cc801 0 1px 0px inset;
  box-shadow: #5cc801 0 1px 0px inset;
}
/* line 278, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active small, #jqt ul li a.selected small {
  color: #a0fe50;
  text-shadow: black 0 -1px 0;
}
/* line 279, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active small.counter, #jqt ul li a.selected small.counter {
  background-color: #306801;
}
/* line 288, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li small {
  color: #53b401;
  font: 16px "Avenir Next", "Avenir";
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 23%;
  position: relative;
  z-index: 20;
  float: right;
  line-height: 16px;
  padding: 2px 8px 4px 8px;
}
/* line 303, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li small.counter {
  background: #2f3031;
  color: #949698;
  text-shadow: #0a0a0a 0 -1px 0;
  z-index: 10;
  font-size: 16px;
  font-weight: bold;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: block;
  width: auto;
}
/* line 319, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li ::-webkit-input-placeholder {
  color: #949698;
  text-shadow: #3c3d3e 0 -1px 0;
}
/* line 330, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type="text"],
#jqt ul li input[type="password"],
#jqt ul li input[type="tel"],
#jqt ul li input[type="number"],
#jqt ul li input[type="search"],
#jqt ul li input[type="email"],
#jqt ul li input[type="url"],
#jqt ul li textarea, #jqt ul li select {
  color: white;
  text-shadow: #3c3d3e 0 -1px 0;
  background: transparent url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
  border: 0;
  font: normal 17px "Avenir Next", "Avenir";
  padding: 0;
  display: inline-block;
  margin-left: 0px;
  width: 100%;
  -webkit-appearance: textarea;
}
/* line 341, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li textarea {
  height: 120px;
  padding: 0;
  text-indent: -2px;
}
/* line 346, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
  margin: 0;
  padding: 10px;
}
/* line 350, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type="checkbox"]:after, #jqt ul li input[type="radio"]:after {
  content: attr(title);
  position: absolute;
  display: block;
  width: 0;
  left: 21px;
  top: 12px;
  font-family: "Avenir Next", "Avenir";
  font-size: 17px;
  line-height: 21px;
  width: 246px;
  margin: 0 0 0 17px;
  color: white;
  text-shadow: #3c3d3e 0 -1px 0;
}
/* line 363, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type='submit'] {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
  border: 1px outset #aaaaaa;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  padding: 10px;
}
/* line 376, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li.arrow small, #jqt ul li.forward small {
  margin-right: 24px;
}
/* line 388, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li.forward:after {
  content: "›";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  top: 50%;
  right: 6px;
  margin-top: -12px;
  border: 2px solid white;
  -webkit-box-sizing: border-box;
  padding: 0;
  z-index: 10;
  line-height: 13px;
  color: white;
  text-indent: 5px;
  pointer-events: none;
  background-image: none;
  background-color: #53b401;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #76fe04), color-stop(50%, #5fcd01), color-stop(51%, #53b401), color-stop(100%, #479b01));
  background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
  background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: white;
  text-shadow: #3c8101 0 -1px 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  font-size: 24px;
}
/* line 398, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded, #jqt ul.individual li {
  -webkit-box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
  box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
  border: 1px solid #2f3031;
}
/* line 406, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/* line 409, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded li:first-child, #jqt ul.rounded li:first-child a {
  border-top: 0;
  -webkit-border-top-left-radius: 8px;
  border-top-left-radius: 8px;
  -webkit-border-top-right-radius: 8px;
  border-top-right-radius: 8px;
}
/* line 413, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded li:last-child, #jqt ul.rounded li:last-child a {
  -webkit-border-bottom-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
/* line 419, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li {
  padding: 7px 10px;
}
/* line 422, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li.error {
  border: 2px solid red;
}
/* line 425, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li.error + #jqt ul.form li.error {
  border-top: 0;
}
/* line 435, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li {
  background-image: none;
  border-top: 1px solid white;
  border-bottom: 1px solid #666666;
  font-size: 26px;
}
/* line 442, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li a {
  line-height: 26px;
  margin: 0;
  padding: 13px 0;
}
/* line 448, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li em {
  display: block;
  font-size: 14px;
  font-style: normal;
  width: 50%;
  line-height: 14px;
}
/* line 456, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li small {
  float: right;
  position: relative;
  margin-top: 10px;
  font-weight: bold;
}
/* line 470, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li {
  font-size: 20px;
}
/* line 473, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li:first-child {
  border-top: 0;
}
/* line 477, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li.sep {
  font-size: 16px;
  padding: 2px 10px;
}
/* line 482, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li em {
  font-weight: normal;
  font-style: normal;
}
/* line 491, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic {
  font-size: 18px;
}
/* line 495, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li {
  border-width: 1px 0;
  border-style: solid;
  background-image: none;
  background-color: #2a2b2c;
  border-top-color: #2f3031;
  border-bottom-color: #232324;
}
/* line 503, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li:nth-child(odd) {
  background-image: none;
  background-color: #2f3031;
}
/* line 507, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li a.active.loading {
  background-image: url(../img/jqt/loading.gif);
  background-position: 95% center;
  background-repeat: no-repeat;
}
/* line 512, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li small {
  color: #949698;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 522, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual {
  border: 0;
  background: none;
  clear: both;
  overflow: hidden;
}
/* line 528, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual li {
  font-size: 14px;
  text-align: center;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 48%;
  float: left;
  display: block;
  padding: 11px 10px 14px 10px;
}
/* line 538, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual li + li {
  float: right;
}
/* line 543, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual a {
  line-height: 16px;
  margin: -11px -10px -14px -10px;
  padding: 11px 10px 14px 10px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/* line 552, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle, #jqt span.toggle {
  width: 94px;
  position: relative;
  height: 27px;
  display: block;
  overflow: hidden;
  float: right;
}
/* line 560, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle input[type="checkbox"], #jqt span.toggle input[type="checkbox"] {
  margin: 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 27px;
  overflow: hidden;
  width: 149px;
  border: 0;
  -webkit-transition: left 0.15s ease-in-out;
  transition: left 0.15s ease-in-out;
  position: absolute;
  top: 0;
  left: -55px;
  -webkit-appearance: textarea;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 574, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle input[type="checkbox"]:checked, #jqt span.toggle input[type="checkbox"]:checked {
  left: 0px;
}
/* line 580, ../../../themes/scss/include/_skeleton.scss */
#jqt input[type="checkbox"].toggle, #jqt li input[type="radio"].toggle {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  border-radius: 16px;
  background-color: #fff;
  padding: 1px;
  width: 52px;
  height: 32px;
  cursor: pointer;
  margin: 0px;
  vertical-align: middle;
  border: 0px solid transparent;
  box-shadow: inset 0px 0px 0px 1px #e6e6e6;
  transition: all 0.3s ease-out;
}
/* line 93, ../../../themes/scss/include/_widgets.scss */
#jqt input[type="checkbox"].toggle:before, #jqt li input[type="radio"].toggle:before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 30.5px;
  top: 1px;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.2), -1px 2px 5px rgba(0, 0, 0, 0.1);
  border: 0px solid transparent;
  cursor: pointer;
  background-color: #fff;
  transition: left 0.1s ease-in 0.1s, box-shadow 0.2s ease-in 0.2s;
}
/* line 107, ../../../themes/scss/include/_widgets.scss */
#jqt input[type="checkbox"].toggle:checked, #jqt li input[type="radio"].toggle:checked {
  box-shadow: inset 0px 0px 0px 20px #53d76a, -1px 2px 5px rgba(0, 0, 0, 0.1);
}
/* line 110, ../../../themes/scss/include/_widgets.scss */
#jqt input[type="checkbox"].toggle:checked:before, #jqt li input[type="radio"].toggle:checked:before {
  left: 22px;
}
/* line 584, ../../../themes/scss/include/_skeleton.scss */
#jqt li input[type="checkbox"].toggle {
  position: absolute;
  right: 10px;
  left: auto;
  margin-top: 6px;
  top: 0px;
}
/* line 592, ../../../themes/scss/include/_skeleton.scss */
#jqt .info {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #444;
  padding: 15px;
  font-weight: bold;
}

/* line 15, ../../../themes/scss/jqtouch.scss */
#jqt {
  /* Lists */
}
/* line 16, ../../../themes/scss/jqtouch.scss */
#jqt > * {
  background-image: url('data:image/png;base64,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'), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7b7c7f), color-stop(30%, #696a6d), color-stop(65%, #555658), color-stop(100%, #464748));
  background-image: url('data:image/png;base64,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'), -webkit-linear-gradient(top, #7b7c7f, #696a6d 30%, #555658 65%, #464748);
  background-image: url('data:image/png;base64,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'), linear-gradient(top, #7b7c7f, #696a6d 30%, #555658 65%, #464748);
}
/* line 23, ../../../themes/scss/jqtouch.scss */
#jqt .toolbar {
  background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 12.5, color-stop(12.5%, #181819), color-stop(12.5%, rgba(11, 11, 12, 0))), -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 12.5, color-stop(12.5%, #181819), color-stop(12.5%, rgba(11, 11, 12, 0))), -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 12.5, color-stop(12.5%, rgba(255, 255, 255, 0.1)), color-stop(12.5%, rgba(255, 255, 255, 0))), -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 12.5, color-stop(12.5%, rgba(255, 255, 255, 0.1)), color-stop(12.5%, rgba(255, 255, 255, 0)));
  background-image: -webkit-radial-gradient(#181819 12.5%, rgba(11, 11, 12, 0) 12.5%), -webkit-radial-gradient(#181819 12.5%, rgba(11, 11, 12, 0) 12.5%), -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 12.5%, rgba(255, 255, 255, 0) 12.5%), -webkit-radial-gradient(rgba(255, 255, 255, 0.1) 12.5%, rgba(255, 255, 255, 0) 12.5%);
  background-image: radial-gradient(#181819 12.5%, rgba(11, 11, 12, 0) 12.5%), radial-gradient(#181819 12.5%, rgba(11, 11, 12, 0) 12.5%), radial-gradient(rgba(255, 255, 255, 0.1) 12.5%, rgba(255, 255, 255, 0) 12.5%), radial-gradient(rgba(255, 255, 255, 0.1) 12.5%, rgba(255, 255, 255, 0) 12.5%);
  background-repeat: repeat;
  background-position: 0 0, 8px 8px, 0 1px, 8px 9px;
  background-color: #2f3031;
  background-size: 16px 16px;
}
/* line 32, ../../../themes/scss/jqtouch.scss */
#jqt ul li {
  border-top: 1px solid #48494b;
  background-image: none;
  background-color: rgba(85, 86, 88, 0.2);
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(123, 124, 127, 0.2)), color-stop(3%, rgba(98, 99, 101, 0.2)), color-stop(100%, rgba(72, 73, 75, 0.2)));
  background-image: -webkit-linear-gradient(top, rgba(123, 124, 127, 0.2), rgba(98, 99, 101, 0.2) 3%, rgba(72, 73, 75, 0.2));
  background-image: linear-gradient(top, rgba(123, 124, 127, 0.2), rgba(98, 99, 101, 0.2) 3%, rgba(72, 73, 75, 0.2));
}
/* line 36, ../../../themes/scss/jqtouch.scss */
#jqt ul li a {
  color: white;
  text-shadow: #3c3d3e 0 -1px 0;
}
/* line 40, ../../../themes/scss/jqtouch.scss */
#jqt ul li .toggle input[type="checkbox"] {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: white url(../img/jqt/on_off.png) 0 0 no-repeat;
}
/* line 45, ../../../themes/scss/jqtouch.scss */
#jqt ul li input[type='submit'] {
  background-image: none;
  background-color: white;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(50%, #ffffff), color-stop(51%, #ffffff), color-stop(100%, #f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 50%, #ffffff 51%, #f2f2f2);
  background-image: linear-gradient(top, #ffffff, #ffffff 50%, #ffffff 51%, #f2f2f2);
  border: 1px outset black;
}
/* line 50, ../../../themes/scss/jqtouch.scss */
#jqt ul li small.counter {
  -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
  box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
}
/* line 57, ../../../themes/scss/jqtouch.scss */
#jqt ul.metal li {
  background-image: none;
  border-top: 1px solid white;
  border-bottom: 1px solid #666666;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
}
/* line 63, ../../../themes/scss/jqtouch.scss */
#jqt ul.metal li a {
  text-shadow: white 0 1px 0;
}
/* line 65, ../../../themes/scss/jqtouch.scss */
#jqt ul.metal li a.active {
  color: #000;
}
/* line 68, ../../../themes/scss/jqtouch.scss */
#jqt ul.metal li em {
  color: #444;
}
/* line 74, ../../../themes/scss/jqtouch.scss */
#jqt ul.edgetoedge li {
  background-image: none;
  background-color: #3c3d3e;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #282829), color-stop(100%, #2f3031));
  background-image: -webkit-linear-gradient(top, #282829, #2f3031);
  background-image: linear-gradient(top, #282829, #2f3031);
  border-bottom: 1px solid #1e1e1f;
  border-top: 1px solid #343536;
}
/* line 79, ../../../themes/scss/jqtouch.scss */
#jqt ul.edgetoedge li.sep {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(38, 38, 38, 0.3)), color-stop(30%, rgba(20, 20, 20, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3)));
  background-image: -webkit-linear-gradient(top, rgba(38, 38, 38, 0.3), rgba(20, 20, 20, 0.3) 30%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3));
  background-image: linear-gradient(top, rgba(38, 38, 38, 0.3), rgba(20, 20, 20, 0.3) 30%, rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.3));
  color: #949698;
  text-shadow: black 0 -1px 0;
}
/* line 86, ../../../themes/scss/jqtouch.scss */
#jqt .info {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cccccc), to(#aaaaaa), color-stop(0.6, #cccccc));
  text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
  color: #444;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
