/*
           _/    _/_/    _/_/_/_/_/                              _/
              _/    _/      _/      _/_/    _/    _/    _/_/_/  _/_/_/
         _/  _/  _/_/      _/    _/    _/  _/    _/  _/        _/    _/
        _/  _/    _/      _/    _/    _/  _/    _/  _/        _/    _/
       _/    _/_/  _/    _/      _/_/      _/_/_/    _/_/_/  _/    _/
      _/
   _/

   Created by David Kaneda <http://www.davidkaneda.com>
   Maintained by Thomas Yip <http://beedesk.com/>
   Sponsored by Sencha Labs <http://www.sencha.com/>
   Special thanks to Jonathan Stark <http://www.jonathanstark.com/>

   Documentation and issue tracking on GitHub <http://github.com/senchalabs/jQTouch/>

   (c) 2009-2015 Sencha Labs

   Version: 1.0.1- - 2015-01-31

   jQTouch may be freely distributed under the MIT license.
*/
@charset "UTF-8";
/**
 * 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/
 */
/*
// Usage
body:before
{
    @include top-shadow;
}
*/
/**
* 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;
  -moz-background-clip: text;
  -o-background-clip: text;
  -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 4, ../../../themes/scss/include/_base.scss */
* {
  margin: 0;
  padding: 0;
}

/* line 9, ../../../themes/scss/include/_base.scss */
body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 14, ../../../themes/scss/include/_base.scss */
#jqt {
  -webkit-text-size-adjust: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: Helvetica Neue Ultra Light, Helvetica Neue Interface M3, Helvetica;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
/* line 24, ../../../themes/scss/include/_base.scss */
#jqt a {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
}
/* line 29, ../../../themes/scss/include/_base.scss */
#jqt .selectable, #jqt input, #jqt textarea {
  -webkit-user-select: auto;
}
/* line 33, ../../../themes/scss/include/_base.scss */
#jqt.notransform {
  -webkit-transform: none !important;
}
/* line 38, ../../../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;
}
/* 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 78, ../../../themes/scss/include/_base.scss */
#jqt.touchscroll:not(.animating3d) .scroll {
  overflow-y: scroll;
}
/* line 84, ../../../themes/scss/include/_base.scss */
#jqt .scroll {
  -webkit-margin-collapse: separate;
}
/* line 88, ../../../themes/scss/include/_base.scss */
#jqt .in, #jqt .out {
  -webkit-animation-duration: 375ms;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
/* line 94, ../../../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 102, ../../../themes/scss/include/_base.scss */
#jqt .in input, #jqt .in a, #jqt .out input, #jqt .out a {
  pointer-events: none;
}
/* line 107, ../../../themes/scss/include/_base.scss */
#jqt .in {
  z-index: 10;
}
/* line 110, ../../../themes/scss/include/_base.scss */
#jqt .out {
  z-index: 0 !important;
}
/* line 114, ../../../themes/scss/include/_base.scss */
#jqt.supports3d {
  -webkit-perspective: 1000;
}
/* line 117, ../../../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 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes dissolveOut {
  5% {
    opacity: 1;
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes popOut {
  5% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  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 {
  0% {
    -webkit-transform: translateX(90%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-webkit-keyframes slideLeftOut {
  0% {
    -webkit-transform: translateX(-10%);
  }
  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 {
  0% {
    -webkit-transform: translateX(-90%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-webkit-keyframes slideRightOut {
  0% {
    -webkit-transform: translateX(10%);
  }
  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 {
  20% {
    -webkit-transform: translateY(80%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
@-webkit-keyframes slideUpOut {
  20% {
    -webkit-transform: translateY(-20%);
  }
  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 {
  0% {
    -webkit-transform: translateY(-80%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
@-webkit-keyframes slideDownOut {
  0% {
    -webkit-transform: translateY(20%);
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    -webkit-transform: rotateY(180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
}
@-webkit-keyframes flipLeftOut {
  5% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-transform: rotateY(-180deg) scale(0.8);
  }
  100% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
}
@-webkit-keyframes flipRightOut {
  5% {
    -webkit-transform: rotateY(0deg) scale(1);
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
    opacity: 1;
  }
  95% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes swapRightOut {
  5% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
    opacity: .5;
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
    opacity: 1;
  }
  95% {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
  }
}
@-webkit-keyframes swapLeftOut {
  5% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
    opacity: .5;
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-transform: rotateY(90deg) translateZ(320px);
    opacity: .5;
  }
  95% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes cubeLeftOut {
  5% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
  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 {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-transform: rotateY(-90deg) translateZ(320px);
    opacity: .5;
  }
  95% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes cubeRightOut {
  5% {
    -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
    opacity: 1;
  }
  95% {
    -webkit-transform: rotateY(90deg) translateZ(320px);
    opacity: .5;
  }
}
/* line 3, ../../../themes/scss/include/_skeleton.scss */
body {
  background: #efeff4;
}

