jbenden/hls-streamer

View on GitHub
public/themes/css/jqtouch.css

Summary

Maintainability
Test Coverage
/**
 * 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);
}