/* 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;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

/* line 33, ../../../themes/scss/include/_skeleton.scss */
#jqt > * {
  background-color: white;
}
/* line 37, ../../../themes/scss/include/_skeleton.scss */
#jqt h1, #jqt h2 {
  font: normal 17px Helvetica Neue Ultra Light, Helvetica Neue Interface M3, Helvetica;
  margin: 10px 20px 6px;
  color: #7676a1;
  text-shadow: white 0 1px 0;
}
/* line 43, ../../../themes/scss/include/_skeleton.scss */
#jqt .toolbar {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: white;
  border-bottom: 1px solid #a6a6a6;
  z-index: 10;
  position: relative;
  padding: 10px;
  height: 44px;
}
/* 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: #262626;
  text-shadow: white 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: #0e0b0b;
  text-shadow: white 0 1px 0;
  border: 1px solid #baabab;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: none;
  background-color: #e8e3e3;
}
/* line 115, ../../../themes/scss/include/_skeleton.scss */
#jqt .button.active, #jqt .back.active, #jqt .cancel.active, #jqt .add.active {
  border-color: #af9d9d;
  background-image: none;
  background-color: #ddd5d5;
  color: black;
  text-shadow: #f4f1f1 0 1px 0;
}
/* line 176, ../../../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;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
}
/* 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: silver;
  color: black;
  text-shadow: #d9d9d9 0 1px 0;
}
/* line 180, ../../../themes/scss/include/_skeleton.scss */
#jqt .whiteButton {
  background-image: none;
  background-color: #eee;
  color: #151515;
  text-shadow: white 0 1px 0;
}
/* line 185, ../../../themes/scss/include/_skeleton.scss */
#jqt .grayButton {
  background-image: none;
  background-color: #444;
  color: white;
  text-shadow: #2b2b2b 0 -1px 0;
}
/* line 190, ../../../themes/scss/include/_skeleton.scss */
#jqt .redButton {
  background-image: none;
  background-color: #D83B38;
  color: white;
  text-shadow: #b92724 0 -1px 0;
}
/* line 194, ../../../themes/scss/include/_skeleton.scss */
#jqt .redButton.active, #jqt .redButton:active {
  background-image: none;
  background-color: #c12926;
  color: white;
  text-shadow: #97201e 0 -1px 0;
}
/* line 201, ../../../themes/scss/include/_skeleton.scss */
#jqt .blueButton {
  background-image: none;
  background-color: #2F7CE3;
  color: white;
  text-shadow: #1a63c5 0 -1px 0;
}
/* line 206, ../../../themes/scss/include/_skeleton.scss */
#jqt .greenButton {
  background-image: none;
  background-color: #53b401;
  color: white;
  text-shadow: #3c8101 0 -1px 0;
}
/* line 210, ../../../themes/scss/include/_skeleton.scss */
#jqt .greenButton.active, #jqt .greenButton:active {
  background-image: none;
  background-color: #408b01;
  color: white;
  text-shadow: #295900 0 -1px 0;
}
/* line 217, ../../../themes/scss/include/_skeleton.scss */
#jqt .leftButton, #jqt .cancel, #jqt .back {
  left: 10px;
  right: auto;
}
/* line 222, ../../../themes/scss/include/_skeleton.scss */
#jqt .add {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}
/* line 230, ../../../themes/scss/include/_skeleton.scss */
#jqt ul {
  padding: 0;
  margin: 5px 10px 10px 10px;
  -webkit-margin-collapse: separate;
}
/* line 232, ../../../themes/scss/include/_skeleton.scss */
#jqt ul, #jqt ul.individual li {
  background-color: #fff;
  color: gray;
  text-shadow: white 0 1px 0;
  border: 1px solid #d9d9d9;
  font: normal 17px Helvetica Neue Ultra Light, Helvetica Neue Interface M3, Helvetica;
}
/* line 241, ../../../themes/scss/include/_skeleton.scss */
#jqt ul:first-child {
  margin-top: 15px;
}
/* line 247, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li {
  border-top: 1px solid #f2f2f2;
  list-style-type: none;
  overflow: hidden;
  padding: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  /* expensive way to avoid flickr */
  position: relative;
}
/* line 254, ../../../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: transparent;
  -webkit-transform: translateZ(0);
  color: #262626;
  text-shadow: white 0 1px 0;
}
/* line 266, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active, #jqt ul li a.selected {
  background-image: none;
  background-color: #d9d9d9;
  color: black;
  text-shadow: #f3f3f3 0 1px 0;
}
/* line 274, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active small, #jqt ul li a.selected small {
  color: white;
  text-shadow: #737373 0 -1px 0;
}
/* line 275, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li a.active small.counter, #jqt ul li a.selected small.counter {
  background-color: #b3b3b3;
}
/* line 284, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li small {
  color: #d9d9d9;
  font: 16px Helvetica Neue Ultra Light, Helvetica Neue Interface M3, Helvetica;
  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 299, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li small.counter {
  background: #d9d9d9;
  color: #595959;
  text-shadow: #e6e6e6 0 1px 0;
  z-index: 10;
  font-size: 16px;
  font-weight: bold;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: block;
  width: auto;
}
/* line 315, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li ::-webkit-input-placeholder {
  color: #a3a3c0;
  text-shadow: white 0 1px 0;
}
/* line 319, ../../../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: #14141d;
  text-shadow: white 0 1px 0;
  background: transparent url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
  border: 0;
  font: normal 17px Helvetica Neue Ultra Light, Helvetica Neue Interface M3, Helvetica;
  padding: 0;
  display: inline-block;
  margin-left: 0px;
  width: 100%;
  -webkit-appearance: textarea;
}
/* line 337, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li textarea {
  height: 120px;
  padding: 0;
  text-indent: -2px;
}
/* line 342, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
  margin: 0;
  padding: 10px;
}
/* line 346, ../../../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: Helvetica Neue Ultra Light, Helvetica Neue Interface M3, Helvetica;
  font-size: 17px;
  line-height: 21px;
  width: 246px;
  margin: 0 0 0 17px;
  color: #14141d;
  text-shadow: white 0 1px 0;
}
/* line 359, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li input[type='submit'] {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
  border: 1px outset #aaa;
  display: block;
  font-size: inherit;
  font-weight: inherit;
  padding: 10px;
}
/* line 372, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li.arrow small, #jqt ul li.forward small {
  margin-right: 24px;
}
/* line 384, ../../../themes/scss/include/_skeleton.scss */
#jqt ul li.forward:after {
  content: "›";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  width: 24px;
  height: 24px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  top: 50%;
  right: 6px;
  margin-top: -12px;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
  padding: 0;
  z-index: 10;
  line-height: 13px;
  color: #fff;
  text-indent: 5px;
  pointer-events: none;
  background-image: none;
  background-color: #d9d9d9;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: black;
  text-shadow: #f3f3f3 0 1px 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  font-size: 24px;
}
/* line 394, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded, #jqt ul.individual li {
  border: 1px solid #d9d9d9;
}
/* line 402, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/* line 405, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded li:first-child, #jqt ul.rounded li:first-child a {
  border-top: 0;
  -moz-border-radius-topleft: 8px;
  -webkit-border-top-left-radius: 8px;
  border-top-left-radius: 8px;
  -moz-border-radius-topright: 8px;
  -webkit-border-top-right-radius: 8px;
  border-top-right-radius: 8px;
}
/* line 409, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.rounded li:last-child, #jqt ul.rounded li:last-child a {
  -moz-border-radius-bottomleft: 8px;
  -webkit-border-bottom-left-radius: 8px;
  border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -webkit-border-bottom-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
/* line 415, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li {
  padding: 7px 10px;
}
/* line 418, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li.error {
  border: 2px solid red;
}
/* line 421, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.form li.error + #jqt ul.form li.error {
  border-top: 0;
}
/* line 431, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li {
  background-image: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #666;
  font-size: 26px;
}
/* line 438, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li a {
  line-height: 26px;
  margin: 0;
  padding: 13px 0;
}
/* line 444, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li em {
  display: block;
  font-size: 14px;
  font-style: normal;
  width: 50%;
  line-height: 14px;
}
/* line 452, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.metal li small {
  float: right;
  position: relative;
  margin-top: 10px;
  font-weight: bold;
}
/* line 466, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li {
  font-size: 20px;
}
/* line 469, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li:first-child {
  border-top: 0;
}
/* line 473, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li.sep {
  font-size: 16px;
  padding: 2px 10px;
}
/* line 478, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.edgetoedge li em {
  font-weight: normal;
  font-style: normal;
}
/* line 487, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic {
  font-size: 18px;
}
/* line 491, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li {
  border-width: 1px 0;
  border-style: solid;
  background-image: none;
  background-color: #d4d4d4;
  border-top-color: #d9d9d9;
  border-bottom-color: #cccccc;
}
/* line 499, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li:nth-child(odd) {
  background-image: none;
  background-color: #d9d9d9;
}
/* line 503, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li a.active.loading {
  background-image: url(../img/innsbruck/loading.gif);
  background-position: 95% center;
  background-repeat: no-repeat;
}
/* line 508, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.plastic li small {
  color: #737373;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
/* line 518, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual {
  border: 0;
  background: none;
  clear: both;
  overflow: hidden;
}
/* line 524, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual li {
  font-size: 14px;
  text-align: center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 48%;
  float: left;
  display: block;
  padding: 11px 10px 14px 10px;
}
/* line 534, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual li + li {
  float: right;
}
/* line 539, ../../../themes/scss/include/_skeleton.scss */
#jqt ul.individual a {
  line-height: 16px;
  margin: -11px -10px -14px -10px;
  padding: 11px 10px 14px 10px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/* line 548, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle, #jqt span.toggle {
  width: 94px;
  position: relative;
  height: 27px;
  display: block;
  overflow: hidden;
  float: right;
}
/* line 556, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle input[type="checkbox"], #jqt span.toggle input[type="checkbox"] {
  margin: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 27px;
  overflow: hidden;
  width: 149px;
  border: 0;
  -moz-transition: left 0.15s ease-in-out;
  -o-transition: left 0.15s ease-in-out;
  -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: transparent;
}
/* line 570, ../../../themes/scss/include/_skeleton.scss */
#jqt div.toggle input[type="checkbox"]:checked, #jqt span.toggle input[type="checkbox"]:checked {
  left: 0px;
}
/* line 576, ../../../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 .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 .1s, box-shadow 0.2s ease-in .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 580, ../../../themes/scss/include/_skeleton.scss */
#jqt li input[type="checkbox"].toggle {
  position: absolute;
  right: 10px;
  left: auto;
  margin-top: 6px;
  top: 0px;
}
/* line 588, ../../../themes/scss/include/_skeleton.scss */
#jqt .info {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #444;
  padding: 15px;
  font-weight: bold;
}

/* line 23, ../../../themes/scss/innsbruck.scss */
#jqt > * {
  background-color: #efeff4;
}
/* line 27, ../../../themes/scss/innsbruck.scss */
#jqt h1, #jqt h2 {
  color: #4d4d4d;
}
/* line 31, ../../../themes/scss/innsbruck.scss */
#jqt h2 {
  text-transform: uppercase;
  font-size: 0.9em;
}
/* line 36, ../../../themes/scss/innsbruck.scss */
#jqt .toolbar {
  border-bottom: 1px solid #a7a7ab;
  font-weight: bold;
  -moz-box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
  -webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
  box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
}
/* line 41, ../../../themes/scss/innsbruck.scss */
#jqt .toolbar .button, #jqt .toolbar .back, #jqt .toolbar .cancel, #jqt .toolbar .add {
  background-image: none;
  background-color: transparent;
  border: 0px solid transparent;
  box-shadow: none;
  color: #007aff;
  font-weight: lighter;
  font-size: 15px;
  text-shadow: none;
  padding: 0 7px;
  margin: 0 0px;
}
/* line 53, ../../../themes/scss/innsbruck.scss */
#jqt .toolbar .button.active, #jqt .toolbar .button:active, #jqt .toolbar .back.active, #jqt .toolbar .back:active, #jqt .toolbar .cancel.active, #jqt .toolbar .cancel:active, #jqt .toolbar .add.active, #jqt .toolbar .add:active {
  color: #99caff;
  background-image: none;
  background-color: transparent;
}
/* line 60, ../../../themes/scss/innsbruck.scss */
#jqt .toolbar .back, #jqt .toolbar .cancel {
  left: 2px;
}
/* line 63, ../../../themes/scss/innsbruck.scss */
#jqt .toolbar .back::before, #jqt .toolbar .cancel::before {
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  position: relative;
  display: inline-block;
  top: 30%;
  content: '';
  height: 0.6em;
  width: 0.6em;
  -webkit-transform: scale(0.9, 1) rotate(225deg);
  vertical-align: top;
  margin-right: 5px;
}
/* line 69, ../../../themes/scss/innsbruck.scss */
#jqt .toolbar h1 {
  font-size: 17px;
}
/* line 74, ../../../themes/scss/innsbruck.scss */
#jqt ul {
  overflow: hidden;
}
/* line 77, ../../../themes/scss/innsbruck.scss */
#jqt ul li {
  overflow: visible;
  padding-right: 10px;
  box-sizing: border-box;
}
/* line 82, ../../../themes/scss/innsbruck.scss */
#jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
  color: #324f85;
}
/* line 86, ../../../themes/scss/innsbruck.scss */
#jqt ul li.forward::after {
  content: "i";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  width: 20px;
  height: 20px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  top: 50%;
  right: 6px;
  margin-top: -10px;
  border: 1px solid #007aff;
  -webkit-box-sizing: border-box;
  padding: 0;
  z-index: 10;
  line-height: 9px;
  color: #007aff;
  text-indent: 5px;
  pointer-events: none;
  background-image: none;
  background-color: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 13px;
  font-weight: bold;
  text-indent: 7.5px;
  line-height: 19px;
  right: 13px;
}
/* line 98, ../../../themes/scss/innsbruck.scss */
#jqt ul li a {
  color: #040404;
}
/* line 101, ../../../themes/scss/innsbruck.scss */
#jqt ul li a.active, #jqt ul li a.selected {
  background-image: none;
  color: #222;
  margin-left: -20px;
  padding-left: 20px;
  margin-right: -16px;
  padding-right: 16px;
  text-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
/* line 114, ../../../themes/scss/innsbruck.scss */
#jqt ul li.arrow small {
  margin-right: 14px;
}
/* line 117, ../../../themes/scss/innsbruck.scss */
#jqt ul li.forward small {
  margin-right: 25px;
}
/* line 120, ../../../themes/scss/innsbruck.scss */
#jqt ul li.forward small.counter {
  margin-right: 32px;
}
/* line 126, ../../../themes/scss/innsbruck.scss */
#jqt ul input[type='submit'] {
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
  border: 1px outset #aaa;
}
/* line 132, ../../../themes/scss/innsbruck.scss */
#jqt ul.edgetoedge li.sep {
  color: black;
  background-color: #f7f7f7;
}
/* line 137, ../../../themes/scss/innsbruck.scss */
#jqt ul.rounded {
  margin: 20px 0;
  padding: 0 0;
  border-radius: 0;
}
/* line 142, ../../../themes/scss/innsbruck.scss */
#jqt ul.rounded li {
  padding-left: 0;
  margin-left: 20px;
  padding-right: 16px;
}
/* line 148, ../../../themes/scss/innsbruck.scss */
#jqt ul.rounded li:first-child a.active, #jqt ul.rounded li:last-child a.active {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 156, ../../../themes/scss/innsbruck.scss */
#jqt ul.rounded li a.active {
  border-radius: 0;
}
/* line 161, ../../../themes/scss/innsbruck.scss */
#jqt ul.edgetoedge li, #jqt ul.metal li {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 165, ../../../themes/scss/innsbruck.scss */
#jqt ul.edgetoedge li.arrow small.counter, #jqt ul.metal li.arrow small.counter {
  margin-right: 20px;
}
/* line 171, ../../../themes/scss/innsbruck.scss */
#jqt ul.plastic li a.active, #jqt ul.plastic li a:active {
  background-color: #c9c9c9;
}
/* line 176, ../../../themes/scss/innsbruck.scss */
#jqt ul.edgetoedge li em {
  font-weight: normal;
  font-style: normal;
}
/* line 181, ../../../themes/scss/innsbruck.scss */
#jqt ul.metal li {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #9c9ea5;
  font-size: 26px;
  text-shadow: #fff 0 1px 0;
}
/* line 187, ../../../themes/scss/innsbruck.scss */
#jqt ul.metal li a:hover {
  color: #000;
}
/* line 190, ../../../themes/scss/innsbruck.scss */
#jqt ul.metal li em {
  color: #444;
}
/* line 195, ../../../themes/scss/innsbruck.scss */
#jqt ul li input[type="checkbox"].toggle {
  margin-top: 4px;
  right: 16px;
}
/* line 201, ../../../themes/scss/innsbruck.scss */
#jqt h1 + ul.rounded, #jqt h2 + ul.rounded {
  margin-top: 0;
}
/* line 205, ../../../themes/scss/innsbruck.scss */
#jqt .whiteButton, #jqt .grayButton, #jqt .redButton, #jqt .blueButton, #jqt .greenButton {
  font-weight: normal;
  font-size: 22px;
  line-height: 66px;
  padding: 0;
  text-shadow: none;
  margin: 0 20px;
}
/* line 213, ../../../themes/scss/innsbruck.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 {
  text-shadow: none;
}
/* line 218, ../../../themes/scss/innsbruck.scss */
#jqt .whiteButton {
  background-color: rgba(255, 255, 255, 0.95);
}
/* line 221, ../../../themes/scss/innsbruck.scss */
#jqt .whiteButton.active, #jqt .whiteButton:active {
  color: black;
  background-image: none;
  background-color: #dcdcdd;
}
/* line 228, ../../../themes/scss/innsbruck.scss */
#jqt .grayButton {
  background-color: #1d1e1d;
}
/* line 231, ../../../themes/scss/innsbruck.scss */
#jqt .grayButton.active, #jqt .grayButton:active {
  color: white;
  background-image: none;
  background-color: black;
}
/* line 238, ../../../themes/scss/innsbruck.scss */
#jqt .redButton {
  background-color: #e0544c;
}
/* line 241, ../../../themes/scss/innsbruck.scss */
#jqt .redButton.active, #jqt .redButton:active {
  background-image: none;
  background-color: #ba2920;
}
/* line 250, ../../../themes/scss/innsbruck.scss */
#jqt .greenButton {
  background-color: #4cd964;
}
/* line 253, ../../../themes/scss/innsbruck.scss */
#jqt .greenButton.active, #jqt .greenButton:active {
  background-image: none;
  background-color: #25ae3c;
}
/* line 260, ../../../themes/scss/innsbruck.scss */
#jqt .info {
  background: #dcdcdf;
  text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
  color: #6c6c6c;
  border-top: 1px solid rgba(86, 86, 89, 0.3);
}
