summaryrefslogtreecommitdiff
path: root/frontend/gamma/css/mobile.css
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:55:07 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2013-04-21 15:55:07 (UTC)
commit959c262afc598c4eeb58fe8fccf90ea8305c0eec (patch) (unidiff)
treeaae9cb7821e59704240751e5b2878a374d21ea91 /frontend/gamma/css/mobile.css
parent1906ddfb5d3887edeedaf8e07d14ad89abbd214d (diff)
downloadclipperz-959c262afc598c4eeb58fe8fccf90ea8305c0eec.zip
clipperz-959c262afc598c4eeb58fe8fccf90ea8305c0eec.tar.gz
clipperz-959c262afc598c4eeb58fe8fccf90ea8305c0eec.tar.bz2
Updated mobile prototype
Diffstat (limited to 'frontend/gamma/css/mobile.css') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/gamma/css/mobile.css8218
1 files changed, 2298 insertions, 5920 deletions
diff --git a/frontend/gamma/css/mobile.css b/frontend/gamma/css/mobile.css
index 36b2b21..ecdeeab 100644
--- a/frontend/gamma/css/mobile.css
+++ b/frontend/gamma/css/mobile.css
@@ -1,6140 +1,2022 @@
1/* 1/*
2 2
3Copyright 2008-2013 Clipperz Srl 3Copyright 2008-2013 Clipperz Srl
4 4
5This file is part of Clipperz, the online password manager. 5This file is part of Clipperz, the online password manager.
6For further information about its features and functionalities please 6For further information about its features and functionalities please
7refer to http://www.clipperz.com. 7refer to http://www.clipperz.com.
8 8
9* Clipperz is free software: you can redistribute it and/or modify it 9* Clipperz is free software: you can redistribute it and/or modify it
10 under the terms of the GNU Affero General Public License as published 10 under the terms of the GNU Affero General Public License as published
11 by the Free Software Foundation, either version 3 of the License, or 11 by the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version. 12 (at your option) any later version.
13 13
14* Clipperz is distributed in the hope that it will be useful, but 14* Clipperz is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of 15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 See the GNU Affero General Public License for more details. 17 See the GNU Affero General Public License for more details.
18 18
19* You should have received a copy of the GNU Affero General Public 19* You should have received a copy of the GNU Affero General Public
20 License along with Clipperz. If not, see http://www.gnu.org/licenses/. 20 License along with Clipperz. If not, see http://www.gnu.org/licenses/.
21 21
22*/ 22*/
23 23
24article, 24/*
25aside, 25
26details, 26Color list:
27figcaption, 27- login box:
28figure, 28 light#ff9955
29footer, 29 dark#ff6622
30header, 30- login button:
31hgroup, 31 regular#dd5500
32nav, 32 hover#773311
33section { 33- login translations:
34 display: block; 34 box: #cc6622;
35} 35 not-selected:
36audio, 36 color: #ddaa99
37canvas, 37 background:#994422
38video { 38 selected: #772211;
39 display: inline-block; 39*/
40 *display: inline;
41 *zoom: 1;
42}
43audio:not([controls]) {
44 display: none;
45}
46html { 40html {
47 font-size: 100%; 41 height: 100%;
48 -webkit-text-size-adjust: 100%; 42 -webkit-text-size-adjust: none;
49 -ms-text-size-adjust: 100%; 43 -ms-text-size-adjust: none;
50}
51a:focus {
52 outline: thin dotted #333;
53 outline: 5px auto -webkit-focus-ring-color;
54 outline-offset: -2px;
55}
56a:hover,
57a:active {
58 outline: 0;
59}
60sub,
61sup {
62 position: relative;
63 font-size: 75%;
64 line-height: 0;
65 vertical-align: baseline;
66} 44}
67sup { 45body {
68 top: -0.5em; 46 font-family: Helvetica-Neue, Helvetica, Arial, Geneva, sans-serif;
47 margin: 0px;
69} 48}
70sub { 49.ellipsis {
71 bottom: -0.25em; 50 text-overflow: ellipsis;
51 overflow: hidden;
52 white-space: nowrap;
72} 53}
73img { 54/**
74 /* Responsive images (ensure images don't scale beyond their parents) */ 55 * Background noise recipe
75 56 *
76 max-width: 100%; 57 * This recipe use a sass function to generate a .png file
77 /* Part 1: Set a maxium relative to the parent */ 58 *
78 59 * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
79 width: auto\9; 60 * @link https://github.com/DanielRapp/Noisy
80 /* IE7-8 need help adjusting responsive images */ 61 *
81 62 * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
82 height: auto; 63 * @link https://gist.github.com/1021332
83 /* Part 2: Scale the height according to the width, otherwise you get stretching */ 64 *
65 * Ported to a sass gem by Antti Salonen @antsa
66 * @link https://github.com/antsa/sassy_noise
67 *
68 * Mixin: background-noise
69 * Function: background_noise
70 *
71 * @author Daniel Rapp @DanielRapp
72 * @author Aaron Russell @aaronrussell
73 * @author Philipp Bosch @philippbosch
74 * @author Antti Salonen @antsa
75 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
76 */
77/**
78 *
79 * @class Gradients
80 * @author David Kaneda http://www.davidkaneda.com/
81 *
82 */
83/**
84 * Adds a background gradient into a specified selector.
85 *
86 * @include background-gradient(#444, 'glossy');
87 *
88 * You can also use color-stops if you want full control of the gradient:
89 *
90 * @include background-gradient(#444, color-stops(#333, #222, #111));
91 *
92 * @param {color} $bg-color
93 * The base color of the gradient.
94 *
95 * @param {string/list} $type
96 * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
97 *
98 * @include background-gradient(red, 'glossy');
99 *
100 * It can also accept a list of color-stop values:;
101 *
102 * @include background-gradient(black, color-stops(#333, #111, #000));
103 *
104 * @param {string} $direction
105 * The direction of the gradient.
106 */
107/**
108 * Blueprint grid background pattern
109 *
110 * @link http://lea.verou.me/css3patterns/#blueprint-grid
111 *
112 * @author Lea Verou http://lea.verou.me/ for the original pattern
113 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
114 */
115/**
116 * Background overlay inspired by Google Chrome modal overlay
117 *
118 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
119 */
120/**
121 * Striped background pattern
122 *
123 * @link http://lea.verou.me/css3patterns/
124 *
125 * @author Lea Verou http://lea.verou.me/ for the original pattern
126 * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
127 */
128/**
129 *
130 * Before compass 0.11.5, you need to add
131 * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
132 * To your configuration (config.rb)
133 * @see https://github.com/chriseppstein/compass/issues/401
134 *
135 * @link http://lea.verou.me/css3patterns/#tartan
136 *
137 * @author Marta Armada http://swwweet.com/ for the original pattern
138 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
139 */
140/**
141 * Carbon Fiber background pattern
142 *
143 * @author Lea Verou http://lea.verou.me/ for the original pattern
144 * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
145 *
146 * @link http://lea.verou.me/css3patterns/
147 *
148 */
149/**
150 * Normalize.css
151 * Opposite approche from CSS reset
152 *
153 * Based on normalize.css commit 9576d48fc234c5224b1fc4dccba2f5965243843d
154 *
155 * @link http://github.com/necolas/normalize.css
156 */
157/* normalize.css 2011-07-12T10:51 UTC · http://github.com/necolas/normalize.css */
158/* =============================================================================
159 HTML5 element display
160 ========================================================================== */
161/* =============================================================================
162 Base
163 ========================================================================== */
164/* =============================================================================
165 Links
166 ========================================================================== */
167/* =============================================================================
168 Typography
169 ========================================================================== */
170/* =============================================================================
171 Lists
172 ========================================================================== */
173/* =============================================================================
174 Embedded content
175 ========================================================================== */
176/* =============================================================================
177 Figures
178 ========================================================================== */
179/* =============================================================================
180 Forms
181 ========================================================================== */
182/* =============================================================================
183 Tables
184 ========================================================================== */
185/**
186 *
187 * @author David Kaneda - http://www.davidkaneda.com
188 *
189 */
190/**
191 * @class Color
192 */
193/**
194 * Returns the brightness (out of 100) of a specified color.
195 * @todo explain why this is useful
196 * @param {color} $color The color you want the brightness value of
197 * @return {measurement}
198 */
199/**
200 * Returns the luminosity for a specified color
201 * @todo explain why this is useful
202 * @param {color} The color to check
203 * @return {measurement}
204 */
205/**
206 * Glass effect
207 * Use this on image for better effect render
208 *
209 * Inspired from Simurai's IMDB redisign
210 *
211 * @link http://lab.simurai.com/redesign/imdb
212 * @thanks Simurai @simurai
213 */
214/**
215 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
216 * IE8 need to have :before and not ::before
217 * So use only : and not :: if you want to support IE8
218 * IE9 Webkit Firefox Opera understand ::
219 */
220/**
221 * Scotch tape effect with pure CSS
222 *
223 * @thanks Nick La @nickla for original concept
224 * @link http://webdesignerwall.com/tutorials/css3-image-styles
225 *
226 * @author David Kaneda http://www.davidkaneda.com
227 *
228 */
229/**
230 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
231 * IE8 need to have :before and not ::before
232 * So use only : and not :: if you want to support IE8
233 * IE9 Webkit Firefox Opera understand ::
234 */
235/**
236 * Corner folded with pure CSS
237 *
238 * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
239 * IE8 is not supported because it not render properly box-shadow and
240 * pseudo element should be selected with ::element and not :element
241 *
242 * @thanks Nicolas Gallagher @necolas
243 * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
244 * @todo Nix in .4
245 */
246/**
247 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
248 * IE8 need to have :before and not ::before
249 * So use only : and not :: if you want to support IE8
250 * IE9 Webkit Firefox Opera understand ::
251 */
252/**
253 * Corner folded with pure CSS
254 *
255 * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
256 * IE8 is not supported because it not render properly box-shadow and
257 * pseudo element should be selected with ::element and not :element
258 *
259 * @thanks Nicolas Gallagher @necolas
260 * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
261 */
262/**
263 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
264 * IE8 need to have :before and not ::before
265 * So use only : and not :: if you want to support IE8
266 * IE9 Webkit Firefox Opera understand ::
267 */
268/**
269 * Form element inline mixin
270 * This mixin allow you to have a label inline with your input
271 * It's simply based on inline-block behavior
272 *
273 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
274 */
275/**
276 * Vertical alignement for page
277 * Inspired by http://css-tricks.com/snippets/css/center-div-with-dynamic-height/
278 *
279 * Usage:
280 *
281 * SCSS
282 * @include vertical-align-requirement;
283 * .v-align-container { @include vertical-align-container }
284 * .v-align-content-container { @include vertical-align-content-container }
285 * .v-align-content { @include vertical-align-content }
286 *
287 * HTML
288 * <body>
289 * <div class="v-align-container">
290 * <div class="v-align-content-container">
291 * <div class="v-align-content">
292 * Your content !
293 * </div>
294 * </div>
295 * </div>
296 * </body>
297 *
298 * @thanks Chris Coyier @chriscoyier
299 * @autor Maxime Thirouin maxime.thirouin@gmail.com @MoOx
300 */
301/**
302 * Media Queries Mixins
303 *
304 * @todo Do we have to take care of print ?
305 *
306 * @require sass-3.2 (you need eventually to do "sudo gem install sass --pre")
307 * @author Maxime Thirouin <maxime.thirouin@gmail.com>
308 */
309/*
310$media-query-width-big: 1280px;
311$media-query-width-medium: 960px;
312$media-query-width-small: 480px;
313*/
314/**
315 * Drop shadow mixins from Nicolas Gallagher demo
316 *
317 * @thanks Nicolas Gallagher @necolas, @simurai, @cameronmoll, @matthamm
318 *
319 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
320 */
321/**
322 * Drop shadow curled
323 *
324 * @thanks Nicolas Gallagher @necolas
325 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
326 */
327/**
328 * Drop shadow curved
329 *
330 * @thanks Nicolas Gallagher @necolas
331 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
332 */
333/**
334 * Drop shadow flying
335 *
336 * @thanks Geoffrey Crofte @geoffrey_crofte
337 * @link http://www.creativejuiz.fr/trytotry/css3-box-shadow-after-before/
338 */
339/**
340 * Drop shadow w/ lifted corners
341 *
342 * @thanks Nicolas Gallagher @necolas
343 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
344 */
345/**
346 * Drop shadow w/ perspective
347 *
348 * @thanks Nicolas Gallagher @necolas
349 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
350 */
351/**
352 * Drop shadow raised
353 *
354 * @thanks Nicolas Gallagher @necolas
355 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
356 */
357/**
358 * Drop shadow rules required for transform on drop shadow
359 *
360 * /!\ This is required if you want to apply some transform on the element using drop shadow
361 *
362 * @thanks Nicolas Gallagher @necolas
363 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
364 */
365/**
366 * Shadow along the top edge of the browser viewport
367 *
368 * @link http://playground.genelocklin.com/depth/
369 */
370/**
371* Shapes !
372* Polygons, ellipses and symbols
373*
374* @thanks Chris Coyier @chriscoyier
375* @link http://css-tricks.com/examples/ShapesOfCSS/
376* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
377*/
378/**
379 * Shape/Ellipse
380 *
381 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
382 */
383/**
384 * Shape/Polygon
385 *
386 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
387 */
388/**
389 * Shape/Polygon/Hexagon
390 *
391 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
392 */
393/**
394 * Shape/Polygon/Octagon
395 *
396 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
397 */
398/**
399 * Shape/Polygon/Parallelogram
400 *
401 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
402 */
403/**
404 * Shape/Polygon/Pentagon
405 *
406 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
407 */
408/**
409 * Shape/Polygon/Rectangle
410 *
411 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
412 */
413/**
414 * Shape/Polygon/Rhombus
415 *
416 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
417 */
418/**
419 * Shape/Polygon/Square
420 *
421 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
422 */
423/**
424 * Shape/Polygon/Star
425 *
426 * @todo check if setting a z-index by default is a good thing
427 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
428 */
429/**
430 * Shape/Polygon/Trapezoid
431 *
432 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
433 */
434/**
435 * Shape/Polygon/Triangle
436 *
437 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
438 */
439/**
440 * Shape/Symbol
441 *
442 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
443 */
444/**
445 * Shape/Symbol/Diamond
446 *
447 * @todo add height support
448 *
449 * @author Alexander Futekov
450 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
451 */
452/**
453 * Shape/Symbol/Egg
454 *
455 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
456 */
457/**
458 * Shape/Symbol/Heart
459 *
460 * @author Nicolas Gallagher @necolas
461 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
462 */
463/**
464 * Shape/Symbol/Infinity
465 *
466 * @author Nicolas Gallagher @necolas
467 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
468 */
469/**
470 * Shape/Symbol/Pacman
471 *
472 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
473 */
474/**
475 * Shape/Symbol/Yin-yang
476 *
477 * @author Alexander Futekov
478 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
479 */
480/**
481 * Micro clearfix hack
482 *
483 * 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.
484 * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
485 *
486 * @thanks Nicolas Gallagher @necolas
487 * @link http://nicolasgallagher.com/micro-clearfix-hack/
488 */
489/**
490 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
491 * IE8 need to have :before and not ::before
492 * So use only : and not :: if you want to support IE8
493 * IE9 Webkit Firefox Opera understand ::
494 */
495/**
496 * UI convex effect from one color
497 *
498 * @todo merge with ui-button ?
499 *
500 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
501 */
502/**
503 * UI Glossy helper
504 *
505 * @deprecated
506 * @todo Remove in 0.4
507 * @see background/gradients
508 *
509 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
510 */
511/**
512 * UI simple gradient from one color
513 *
514 * @todo merge with ui-button ?
515 *
516 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
517 */
518/**
519 * Shape/Polygon/Triangle
520 *
521 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
522 */
523/**
524 * Keyboard key touch
525 * A simple stylesheet for rendering beautiful keyboard-style elements.
84 526
85 vertical-align: middle; 527 * @author Michael Hüneburg http://michaelhue.com/keyscss
86 border: 0; 528 * @link https://github.com/michaelhue/keyscss (commit 76bb603e921d0145362e0f60eabb79d4f69cbda0)
87 -ms-interpolation-mode: bicubic; 529 *
88} 530 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
89#map_canvas img, 531*/
90.google-maps img { 532/**
91 max-width: none; 533 * Menu dropdown helper
92} 534 *
93button, 535 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
94input, 536*/
95select, 537/**
96textarea { 538 * Ui background overlay inspired by Google Chrome modal overlay
539 *
540 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
541 */
542/**
543 * Background overlay inspired by Google Chrome modal overlay
544 *
545 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
546 */
547/**
548 * <hr /> separator style
549 *
550 * @author Chris Coyier @chriscoyier
551 * @link http://jsfiddle.net/chriscoyier/GaEzp/35/
552 *
553 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
554 */
555/**
556 * Micro clearfix hack
557 *
558 * 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.
559 * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
560 *
561 * @thanks Nicolas Gallagher @necolas
562 * @link http://nicolasgallagher.com/micro-clearfix-hack/
563 */
564/**
565 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
566 * IE8 need to have :before and not ::before
567 * So use only : and not :: if you want to support IE8
568 * IE9 Webkit Firefox Opera understand ::
569 */
570/**
571 *
572 * @class Gradients
573 * @author David Kaneda http://www.davidkaneda.com/
574 *
575 */
576/**
577 * Adds a background gradient into a specified selector.
578 *
579 * @include background-gradient(#444, 'glossy');
580 *
581 * You can also use color-stops if you want full control of the gradient:
582 *
583 * @include background-gradient(#444, color-stops(#333, #222, #111));
584 *
585 * @param {color} $bg-color
586 * The base color of the gradient.
587 *
588 * @param {string/list} $type
589 * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
590 *
591 * @include background-gradient(red, 'glossy');
592 *
593 * It can also accept a list of color-stop values:;
594 *
595 * @include background-gradient(black, color-stops(#333, #111, #000));
596 *
597 * @param {string} $direction
598 * The direction of the gradient.
599 */
600/**
601 * @class Webfont Icon
602 * Great to use with the [Pictos font](http://pictos.drewwilson.com/)
603 *
604 */
605/**
606 * @cfg {color} $webfont-icon-base-color
607 * The default color of icons when using the {@link #webfont-icon} mixin.
608 *
609 * Defaults to `white`.
610 */
611/**
612 * @cfg {color} $webfont-icon-default-stroke
613 * The default color to use on the border of icons, when using the {@link #webfont-icon} mixin.
614 *
615 * Defaults to `null`.
616 */
617/**
618 * @cfg {string} $webfont-icon-default-gradient
619 * The default gradient to use when using the {@link #webfont-icon} mixin.
620 *
621 * Defaults to `matte`.
622 */
623/* line 41, ../compass-recipes/stylesheets/recipes/_webfont-icon.scss */
624.webfont-icon-base {
625 color: transparent;
626 -webkit-background-clip: text;
627 background-clip: text;
628 position: absolute;
629 top: 0;
630 left: 0;
631 text-indent: 0;
632 text-shadow: none;
633 -webkit-user-select: none;
634 user-select: none;
635}
636/**
637 * Includes a character into the specified selector, styled as an icon.
638 *
639 * @include webfont-icon('a');
640 *
641 * @param {color} $color
642 * The color of the icon. Defaults to {@link #$webfont-icon-default-background $webfont-icon-default-background}.
643 *
644 * @param {measurement} $size
645 * The size of the icon
646 *
647 * @param {color} $stroke
648 * The color of the border. Defautls to {@link #$webfont-icon-default-border $webfont-icon-default-border}.
649 *
650 * @param {boolean} $include-staes
651 * True to include states for hover and active. Defaults to `true`.
652 */
653/* line 1, ../scss/include/_base.scss */
654* {
97 margin: 0; 655 margin: 0;
98 font-size: 100%;
99 vertical-align: middle;
100}
101button,
102input {
103 *overflow: visible;
104 line-height: normal;
105}
106button::-moz-focus-inner,
107input::-moz-focus-inner {
108 padding: 0; 656 padding: 0;
109 border: 0;
110} 657}
111button, 658/* line 6, ../scss/include/_base.scss */
112html input[type="button"], 659body {
113input[type="reset"], 660 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
114input[type="submit"] { 661 -webkit-touch-callout: none;
115 -webkit-appearance: button; 662}
116 cursor: pointer; 663/* line 11, ../scss/include/_base.scss */
117} 664#jqt {
118label, 665 -webkit-text-size-adjust: none;
119select, 666 -webkit-user-select: none;
120button, 667 user-select: none;
121input[type="button"], 668 font-family: "Helvetica Neue", Helvetica;
122input[type="reset"], 669 position: absolute;
123input[type="submit"], 670 right: 0;
124input[type="radio"], 671 top: 0;
125input[type="checkbox"] { 672 left: 0;
126 cursor: pointer; 673 bottom: 0;
127}
128input[type="search"] {
129 -webkit-box-sizing: content-box;
130 -moz-box-sizing: content-box;
131 box-sizing: content-box;
132 -webkit-appearance: textfield;
133}
134input[type="search"]::-webkit-search-decoration,
135input[type="search"]::-webkit-search-cancel-button {
136 -webkit-appearance: none;
137}
138textarea {
139 overflow: auto;
140 vertical-align: top;
141}
142@media print {
143 * {
144 text-shadow: none !important;
145 color: #000 !important;
146 background: transparent !important;
147 box-shadow: none !important;
148 }
149 a,
150 a:visited {
151 text-decoration: underline;
152 }
153 a[href]:after {
154 content: " (" attr(href) ")";
155 }
156 abbr[title]:after {
157 content: " (" attr(title) ")";
158 }
159 .ir a:after,
160 a[href^="javascript:"]:after,
161 a[href^="#"]:after {
162 content: "";
163 }
164 pre,
165 blockquote {
166 border: 1px solid #999;
167 page-break-inside: avoid;
168 }
169 thead {
170 display: table-header-group;
171 }
172 tr,
173 img {
174 page-break-inside: avoid;
175 }
176 img {
177 max-width: 100% !important;
178 }
179 @page {
180 margin: 0.5cm;
181 }
182 p,
183 h2,
184 h3 {
185 orphans: 3;
186 widows: 3;
187 }
188 h2,
189 h3 {
190 page-break-after: avoid;
191 }
192}
193.clearfix {
194 *zoom: 1;
195} 674}
196.clearfix:before, 675/* line 21, ../scss/include/_base.scss */
197.clearfix:after { 676#jqt a {
198 display: table; 677 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
199 content: ""; 678 -webkit-user-drag: none;
200 line-height: 0;
201} 679}
202.clearfix:after { 680/* line 26, ../scss/include/_base.scss */
203 clear: both; 681#jqt .selectable,
682#jqt input,
683#jqt textarea {
684 -webkit-user-select: auto;
204} 685}
205.hide-text { 686/* line 30, ../scss/include/_base.scss */
206 font: 0/0 a; 687#jqt.notransform {
207 color: transparent; 688 -webkit-transform: none !important;
208 text-shadow: none;
209 background-color: transparent;
210 border: 0;
211} 689}
212.input-block-level { 690/* line 35, ../scss/include/_base.scss */
691#jqt > * {
213 display: block; 692 display: block;
693 left: 0;
694 top: 0;
695 min-height: 100%;
214 width: 100%; 696 width: 100%;
215 min-height: 30px; 697 overflow-x: hidden;
216 -webkit-box-sizing: border-box; 698 position: absolute;
217 -moz-box-sizing: border-box; 699 z-index: 0;
218 box-sizing: border-box; 700 display: -webkit-box;
219} 701 display: box;
220body { 702 -webkit-box-orient: vertical;
221 margin: 0; 703 box-orient: vertical;
222 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 704 -webkit-box-flex: 1;
223 font-size: 14px; 705 box-flex: 1;
224 line-height: 20px; 706}
225 color: #333333; 707/* line 49, ../scss/include/_base.scss */
226 background-color: #ffffff; 708#jqt > .current {
227} 709 z-index: 10;
228a { 710}
229 color: #0088cc; 711/* line 53, ../scss/include/_base.scss */
230 text-decoration: none; 712#jqt > :not(.current) {
231} 713 display: none;
232a:hover {
233 color: #005580;
234 text-decoration: underline;
235}
236.img-rounded {
237 -webkit-border-radius: 6px;
238 -moz-border-radius: 6px;
239 border-radius: 6px;
240}
241.img-polaroid {
242 padding: 4px;
243 background-color: #fff;
244 border: 1px solid #ccc;
245 border: 1px solid rgba(0, 0, 0, 0.2);
246 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
247 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
248 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
249}
250.img-circle {
251 -webkit-border-radius: 500px;
252 -moz-border-radius: 500px;
253 border-radius: 500px;
254}
255.row {
256 margin-left: -20px;
257 *zoom: 1;
258}
259.row:before,
260.row:after {
261 display: table;
262 content: "";
263 line-height: 0;
264}
265.row:after {
266 clear: both;
267}
268[class*="span"] {
269 float: left;
270 min-height: 1px;
271 margin-left: 20px;
272}
273.container,
274.navbar-static-top .container,
275.navbar-fixed-top .container,
276.navbar-fixed-bottom .container {
277 width: 940px;
278}
279.span12 {
280 width: 940px;
281}
282.span11 {
283 width: 860px;
284}
285.span10 {
286 width: 780px;
287}
288.span9 {
289 width: 700px;
290}
291.span8 {
292 width: 620px;
293}
294.span7 {
295 width: 540px;
296}
297.span6 {
298 width: 460px;
299}
300.span5 {
301 width: 380px;
302}
303.span4 {
304 width: 300px;
305}
306.span3 {
307 width: 220px;
308}
309.span2 {
310 width: 140px;
311}
312.span1 {
313 width: 60px;
314}
315.offset12 {
316 margin-left: 980px;
317}
318.offset11 {
319 margin-left: 900px;
320}
321.offset10 {
322 margin-left: 820px;
323}
324.offset9 {
325 margin-left: 740px;
326}
327.offset8 {
328 margin-left: 660px;
329}
330.offset7 {
331 margin-left: 580px;
332}
333.offset6 {
334 margin-left: 500px;
335} 714}
336.offset5 { 715/* line 57, ../scss/include/_base.scss */
337 margin-left: 420px; 716#jqt.touchscroll:not(.animating3d) {
717 overflow-y: auto;
718 -webkit-overflow-scrolling: touch;
338} 719}
339.offset4 { 720/* line 61, ../scss/include/_base.scss */
340 margin-left: 340px; 721#jqt.touchscroll:not(.animating3d) > * {
722 height: 100%;
341} 723}
342.offset3 { 724/* line 64, ../scss/include/_base.scss */
343 margin-left: 260px; 725#jqt.touchscroll:not(.animating3d) .scroll {
726 position: relative;
727 -webkit-box-flex: 1;
728 box-flex: 1;
729 overflow-y: auto;
730 -webkit-overflow-scrolling: touch;
344} 731}
345.offset2 { 732/* line 72, ../scss/include/_base.scss */
346 margin-left: 180px; 733#jqt .scroll {
734 -webkit-margin-collapse: separate;
347} 735}
348.offset1 { 736/* line 76, ../scss/include/_base.scss */
349 margin-left: 100px; 737#jqt .in,
738#jqt .out {
739 -webkit-animation-duration: 250ms;
740 -webkit-animation-fill-mode: both;
741 -webkit-animation-timing-function: ease-in-out;
350} 742}
351.row-fluid { 743/* line 82, ../scss/include/_base.scss */
352 width: 100%; 744#jqt .in {
353 *zoom: 1; 745 z-index: 10;
354} 746}
355.row-fluid:before, 747/* line 85, ../scss/include/_base.scss */
356.row-fluid:after { 748#jqt .in:after {
357 display: table;
358 content: ""; 749 content: "";
359 line-height: 0; 750 position: absolute;
360}
361.row-fluid:after {
362 clear: both;
363}
364.row-fluid [class*="span"] {
365 display: block; 751 display: block;
366 width: 100%; 752 top: 0;
367 min-height: 30px; 753 left: 0;
368 -webkit-box-sizing: border-box; 754 bottom: 0;
369 -moz-box-sizing: border-box; 755 right: 0;
370 box-sizing: border-box;
371 float: left;
372 margin-left: 2.127659574468085%;
373 *margin-left: 2.074468085106383%;
374}
375.row-fluid [class*="span"]:first-child {
376 margin-left: 0;
377}
378.row-fluid .controls-row [class*="span"] + [class*="span"] {
379 margin-left: 2.127659574468085%;
380}
381.row-fluid .span12 {
382 width: 100%;
383 *width: 99.94680851063829%;
384}
385.row-fluid .span11 {
386 width: 91.48936170212765%;
387 *width: 91.43617021276594%;
388}
389.row-fluid .span10 {
390 width: 82.97872340425532%;
391 *width: 82.92553191489361%;
392}
393.row-fluid .span9 {
394 width: 74.46808510638297%;
395 *width: 74.41489361702126%;
396}
397.row-fluid .span8 {
398 width: 65.95744680851064%;
399 *width: 65.90425531914893%;
400}
401.row-fluid .span7 {
402 width: 57.44680851063829%;
403 *width: 57.39361702127659%;
404}
405.row-fluid .span6 {
406 width: 48.93617021276595%;
407 *width: 48.88297872340425%;
408}
409.row-fluid .span5 {
410 width: 40.42553191489362%;
411 *width: 40.37234042553192%;
412} 756}
413.row-fluid .span4 { 757/* line 94, ../scss/include/_base.scss */
414 width: 31.914893617021278%; 758#jqt .out {
415 *width: 31.861702127659576%; 759 z-index: 0 !important;
416} 760}
417.row-fluid .span3 { 761/* line 98, ../scss/include/_base.scss */
418 width: 23.404255319148934%; 762#jqt.supports3d {
419 *width: 23.351063829787233%; 763 -webkit-perspective: 1000;
420} 764}
421.row-fluid .span2 { 765/* line 101, ../scss/include/_base.scss */
422 width: 14.893617021276595%; 766#jqt.supports3d > * {
423 *width: 14.840425531914894%; 767 -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
424} 768}
425.row-fluid .span1 { 769/* Fade */
426 width: 6.382978723404255%; 770/* line 3, ../scss/include/_animations.scss */
427 *width: 6.329787234042553%; 771#jqt .fade.in {
772 -webkit-animation-name: fadeIn;
428} 773}
429.row-fluid .offset12 { 774/* line 7, ../scss/include/_animations.scss */
430 margin-left: 104.25531914893617%; 775#jqt .fade.out {
431 *margin-left: 104.14893617021275%; 776 z-index: 10;
777 -webkit-animation-name: fadeOut;
432} 778}
433.row-fluid .offset12:first-child { 779@-webkit-keyframes fadeIn {
434 margin-left: 102.12765957446808%; 780 /* line 13, ../scss/include/_animations.scss */
435 *margin-left: 102.02127659574467%; 781 0% {
782 opacity: 0;
783 }
784 /* line 16, ../scss/include/_animations.scss */
785 100% {
786 opacity: 1;
787 }
436} 788}
437.row-fluid .offset11 { 789@-webkit-keyframes fadeOut {
438 margin-left: 95.74468085106382%; 790 /* line 22, ../scss/include/_animations.scss */
439 *margin-left: 95.6382978723404%; 791 0% {
792 opacity: 1;
793 }
794 /* line 25, ../scss/include/_animations.scss */
795 100% {
796 opacity: 1;
797 }
440} 798}
441.row-fluid .offset11:first-child { 799/* Disolve */
442 margin-left: 93.61702127659574%; 800/* line 34, ../scss/include/_animations.scss */
443 *margin-left: 93.51063829787232%; 801#jqt .dissolve.in {
802 -webkit-animation-name: dissolveIn;
444} 803}
445.row-fluid .offset10 { 804/* line 38, ../scss/include/_animations.scss */
446 margin-left: 87.23404255319149%; 805#jqt .dissolve.out {
447 *margin-left: 87.12765957446807%; 806 -webkit-animation-name: dissolveOut;
448} 807}
449.row-fluid .offset10:first-child { 808@-webkit-keyframes dissolveIn {
450 margin-left: 85.1063829787234%; 809 /* line 43, ../scss/include/_animations.scss */
451 *margin-left: 84.99999999999999%; 810 0% {
811 opacity: 0;
812 }
813 /* line 46, ../scss/include/_animations.scss */
814 100% {
815 opacity: 1;
816 }
452} 817}
453.row-fluid .offset9 { 818@-webkit-keyframes dissolveOut {
454 margin-left: 78.72340425531914%; 819 /* line 52, ../scss/include/_animations.scss */
455 *margin-left: 78.61702127659572%; 820 0% {
821 opacity: 1;
822 }
823 /* line 55, ../scss/include/_animations.scss */
824 100% {
825 opacity: 0;
826 }
456} 827}
457.row-fluid .offset9:first-child { 828/* #Popin' */
458 margin-left: 76.59574468085106%; 829/* line 64, ../scss/include/_animations.scss */
459 *margin-left: 76.48936170212764%; 830#jqt .pop.in {
831 -webkit-animation-name: popIn;
460} 832}
461.row-fluid .offset8 { 833/* line 68, ../scss/include/_animations.scss */
462 margin-left: 70.2127659574468%; 834#jqt .pop.out {
463 *margin-left: 70.10638297872339%; 835 -webkit-animation-name: popOut;
464} 836}
465.row-fluid .offset8:first-child { 837@-webkit-keyframes popIn {
466 margin-left: 68.08510638297872%; 838 /* line 73, ../scss/include/_animations.scss */
467 *margin-left: 67.9787234042553%; 839 0% {
840 -webkit-transform: scale(0.2);
841 opacity: 0;
842 }
843 /* line 77, ../scss/include/_animations.scss */
844 100% {
845 -webkit-transform: scale(1);
846 opacity: 1;
847 }
468} 848}
469.row-fluid .offset7 { 849@-webkit-keyframes popOut {
470 margin-left: 61.70212765957446%; 850 /* line 84, ../scss/include/_animations.scss */
471 *margin-left: 61.59574468085106%; 851 0% {
852 -webkit-transform: scale(1);
853 opacity: 1;
854 }
855 /* line 88, ../scss/include/_animations.scss */
856 100% {
857 -webkit-transform: scale(0.2);
858 opacity: 0;
859 }
472} 860}
473.row-fluid .offset7:first-child { 861/* Slide Left */
474 margin-left: 59.574468085106375%; 862/* line 98, ../scss/include/_animations.scss */
475 *margin-left: 59.46808510638297%; 863#jqt .slideleft.in {
864 -webkit-animation-name: slideLeftIn;
476} 865}
477.row-fluid .offset6 { 866/* line 102, ../scss/include/_animations.scss */
478 margin-left: 53.191489361702125%; 867#jqt .slideleft.out {
479 *margin-left: 53.085106382978715%; 868 -webkit-animation-name: slideLeftOut;
480} 869}
481.row-fluid .offset6:first-child { 870@-webkit-keyframes slideLeftIn {
482 margin-left: 51.063829787234035%; 871 /* line 107, ../scss/include/_animations.scss */
483 *margin-left: 50.95744680851063%; 872 0% {
873 -webkit-transform: translateX(100%);
874 }
875 /* line 110, ../scss/include/_animations.scss */
876 100% {
877 -webkit-transform: translateX(0);
878 }
484} 879}
485.row-fluid .offset5 { 880@-webkit-keyframes slideLeftOut {
486 margin-left: 44.68085106382979%; 881 /* line 116, ../scss/include/_animations.scss */
487 *margin-left: 44.57446808510638%; 882 0% {
883 -webkit-transform: translateX(0px);
884 }
885 /* line 119, ../scss/include/_animations.scss */
886 100% {
887 -webkit-transform: translateX(-100%);
888 }
488} 889}
489.row-fluid .offset5:first-child { 890/* Slide Right */
490 margin-left: 42.5531914893617%; 891/* line 128, ../scss/include/_animations.scss */
491 *margin-left: 42.4468085106383%; 892#jqt .slideright.in {
893 -webkit-animation-name: slideRightIn;
492} 894}
493.row-fluid .offset4 { 895/* line 132, ../scss/include/_animations.scss */
494 margin-left: 36.170212765957444%; 896#jqt .slideright.out {
495 *margin-left: 36.06382978723405%; 897 -webkit-animation-name: slideRightOut;
496} 898}
497.row-fluid .offset4:first-child { 899@-webkit-keyframes slideRightIn {
498 margin-left: 34.04255319148936%; 900 /* line 137, ../scss/include/_animations.scss */
499 *margin-left: 33.93617021276596%; 901 0% {
902 -webkit-transform: translateX(-100%);
903 }
904 /* line 140, ../scss/include/_animations.scss */
905 100% {
906 -webkit-transform: translateX(0);
907 }
500} 908}
501.row-fluid .offset3 { 909@-webkit-keyframes slideRightOut {
502 margin-left: 27.659574468085104%; 910 /* line 146, ../scss/include/_animations.scss */
503 *margin-left: 27.5531914893617%; 911 0% {
912 -webkit-transform: translateX(0);
913 }
914 /* line 149, ../scss/include/_animations.scss */
915 100% {
916 -webkit-transform: translateX(100%);
917 }
504} 918}
505.row-fluid .offset3:first-child { 919/* Slide Up */
506 margin-left: 25.53191489361702%; 920/* line 158, ../scss/include/_animations.scss */
507 *margin-left: 25.425531914893618%; 921#jqt .slideup.in {
922 z-index: 10;
923 -webkit-animation-name: slideUpIn;
508} 924}
509.row-fluid .offset2 { 925/* line 162, ../scss/include/_animations.scss */
510 margin-left: 19.148936170212764%; 926#jqt .slideup.out {
511 *margin-left: 19.04255319148936%; 927 z-index: 0;
928 -webkit-animation-name: slideUpOut;
512} 929}
513.row-fluid .offset2:first-child { 930@-webkit-keyframes slideUpIn {
514 margin-left: 17.02127659574468%; 931 /* line 168, ../scss/include/_animations.scss */
515 *margin-left: 16.914893617021278%; 932 0% {
933 -webkit-transform: translateY(100%);
934 }
935 /* line 171, ../scss/include/_animations.scss */
936 100% {
937 -webkit-transform: translateY(0);
938 }
516} 939}
517.row-fluid .offset1 { 940@-webkit-keyframes slideUpOut {
518 margin-left: 10.638297872340425%; 941 /* line 177, ../scss/include/_animations.scss */
519 *margin-left: 10.53191489361702%; 942 0% {
943 -webkit-transform: translateY(0);
944 }
945 /* line 180, ../scss/include/_animations.scss */
946 100% {
947 -webkit-transform: translateY(0);
948 }
520} 949}
521.row-fluid .offset1:first-child { 950/* Slide Down */
522 margin-left: 8.51063829787234%; 951/* line 189, ../scss/include/_animations.scss */
523 *margin-left: 8.404255319148938%; 952#jqt .slidedown.in {
953 z-index: 0;
954 -webkit-animation-name: slideDownIn;
524} 955}
525[class*="span"].hide, 956/* line 193, ../scss/include/_animations.scss */
526.row-fluid [class*="span"].hide { 957#jqt .slidedown.out {
527 display: none; 958 z-index: 10;
959 -webkit-animation-name: slideDownOut;
528} 960}
529[class*="span"].pull-right, 961@-webkit-keyframes slideDownIn {
530.row-fluid [class*="span"].pull-right { 962 /* line 199, ../scss/include/_animations.scss */
531 float: right; 963 0% {
964 -webkit-transform: translateY(0);
965 }
966 /* line 202, ../scss/include/_animations.scss */
967 100% {
968 -webkit-transform: translateY(0);
969 }
532} 970}
533.container { 971@-webkit-keyframes slideDownOut {
534 margin-right: auto; 972 /* line 208, ../scss/include/_animations.scss */
535 margin-left: auto; 973 0% {
536 *zoom: 1; 974 -webkit-transform: translateY(0);
975 }
976 /* line 211, ../scss/include/_animations.scss */
977 100% {
978 -webkit-transform: translateY(100%);
979 }
537} 980}
538.container:before, 981/* Flip Left */
539.container:after { 982/* line 220, ../scss/include/_animations.scss */
540 display: table; 983#jqt .flipleft {
541 content: ""; 984 -webkit-backface-visibility: hidden;
542 line-height: 0;
543} 985}
544.container:after { 986/* line 224, ../scss/include/_animations.scss */
545 clear: both; 987#jqt .flipleft.in {
988 -webkit-animation-name: flipLeftIn;
546} 989}
547.container-fluid { 990/* line 228, ../scss/include/_animations.scss */
548 padding-right: 20px; 991#jqt .flipleft.out {
549 padding-left: 20px; 992 -webkit-animation-name: flipLeftOut;
550 *zoom: 1;
551} 993}
552.container-fluid:before, 994@-webkit-keyframes flipLeftIn {
553.container-fluid:after { 995 /* line 233, ../scss/include/_animations.scss */
554 display: table; 996 0% {
555 content: ""; 997 -webkit-transform: rotateY(180deg) scale(0.8);
556 line-height: 0; 998 }
999 /* line 236, ../scss/include/_animations.scss */
1000 100% {
1001 -webkit-transform: rotateY(0deg) scale(1);
1002 }
557} 1003}
558.container-fluid:after { 1004@-webkit-keyframes flipLeftOut {
559 clear: both; 1005 /* line 242, ../scss/include/_animations.scss */
1006 0% {
1007 -webkit-transform: rotateY(0deg) scale(1);
1008 }
1009 /* line 245, ../scss/include/_animations.scss */
1010 100% {
1011 -webkit-transform: rotateY(-180deg) scale(0.8);
1012 }
560} 1013}
561p { 1014/* Flip Right */
562 margin: 0 0 10px; 1015/* line 254, ../scss/include/_animations.scss */
1016#jqt .flipright {
1017 -webkit-backface-visibility: hidden;
563} 1018}
564.lead { 1019/* line 258, ../scss/include/_animations.scss */
565 margin-bottom: 20px; 1020#jqt .flipright.in {
566 font-size: 21px; 1021 -webkit-animation-name: flipRightIn;
567 font-weight: 200;
568 line-height: 30px;
569} 1022}
570small { 1023/* line 262, ../scss/include/_animations.scss */
571 font-size: 85%; 1024#jqt .flipright.out {
1025 -webkit-animation-name: flipRightOut;
572} 1026}
573strong { 1027@-webkit-keyframes flipRightIn {
574 font-weight: bold; 1028 /* line 267, ../scss/include/_animations.scss */
1029 0% {
1030 -webkit-transform: rotateY(-180deg) scale(0.8);
1031 }
1032 /* line 270, ../scss/include/_animations.scss */
1033 100% {
1034 -webkit-transform: rotateY(0deg) scale(1);
1035 }
575} 1036}
576em { 1037@-webkit-keyframes flipRightOut {
577 font-style: italic; 1038 /* line 276, ../scss/include/_animations.scss */
1039 0% {
1040 -webkit-transform: rotateY(0deg) scale(1);
1041 }
1042 /* line 279, ../scss/include/_animations.scss */
1043 100% {
1044 -webkit-transform: rotateY(180deg) scale(0.8);
1045 }
578} 1046}
579cite { 1047/* Swap Right */
580 font-style: normal; 1048/* line 288, ../scss/include/_animations.scss */
1049#jqt .swapright {
1050 -webkit-animation-duration: .7s;
1051 -webkit-transform: perspective(800);
1052 -webkit-animation-timing-function: ease-out;
581} 1053}
582.muted { 1054/* line 293, ../scss/include/_animations.scss */
583 color: #999999; 1055#jqt .swapright.in {
1056 -webkit-animation-name: swapRightIn;
584} 1057}
585a.muted:hover { 1058/* line 296, ../scss/include/_animations.scss */
586 color: #808080; 1059#jqt .swapright.out {
1060 -webkit-animation-name: swapRightOut;
587} 1061}
588.text-warning { 1062@-webkit-keyframes swapRightIn {
589 color: #c09853; 1063 /* line 301, ../scss/include/_animations.scss */
1064 0% {
1065 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
1066 opacity: 0;
1067 }
1068 /* line 305, ../scss/include/_animations.scss */
1069 35% {
1070 -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
1071 opacity: 1;
1072 }
1073 /* line 309, ../scss/include/_animations.scss */
1074 100% {
1075 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1076 opacity: 1;
1077 }
590} 1078}
591a.text-warning:hover { 1079@-webkit-keyframes swapRightOut {
592 color: #a47e3c; 1080 /* line 316, ../scss/include/_animations.scss */
1081 0% {
1082 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1083 opacity: 1;
1084 }
1085 /* line 320, ../scss/include/_animations.scss */
1086 35% {
1087 -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
1088 opacity: .5;
1089 }
1090 /* line 324, ../scss/include/_animations.scss */
1091 100% {
1092 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
1093 opacity: 0;
1094 }
1095}
1096/* Swap Left */
1097/* line 332, ../scss/include/_animations.scss */
1098#jqt .swapleft {
1099 -webkit-animation-duration: .7s;
1100 -webkit-transform: perspective(800);
1101 -webkit-animation-timing-function: ease-out;
1102}
1103/* line 337, ../scss/include/_animations.scss */
1104#jqt .swapleft.in {
1105 -webkit-animation-name: swapLeftIn;
1106}
1107/* line 340, ../scss/include/_animations.scss */
1108#jqt .swapleft.out {
1109 -webkit-animation-name: swapLeftOut;
1110}
1111@-webkit-keyframes swapLeftIn {
1112 /* line 345, ../scss/include/_animations.scss */
1113 0% {
1114 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
1115 opacity: 0;
1116 }
1117 /* line 349, ../scss/include/_animations.scss */
1118 35% {
1119 -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
1120 opacity: 1;
1121 }
1122 /* line 353, ../scss/include/_animations.scss */
1123 100% {
1124 opacity: 1;
1125 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1126 }
593} 1127}
594.text-error { 1128@-webkit-keyframes swapLeftOut {
595 color: #b94a48; 1129 /* line 360, ../scss/include/_animations.scss */
1130 0% {
1131 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1132 opacity: 1;
1133 }
1134 /* line 364, ../scss/include/_animations.scss */
1135 35% {
1136 -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
1137 opacity: .5;
1138 }
1139 /* line 368, ../scss/include/_animations.scss */
1140 100% {
1141 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
1142 opacity: 0;
1143 }
1144}
1145/* Cube Left */
1146/* line 382, ../scss/include/_animations.scss */
1147#jqt .cubeleft.in,
1148#jqt .cubeleft.out,
1149#jqt .cuberight.in,
1150#jqt .cuberight.out {
1151 -webkit-animation-duration: .6s;
1152 -webkit-transform: perspective(800);
1153}
1154/* line 389, ../scss/include/_animations.scss */
1155#jqt .cubeleft.in {
1156 -webkit-transform-origin: 0% 50%;
1157 -webkit-animation-name: cubeLeftIn;
1158}
1159/* line 394, ../scss/include/_animations.scss */
1160#jqt .cubeleft.out {
1161 -webkit-transform-origin: 100% 50%;
1162 -webkit-animation-name: cubeLeftOut;
1163}
1164@-webkit-keyframes cubeLeftIn {
1165 /* line 400, ../scss/include/_animations.scss */
1166 0% {
1167 -webkit-transform: rotateY(90deg) translateZ(320px);
1168 opacity: .5;
1169 }
1170 /* line 404, ../scss/include/_animations.scss */
1171 100% {
1172 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1173 opacity: 1;
1174 }
596} 1175}
597a.text-error:hover { 1176@-webkit-keyframes cubeLeftOut {
598 color: #953b39; 1177 /* line 411, ../scss/include/_animations.scss */
1178 0% {
1179 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1180 opacity: 1;
1181 }
1182 /* line 415, ../scss/include/_animations.scss */
1183 100% {
1184 -webkit-transform: rotateY(-90deg) translateZ(320px);
1185 opacity: .5;
1186 }
599} 1187}
600.text-info { 1188/* Cube Right */
601 color: #3a87ad; 1189/* line 423, ../scss/include/_animations.scss */
1190#jqt .cuberight.in {
1191 -webkit-transform-origin: 100% 50%;
1192 -webkit-animation-name: cubeRightIn;
602} 1193}
603a.text-info:hover { 1194/* line 428, ../scss/include/_animations.scss */
604 color: #2d6987; 1195#jqt .cuberight.out {
1196 -webkit-transform-origin: 0% 50%;
1197 -webkit-animation-name: cubeRightOut;
605} 1198}
606.text-success { 1199@-webkit-keyframes cubeRightIn {
607 color: #468847; 1200 /* line 434, ../scss/include/_animations.scss */
1201 0% {
1202 -webkit-transform: rotateY(-90deg) translateZ(320px);
1203 opacity: .5;
1204 }
1205 /* line 438, ../scss/include/_animations.scss */
1206 100% {
1207 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1208 opacity: 1;
1209 }
608} 1210}
609a.text-success:hover { 1211@-webkit-keyframes cubeRightOut {
610 color: #356635; 1212 /* line 445, ../scss/include/_animations.scss */
1213 0% {
1214 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1215 opacity: 1;
1216 }
1217 /* line 449, ../scss/include/_animations.scss */
1218 100% {
1219 -webkit-transform: rotateY(90deg) translateZ(320px);
1220 opacity: .5;
1221 }
611} 1222}
612h1, 1223/* line 5, ../scss/include/_skeleton.scss */
613h2, 1224body {
614h3, 1225 background: black;
615h4, 1226}
616h5, 1227/* line 9, ../scss/include/_skeleton.scss */
617h6 { 1228.base-chevron,
618 margin: 10px 0; 1229#jqt ul li.arrow:after,
619 font-family: inherit; 1230#jqt ul li.forward:after {
1231 content: '›';
1232 width: 22px;
1233 height: 100%;
1234 vertical-align: middle;
1235 font-size: 30px;
1236 line-height: 38px;
1237 font-family: Futura, "Futura Condensed", Helvetica, Arial, sans-serif;
620 font-weight: bold; 1238 font-weight: bold;
621 line-height: 20px; 1239 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
622 color: inherit; 1240 opacity: 0.6;
623 text-rendering: optimizelegibility; 1241 position: absolute;
624} 1242 right: 0;
625h1 small, 1243 top: 0;
626h2 small, 1244 pointer-events: none;
627h3 small, 1245 z-index: 10;
628h4 small, 1246}
629h5 small, 1247/* line 26, ../scss/include/_skeleton.scss */
630h6 small { 1248.base-flatlists,
631 font-weight: normal; 1249#jqt ul.metal,
632 line-height: 1; 1250#jqt ul.edgetoedge,
633 color: #999999; 1251#jqt ul.plastic {
634} 1252 margin: 0;
635h1,
636h2,
637h3 {
638 line-height: 40px;
639}
640h1 {
641 font-size: 38.5px;
642}
643h2 {
644 font-size: 31.5px;
645}
646h3 {
647 font-size: 24.5px;
648}
649h4 {
650 font-size: 17.5px;
651}
652h5 {
653 font-size: 14px;
654}
655h6 {
656 font-size: 11.9px;
657}
658h1 small {
659 font-size: 24.5px;
660}
661h2 small {
662 font-size: 17.5px;
663}
664h3 small {
665 font-size: 14px;
666}
667h4 small {
668 font-size: 14px;
669}
670.page-header {
671 padding-bottom: 9px;
672 margin: 20px 0 30px;
673 border-bottom: 1px solid #eeeeee;
674}
675ul,
676ol {
677 padding: 0; 1253 padding: 0;
678 margin: 0 0 10px 25px; 1254 border-width: 0 0 0 1px;
679} 1255 -webkit-border-radius: 0;
680ul ul, 1256 border-radius: 0;
681ul ol,
682ol ol,
683ol ul {
684 margin-bottom: 0;
685}
686li {
687 line-height: 20px;
688}
689ul.unstyled,
690ol.unstyled {
691 margin-left: 0;
692 list-style: none;
693}
694ul.inline,
695ol.inline {
696 margin-left: 0;
697 list-style: none;
698}
699ul.inline > li,
700ol.inline > li {
701 display: inline-block;
702 padding-left: 5px;
703 padding-right: 5px;
704}
705dl {
706 margin-bottom: 20px;
707}
708dt,
709dd {
710 line-height: 20px;
711}
712dt {
713 font-weight: bold;
714}
715dd {
716 margin-left: 10px;
717}
718.dl-horizontal {
719 *zoom: 1;
720} 1257}
721.dl-horizontal:before, 1258/* line 35, ../scss/include/_skeleton.scss */
722.dl-horizontal:after { 1259#jqt h1,
723 display: table; 1260#jqt h2 {
724 content: ""; 1261 font: bold 18px "Helvetica Neue", Helvetica;
725 line-height: 0; 1262 margin: 10px 20px 6px;
1263 color: #bbbcbe;
1264 text-shadow: #3c3d3e 0 -1px 0;
726} 1265}
727.dl-horizontal:after { 1266/* line 41, ../scss/include/_skeleton.scss */
728 clear: both; 1267#jqt .toolbar {
1268 -webkit-box-sizing: border-box;
1269 box-sizing: border-box;
1270 -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
1271 box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
1272 border-bottom: 1px solid black;
1273 z-index: 10;
1274 position: relative;
1275 padding: 10px;
1276 height: 44px;
729} 1277}
730.dl-horizontal dt { 1278/* line 52, ../scss/include/_skeleton.scss */
731 float: left; 1279#jqt .toolbar > h1 {
732 width: 160px; 1280 position: absolute;
733 clear: left;
734 text-align: right;
735 overflow: hidden; 1281 overflow: hidden;
1282 left: 50%;
1283 bottom: 9px;
1284 margin: 1px 0 0 -75px;
1285 width: 150px;
1286 font-size: 20px;
1287 font-weight: bold;
1288 line-height: 1.3em;
1289 text-align: center;
736 text-overflow: ellipsis; 1290 text-overflow: ellipsis;
737 white-space: nowrap; 1291 white-space: nowrap;
738} 1292 color: white;
739.dl-horizontal dd { 1293 text-shadow: #161717 0 -1px 0;
740 margin-left: 180px; 1294}
741} 1295/* line 71, ../scss/include/_skeleton.scss */
742hr { 1296#jqt.black-translucent .toolbar {
743 margin: 20px 0; 1297 padding-top: 30px;
744 border: 0; 1298 height: 64px;
745 border-top: 1px solid #eeeeee; 1299}
746 border-bottom: 1px solid #ffffff; 1300/* line 75, ../scss/include/_skeleton.scss */
747} 1301#jqt.landscape .toolbar > h1 {
748abbr[title], 1302 margin-left: -125px;
749abbr[data-original-title] { 1303 width: 250px;
750 cursor: help; 1304}
751 border-bottom: 1px dotted #999999; 1305/* line 80, ../scss/include/_skeleton.scss */
752} 1306#jqt .button,
753abbr.initialism { 1307#jqt .back,
754 font-size: 90%; 1308#jqt .cancel,
755 text-transform: uppercase; 1309#jqt .add {
756} 1310 position: absolute;
757blockquote { 1311 overflow: hidden;
758 padding: 0 0 0 15px;
759 margin: 0 0 20px;
760 border-left: 5px solid #eeeeee;
761}
762blockquote p {
763 margin-bottom: 0;
764 font-size: 16px;
765 font-weight: 300;
766 line-height: 25px;
767}
768blockquote small {
769 display: block;
770 line-height: 20px;
771 color: #999999;
772}
773blockquote small:before {
774 content: '\2014 \00A0';
775}
776blockquote.pull-right {
777 float: right;
778 padding-right: 15px;
779 padding-left: 0;
780 border-right: 5px solid #eeeeee;
781 border-left: 0;
782}
783blockquote.pull-right p,
784blockquote.pull-right small {
785 text-align: right;
786}
787blockquote.pull-right small:before {
788 content: '';
789}
790blockquote.pull-right small:after {
791 content: '\00A0 \2014';
792}
793q:before,
794q:after,
795blockquote:before,
796blockquote:after {
797 content: "";
798}
799address {
800 display: block;
801 margin-bottom: 20px;
802 font-style: normal;
803 line-height: 20px;
804}
805code,
806pre {
807 padding: 0 3px 2px;
808 font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
809 font-size: 12px;
810 color: #333333;
811 -webkit-border-radius: 3px;
812 -moz-border-radius: 3px;
813 border-radius: 3px;
814}
815code {
816 padding: 2px 4px;
817 color: #d14;
818 background-color: #f7f7f9;
819 border: 1px solid #e1e1e8;
820 white-space: nowrap;
821}
822pre {
823 display: block;
824 padding: 9.5px;
825 margin: 0 0 10px;
826 font-size: 13px;
827 line-height: 20px;
828 word-break: break-all;
829 word-wrap: break-word;
830 white-space: pre;
831 white-space: pre-wrap;
832 background-color: #f5f5f5;
833 border: 1px solid #ccc;
834 border: 1px solid rgba(0, 0, 0, 0.15);
835 -webkit-border-radius: 4px;
836 -moz-border-radius: 4px;
837 border-radius: 4px;
838}
839pre.prettyprint {
840 margin-bottom: 20px;
841}
842pre code {
843 padding: 0;
844 color: inherit;
845 white-space: pre;
846 white-space: pre-wrap;
847 background-color: transparent;
848 border: 0;
849}
850.pre-scrollable {
851 max-height: 340px;
852 overflow-y: scroll;
853}
854form {
855 margin: 0 0 20px;
856}
857fieldset {
858 padding: 0;
859 margin: 0;
860 border: 0;
861}
862legend {
863 display: block;
864 width: 100%;
865 padding: 0;
866 margin-bottom: 20px;
867 font-size: 21px;
868 line-height: 40px;
869 color: #333333;
870 border: 0;
871 border-bottom: 1px solid #e5e5e5;
872}
873legend small {
874 font-size: 15px;
875 color: #999999;
876}
877label,
878input,
879button,
880select,
881textarea {
882 font-size: 14px;
883 font-weight: normal;
884 line-height: 20px;
885}
886input,
887button,
888select,
889textarea {
890 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
891}
892label {
893 display: block;
894 margin-bottom: 5px;
895}
896select,
897textarea,
898input[type="text"],
899input[type="password"],
900input[type="datetime"],
901input[type="datetime-local"],
902input[type="date"],
903input[type="month"],
904input[type="time"],
905input[type="week"],
906input[type="number"],
907input[type="email"],
908input[type="url"],
909input[type="search"],
910input[type="tel"],
911input[type="color"],
912.uneditable-input {
913 display: inline-block;
914 height: 20px;
915 padding: 4px 6px;
916 margin-bottom: 10px;
917 font-size: 14px;
918 line-height: 20px;
919 color: #555555;
920 -webkit-border-radius: 4px;
921 -moz-border-radius: 4px;
922 border-radius: 4px;
923 vertical-align: middle;
924}
925input,
926textarea,
927.uneditable-input {
928 width: 206px;
929}
930textarea {
931 height: auto;
932}
933textarea,
934input[type="text"],
935input[type="password"],
936input[type="datetime"],
937input[type="datetime-local"],
938input[type="date"],
939input[type="month"],
940input[type="time"],
941input[type="week"],
942input[type="number"],
943input[type="email"],
944input[type="url"],
945input[type="search"],
946input[type="tel"],
947input[type="color"],
948.uneditable-input {
949 background-color: #ffffff;
950 border: 1px solid #cccccc;
951 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
952 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
953 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
954 -webkit-transition: border linear .2s, box-shadow linear .2s;
955 -moz-transition: border linear .2s, box-shadow linear .2s;
956 -o-transition: border linear .2s, box-shadow linear .2s;
957 transition: border linear .2s, box-shadow linear .2s;
958}
959textarea:focus,
960input[type="text"]:focus,
961input[type="password"]:focus,
962input[type="datetime"]:focus,
963input[type="datetime-local"]:focus,
964input[type="date"]:focus,
965input[type="month"]:focus,
966input[type="time"]:focus,
967input[type="week"]:focus,
968input[type="number"]:focus,
969input[type="email"]:focus,
970input[type="url"]:focus,
971input[type="search"]:focus,
972input[type="tel"]:focus,
973input[type="color"]:focus,
974.uneditable-input:focus {
975 border-color: rgba(82, 168, 236, 0.8);
976 outline: 0;
977 outline: thin dotted \9;
978 /* IE6-9 */
979
980 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
981 -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
982 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
983}
984input[type="radio"],
985input[type="checkbox"] {
986 margin: 4px 0 0;
987 *margin-top: 0;
988 /* IE7 */
989
990 margin-top: 1px \9;
991 /* IE8-9 */
992
993 line-height: normal;
994}
995input[type="file"],
996input[type="image"],
997input[type="submit"],
998input[type="reset"],
999input[type="button"],
1000input[type="radio"],
1001input[type="checkbox"] {
1002 width: auto; 1312 width: auto;
1003}
1004select,
1005input[type="file"] {
1006 height: 30px; 1313 height: 30px;
1007 /* In IE7, the height of the select element cannot be changed by height, only font-size */ 1314 font-family: inherit;
1008 1315 font-size: 12px;
1009 *margin-top: 4px; 1316 font-weight: bold;
1010 /* For IE7, add top margin to align select with labels */
1011
1012 line-height: 30px; 1317 line-height: 30px;
1013} 1318 text-overflow: ellipsis;
1014select { 1319 text-decoration: none;
1015 width: 220px;
1016 border: 1px solid #cccccc;
1017 background-color: #ffffff;
1018}
1019select[multiple],
1020select[size] {
1021 height: auto;
1022}
1023select:focus,
1024input[type="file"]:focus,
1025input[type="radio"]:focus,
1026input[type="checkbox"]:focus {
1027 outline: thin dotted #333;
1028 outline: 5px auto -webkit-focus-ring-color;
1029 outline-offset: -2px;
1030}
1031.uneditable-input,
1032.uneditable-textarea {
1033 color: #999999;
1034 background-color: #fcfcfc;
1035 border-color: #cccccc;
1036 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1037 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1038 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
1039 cursor: not-allowed;
1040}
1041.uneditable-input {
1042 overflow: hidden;
1043 white-space: nowrap; 1320 white-space: nowrap;
1044} 1321 background: none;
1045.uneditable-textarea { 1322 bottom: 6px;
1046 width: auto; 1323 right: 10px;
1047 height: auto; 1324 margin: 0;
1048} 1325 padding: 0 10px;
1049input:-moz-placeholder, 1326 color: #e2e3e3;
1050textarea:-moz-placeholder { 1327 text-shadow: #000000 0 -1px 0;
1051 color: #999999; 1328 -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
1052} 1329 box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
1053input:-ms-input-placeholder, 1330 border: 1px solid black;
1054textarea:-ms-input-placeholder { 1331 -webkit-border-radius: 5px;
1055 color: #999999; 1332 border-radius: 5px;
1056} 1333 background-image: none;
1057input::-webkit-input-placeholder, 1334 background-color: #0a0a0a;
1058textarea::-webkit-input-placeholder { 1335 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));
1059 color: #999999; 1336 background-image: -webkit-linear-gradient(top, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
1060} 1337 background-image: linear-gradient(top, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
1061.radio, 1338}
1062.checkbox { 1339/* line 107, ../scss/include/_skeleton.scss */
1063 min-height: 20px; 1340#jqt .button.active,
1064 padding-left: 20px; 1341#jqt .back.active,
1065} 1342#jqt .cancel.active,
1066.radio input[type="radio"], 1343#jqt .add.active {
1067.checkbox input[type="checkbox"] { 1344 border-color: black;
1068 float: left; 1345 background-image: none;
1069 margin-left: -20px; 1346 background-color: black;
1070} 1347 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));
1071.controls > .radio:first-child, 1348 background-image: -webkit-linear-gradient(top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1072.controls > .checkbox:first-child { 1349 background-image: linear-gradient(top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1073 padding-top: 5px; 1350 color: #d8d9d9;
1074} 1351 text-shadow: #000000 0 -1px 0;
1075.radio.inline, 1352}
1076.checkbox.inline { 1353/* line 114, ../scss/include/_skeleton.scss */
1077 display: inline-block; 1354#jqt .back {
1078 padding-top: 5px; 1355 max-width: 60px;
1079 margin-bottom: 0; 1356 margin-left: 15px;
1080 vertical-align: middle; 1357 overflow: visible;
1081}
1082.radio.inline + .radio.inline,
1083.checkbox.inline + .checkbox.inline {
1084 margin-left: 10px;
1085}
1086.input-mini {
1087 width: 60px;
1088}
1089.input-small {
1090 width: 90px;
1091}
1092.input-medium {
1093 width: 150px;
1094}
1095.input-large {
1096 width: 210px;
1097}
1098.input-xlarge {
1099 width: 270px;
1100}
1101.input-xxlarge {
1102 width: 530px;
1103}
1104input[class*="span"],
1105select[class*="span"],
1106textarea[class*="span"],
1107.uneditable-input[class*="span"],
1108.row-fluid input[class*="span"],
1109.row-fluid select[class*="span"],
1110.row-fluid textarea[class*="span"],
1111.row-fluid .uneditable-input[class*="span"] {
1112 float: none;
1113 margin-left: 0;
1114}
1115.input-append input[class*="span"],
1116.input-append .uneditable-input[class*="span"],
1117.input-prepend input[class*="span"],
1118.input-prepend .uneditable-input[class*="span"],
1119.row-fluid input[class*="span"],
1120.row-fluid select[class*="span"],
1121.row-fluid textarea[class*="span"],
1122.row-fluid .uneditable-input[class*="span"],
1123.row-fluid .input-prepend [class*="span"],
1124.row-fluid .input-append [class*="span"] {
1125 display: inline-block;
1126}
1127input,
1128textarea,
1129.uneditable-input {
1130 margin-left: 0;
1131}
1132.controls-row [class*="span"] + [class*="span"] {
1133 margin-left: 20px;
1134}
1135input.span12, textarea.span12, .uneditable-input.span12 {
1136 width: 926px;
1137}
1138input.span11, textarea.span11, .uneditable-input.span11 {
1139 width: 846px;
1140}
1141input.span10, textarea.span10, .uneditable-input.span10 {
1142 width: 766px;
1143}
1144input.span9, textarea.span9, .uneditable-input.span9 {
1145 width: 686px;
1146}
1147input.span8, textarea.span8, .uneditable-input.span8 {
1148 width: 606px;
1149}
1150input.span7, textarea.span7, .uneditable-input.span7 {
1151 width: 526px;
1152}
1153input.span6, textarea.span6, .uneditable-input.span6 {
1154 width: 446px;
1155}
1156input.span5, textarea.span5, .uneditable-input.span5 {
1157 width: 366px;
1158}
1159input.span4, textarea.span4, .uneditable-input.span4 {
1160 width: 286px;
1161}
1162input.span3, textarea.span3, .uneditable-input.span3 {
1163 width: 206px;
1164}
1165input.span2, textarea.span2, .uneditable-input.span2 {
1166 width: 126px;
1167}
1168input.span1, textarea.span1, .uneditable-input.span1 {
1169 width: 46px;
1170}
1171.controls-row {
1172 *zoom: 1;
1173}
1174.controls-row:before,
1175.controls-row:after {
1176 display: table;
1177 content: "";
1178 line-height: 0;
1179}
1180.controls-row:after {
1181 clear: both;
1182}
1183.controls-row [class*="span"],
1184.row-fluid .controls-row [class*="span"] {
1185 float: left;
1186}
1187.controls-row .checkbox[class*="span"],
1188.controls-row .radio[class*="span"] {
1189 padding-top: 5px;
1190}
1191input[disabled],
1192select[disabled],
1193textarea[disabled],
1194input[readonly],
1195select[readonly],
1196textarea[readonly] {
1197 cursor: not-allowed;
1198 background-color: #eeeeee;
1199}
1200input[type="radio"][disabled],
1201input[type="checkbox"][disabled],
1202input[type="radio"][readonly],
1203input[type="checkbox"][readonly] {
1204 background-color: transparent;
1205}
1206.control-group.warning .control-label,
1207.control-group.warning .help-block,
1208.control-group.warning .help-inline {
1209 color: #c09853;
1210}
1211.control-group.warning .checkbox,
1212.control-group.warning .radio,
1213.control-group.warning input,
1214.control-group.warning select,
1215.control-group.warning textarea {
1216 color: #c09853;
1217}
1218.control-group.warning input,
1219.control-group.warning select,
1220.control-group.warning textarea {
1221 border-color: #c09853;
1222 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1223 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1224 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1225}
1226.control-group.warning input:focus,
1227.control-group.warning select:focus,
1228.control-group.warning textarea:focus {
1229 border-color: #a47e3c;
1230 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1231 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1232 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1233}
1234.control-group.warning .input-prepend .add-on,
1235.control-group.warning .input-append .add-on {
1236 color: #c09853;
1237 background-color: #fcf8e3;
1238 border-color: #c09853;
1239}
1240.control-group.error .control-label,
1241.control-group.error .help-block,
1242.control-group.error .help-inline {
1243 color: #b94a48;
1244}
1245.control-group.error .checkbox,
1246.control-group.error .radio,
1247.control-group.error input,
1248.control-group.error select,
1249.control-group.error textarea {
1250 color: #b94a48;
1251}
1252.control-group.error input,
1253.control-group.error select,
1254.control-group.error textarea {
1255 border-color: #b94a48;
1256 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1257 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1258 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1259}
1260.control-group.error input:focus,
1261.control-group.error select:focus,
1262.control-group.error textarea:focus {
1263 border-color: #953b39;
1264 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1265 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1266 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1267}
1268.control-group.error .input-prepend .add-on,
1269.control-group.error .input-append .add-on {
1270 color: #b94a48;
1271 background-color: #f2dede;
1272 border-color: #b94a48;
1273}
1274.control-group.success .control-label,
1275.control-group.success .help-block,
1276.control-group.success .help-inline {
1277 color: #468847;
1278}
1279.control-group.success .checkbox,
1280.control-group.success .radio,
1281.control-group.success input,
1282.control-group.success select,
1283.control-group.success textarea {
1284 color: #468847;
1285}
1286.control-group.success input,
1287.control-group.success select,
1288.control-group.success textarea {
1289 border-color: #468847;
1290 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1291 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1292 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1293}
1294.control-group.success input:focus,
1295.control-group.success select:focus,
1296.control-group.success textarea:focus {
1297 border-color: #356635;
1298 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1299 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1300 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1301}
1302.control-group.success .input-prepend .add-on,
1303.control-group.success .input-append .add-on {
1304 color: #468847;
1305 background-color: #dff0d8;
1306 border-color: #468847;
1307}
1308.control-group.info .control-label,
1309.control-group.info .help-block,
1310.control-group.info .help-inline {
1311 color: #3a87ad;
1312}
1313.control-group.info .checkbox,
1314.control-group.info .radio,
1315.control-group.info input,
1316.control-group.info select,
1317.control-group.info textarea {
1318 color: #3a87ad;
1319}
1320.control-group.info input,
1321.control-group.info select,
1322.control-group.info textarea {
1323 border-color: #3a87ad;
1324 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1325 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1326 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1327}
1328.control-group.info input:focus,
1329.control-group.info select:focus,
1330.control-group.info textarea:focus {
1331 border-color: #2d6987;
1332 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1333 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1334 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
1335}
1336.control-group.info .input-prepend .add-on,
1337.control-group.info .input-append .add-on {
1338 color: #3a87ad;
1339 background-color: #d9edf7;
1340 border-color: #3a87ad;
1341}
1342input:focus:invalid,
1343textarea:focus:invalid,
1344select:focus:invalid {
1345 color: #b94a48;
1346 border-color: #ee5f5b;
1347}
1348input:focus:invalid:focus,
1349textarea:focus:invalid:focus,
1350select:focus:invalid:focus {
1351 border-color: #e9322d;
1352 -webkit-box-shadow: 0 0 6px #f8b9b7;
1353 -moz-box-shadow: 0 0 6px #f8b9b7;
1354 box-shadow: 0 0 6px #f8b9b7;
1355}
1356.form-actions {
1357 padding: 19px 20px 20px;
1358 margin-top: 20px;
1359 margin-bottom: 20px;
1360 background-color: #f5f5f5;
1361 border-top: 1px solid #e5e5e5;
1362 *zoom: 1;
1363}
1364.form-actions:before,
1365.form-actions:after {
1366 display: table;
1367 content: "";
1368 line-height: 0;
1369}
1370.form-actions:after {
1371 clear: both;
1372}
1373.help-block,
1374.help-inline {
1375 color: #595959;
1376}
1377.help-block {
1378 display: block;
1379 margin-bottom: 10px;
1380}
1381.help-inline {
1382 display: inline-block;
1383 *display: inline;
1384 /* IE7 inline-block hack */
1385
1386 *zoom: 1;
1387 vertical-align: middle;
1388 padding-left: 5px; 1358 padding-left: 5px;
1389} 1359}
1390.input-append, 1360/* line 121, ../scss/include/_skeleton.scss */
1391.input-prepend { 1361#jqt .back:after,
1392 margin-bottom: 5px; 1362#jqt .back:before {
1393 font-size: 0; 1363 content: '';
1394 white-space: nowrap;
1395}
1396.input-append input,
1397.input-prepend input,
1398.input-append select,
1399.input-prepend select,
1400.input-append .uneditable-input,
1401.input-prepend .uneditable-input,
1402.input-append .dropdown-menu,
1403.input-prepend .dropdown-menu {
1404 font-size: 14px;
1405}
1406.input-append input,
1407.input-prepend input,
1408.input-append select,
1409.input-prepend select,
1410.input-append .uneditable-input,
1411.input-prepend .uneditable-input {
1412 position: relative;
1413 margin-bottom: 0;
1414 *margin-left: 0;
1415 vertical-align: top;
1416 -webkit-border-radius: 0 4px 4px 0;
1417 -moz-border-radius: 0 4px 4px 0;
1418 border-radius: 0 4px 4px 0;
1419}
1420.input-append input:focus,
1421.input-prepend input:focus,
1422.input-append select:focus,
1423.input-prepend select:focus,
1424.input-append .uneditable-input:focus,
1425.input-prepend .uneditable-input:focus {
1426 z-index: 2;
1427}
1428.input-append .add-on,
1429.input-prepend .add-on {
1430 display: inline-block;
1431 width: auto;
1432 height: 20px;
1433 min-width: 16px;
1434 padding: 4px 5px;
1435 font-size: 14px;
1436 font-weight: normal;
1437 line-height: 20px;
1438 text-align: center;
1439 text-shadow: 0 1px 0 #ffffff;
1440 background-color: #eeeeee;
1441 border: 1px solid #ccc;
1442}
1443.input-append .add-on,
1444.input-prepend .add-on,
1445.input-append .btn,
1446.input-prepend .btn,
1447.input-append .btn-group > .dropdown-toggle,
1448.input-prepend .btn-group > .dropdown-toggle {
1449 vertical-align: top;
1450 -webkit-border-radius: 0;
1451 -moz-border-radius: 0;
1452 border-radius: 0;
1453}
1454.input-append .active,
1455.input-prepend .active {
1456 background-color: #a9dba9;
1457 border-color: #46a546;
1458}
1459.input-prepend .add-on,
1460.input-prepend .btn {
1461 margin-right: -1px;
1462}
1463.input-prepend .add-on:first-child,
1464.input-prepend .btn:first-child {
1465 -webkit-border-radius: 4px 0 0 4px;
1466 -moz-border-radius: 4px 0 0 4px;
1467 border-radius: 4px 0 0 4px;
1468}
1469.input-append input,
1470.input-append select,
1471.input-append .uneditable-input {
1472 -webkit-border-radius: 4px 0 0 4px;
1473 -moz-border-radius: 4px 0 0 4px;
1474 border-radius: 4px 0 0 4px;
1475}
1476.input-append input + .btn-group .btn:last-child,
1477.input-append select + .btn-group .btn:last-child,
1478.input-append .uneditable-input + .btn-group .btn:last-child {
1479 -webkit-border-radius: 0 4px 4px 0;
1480 -moz-border-radius: 0 4px 4px 0;
1481 border-radius: 0 4px 4px 0;
1482}
1483.input-append .add-on,
1484.input-append .btn,
1485.input-append .btn-group {
1486 margin-left: -1px;
1487}
1488.input-append .add-on:last-child,
1489.input-append .btn:last-child,
1490.input-append .btn-group:last-child > .dropdown-toggle {
1491 -webkit-border-radius: 0 4px 4px 0;
1492 -moz-border-radius: 0 4px 4px 0;
1493 border-radius: 0 4px 4px 0;
1494}
1495.input-prepend.input-append input,
1496.input-prepend.input-append select,
1497.input-prepend.input-append .uneditable-input {
1498 -webkit-border-radius: 0;
1499 -moz-border-radius: 0;
1500 border-radius: 0;
1501}
1502.input-prepend.input-append input + .btn-group .btn,
1503.input-prepend.input-append select + .btn-group .btn,
1504.input-prepend.input-append .uneditable-input + .btn-group .btn {
1505 -webkit-border-radius: 0 4px 4px 0;
1506 -moz-border-radius: 0 4px 4px 0;
1507 border-radius: 0 4px 4px 0;
1508}
1509.input-prepend.input-append .add-on:first-child,
1510.input-prepend.input-append .btn:first-child {
1511 margin-right: -1px;
1512 -webkit-border-radius: 4px 0 0 4px;
1513 -moz-border-radius: 4px 0 0 4px;
1514 border-radius: 4px 0 0 4px;
1515}
1516.input-prepend.input-append .add-on:last-child,
1517.input-prepend.input-append .btn:last-child {
1518 margin-left: -1px;
1519 -webkit-border-radius: 0 4px 4px 0;
1520 -moz-border-radius: 0 4px 4px 0;
1521 border-radius: 0 4px 4px 0;
1522}
1523.input-prepend.input-append .btn-group:first-child {
1524 margin-left: 0;
1525}
1526input.search-query {
1527 padding-right: 14px;
1528 padding-right: 4px \9;
1529 padding-left: 14px;
1530 padding-left: 4px \9;
1531 /* IE7-8 doesn't have border-radius, so don't indent the padding */
1532
1533 margin-bottom: 0;
1534 -webkit-border-radius: 15px;
1535 -moz-border-radius: 15px;
1536 border-radius: 15px;
1537}
1538/* Allow for input prepend/append in search forms */
1539.form-search .input-append .search-query,
1540.form-search .input-prepend .search-query {
1541 -webkit-border-radius: 0;
1542 -moz-border-radius: 0;
1543 border-radius: 0;
1544}
1545.form-search .input-append .search-query {
1546 -webkit-border-radius: 14px 0 0 14px;
1547 -moz-border-radius: 14px 0 0 14px;
1548 border-radius: 14px 0 0 14px;
1549}
1550.form-search .input-append .btn {
1551 -webkit-border-radius: 0 14px 14px 0;
1552 -moz-border-radius: 0 14px 14px 0;
1553 border-radius: 0 14px 14px 0;
1554}
1555.form-search .input-prepend .search-query {
1556 -webkit-border-radius: 0 14px 14px 0;
1557 -moz-border-radius: 0 14px 14px 0;
1558 border-radius: 0 14px 14px 0;
1559}
1560.form-search .input-prepend .btn {
1561 -webkit-border-radius: 14px 0 0 14px;
1562 -moz-border-radius: 14px 0 0 14px;
1563 border-radius: 14px 0 0 14px;
1564}
1565.form-search input,
1566.form-inline input,
1567.form-horizontal input,
1568.form-search textarea,
1569.form-inline textarea,
1570.form-horizontal textarea,
1571.form-search select,
1572.form-inline select,
1573.form-horizontal select,
1574.form-search .help-inline,
1575.form-inline .help-inline,
1576.form-horizontal .help-inline,
1577.form-search .uneditable-input,
1578.form-inline .uneditable-input,
1579.form-horizontal .uneditable-input,
1580.form-search .input-prepend,
1581.form-inline .input-prepend,
1582.form-horizontal .input-prepend,
1583.form-search .input-append,
1584.form-inline .input-append,
1585.form-horizontal .input-append {
1586 display: inline-block;
1587 *display: inline;
1588 /* IE7 inline-block hack */
1589
1590 *zoom: 1;
1591 margin-bottom: 0;
1592 vertical-align: middle;
1593}
1594.form-search .hide,
1595.form-inline .hide,
1596.form-horizontal .hide {
1597 display: none;
1598}
1599.form-search label,
1600.form-inline label,
1601.form-search .btn-group,
1602.form-inline .btn-group {
1603 display: inline-block;
1604}
1605.form-search .input-append,
1606.form-inline .input-append,
1607.form-search .input-prepend,
1608.form-inline .input-prepend {
1609 margin-bottom: 0;
1610}
1611.form-search .radio,
1612.form-search .checkbox,
1613.form-inline .radio,
1614.form-inline .checkbox {
1615 padding-left: 0;
1616 margin-bottom: 0;
1617 vertical-align: middle;
1618}
1619.form-search .radio input[type="radio"],
1620.form-search .checkbox input[type="checkbox"],
1621.form-inline .radio input[type="radio"],
1622.form-inline .checkbox input[type="checkbox"] {
1623 float: left;
1624 margin-right: 3px;
1625 margin-left: 0;
1626}
1627.control-group {
1628 margin-bottom: 10px;
1629}
1630legend + .control-group {
1631 margin-top: 20px;
1632 -webkit-margin-top-collapse: separate;
1633}
1634.form-horizontal .control-group {
1635 margin-bottom: 20px;
1636 *zoom: 1;
1637}
1638.form-horizontal .control-group:before,
1639.form-horizontal .control-group:after {
1640 display: table;
1641 content: "";
1642 line-height: 0;
1643}
1644.form-horizontal .control-group:after {
1645 clear: both;
1646}
1647.form-horizontal .control-label {
1648 float: left;
1649 width: 160px;
1650 padding-top: 5px;
1651 text-align: right;
1652}
1653.form-horizontal .controls {
1654 *display: inline-block;
1655 *padding-left: 20px;
1656 margin-left: 180px;
1657 *margin-left: 0;
1658}
1659.form-horizontal .controls:first-child {
1660 *padding-left: 180px;
1661}
1662.form-horizontal .help-block {
1663 margin-bottom: 0;
1664}
1665.form-horizontal input + .help-block,
1666.form-horizontal select + .help-block,
1667.form-horizontal textarea + .help-block,
1668.form-horizontal .uneditable-input + .help-block,
1669.form-horizontal .input-prepend + .help-block,
1670.form-horizontal .input-append + .help-block {
1671 margin-top: 10px;
1672}
1673.form-horizontal .form-actions {
1674 padding-left: 180px;
1675}
1676table {
1677 max-width: 100%;
1678 background-color: transparent;
1679 border-collapse: collapse;
1680 border-spacing: 0;
1681}
1682.table {
1683 width: 100%;
1684 margin-bottom: 20px;
1685}
1686.table th,
1687.table td {
1688 padding: 8px;
1689 line-height: 20px;
1690 text-align: left;
1691 vertical-align: top;
1692 border-top: 1px solid #dddddd;
1693}
1694.table th {
1695 font-weight: bold;
1696}
1697.table thead th {
1698 vertical-align: bottom;
1699}
1700.table caption + thead tr:first-child th,
1701.table caption + thead tr:first-child td,
1702.table colgroup + thead tr:first-child th,
1703.table colgroup + thead tr:first-child td,
1704.table thead:first-child tr:first-child th,
1705.table thead:first-child tr:first-child td {
1706 border-top: 0;
1707}
1708.table tbody + tbody {
1709 border-top: 2px solid #dddddd;
1710}
1711.table .table {
1712 background-color: #ffffff;
1713}
1714.table-condensed th,
1715.table-condensed td {
1716 padding: 4px 5px;
1717}
1718.table-bordered {
1719 border: 1px solid #dddddd;
1720 border-collapse: separate;
1721 *border-collapse: collapse;
1722 border-left: 0;
1723 -webkit-border-radius: 4px;
1724 -moz-border-radius: 4px;
1725 border-radius: 4px;
1726}
1727.table-bordered th,
1728.table-bordered td {
1729 border-left: 1px solid #dddddd;
1730}
1731.table-bordered caption + thead tr:first-child th,
1732.table-bordered caption + tbody tr:first-child th,
1733.table-bordered caption + tbody tr:first-child td,
1734.table-bordered colgroup + thead tr:first-child th,
1735.table-bordered colgroup + tbody tr:first-child th,
1736.table-bordered colgroup + tbody tr:first-child td,
1737.table-bordered thead:first-child tr:first-child th,
1738.table-bordered tbody:first-child tr:first-child th,
1739.table-bordered tbody:first-child tr:first-child td {
1740 border-top: 0;
1741}
1742.table-bordered thead:first-child tr:first-child > th:first-child,
1743.table-bordered tbody:first-child tr:first-child > td:first-child {
1744 -webkit-border-top-left-radius: 4px;
1745 -moz-border-radius-topleft: 4px;
1746 border-top-left-radius: 4px;
1747}
1748.table-bordered thead:first-child tr:first-child > th:last-child,
1749.table-bordered tbody:first-child tr:first-child > td:last-child {
1750 -webkit-border-top-right-radius: 4px;
1751 -moz-border-radius-topright: 4px;
1752 border-top-right-radius: 4px;
1753}
1754.table-bordered thead:last-child tr:last-child > th:first-child,
1755.table-bordered tbody:last-child tr:last-child > td:first-child,
1756.table-bordered tfoot:last-child tr:last-child > td:first-child {
1757 -webkit-border-bottom-left-radius: 4px;
1758 -moz-border-radius-bottomleft: 4px;
1759 border-bottom-left-radius: 4px;
1760}
1761.table-bordered thead:last-child tr:last-child > th:last-child,
1762.table-bordered tbody:last-child tr:last-child > td:last-child,
1763.table-bordered tfoot:last-child tr:last-child > td:last-child {
1764 -webkit-border-bottom-right-radius: 4px;
1765 -moz-border-radius-bottomright: 4px;
1766 border-bottom-right-radius: 4px;
1767}
1768.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
1769 -webkit-border-bottom-left-radius: 0;
1770 -moz-border-radius-bottomleft: 0;
1771 border-bottom-left-radius: 0;
1772}
1773.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
1774 -webkit-border-bottom-right-radius: 0;
1775 -moz-border-radius-bottomright: 0;
1776 border-bottom-right-radius: 0;
1777}
1778.table-bordered caption + thead tr:first-child th:first-child,
1779.table-bordered caption + tbody tr:first-child td:first-child,
1780.table-bordered colgroup + thead tr:first-child th:first-child,
1781.table-bordered colgroup + tbody tr:first-child td:first-child {
1782 -webkit-border-top-left-radius: 4px;
1783 -moz-border-radius-topleft: 4px;
1784 border-top-left-radius: 4px;
1785}
1786.table-bordered caption + thead tr:first-child th:last-child,
1787.table-bordered caption + tbody tr:first-child td:last-child,
1788.table-bordered colgroup + thead tr:first-child th:last-child,
1789.table-bordered colgroup + tbody tr:first-child td:last-child {
1790 -webkit-border-top-right-radius: 4px;
1791 -moz-border-radius-topright: 4px;
1792 border-top-right-radius: 4px;
1793}
1794.table-striped tbody > tr:nth-child(odd) > td,
1795.table-striped tbody > tr:nth-child(odd) > th {
1796 background-color: #f9f9f9;
1797}
1798.table-hover tbody tr:hover td,
1799.table-hover tbody tr:hover th {
1800 background-color: #f5f5f5;
1801}
1802table td[class*="span"],
1803table th[class*="span"],
1804.row-fluid table td[class*="span"],
1805.row-fluid table th[class*="span"] {
1806 display: table-cell;
1807 float: none;
1808 margin-left: 0;
1809}
1810.table td.span1,
1811.table th.span1 {
1812 float: none;
1813 width: 44px;
1814 margin-left: 0;
1815}
1816.table td.span2,
1817.table th.span2 {
1818 float: none;
1819 width: 124px;
1820 margin-left: 0;
1821}
1822.table td.span3,
1823.table th.span3 {
1824 float: none;
1825 width: 204px;
1826 margin-left: 0;
1827}
1828.table td.span4,
1829.table th.span4 {
1830 float: none;
1831 width: 284px;
1832 margin-left: 0;
1833}
1834.table td.span5,
1835.table th.span5 {
1836 float: none;
1837 width: 364px;
1838 margin-left: 0;
1839}
1840.table td.span6,
1841.table th.span6 {
1842 float: none;
1843 width: 444px;
1844 margin-left: 0;
1845}
1846.table td.span7,
1847.table th.span7 {
1848 float: none;
1849 width: 524px;
1850 margin-left: 0;
1851}
1852.table td.span8,
1853.table th.span8 {
1854 float: none;
1855 width: 604px;
1856 margin-left: 0;
1857}
1858.table td.span9,
1859.table th.span9 {
1860 float: none;
1861 width: 684px;
1862 margin-left: 0;
1863}
1864.table td.span10,
1865.table th.span10 {
1866 float: none;
1867 width: 764px;
1868 margin-left: 0;
1869}
1870.table td.span11,
1871.table th.span11 {
1872 float: none;
1873 width: 844px;
1874 margin-left: 0;
1875}
1876.table td.span12,
1877.table th.span12 {
1878 float: none;
1879 width: 924px;
1880 margin-left: 0;
1881}
1882.table tbody tr.success td {
1883 background-color: #dff0d8;
1884}
1885.table tbody tr.error td {
1886 background-color: #f2dede;
1887}
1888.table tbody tr.warning td {
1889 background-color: #fcf8e3;
1890}
1891.table tbody tr.info td {
1892 background-color: #d9edf7;
1893}
1894.table-hover tbody tr.success:hover td {
1895 background-color: #d0e9c6;
1896}
1897.table-hover tbody tr.error:hover td {
1898 background-color: #ebcccc;
1899}
1900.table-hover tbody tr.warning:hover td {
1901 background-color: #faf2cc;
1902}
1903.table-hover tbody tr.info:hover td {
1904 background-color: #c4e3f3;
1905}
1906[class^="icon-"],
1907[class*=" icon-"] {
1908 display: inline-block;
1909 width: 14px;
1910 height: 14px;
1911 *margin-right: .3em;
1912 line-height: 14px;
1913 vertical-align: text-top;
1914 background-image: url("../img/glyphicons-halflings.png");
1915 background-position: 14px 14px;
1916 background-repeat: no-repeat;
1917 margin-top: 1px;
1918}
1919/* White icons with optional class, or on hover/active states of certain elements */
1920.icon-white,
1921.nav-pills > .active > a > [class^="icon-"],
1922.nav-pills > .active > a > [class*=" icon-"],
1923.nav-list > .active > a > [class^="icon-"],
1924.nav-list > .active > a > [class*=" icon-"],
1925.navbar-inverse .nav > .active > a > [class^="icon-"],
1926.navbar-inverse .nav > .active > a > [class*=" icon-"],
1927.dropdown-menu > li > a:hover > [class^="icon-"],
1928.dropdown-menu > li > a:hover > [class*=" icon-"],
1929.dropdown-menu > .active > a > [class^="icon-"],
1930.dropdown-menu > .active > a > [class*=" icon-"],
1931.dropdown-submenu:hover > a > [class^="icon-"],
1932.dropdown-submenu:hover > a > [class*=" icon-"] {
1933 background-image: url("../img/glyphicons-halflings-white.png");
1934}
1935.icon-glass {
1936 background-position: 0 0;
1937}
1938.icon-music {
1939 background-position: -24px 0;
1940}
1941.icon-search {
1942 background-position: -48px 0;
1943}
1944.icon-envelope {
1945 background-position: -72px 0;
1946}
1947.icon-heart {
1948 background-position: -96px 0;
1949}
1950.icon-star {
1951 background-position: -120px 0;
1952}
1953.icon-star-empty {
1954 background-position: -144px 0;
1955}
1956.icon-user {
1957 background-position: -168px 0;
1958}
1959.icon-film {
1960 background-position: -192px 0;
1961}
1962.icon-th-large {
1963 background-position: -216px 0;
1964}
1965.icon-th {
1966 background-position: -240px 0;
1967}
1968.icon-th-list {
1969 background-position: -264px 0;
1970}
1971.icon-ok {
1972 background-position: -288px 0;
1973}
1974.icon-remove {
1975 background-position: -312px 0;
1976}
1977.icon-zoom-in {
1978 background-position: -336px 0;
1979}
1980.icon-zoom-out {
1981 background-position: -360px 0;
1982}
1983.icon-off {
1984 background-position: -384px 0;
1985}
1986.icon-signal {
1987 background-position: -408px 0;
1988}
1989.icon-cog {
1990 background-position: -432px 0;
1991}
1992.icon-trash {
1993 background-position: -456px 0;
1994}
1995.icon-home {
1996 background-position: 0 -24px;
1997}
1998.icon-file {
1999 background-position: -24px -24px;
2000}
2001.icon-time {
2002 background-position: -48px -24px;
2003}
2004.icon-road {
2005 background-position: -72px -24px;
2006}
2007.icon-download-alt {
2008 background-position: -96px -24px;
2009}
2010.icon-download {
2011 background-position: -120px -24px;
2012}
2013.icon-upload {
2014 background-position: -144px -24px;
2015}
2016.icon-inbox {
2017 background-position: -168px -24px;
2018}
2019.icon-play-circle {
2020 background-position: -192px -24px;
2021}
2022.icon-repeat {
2023 background-position: -216px -24px;
2024}
2025.icon-refresh {
2026 background-position: -240px -24px;
2027}
2028.icon-list-alt {
2029 background-position: -264px -24px;
2030}
2031.icon-lock {
2032 background-position: -287px -24px;
2033}
2034.icon-flag {
2035 background-position: -312px -24px;
2036}
2037.icon-headphones {
2038 background-position: -336px -24px;
2039}
2040.icon-volume-off {
2041 background-position: -360px -24px;
2042}
2043.icon-volume-down {
2044 background-position: -384px -24px;
2045}
2046.icon-volume-up {
2047 background-position: -408px -24px;
2048}
2049.icon-qrcode {
2050 background-position: -432px -24px;
2051}
2052.icon-barcode {
2053 background-position: -456px -24px;
2054}
2055.icon-tag {
2056 background-position: 0 -48px;
2057}
2058.icon-tags {
2059 background-position: -25px -48px;
2060}
2061.icon-book {
2062 background-position: -48px -48px;
2063}
2064.icon-bookmark {
2065 background-position: -72px -48px;
2066}
2067.icon-print {
2068 background-position: -96px -48px;
2069}
2070.icon-camera {
2071 background-position: -120px -48px;
2072}
2073.icon-font {
2074 background-position: -144px -48px;
2075}
2076.icon-bold {
2077 background-position: -167px -48px;
2078}
2079.icon-italic {
2080 background-position: -192px -48px;
2081}
2082.icon-text-height {
2083 background-position: -216px -48px;
2084}
2085.icon-text-width {
2086 background-position: -240px -48px;
2087}
2088.icon-align-left {
2089 background-position: -264px -48px;
2090}
2091.icon-align-center {
2092 background-position: -288px -48px;
2093}
2094.icon-align-right {
2095 background-position: -312px -48px;
2096}
2097.icon-align-justify {
2098 background-position: -336px -48px;
2099}
2100.icon-list {
2101 background-position: -360px -48px;
2102}
2103.icon-indent-left {
2104 background-position: -384px -48px;
2105}
2106.icon-indent-right {
2107 background-position: -408px -48px;
2108}
2109.icon-facetime-video {
2110 background-position: -432px -48px;
2111}
2112.icon-picture {
2113 background-position: -456px -48px;
2114}
2115.icon-pencil {
2116 background-position: 0 -72px;
2117}
2118.icon-map-marker {
2119 background-position: -24px -72px;
2120}
2121.icon-adjust {
2122 background-position: -48px -72px;
2123}
2124.icon-tint {
2125 background-position: -72px -72px;
2126}
2127.icon-edit {
2128 background-position: -96px -72px;
2129}
2130.icon-share {
2131 background-position: -120px -72px;
2132}
2133.icon-check {
2134 background-position: -144px -72px;
2135}
2136.icon-move {
2137 background-position: -168px -72px;
2138}
2139.icon-step-backward {
2140 background-position: -192px -72px;
2141}
2142.icon-fast-backward {
2143 background-position: -216px -72px;
2144}
2145.icon-backward {
2146 background-position: -240px -72px;
2147}
2148.icon-play {
2149 background-position: -264px -72px;
2150}
2151.icon-pause {
2152 background-position: -288px -72px;
2153}
2154.icon-stop {
2155 background-position: -312px -72px;
2156}
2157.icon-forward {
2158 background-position: -336px -72px;
2159}
2160.icon-fast-forward {
2161 background-position: -360px -72px;
2162}
2163.icon-step-forward {
2164 background-position: -384px -72px;
2165}
2166.icon-eject {
2167 background-position: -408px -72px;
2168}
2169.icon-chevron-left {
2170 background-position: -432px -72px;
2171}
2172.icon-chevron-right {
2173 background-position: -456px -72px;
2174}
2175.icon-plus-sign {
2176 background-position: 0 -96px;
2177}
2178.icon-minus-sign {
2179 background-position: -24px -96px;
2180}
2181.icon-remove-sign {
2182 background-position: -48px -96px;
2183}
2184.icon-ok-sign {
2185 background-position: -72px -96px;
2186}
2187.icon-question-sign {
2188 background-position: -96px -96px;
2189}
2190.icon-info-sign {
2191 background-position: -120px -96px;
2192}
2193.icon-screenshot {
2194 background-position: -144px -96px;
2195}
2196.icon-remove-circle {
2197 background-position: -168px -96px;
2198}
2199.icon-ok-circle {
2200 background-position: -192px -96px;
2201}
2202.icon-ban-circle {
2203 background-position: -216px -96px;
2204}
2205.icon-arrow-left {
2206 background-position: -240px -96px;
2207}
2208.icon-arrow-right {
2209 background-position: -264px -96px;
2210}
2211.icon-arrow-up {
2212 background-position: -289px -96px;
2213}
2214.icon-arrow-down {
2215 background-position: -312px -96px;
2216}
2217.icon-share-alt {
2218 background-position: -336px -96px;
2219}
2220.icon-resize-full {
2221 background-position: -360px -96px;
2222}
2223.icon-resize-small {
2224 background-position: -384px -96px;
2225}
2226.icon-plus {
2227 background-position: -408px -96px;
2228}
2229.icon-minus {
2230 background-position: -433px -96px;
2231}
2232.icon-asterisk {
2233 background-position: -456px -96px;
2234}
2235.icon-exclamation-sign {
2236 background-position: 0 -120px;
2237}
2238.icon-gift {
2239 background-position: -24px -120px;
2240}
2241.icon-leaf {
2242 background-position: -48px -120px;
2243}
2244.icon-fire {
2245 background-position: -72px -120px;
2246}
2247.icon-eye-open {
2248 background-position: -96px -120px;
2249}
2250.icon-eye-close {
2251 background-position: -120px -120px;
2252}
2253.icon-warning-sign {
2254 background-position: -144px -120px;
2255}
2256.icon-plane {
2257 background-position: -168px -120px;
2258}
2259.icon-calendar {
2260 background-position: -192px -120px;
2261}
2262.icon-random {
2263 background-position: -216px -120px;
2264 width: 16px;
2265}
2266.icon-comment {
2267 background-position: -240px -120px;
2268}
2269.icon-magnet {
2270 background-position: -264px -120px;
2271}
2272.icon-chevron-up {
2273 background-position: -288px -120px;
2274}
2275.icon-chevron-down {
2276 background-position: -313px -119px;
2277}
2278.icon-retweet {
2279 background-position: -336px -120px;
2280}
2281.icon-shopping-cart {
2282 background-position: -360px -120px;
2283}
2284.icon-folder-close {
2285 background-position: -384px -120px;
2286}
2287.icon-folder-open {
2288 background-position: -408px -120px;
2289 width: 16px;
2290}
2291.icon-resize-vertical {
2292 background-position: -432px -119px;
2293}
2294.icon-resize-horizontal {
2295 background-position: -456px -118px;
2296}
2297.icon-hdd {
2298 background-position: 0 -144px;
2299}
2300.icon-bullhorn {
2301 background-position: -24px -144px;
2302}
2303.icon-bell {
2304 background-position: -48px -144px;
2305}
2306.icon-certificate {
2307 background-position: -72px -144px;
2308}
2309.icon-thumbs-up {
2310 background-position: -96px -144px;
2311}
2312.icon-thumbs-down {
2313 background-position: -120px -144px;
2314}
2315.icon-hand-right {
2316 background-position: -144px -144px;
2317}
2318.icon-hand-left {
2319 background-position: -168px -144px;
2320}
2321.icon-hand-up {
2322 background-position: -192px -144px;
2323}
2324.icon-hand-down {
2325 background-position: -216px -144px;
2326}
2327.icon-circle-arrow-right {
2328 background-position: -240px -144px;
2329}
2330.icon-circle-arrow-left {
2331 background-position: -264px -144px;
2332}
2333.icon-circle-arrow-up {
2334 background-position: -288px -144px;
2335}
2336.icon-circle-arrow-down {
2337 background-position: -312px -144px;
2338}
2339.icon-globe {
2340 background-position: -336px -144px;
2341}
2342.icon-wrench {
2343 background-position: -360px -144px;
2344}
2345.icon-tasks {
2346 background-position: -384px -144px;
2347}
2348.icon-filter {
2349 background-position: -408px -144px;
2350}
2351.icon-briefcase {
2352 background-position: -432px -144px;
2353}
2354.icon-fullscreen {
2355 background-position: -456px -144px;
2356}
2357.dropup,
2358.dropdown {
2359 position: relative;
2360}
2361.dropdown-toggle {
2362 *margin-bottom: -3px;
2363}
2364.dropdown-toggle:active,
2365.open .dropdown-toggle {
2366 outline: 0;
2367}
2368.caret {
2369 display: inline-block;
2370 width: 0;
2371 height: 0;
2372 vertical-align: top;
2373 border-top: 4px solid #000000;
2374 border-right: 4px solid transparent;
2375 border-left: 4px solid transparent;
2376 content: "";
2377}
2378.dropdown .caret {
2379 margin-top: 8px;
2380 margin-left: 2px;
2381}
2382.dropdown-menu {
2383 position: absolute; 1364 position: absolute;
2384 top: 100%; 1365 width: 20px;
2385 left: 0; 1366 height: 20px;
2386 z-index: 1000; 1367 top: 1px;
2387 display: none; 1368 left: 1px;
2388 float: left; 1369 -webkit-transform: rotate(45deg) translate3d(0.2px, 0, 0);
2389 min-width: 160px; 1370 transform: rotate(45deg) translate3d(0.2px, 0, 0);
2390 padding: 5px 0; 1371 -webkit-transform-origin: 0 0;
2391 margin: 2px 0 0; 1372 transform-origin: 0 0;
2392 list-style: none;
2393 background-color: #ffffff;
2394 border: 1px solid #ccc;
2395 border: 1px solid rgba(0, 0, 0, 0.2);
2396 *border-right-width: 2px;
2397 *border-bottom-width: 2px;
2398 -webkit-border-radius: 6px;
2399 -moz-border-radius: 6px;
2400 border-radius: 6px;
2401 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2402 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2403 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2404 -webkit-background-clip: padding-box;
2405 -moz-background-clip: padding;
2406 background-clip: padding-box;
2407}
2408.dropdown-menu.pull-right {
2409 right: 0;
2410 left: auto;
2411}
2412.dropdown-menu .divider {
2413 *width: 100%;
2414 height: 1px;
2415 margin: 9px 1px;
2416 *margin: -5px 0 5px;
2417 overflow: hidden;
2418 background-color: #e5e5e5;
2419 border-bottom: 1px solid #ffffff;
2420}
2421.dropdown-menu li > a {
2422 display: block;
2423 padding: 3px 20px;
2424 clear: both;
2425 font-weight: normal;
2426 line-height: 20px;
2427 color: #333333;
2428 white-space: nowrap;
2429}
2430.dropdown-menu li > a:hover,
2431.dropdown-menu li > a:focus,
2432.dropdown-submenu:hover > a {
2433 text-decoration: none;
2434 color: #ffffff;
2435 background-color: #0081c2;
2436 background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2437 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2438 background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2439 background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2440 background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2441 background-repeat: repeat-x;
2442 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2443}
2444.dropdown-menu .active > a,
2445.dropdown-menu .active > a:hover {
2446 color: #ffffff;
2447 text-decoration: none;
2448 outline: 0;
2449 background-color: #0081c2;
2450 background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
2451 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
2452 background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
2453 background-image: -o-linear-gradient(top, #0088cc, #0077b3);
2454 background-image: linear-gradient(to bottom, #0088cc, #0077b3);
2455 background-repeat: repeat-x;
2456 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
2457}
2458.dropdown-menu .disabled > a,
2459.dropdown-menu .disabled > a:hover {
2460 color: #999999;
2461}
2462.dropdown-menu .disabled > a:hover {
2463 text-decoration: none;
2464 background-color: transparent;
2465 background-image: none; 1373 background-image: none;
2466 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 1374 background-color: #0a0a0a;
2467 cursor: default; 1375 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));
2468} 1376 background-image: -webkit-linear-gradient(top left, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
2469.open { 1377 background-image: linear-gradient(top left, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
2470 *z-index: 1000; 1378 background-size: 100% 98%;
2471} 1379 -webkit-border-radius: 0 0 0 2px;
2472.open > .dropdown-menu { 1380 border-radius: 0 0 0 2px;
2473 display: block; 1381 -webkit-mask-image: -webkit-linear-gradient(45deg, #000000, #000000 15px, rgba(0, 0, 0, 0) 15px);
2474} 1382 -webkit-mask-image: -webkit-gradient(linear, left bottom, right top, from(#000000), color-stop(50%, #000000), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
2475.pull-right > .dropdown-menu { 1383 -webkit-mask-clip: border-box;
2476 right: 0; 1384 -webkit-background-clip: content-box;
2477 left: auto; 1385}
2478} 1386/* line 149, ../scss/include/_skeleton.scss */
2479.dropup .caret, 1387#jqt .back:after {
2480.navbar-fixed-bottom .dropdown .caret { 1388 -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
2481 border-top: 0; 1389 box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
2482 border-bottom: 4px solid #000000; 1390}
2483 content: ""; 1391/* line 152, ../scss/include/_skeleton.scss */
2484} 1392#jqt .back:before {
2485.dropup .dropdown-menu,
2486.navbar-fixed-bottom .dropdown .dropdown-menu {
2487 top: auto;
2488 bottom: 100%;
2489 margin-bottom: 1px;
2490}
2491.dropdown-submenu {
2492 position: relative;
2493}
2494.dropdown-submenu > .dropdown-menu {
2495 top: 0;
2496 left: 100%;
2497 margin-top: -6px;
2498 margin-left: -1px; 1393 margin-left: -1px;
2499 -webkit-border-radius: 0 6px 6px 6px; 1394 background: black none;
2500 -moz-border-radius: 0 6px 6px 6px;
2501 border-radius: 0 6px 6px 6px;
2502}
2503.dropdown-submenu:hover > .dropdown-menu {
2504 display: block;
2505}
2506.dropup .dropdown-submenu > .dropdown-menu {
2507 top: auto;
2508 bottom: 0;
2509 margin-top: 0;
2510 margin-bottom: -2px;
2511 -webkit-border-radius: 5px 5px 5px 0;
2512 -moz-border-radius: 5px 5px 5px 0;
2513 border-radius: 5px 5px 5px 0;
2514} 1395}
2515.dropdown-submenu > a:after { 1396/* line 157, ../scss/include/_skeleton.scss */
1397#jqt .back.active:after {
1398 background-image: none;
1399 background-color: black;
1400 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));
1401 background-image: -webkit-linear-gradient(left top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1402 background-image: linear-gradient(left top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1403}
1404/* line 160, ../scss/include/_skeleton.scss */
1405#jqt .back.active:before {
1406 background-color: black;
1407}
1408/* line 166, ../scss/include/_skeleton.scss */
1409#jqt .blueButton {
1410 background-image: #2f7ce3, glossy;
1411 color: white;
1412 text-shadow: #1a63c5 0 -1px 0;
1413}
1414/* line 170, ../scss/include/_skeleton.scss */
1415#jqt .whiteButton,
1416#jqt .grayButton,
1417#jqt .redButton,
1418#jqt .blueButton,
1419#jqt .greenButton {
2516 display: block; 1420 display: block;
2517 content: " ";
2518 float: right;
2519 width: 0;
2520 height: 0;
2521 border-color: transparent;
2522 border-style: solid;
2523 border-width: 5px 0 5px 5px;
2524 border-left-color: #cccccc;
2525 margin-top: 5px;
2526 margin-right: -10px;
2527}
2528.dropdown-submenu:hover > a:after {
2529 border-left-color: #ffffff;
2530}
2531.dropdown-submenu.pull-left {
2532 float: none;
2533}
2534.dropdown-submenu.pull-left > .dropdown-menu {
2535 left: -100%;
2536 margin-left: 10px;
2537 -webkit-border-radius: 6px 0 6px 6px;
2538 -moz-border-radius: 6px 0 6px 6px;
2539 border-radius: 6px 0 6px 6px;
2540}
2541.dropdown .dropdown-menu .nav-header {
2542 padding-left: 20px;
2543 padding-right: 20px;
2544}
2545.typeahead {
2546 z-index: 1051;
2547 margin-top: 2px;
2548 -webkit-border-radius: 4px;
2549 -moz-border-radius: 4px;
2550 border-radius: 4px;
2551}
2552.well {
2553 min-height: 20px;
2554 padding: 19px;
2555 margin-bottom: 20px;
2556 background-color: #f5f5f5;
2557 border: 1px solid #e3e3e3;
2558 -webkit-border-radius: 4px;
2559 -moz-border-radius: 4px;
2560 border-radius: 4px;
2561 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2562 -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2563 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2564}
2565.well blockquote {
2566 border-color: #ddd;
2567 border-color: rgba(0, 0, 0, 0.15);
2568}
2569.well-large {
2570 padding: 24px;
2571 -webkit-border-radius: 6px;
2572 -moz-border-radius: 6px;
2573 border-radius: 6px;
2574}
2575.well-small {
2576 padding: 9px;
2577 -webkit-border-radius: 3px;
2578 -moz-border-radius: 3px;
2579 border-radius: 3px;
2580}
2581.fade {
2582 opacity: 0;
2583 -webkit-transition: opacity 0.15s linear;
2584 -moz-transition: opacity 0.15s linear;
2585 -o-transition: opacity 0.15s linear;
2586 transition: opacity 0.15s linear;
2587}
2588.fade.in {
2589 opacity: 1;
2590}
2591.collapse {
2592 position: relative;
2593 height: 0;
2594 overflow: hidden;
2595 -webkit-transition: height 0.35s ease;
2596 -moz-transition: height 0.35s ease;
2597 -o-transition: height 0.35s ease;
2598 transition: height 0.35s ease;
2599}
2600.collapse.in {
2601 height: auto;
2602}
2603.close {
2604 float: right;
2605 font-size: 20px; 1421 font-size: 20px;
2606 font-weight: bold; 1422 font-weight: bold;
2607 line-height: 20px; 1423 margin: 10px 20px;
2608 color: #000000; 1424 padding: 10px;
2609 text-shadow: 0 1px 0 #ffffff;
2610 opacity: 0.2;
2611 filter: alpha(opacity=20);
2612}
2613.close:hover {
2614 color: #000000;
2615 text-decoration: none;
2616 cursor: pointer;
2617 opacity: 0.4;
2618 filter: alpha(opacity=40);
2619}
2620button.close {
2621 padding: 0;
2622 cursor: pointer;
2623 background: transparent;
2624 border: 0;
2625 -webkit-appearance: none;
2626}
2627.btn {
2628 display: inline-block;
2629 *display: inline;
2630 /* IE7 inline-block hack */
2631
2632 *zoom: 1;
2633 padding: 4px 12px;
2634 margin-bottom: 0;
2635 font-size: 14px;
2636 line-height: 20px;
2637 text-align: center; 1425 text-align: center;
2638 vertical-align: middle; 1426 text-decoration: inherit;
2639 cursor: pointer; 1427 -webkit-border-radius: 8px;
2640 color: #333333; 1428 border-radius: 8px;
2641 text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); 1429 -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;
2642 background-color: #f5f5f5; 1430 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;
2643 background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); 1431}
2644 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); 1432/* line 185, ../scss/include/_skeleton.scss */
2645 background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); 1433#jqt .whiteButton.active,
2646 background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); 1434#jqt .whiteButton:active,
2647 background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); 1435#jqt .grayButton.active,
2648 background-repeat: repeat-x; 1436#jqt .grayButton:active,
2649 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0); 1437#jqt .redButton.active,
2650 border-color: #e6e6e6 #e6e6e6 #bfbfbf; 1438#jqt .redButton:active,
2651 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); 1439#jqt .blueButton.active,
2652 *background-color: #e6e6e6; 1440#jqt .blueButton:active,
2653 /* Darken IE7 buttons by default so they stand out more given they won't have borders */ 1441#jqt .greenButton.active,
2654 1442#jqt .greenButton:active {
2655 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2656 border: 1px solid #bbbbbb;
2657 *border: 0;
2658 border-bottom-color: #a2a2a2;
2659 -webkit-border-radius: 4px;
2660 -moz-border-radius: 4px;
2661 border-radius: 4px;
2662 *margin-left: .3em;
2663 -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2664 -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2665 box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
2666}
2667.btn:hover,
2668.btn:active,
2669.btn.active,
2670.btn.disabled,
2671.btn[disabled] {
2672 color: #333333;
2673 background-color: #e6e6e6;
2674 *background-color: #d9d9d9;
2675}
2676.btn:active,
2677.btn.active {
2678 background-color: #cccccc \9;
2679}
2680.btn:first-child {
2681 *margin-left: 0;
2682}
2683.btn:hover {
2684 color: #333333;
2685 text-decoration: none;
2686 background-position: 0 -15px;
2687 -webkit-transition: background-position 0.1s linear;
2688 -moz-transition: background-position 0.1s linear;
2689 -o-transition: background-position 0.1s linear;
2690 transition: background-position 0.1s linear;
2691}
2692.btn:focus {
2693 outline: thin dotted #333;
2694 outline: 5px auto -webkit-focus-ring-color;
2695 outline-offset: -2px;
2696}
2697.btn.active,
2698.btn:active {
2699 background-image: none; 1443 background-image: none;
2700 outline: 0; 1444 background-color: #3c8101;
2701 -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 1445 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));
2702 -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 1446 background-image: -webkit-linear-gradient(top, #5fcd01, #479b01 50%, #3c8101 51%, #306801);
2703 box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 1447 background-image: linear-gradient(top, #5fcd01, #479b01 50%, #3c8101 51%, #306801);
2704} 1448 color: white;
2705.btn.disabled, 1449 text-shadow: #244f00 0 -1px 0;
2706.btn[disabled] { 1450}
2707 cursor: default; 1451/* line 191, ../scss/include/_skeleton.scss */
1452#jqt .whiteButton {
2708 background-image: none; 1453 background-image: none;
2709 opacity: 0.65; 1454 background-color: #eeeeee;
2710 filter: alpha(opacity=65); 1455 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));
2711 -webkit-box-shadow: none; 1456 background-image: -webkit-linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
2712 -moz-box-shadow: none; 1457 background-image: linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
2713 box-shadow: none; 1458 color: #151515;
2714} 1459 text-shadow: white 0 1px 0;
2715.btn-large { 1460}
2716 padding: 11px 19px; 1461/* line 195, ../scss/include/_skeleton.scss */
2717 font-size: 17.5px; 1462#jqt .grayButton {
2718 -webkit-border-radius: 6px;
2719 -moz-border-radius: 6px;
2720 border-radius: 6px;
2721}
2722.btn-large [class^="icon-"],
2723.btn-large [class*=" icon-"] {
2724 margin-top: 4px;
2725}
2726.btn-small {
2727 padding: 2px 10px;
2728 font-size: 11.9px;
2729 -webkit-border-radius: 3px;
2730 -moz-border-radius: 3px;
2731 border-radius: 3px;
2732}
2733.btn-small [class^="icon-"],
2734.btn-small [class*=" icon-"] {
2735 margin-top: 0;
2736}
2737.btn-mini [class^="icon-"],
2738.btn-mini [class*=" icon-"] {
2739 margin-top: -1px;
2740}
2741.btn-mini {
2742 padding: 0 6px;
2743 font-size: 10.5px;
2744 -webkit-border-radius: 3px;
2745 -moz-border-radius: 3px;
2746 border-radius: 3px;
2747}
2748.btn-block {
2749 display: block;
2750 width: 100%;
2751 padding-left: 0;
2752 padding-right: 0;
2753 -webkit-box-sizing: border-box;
2754 -moz-box-sizing: border-box;
2755 box-sizing: border-box;
2756}
2757.btn-block + .btn-block {
2758 margin-top: 5px;
2759}
2760input[type="submit"].btn-block,
2761input[type="reset"].btn-block,
2762input[type="button"].btn-block {
2763 width: 100%;
2764}
2765.btn-primary.active,
2766.btn-warning.active,
2767.btn-danger.active,
2768.btn-success.active,
2769.btn-info.active,
2770.btn-inverse.active {
2771 color: rgba(255, 255, 255, 0.75);
2772}
2773.btn {
2774 border-color: #c5c5c5;
2775 border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
2776}
2777.btn-primary {
2778 color: #ffffff;
2779 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2780 background-color: #006dcc;
2781 background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
2782 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
2783 background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
2784 background-image: -o-linear-gradient(top, #0088cc, #0044cc);
2785 background-image: linear-gradient(to bottom, #0088cc, #0044cc);
2786 background-repeat: repeat-x;
2787 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
2788 border-color: #0044cc #0044cc #002a80;
2789 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2790 *background-color: #0044cc;
2791 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2792
2793 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2794}
2795.btn-primary:hover,
2796.btn-primary:active,
2797.btn-primary.active,
2798.btn-primary.disabled,
2799.btn-primary[disabled] {
2800 color: #ffffff;
2801 background-color: #0044cc;
2802 *background-color: #003bb3;
2803}
2804.btn-primary:active,
2805.btn-primary.active {
2806 background-color: #003399 \9;
2807}
2808.btn-warning {
2809 color: #ffffff;
2810 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2811 background-color: #faa732;
2812 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
2813 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
2814 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
2815 background-image: -o-linear-gradient(top, #fbb450, #f89406);
2816 background-image: linear-gradient(to bottom, #fbb450, #f89406);
2817 background-repeat: repeat-x;
2818 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
2819 border-color: #f89406 #f89406 #ad6704;
2820 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2821 *background-color: #f89406;
2822 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2823
2824 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2825}
2826.btn-warning:hover,
2827.btn-warning:active,
2828.btn-warning.active,
2829.btn-warning.disabled,
2830.btn-warning[disabled] {
2831 color: #ffffff;
2832 background-color: #f89406;
2833 *background-color: #df8505;
2834}
2835.btn-warning:active,
2836.btn-warning.active {
2837 background-color: #c67605 \9;
2838}
2839.btn-danger {
2840 color: #ffffff;
2841 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2842 background-color: #da4f49;
2843 background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
2844 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
2845 background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
2846 background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
2847 background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
2848 background-repeat: repeat-x;
2849 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
2850 border-color: #bd362f #bd362f #802420;
2851 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2852 *background-color: #bd362f;
2853 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2854
2855 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2856}
2857.btn-danger:hover,
2858.btn-danger:active,
2859.btn-danger.active,
2860.btn-danger.disabled,
2861.btn-danger[disabled] {
2862 color: #ffffff;
2863 background-color: #bd362f;
2864 *background-color: #a9302a;
2865}
2866.btn-danger:active,
2867.btn-danger.active {
2868 background-color: #942a25 \9;
2869}
2870.btn-success {
2871 color: #ffffff;
2872 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2873 background-color: #5bb75b;
2874 background-image: -moz-linear-gradient(top, #62c462, #51a351);
2875 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
2876 background-image: -webkit-linear-gradient(top, #62c462, #51a351);
2877 background-image: -o-linear-gradient(top, #62c462, #51a351);
2878 background-image: linear-gradient(to bottom, #62c462, #51a351);
2879 background-repeat: repeat-x;
2880 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
2881 border-color: #51a351 #51a351 #387038;
2882 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2883 *background-color: #51a351;
2884 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2885
2886 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2887}
2888.btn-success:hover,
2889.btn-success:active,
2890.btn-success.active,
2891.btn-success.disabled,
2892.btn-success[disabled] {
2893 color: #ffffff;
2894 background-color: #51a351;
2895 *background-color: #499249;
2896}
2897.btn-success:active,
2898.btn-success.active {
2899 background-color: #408140 \9;
2900}
2901.btn-info {
2902 color: #ffffff;
2903 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2904 background-color: #49afcd;
2905 background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
2906 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
2907 background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
2908 background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
2909 background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
2910 background-repeat: repeat-x;
2911 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
2912 border-color: #2f96b4 #2f96b4 #1f6377;
2913 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2914 *background-color: #2f96b4;
2915 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2916
2917 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2918}
2919.btn-info:hover,
2920.btn-info:active,
2921.btn-info.active,
2922.btn-info.disabled,
2923.btn-info[disabled] {
2924 color: #ffffff;
2925 background-color: #2f96b4;
2926 *background-color: #2a85a0;
2927}
2928.btn-info:active,
2929.btn-info.active {
2930 background-color: #24748c \9;
2931}
2932.btn-inverse {
2933 color: #ffffff;
2934 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2935 background-color: #363636;
2936 background-image: -moz-linear-gradient(top, #444444, #222222);
2937 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
2938 background-image: -webkit-linear-gradient(top, #444444, #222222);
2939 background-image: -o-linear-gradient(top, #444444, #222222);
2940 background-image: linear-gradient(to bottom, #444444, #222222);
2941 background-repeat: repeat-x;
2942 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
2943 border-color: #222222 #222222 #000000;
2944 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2945 *background-color: #222222;
2946 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
2947
2948 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2949}
2950.btn-inverse:hover,
2951.btn-inverse:active,
2952.btn-inverse.active,
2953.btn-inverse.disabled,
2954.btn-inverse[disabled] {
2955 color: #ffffff;
2956 background-color: #222222;
2957 *background-color: #151515;
2958}
2959.btn-inverse:active,
2960.btn-inverse.active {
2961 background-color: #080808 \9;
2962}
2963button.btn,
2964input[type="submit"].btn {
2965 *padding-top: 3px;
2966 *padding-bottom: 3px;
2967}
2968button.btn::-moz-focus-inner,
2969input[type="submit"].btn::-moz-focus-inner {
2970 padding: 0;
2971 border: 0;
2972}
2973button.btn.btn-large,
2974input[type="submit"].btn.btn-large {
2975 *padding-top: 7px;
2976 *padding-bottom: 7px;
2977}
2978button.btn.btn-small,
2979input[type="submit"].btn.btn-small {
2980 *padding-top: 3px;
2981 *padding-bottom: 3px;
2982}
2983button.btn.btn-mini,
2984input[type="submit"].btn.btn-mini {
2985 *padding-top: 1px;
2986 *padding-bottom: 1px;
2987}
2988.btn-link,
2989.btn-link:active,
2990.btn-link[disabled] {
2991 background-color: transparent;
2992 background-image: none; 1463 background-image: none;
2993 -webkit-box-shadow: none; 1464 background-color: #444444;
2994 -moz-box-shadow: none; 1465 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));
2995 box-shadow: none; 1466 background-image: -webkit-linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
2996} 1467 background-image: linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
2997.btn-link { 1468 color: white;
2998 border-color: transparent; 1469 text-shadow: #2b2b2b 0 -1px 0;
2999 cursor: pointer; 1470}
3000 color: #0088cc; 1471/* line 200, ../scss/include/_skeleton.scss */
3001 -webkit-border-radius: 0; 1472#jqt .redButton {
3002 -moz-border-radius: 0;
3003 border-radius: 0;
3004}
3005.btn-link:hover {
3006 color: #005580;
3007 text-decoration: underline;
3008 background-color: transparent;
3009}
3010.btn-link[disabled]:hover {
3011 color: #333333;
3012 text-decoration: none;
3013}
3014.btn-group {
3015 position: relative;
3016 display: inline-block;
3017 *display: inline;
3018 /* IE7 inline-block hack */
3019
3020 *zoom: 1;
3021 font-size: 0;
3022 vertical-align: middle;
3023 white-space: nowrap;
3024 *margin-left: .3em;
3025}
3026.btn-group:first-child {
3027 *margin-left: 0;
3028}
3029.btn-group + .btn-group {
3030 margin-left: 5px;
3031}
3032.btn-toolbar {
3033 font-size: 0;
3034 margin-top: 10px;
3035 margin-bottom: 10px;
3036}
3037.btn-toolbar > .btn + .btn,
3038.btn-toolbar > .btn-group + .btn,
3039.btn-toolbar > .btn + .btn-group {
3040 margin-left: 5px;
3041}
3042.btn-group > .btn {
3043 position: relative;
3044 -webkit-border-radius: 0;
3045 -moz-border-radius: 0;
3046 border-radius: 0;
3047}
3048.btn-group > .btn + .btn {
3049 margin-left: -1px;
3050}
3051.btn-group > .btn,
3052.btn-group > .dropdown-menu,
3053.btn-group > .popover {
3054 font-size: 14px;
3055}
3056.btn-group > .btn-mini {
3057 font-size: 10.5px;
3058}
3059.btn-group > .btn-small {
3060 font-size: 11.9px;
3061}
3062.btn-group > .btn-large {
3063 font-size: 17.5px;
3064}
3065.btn-group > .btn:first-child {
3066 margin-left: 0;
3067 -webkit-border-top-left-radius: 4px;
3068 -moz-border-radius-topleft: 4px;
3069 border-top-left-radius: 4px;
3070 -webkit-border-bottom-left-radius: 4px;
3071 -moz-border-radius-bottomleft: 4px;
3072 border-bottom-left-radius: 4px;
3073}
3074.btn-group > .btn:last-child,
3075.btn-group > .dropdown-toggle {
3076 -webkit-border-top-right-radius: 4px;
3077 -moz-border-radius-topright: 4px;
3078 border-top-right-radius: 4px;
3079 -webkit-border-bottom-right-radius: 4px;
3080 -moz-border-radius-bottomright: 4px;
3081 border-bottom-right-radius: 4px;
3082}
3083.btn-group > .btn.large:first-child {
3084 margin-left: 0;
3085 -webkit-border-top-left-radius: 6px;
3086 -moz-border-radius-topleft: 6px;
3087 border-top-left-radius: 6px;
3088 -webkit-border-bottom-left-radius: 6px;
3089 -moz-border-radius-bottomleft: 6px;
3090 border-bottom-left-radius: 6px;
3091}
3092.btn-group > .btn.large:last-child,
3093.btn-group > .large.dropdown-toggle {
3094 -webkit-border-top-right-radius: 6px;
3095 -moz-border-radius-topright: 6px;
3096 border-top-right-radius: 6px;
3097 -webkit-border-bottom-right-radius: 6px;
3098 -moz-border-radius-bottomright: 6px;
3099 border-bottom-right-radius: 6px;
3100}
3101.btn-group > .btn:hover,
3102.btn-group > .btn:focus,
3103.btn-group > .btn:active,
3104.btn-group > .btn.active {
3105 z-index: 2;
3106}
3107.btn-group .dropdown-toggle:active,
3108.btn-group.open .dropdown-toggle {
3109 outline: 0;
3110}
3111.btn-group > .btn + .dropdown-toggle {
3112 padding-left: 8px;
3113 padding-right: 8px;
3114 -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
3115 -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
3116 box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
3117 *padding-top: 5px;
3118 *padding-bottom: 5px;
3119}
3120.btn-group > .btn-mini + .dropdown-toggle {
3121 padding-left: 5px;
3122 padding-right: 5px;
3123 *padding-top: 2px;
3124 *padding-bottom: 2px;
3125}
3126.btn-group > .btn-small + .dropdown-toggle {
3127 *padding-top: 5px;
3128 *padding-bottom: 4px;
3129}
3130.btn-group > .btn-large + .dropdown-toggle {
3131 padding-left: 12px;
3132 padding-right: 12px;
3133 *padding-top: 7px;
3134 *padding-bottom: 7px;
3135}
3136.btn-group.open .dropdown-toggle {
3137 background-image: none; 1473 background-image: none;
3138 -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 1474 background-color: #d83b38;
3139 -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 1475 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));
3140 box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05); 1476 background-image: -webkit-linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
3141} 1477 background-image: linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
3142.btn-group.open .btn.dropdown-toggle { 1478 color: white;
3143 background-color: #e6e6e6; 1479 text-shadow: #b92724 0 -1px 0;
3144} 1480}
3145.btn-group.open .btn-primary.dropdown-toggle { 1481/* line 204, ../scss/include/_skeleton.scss */
3146 background-color: #0044cc; 1482#jqt .redButton.active,
3147} 1483#jqt .redButton:active {
3148.btn-group.open .btn-warning.dropdown-toggle { 1484 background-image: none;
3149 background-color: #f89406; 1485 background-color: #c12926;
3150} 1486 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));
3151.btn-group.open .btn-danger.dropdown-toggle { 1487 background-image: -webkit-linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
3152 background-color: #bd362f; 1488 background-image: linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
3153} 1489 color: white;
3154.btn-group.open .btn-success.dropdown-toggle { 1490 text-shadow: #97201e 0 -1px 0;
3155 background-color: #51a351; 1491}
3156} 1492/* line 211, ../scss/include/_skeleton.scss */
3157.btn-group.open .btn-info.dropdown-toggle { 1493#jqt .greenButton {
3158 background-color: #2f96b4; 1494 background-image: none;
3159} 1495 background-color: #53b401;
3160.btn-group.open .btn-inverse.dropdown-toggle { 1496 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));
3161 background-color: #222222; 1497 background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
3162} 1498 background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
3163.btn .caret { 1499 color: white;
3164 margin-top: 8px; 1500 text-shadow: #3c8101 0 -1px 0;
3165 margin-left: 0; 1501}
3166} 1502/* line 216, ../scss/include/_skeleton.scss */
3167.btn-mini .caret, 1503#jqt .leftButton,
3168.btn-small .caret, 1504#jqt .cancel,
3169.btn-large .caret { 1505#jqt .back {
3170 margin-top: 6px; 1506 left: 6px;
3171} 1507 right: auto;
3172.btn-large .caret { 1508}
3173 border-left-width: 5px; 1509/* line 221, ../scss/include/_skeleton.scss */
3174 border-right-width: 5px; 1510#jqt .add {
3175 border-top-width: 5px; 1511 font-size: 24px;
3176} 1512 line-height: 24px;
3177.dropup .btn-large .caret { 1513 font-weight: bold;
3178 border-bottom-width: 5px;
3179} 1514}
3180.btn-primary .caret, 1515/* line 229, ../scss/include/_skeleton.scss */
3181.btn-warning .caret, 1516#jqt ul {
3182.btn-danger .caret, 1517 padding: 0;
3183.btn-info .caret, 1518 margin: 5px 10px 10px 10px;
3184.btn-success .caret, 1519 -webkit-margin-collapse: separate;
3185.btn-inverse .caret { 1520}
3186 border-top-color: #ffffff; 1521/* line 231, ../scss/include/_skeleton.scss */
3187 border-bottom-color: #ffffff; 1522#jqt ul,
1523#jqt ul.individual li {
1524 background-color: #555658;
1525 color: #d5d6d7;
1526 text-shadow: #3c3d3e 0 -1px 0;
1527 border: 1px solid #2f3031;
1528 font: bold 18px "Helvetica Neue", Helvetica;
1529}
1530/* line 240, ../scss/include/_skeleton.scss */
1531#jqt ul:first-child {
1532 margin-top: 15px;
3188} 1533}
3189.btn-group-vertical { 1534/* line 246, ../scss/include/_skeleton.scss */
3190 display: inline-block; 1535#jqt ul li {
3191 *display: inline; 1536 border-top: 1px solid #48494b;
3192 /* IE7 inline-block hack */ 1537 list-style-type: none;
1538 overflow: hidden;
1539 padding: 10px;
1540 -webkit-transform: translate3d(0, 0, 0);
1541 /* expensive way to avoid flickr */
3193 1542
3194 *zoom: 1;
3195}
3196.btn-group-vertical > .btn {
3197 display: block;
3198 float: none;
3199 max-width: 100%;
3200 -webkit-border-radius: 0;
3201 -moz-border-radius: 0;
3202 border-radius: 0;
3203}
3204.btn-group-vertical > .btn + .btn {
3205 margin-left: 0;
3206 margin-top: -1px;
3207}
3208.btn-group-vertical > .btn:first-child {
3209 -webkit-border-radius: 4px 4px 0 0;
3210 -moz-border-radius: 4px 4px 0 0;
3211 border-radius: 4px 4px 0 0;
3212}
3213.btn-group-vertical > .btn:last-child {
3214 -webkit-border-radius: 0 0 4px 4px;
3215 -moz-border-radius: 0 0 4px 4px;
3216 border-radius: 0 0 4px 4px;
3217}
3218.btn-group-vertical > .btn-large:first-child {
3219 -webkit-border-radius: 6px 6px 0 0;
3220 -moz-border-radius: 6px 6px 0 0;
3221 border-radius: 6px 6px 0 0;
3222}
3223.btn-group-vertical > .btn-large:last-child {
3224 -webkit-border-radius: 0 0 6px 6px;
3225 -moz-border-radius: 0 0 6px 6px;
3226 border-radius: 0 0 6px 6px;
3227}
3228.alert {
3229 padding: 8px 35px 8px 14px;
3230 margin-bottom: 20px;
3231 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3232 background-color: #fcf8e3;
3233 border: 1px solid #fbeed5;
3234 -webkit-border-radius: 4px;
3235 -moz-border-radius: 4px;
3236 border-radius: 4px;
3237}
3238.alert,
3239.alert h4 {
3240 color: #c09853;
3241}
3242.alert h4 {
3243 margin: 0;
3244}
3245.alert .close {
3246 position: relative;
3247 top: -2px;
3248 right: -21px;
3249 line-height: 20px;
3250}
3251.alert-success {
3252 background-color: #dff0d8;
3253 border-color: #d6e9c6;
3254 color: #468847;
3255}
3256.alert-success h4 {
3257 color: #468847;
3258}
3259.alert-danger,
3260.alert-error {
3261 background-color: #f2dede;
3262 border-color: #eed3d7;
3263 color: #b94a48;
3264}
3265.alert-danger h4,
3266.alert-error h4 {
3267 color: #b94a48;
3268}
3269.alert-info {
3270 background-color: #d9edf7;
3271 border-color: #bce8f1;
3272 color: #3a87ad;
3273} 1543}
3274.alert-info h4 { 1544/* line 253, ../scss/include/_skeleton.scss */
3275 color: #3a87ad; 1545#jqt ul li a {
3276}
3277.alert-block {
3278 padding-top: 14px;
3279 padding-bottom: 14px;
3280}
3281.alert-block > p,
3282.alert-block > ul {
3283 margin-bottom: 0;
3284}
3285.alert-block p + p {
3286 margin-top: 5px;
3287}
3288.nav {
3289 margin-left: 0;
3290 margin-bottom: 20px;
3291 list-style: none;
3292}
3293.nav > li > a {
3294 display: block;
3295}
3296.nav > li > a:hover {
3297 text-decoration: none; 1546 text-decoration: none;
3298 background-color: #eeeeee; 1547 text-overflow: ellipsis;
3299} 1548 white-space: nowrap;
3300.nav > li > a > img {
3301 max-width: none;
3302}
3303.nav > .pull-right {
3304 float: right;
3305}
3306.nav-header {
3307 display: block;
3308 padding: 3px 15px;
3309 font-size: 11px;
3310 font-weight: bold;
3311 line-height: 20px;
3312 color: #999999;
3313 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3314 text-transform: uppercase;
3315}
3316.nav li + .nav-header {
3317 margin-top: 9px;
3318}
3319.nav-list {
3320 padding-left: 15px;
3321 padding-right: 15px;
3322 margin-bottom: 0;
3323}
3324.nav-list > li > a,
3325.nav-list .nav-header {
3326 margin-left: -15px;
3327 margin-right: -15px;
3328 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
3329}
3330.nav-list > li > a {
3331 padding: 3px 15px;
3332}
3333.nav-list > .active > a,
3334.nav-list > .active > a:hover {
3335 color: #ffffff;
3336 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
3337 background-color: #0088cc;
3338}
3339.nav-list [class^="icon-"],
3340.nav-list [class*=" icon-"] {
3341 margin-right: 2px;
3342}
3343.nav-list .divider {
3344 *width: 100%;
3345 height: 1px;
3346 margin: 9px 1px;
3347 *margin: -5px 0 5px;
3348 overflow: hidden; 1549 overflow: hidden;
3349 background-color: #e5e5e5;
3350 border-bottom: 1px solid #ffffff;
3351}
3352.nav-tabs,
3353.nav-pills {
3354 *zoom: 1;
3355}
3356.nav-tabs:before,
3357.nav-pills:before,
3358.nav-tabs:after,
3359.nav-pills:after {
3360 display: table;
3361 content: "";
3362 line-height: 0;
3363}
3364.nav-tabs:after,
3365.nav-pills:after {
3366 clear: both;
3367}
3368.nav-tabs > li,
3369.nav-pills > li {
3370 float: left;
3371}
3372.nav-tabs > li > a,
3373.nav-pills > li > a {
3374 padding-right: 12px;
3375 padding-left: 12px;
3376 margin-right: 2px;
3377 line-height: 14px;
3378}
3379.nav-tabs {
3380 border-bottom: 1px solid #ddd;
3381}
3382.nav-tabs > li {
3383 margin-bottom: -1px;
3384}
3385.nav-tabs > li > a {
3386 padding-top: 8px;
3387 padding-bottom: 8px;
3388 line-height: 20px;
3389 border: 1px solid transparent;
3390 -webkit-border-radius: 4px 4px 0 0;
3391 -moz-border-radius: 4px 4px 0 0;
3392 border-radius: 4px 4px 0 0;
3393}
3394.nav-tabs > li > a:hover {
3395 border-color: #eeeeee #eeeeee #dddddd;
3396}
3397.nav-tabs > .active > a,
3398.nav-tabs > .active > a:hover {
3399 color: #555555;
3400 background-color: #ffffff;
3401 border: 1px solid #ddd;
3402 border-bottom-color: transparent;
3403 cursor: default;
3404}
3405.nav-pills > li > a {
3406 padding-top: 8px;
3407 padding-bottom: 8px;
3408 margin-top: 2px;
3409 margin-bottom: 2px;
3410 -webkit-border-radius: 5px;
3411 -moz-border-radius: 5px;
3412 border-radius: 5px;
3413}
3414.nav-pills > .active > a,
3415.nav-pills > .active > a:hover {
3416 color: #ffffff;
3417 background-color: #0088cc;
3418}
3419.nav-stacked > li {
3420 float: none;
3421}
3422.nav-stacked > li > a {
3423 margin-right: 0;
3424}
3425.nav-tabs.nav-stacked {
3426 border-bottom: 0;
3427}
3428.nav-tabs.nav-stacked > li > a {
3429 border: 1px solid #ddd;
3430 -webkit-border-radius: 0;
3431 -moz-border-radius: 0;
3432 border-radius: 0;
3433}
3434.nav-tabs.nav-stacked > li:first-child > a {
3435 -webkit-border-top-right-radius: 4px;
3436 -moz-border-radius-topright: 4px;
3437 border-top-right-radius: 4px;
3438 -webkit-border-top-left-radius: 4px;
3439 -moz-border-radius-topleft: 4px;
3440 border-top-left-radius: 4px;
3441}
3442.nav-tabs.nav-stacked > li:last-child > a {
3443 -webkit-border-bottom-right-radius: 4px;
3444 -moz-border-radius-bottomright: 4px;
3445 border-bottom-right-radius: 4px;
3446 -webkit-border-bottom-left-radius: 4px;
3447 -moz-border-radius-bottomleft: 4px;
3448 border-bottom-left-radius: 4px;
3449}
3450.nav-tabs.nav-stacked > li > a:hover {
3451 border-color: #ddd;
3452 z-index: 2;
3453}
3454.nav-pills.nav-stacked > li > a {
3455 margin-bottom: 3px;
3456}
3457.nav-pills.nav-stacked > li:last-child > a {
3458 margin-bottom: 1px;
3459}
3460.nav-tabs .dropdown-menu {
3461 -webkit-border-radius: 0 0 6px 6px;
3462 -moz-border-radius: 0 0 6px 6px;
3463 border-radius: 0 0 6px 6px;
3464}
3465.nav-pills .dropdown-menu {
3466 -webkit-border-radius: 6px;
3467 -moz-border-radius: 6px;
3468 border-radius: 6px;
3469}
3470.nav .dropdown-toggle .caret {
3471 border-top-color: #0088cc;
3472 border-bottom-color: #0088cc;
3473 margin-top: 6px;
3474}
3475.nav .dropdown-toggle:hover .caret {
3476 border-top-color: #005580;
3477 border-bottom-color: #005580;
3478}
3479/* move down carets for tabs */
3480.nav-tabs .dropdown-toggle .caret {
3481 margin-top: 8px;
3482}
3483.nav .active .dropdown-toggle .caret {
3484 border-top-color: #fff;
3485 border-bottom-color: #fff;
3486}
3487.nav-tabs .active .dropdown-toggle .caret {
3488 border-top-color: #555555;
3489 border-bottom-color: #555555;
3490}
3491.nav > .dropdown.active > a:hover {
3492 cursor: pointer;
3493}
3494.nav-tabs .open .dropdown-toggle,
3495.nav-pills .open .dropdown-toggle,
3496.nav > li.dropdown.open.active > a:hover {
3497 color: #ffffff;
3498 background-color: #999999;
3499 border-color: #999999;
3500}
3501.nav li.dropdown.open .caret,
3502.nav li.dropdown.open.active .caret,
3503.nav li.dropdown.open a:hover .caret {
3504 border-top-color: #ffffff;
3505 border-bottom-color: #ffffff;
3506 opacity: 1;
3507 filter: alpha(opacity=100);
3508}
3509.tabs-stacked .open > a:hover {
3510 border-color: #999999;
3511}
3512.tabbable {
3513 *zoom: 1;
3514}
3515.tabbable:before,
3516.tabbable:after {
3517 display: table;
3518 content: "";
3519 line-height: 0;
3520}
3521.tabbable:after {
3522 clear: both;
3523}
3524.tab-content {
3525 overflow: auto;
3526}
3527.tabs-below > .nav-tabs,
3528.tabs-right > .nav-tabs,
3529.tabs-left > .nav-tabs {
3530 border-bottom: 0;
3531}
3532.tab-content > .tab-pane,
3533.pill-content > .pill-pane {
3534 display: none;
3535}
3536.tab-content > .active,
3537.pill-content > .active {
3538 display: block;
3539}
3540.tabs-below > .nav-tabs {
3541 border-top: 1px solid #ddd;
3542}
3543.tabs-below > .nav-tabs > li {
3544 margin-top: -1px;
3545 margin-bottom: 0;
3546}
3547.tabs-below > .nav-tabs > li > a {
3548 -webkit-border-radius: 0 0 4px 4px;
3549 -moz-border-radius: 0 0 4px 4px;
3550 border-radius: 0 0 4px 4px;
3551}
3552.tabs-below > .nav-tabs > li > a:hover {
3553 border-bottom-color: transparent;
3554 border-top-color: #ddd;
3555}
3556.tabs-below > .nav-tabs > .active > a,
3557.tabs-below > .nav-tabs > .active > a:hover {
3558 border-color: transparent #ddd #ddd #ddd;
3559}
3560.tabs-left > .nav-tabs > li,
3561.tabs-right > .nav-tabs > li {
3562 float: none;
3563}
3564.tabs-left > .nav-tabs > li > a,
3565.tabs-right > .nav-tabs > li > a {
3566 min-width: 74px;
3567 margin-right: 0;
3568 margin-bottom: 3px;
3569}
3570.tabs-left > .nav-tabs {
3571 float: left;
3572 margin-right: 19px;
3573 border-right: 1px solid #ddd;
3574}
3575.tabs-left > .nav-tabs > li > a {
3576 margin-right: -1px;
3577 -webkit-border-radius: 4px 0 0 4px;
3578 -moz-border-radius: 4px 0 0 4px;
3579 border-radius: 4px 0 0 4px;
3580}
3581.tabs-left > .nav-tabs > li > a:hover {
3582 border-color: #eeeeee #dddddd #eeeeee #eeeeee;
3583}
3584.tabs-left > .nav-tabs .active > a,
3585.tabs-left > .nav-tabs .active > a:hover {
3586 border-color: #ddd transparent #ddd #ddd;
3587 *border-right-color: #ffffff;
3588}
3589.tabs-right > .nav-tabs {
3590 float: right;
3591 margin-left: 19px;
3592 border-left: 1px solid #ddd;
3593}
3594.tabs-right > .nav-tabs > li > a {
3595 margin-left: -1px;
3596 -webkit-border-radius: 0 4px 4px 0;
3597 -moz-border-radius: 0 4px 4px 0;
3598 border-radius: 0 4px 4px 0;
3599}
3600.tabs-right > .nav-tabs > li > a:hover {
3601 border-color: #eeeeee #eeeeee #eeeeee #dddddd;
3602}
3603.tabs-right > .nav-tabs .active > a,
3604.tabs-right > .nav-tabs .active > a:hover {
3605 border-color: #ddd #ddd #ddd transparent;
3606 *border-left-color: #ffffff;
3607}
3608.nav > .disabled > a {
3609 color: #999999;
3610}
3611.nav > .disabled > a:hover {
3612 text-decoration: none;
3613 background-color: transparent;
3614 cursor: default;
3615}
3616.navbar {
3617 overflow: visible;
3618 margin-bottom: 20px;
3619 *position: relative;
3620 *z-index: 2;
3621}
3622.navbar-inner {
3623 min-height: 40px;
3624 padding-left: 20px;
3625 padding-right: 20px;
3626 background-color: #fafafa;
3627 background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
3628 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
3629 background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
3630 background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
3631 background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
3632 background-repeat: repeat-x;
3633 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
3634 border: 1px solid #d4d4d4;
3635 -webkit-border-radius: 4px;
3636 -moz-border-radius: 4px;
3637 border-radius: 4px;
3638 -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
3639 -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
3640 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
3641 *zoom: 1;
3642}
3643.navbar-inner:before,
3644.navbar-inner:after {
3645 display: table;
3646 content: "";
3647 line-height: 0;
3648}
3649.navbar-inner:after {
3650 clear: both;
3651}
3652.navbar .container {
3653 width: auto;
3654}
3655.nav-collapse.collapse {
3656 height: auto;
3657 overflow: visible;
3658}
3659.navbar .brand {
3660 float: left;
3661 display: block; 1550 display: block;
3662 padding: 10px 20px 10px; 1551 padding: 10px;
3663 margin-left: -20px; 1552 margin: -10px;
3664 font-size: 20px; 1553 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
3665 font-weight: 200; 1554 -webkit-transform: translateZ(0);
3666 color: #777777; 1555 color: white;
3667 text-shadow: 0 1px 0 #ffffff; 1556 text-shadow: #3c3d3e 0 -1px 0;
3668} 1557}
3669.navbar .brand:hover { 1558/* line 265, ../scss/include/_skeleton.scss */
3670 text-decoration: none; 1559#jqt ul li a.active {
3671} 1560 background-image: none;
3672.navbar-text { 1561 background-color: #53b401;
3673 margin-bottom: 0; 1562 -webkit-box-shadow: #5cc801 0 1px 0px inset;
3674 line-height: 40px; 1563 box-shadow: #5cc801 0 1px 0px inset;
3675 color: #777777; 1564 color: white;
3676} 1565 text-shadow: #3c8101 0 -1px 0;
3677.navbar-link { 1566}
3678 color: #777777; 1567/* line 270, ../scss/include/_skeleton.scss */
3679} 1568#jqt ul li a.active small {
3680.navbar-link:hover { 1569 color: #a0fe50;
3681 color: #333333; 1570 text-shadow: #000000 0 -1px 0;
3682} 1571}
3683.navbar .divider-vertical { 1572/* line 271, ../scss/include/_skeleton.scss */
3684 height: 40px; 1573#jqt ul li a.active small.counter {
3685 margin: 0 9px; 1574 background-color: #306801;
3686 border-left: 1px solid #f2f2f2; 1575}
3687 border-right: 1px solid #ffffff; 1576/* line 280, ../scss/include/_skeleton.scss */
3688} 1577#jqt ul li small {
3689.navbar .btn, 1578 color: #53b401;
3690.navbar .btn-group { 1579 font: 16px "Helvetica Neue", Helvetica;
3691 margin-top: 5px; 1580 text-align: right;
3692} 1581 text-overflow: ellipsis;
3693.navbar .btn-group .btn,
3694.navbar .input-prepend .btn,
3695.navbar .input-append .btn {
3696 margin-top: 0;
3697}
3698.navbar-form {
3699 margin-bottom: 0;
3700 *zoom: 1;
3701}
3702.navbar-form:before,
3703.navbar-form:after {
3704 display: table;
3705 content: "";
3706 line-height: 0;
3707}
3708.navbar-form:after {
3709 clear: both;
3710}
3711.navbar-form input,
3712.navbar-form select,
3713.navbar-form .radio,
3714.navbar-form .checkbox {
3715 margin-top: 5px;
3716}
3717.navbar-form input,
3718.navbar-form select,
3719.navbar-form .btn {
3720 display: inline-block;
3721 margin-bottom: 0;
3722}
3723.navbar-form input[type="image"],
3724.navbar-form input[type="checkbox"],
3725.navbar-form input[type="radio"] {
3726 margin-top: 3px;
3727}
3728.navbar-form .input-append,
3729.navbar-form .input-prepend {
3730 margin-top: 5px;
3731 white-space: nowrap; 1582 white-space: nowrap;
3732} 1583 overflow: hidden;
3733.navbar-form .input-append input,
3734.navbar-form .input-prepend input {
3735 margin-top: 0;
3736}
3737.navbar-search {
3738 position: relative;
3739 float: left;
3740 margin-top: 5px;
3741 margin-bottom: 0;
3742}
3743.navbar-search .search-query {
3744 margin-bottom: 0;
3745 padding: 4px 14px;
3746 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
3747 font-size: 13px;
3748 font-weight: normal;
3749 line-height: 1;
3750 -webkit-border-radius: 15px;
3751 -moz-border-radius: 15px;
3752 border-radius: 15px;
3753}
3754.navbar-static-top {
3755 position: static;
3756 margin-bottom: 0;
3757}
3758.navbar-static-top .navbar-inner {
3759 -webkit-border-radius: 0;
3760 -moz-border-radius: 0;
3761 border-radius: 0;
3762}
3763.navbar-fixed-top,
3764.navbar-fixed-bottom {
3765 position: fixed;
3766 right: 0;
3767 left: 0;
3768 z-index: 1030;
3769 margin-bottom: 0;
3770}
3771.navbar-fixed-top .navbar-inner,
3772.navbar-static-top .navbar-inner {
3773 border-width: 0 0 1px;
3774}
3775.navbar-fixed-bottom .navbar-inner {
3776 border-width: 1px 0 0;
3777}
3778.navbar-fixed-top .navbar-inner,
3779.navbar-fixed-bottom .navbar-inner {
3780 padding-left: 0;
3781 padding-right: 0;
3782 -webkit-border-radius: 0;
3783 -moz-border-radius: 0;
3784 border-radius: 0;
3785}
3786.navbar-static-top .container,
3787.navbar-fixed-top .container,
3788.navbar-fixed-bottom .container {
3789 width: 940px;
3790}
3791.navbar-fixed-top {
3792 top: 0;
3793}
3794.navbar-fixed-top .navbar-inner,
3795.navbar-static-top .navbar-inner {
3796 -webkit-box-shadow: 0 1px 10px rgba(0,0,0,.1);
3797 -moz-box-shadow: 0 1px 10px rgba(0,0,0,.1);
3798 box-shadow: 0 1px 10px rgba(0,0,0,.1);
3799}
3800.navbar-fixed-bottom {
3801 bottom: 0;
3802}
3803.navbar-fixed-bottom .navbar-inner {
3804 -webkit-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
3805 -moz-box-shadow: 0 -1px 10px rgba(0,0,0,.1);
3806 box-shadow: 0 -1px 10px rgba(0,0,0,.1);
3807}
3808.navbar .nav {
3809 position: relative;
3810 left: 0;
3811 display: block; 1584 display: block;
3812 float: left; 1585 width: 23%;
3813 margin: 0 10px 0 0; 1586 position: relative;
3814} 1587 z-index: 20;
3815.navbar .nav.pull-right {
3816 float: right;
3817 margin-right: 0;
3818}
3819.navbar .nav > li {
3820 float: left;
3821}
3822.navbar .nav > li > a {
3823 float: none;
3824 padding: 10px 15px 10px;
3825 color: #777777;
3826 text-decoration: none;
3827 text-shadow: 0 1px 0 #ffffff;
3828}
3829.navbar .nav .dropdown-toggle .caret {
3830 margin-top: 8px;
3831}
3832.navbar .nav > li > a:focus,
3833.navbar .nav > li > a:hover {
3834 background-color: transparent;
3835 color: #333333;
3836 text-decoration: none;
3837}
3838.navbar .nav > .active > a,
3839.navbar .nav > .active > a:hover,
3840.navbar .nav > .active > a:focus {
3841 color: #555555;
3842 text-decoration: none;
3843 background-color: #e5e5e5;
3844 -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
3845 -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
3846 box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
3847}
3848.navbar .btn-navbar {
3849 display: none;
3850 float: right; 1588 float: right;
3851 padding: 7px 10px; 1589 line-height: 16px;
3852 margin-left: 5px; 1590 padding: 2px 8px 4px 8px;
3853 margin-right: 5px; 1591}
3854 color: #ffffff; 1592/* line 295, ../scss/include/_skeleton.scss */
3855 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 1593#jqt ul li small.counter {
3856 background-color: #ededed; 1594 background: #2f3031;
3857 background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5); 1595 color: #949698;
3858 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5)); 1596 text-shadow: #0a0a0a 0 -1px 0;
3859 background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5); 1597 z-index: 10;
3860 background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5); 1598 font-size: 16px;
3861 background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5); 1599 font-weight: bold;
3862 background-repeat: repeat-x; 1600 -webkit-border-radius: 3px;
3863 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0); 1601 border-radius: 3px;
3864 border-color: #e5e5e5 #e5e5e5 #bfbfbf;
3865 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3866 *background-color: #e5e5e5;
3867 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
3868
3869 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3870 -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
3871 -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
3872 box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
3873}
3874.navbar .btn-navbar:hover,
3875.navbar .btn-navbar:active,
3876.navbar .btn-navbar.active,
3877.navbar .btn-navbar.disabled,
3878.navbar .btn-navbar[disabled] {
3879 color: #ffffff;
3880 background-color: #e5e5e5;
3881 *background-color: #d9d9d9;
3882}
3883.navbar .btn-navbar:active,
3884.navbar .btn-navbar.active {
3885 background-color: #cccccc \9;
3886}
3887.navbar .btn-navbar .icon-bar {
3888 display: block; 1602 display: block;
3889 width: 18px; 1603 width: auto;
3890 height: 2px;
3891 background-color: #f5f5f5;
3892 -webkit-border-radius: 1px;
3893 -moz-border-radius: 1px;
3894 border-radius: 1px;
3895 -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
3896 -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
3897 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
3898}
3899.btn-navbar .icon-bar + .icon-bar {
3900 margin-top: 3px;
3901}
3902.navbar .nav > li > .dropdown-menu:before {
3903 content: '';
3904 display: inline-block;
3905 border-left: 7px solid transparent;
3906 border-right: 7px solid transparent;
3907 border-bottom: 7px solid #ccc;
3908 border-bottom-color: rgba(0, 0, 0, 0.2);
3909 position: absolute;
3910 top: -7px;
3911 left: 9px;
3912}
3913.navbar .nav > li > .dropdown-menu:after {
3914 content: '';
3915 display: inline-block;
3916 border-left: 6px solid transparent;
3917 border-right: 6px solid transparent;
3918 border-bottom: 6px solid #ffffff;
3919 position: absolute;
3920 top: -6px;
3921 left: 10px;
3922}
3923.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
3924 border-top: 7px solid #ccc;
3925 border-top-color: rgba(0, 0, 0, 0.2);
3926 border-bottom: 0;
3927 bottom: -7px;
3928 top: auto;
3929}
3930.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
3931 border-top: 6px solid #ffffff;
3932 border-bottom: 0;
3933 bottom: -6px;
3934 top: auto;
3935}
3936.navbar .nav li.dropdown > a:hover .caret {
3937 border-top-color: #555555;
3938 border-bottom-color: #555555;
3939}
3940.navbar .nav li.dropdown.open > .dropdown-toggle,
3941.navbar .nav li.dropdown.active > .dropdown-toggle,
3942.navbar .nav li.dropdown.open.active > .dropdown-toggle {
3943 background-color: #e5e5e5;
3944 color: #555555;
3945}
3946.navbar .nav li.dropdown > .dropdown-toggle .caret {
3947 border-top-color: #777777;
3948 border-bottom-color: #777777;
3949}
3950.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
3951.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
3952.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
3953 border-top-color: #555555;
3954 border-bottom-color: #555555;
3955}
3956.navbar .pull-right > li > .dropdown-menu,
3957.navbar .nav > li > .dropdown-menu.pull-right {
3958 left: auto;
3959 right: 0;
3960} 1604}
3961.navbar .pull-right > li > .dropdown-menu:before, 1605/* line 311, ../scss/include/_skeleton.scss */
3962.navbar .nav > li > .dropdown-menu.pull-right:before { 1606#jqt ul li ::-webkit-input-placeholder {
3963 left: auto; 1607 color: #949698;
3964 right: 12px; 1608 text-shadow: #3c3d3e 0 -1px 0;
3965} 1609}
3966.navbar .pull-right > li > .dropdown-menu:after, 1610/* line 322, ../scss/include/_skeleton.scss */
3967.navbar .nav > li > .dropdown-menu.pull-right:after { 1611#jqt ul li input[type="text"],
3968 left: auto; 1612#jqt ul li input[type="password"],
3969 right: 13px; 1613#jqt ul li input[type="tel"],
3970} 1614#jqt ul li input[type="number"],
3971.navbar .pull-right > li > .dropdown-menu .dropdown-menu, 1615#jqt ul li input[type="search"],
3972.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu { 1616#jqt ul li input[type="email"],
3973 left: auto; 1617#jqt ul li input[type="url"],
3974 right: 100%; 1618#jqt ul li textarea,
3975 margin-left: 0; 1619#jqt ul li select {
3976 margin-right: -1px; 1620 color: white;
3977 -webkit-border-radius: 6px 0 6px 6px; 1621 text-shadow: #3c3d3e 0 -1px 0;
3978 -moz-border-radius: 6px 0 6px 6px; 1622 background: transparent url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
3979 border-radius: 6px 0 6px 6px;
3980}
3981.navbar-inverse .navbar-inner {
3982 background-color: #1b1b1b;
3983 background-image: -moz-linear-gradient(top, #222222, #111111);
3984 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
3985 background-image: -webkit-linear-gradient(top, #222222, #111111);
3986 background-image: -o-linear-gradient(top, #222222, #111111);
3987 background-image: linear-gradient(to bottom, #222222, #111111);
3988 background-repeat: repeat-x;
3989 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
3990 border-color: #252525;
3991}
3992.navbar-inverse .brand,
3993.navbar-inverse .nav > li > a {
3994 color: #999999;
3995 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
3996}
3997.navbar-inverse .brand:hover,
3998.navbar-inverse .nav > li > a:hover {
3999 color: #ffffff;
4000}
4001.navbar-inverse .brand {
4002 color: #999999;
4003}
4004.navbar-inverse .navbar-text {
4005 color: #999999;
4006}
4007.navbar-inverse .nav > li > a:focus,
4008.navbar-inverse .nav > li > a:hover {
4009 background-color: transparent;
4010 color: #ffffff;
4011}
4012.navbar-inverse .nav .active > a,
4013.navbar-inverse .nav .active > a:hover,
4014.navbar-inverse .nav .active > a:focus {
4015 color: #ffffff;
4016 background-color: #111111;
4017}
4018.navbar-inverse .navbar-link {
4019 color: #999999;
4020}
4021.navbar-inverse .navbar-link:hover {
4022 color: #ffffff;
4023}
4024.navbar-inverse .divider-vertical {
4025 border-left-color: #111111;
4026 border-right-color: #222222;
4027}
4028.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
4029.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
4030.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
4031 background-color: #111111;
4032 color: #ffffff;
4033}
4034.navbar-inverse .nav li.dropdown > a:hover .caret {
4035 border-top-color: #ffffff;
4036 border-bottom-color: #ffffff;
4037}
4038.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
4039 border-top-color: #999999;
4040 border-bottom-color: #999999;
4041}
4042.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
4043.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
4044.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
4045 border-top-color: #ffffff;
4046 border-bottom-color: #ffffff;
4047}
4048.navbar-inverse .navbar-search .search-query {
4049 color: #ffffff;
4050 background-color: #515151;
4051 border-color: #111111;
4052 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
4053 -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
4054 box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
4055 -webkit-transition: none;
4056 -moz-transition: none;
4057 -o-transition: none;
4058 transition: none;
4059}
4060.navbar-inverse .navbar-search .search-query:-moz-placeholder {
4061 color: #cccccc;
4062}
4063.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
4064 color: #cccccc;
4065}
4066.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
4067 color: #cccccc;
4068}
4069.navbar-inverse .navbar-search .search-query:focus,
4070.navbar-inverse .navbar-search .search-query.focused {
4071 padding: 5px 15px;
4072 color: #333333;
4073 text-shadow: 0 1px 0 #ffffff;
4074 background-color: #ffffff;
4075 border: 0; 1623 border: 0;
4076 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); 1624 font: normal 17px "Helvetica Neue", Helvetica;
4077 -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); 1625 padding: 0;
4078 box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4079 outline: 0;
4080}
4081.navbar-inverse .btn-navbar {
4082 color: #ffffff;
4083 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4084 background-color: #0e0e0e;
4085 background-image: -moz-linear-gradient(top, #151515, #040404);
4086 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
4087 background-image: -webkit-linear-gradient(top, #151515, #040404);
4088 background-image: -o-linear-gradient(top, #151515, #040404);
4089 background-image: linear-gradient(to bottom, #151515, #040404);
4090 background-repeat: repeat-x;
4091 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
4092 border-color: #040404 #040404 #000000;
4093 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
4094 *background-color: #040404;
4095 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
4096
4097 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
4098}
4099.navbar-inverse .btn-navbar:hover,
4100.navbar-inverse .btn-navbar:active,
4101.navbar-inverse .btn-navbar.active,
4102.navbar-inverse .btn-navbar.disabled,
4103.navbar-inverse .btn-navbar[disabled] {
4104 color: #ffffff;
4105 background-color: #040404;
4106 *background-color: #000000;
4107}
4108.navbar-inverse .btn-navbar:active,
4109.navbar-inverse .btn-navbar.active {
4110 background-color: #000000 \9;
4111}
4112.breadcrumb {
4113 padding: 8px 15px;
4114 margin: 0 0 20px;
4115 list-style: none;
4116 background-color: #f5f5f5;
4117 -webkit-border-radius: 4px;
4118 -moz-border-radius: 4px;
4119 border-radius: 4px;
4120}
4121.breadcrumb > li {
4122 display: inline-block;
4123 *display: inline;
4124 /* IE7 inline-block hack */
4125
4126 *zoom: 1;
4127 text-shadow: 0 1px 0 #ffffff;
4128}
4129.breadcrumb > li > .divider {
4130 padding: 0 5px;
4131 color: #ccc;
4132}
4133.breadcrumb > .active {
4134 color: #999999;
4135}
4136.pagination {
4137 margin: 20px 0;
4138}
4139.pagination ul {
4140 display: inline-block;
4141 *display: inline;
4142 /* IE7 inline-block hack */
4143
4144 *zoom: 1;
4145 margin-left: 0;
4146 margin-bottom: 0;
4147 -webkit-border-radius: 4px;
4148 -moz-border-radius: 4px;
4149 border-radius: 4px;
4150 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4151 -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4152 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
4153}
4154.pagination ul > li {
4155 display: inline;
4156}
4157.pagination ul > li > a,
4158.pagination ul > li > span {
4159 float: left;
4160 padding: 4px 12px;
4161 line-height: 20px;
4162 text-decoration: none;
4163 background-color: #ffffff;
4164 border: 1px solid #dddddd;
4165 border-left-width: 0;
4166}
4167.pagination ul > li > a:hover,
4168.pagination ul > .active > a,
4169.pagination ul > .active > span {
4170 background-color: #f5f5f5;
4171}
4172.pagination ul > .active > a,
4173.pagination ul > .active > span {
4174 color: #999999;
4175 cursor: default;
4176}
4177.pagination ul > .disabled > span,
4178.pagination ul > .disabled > a,
4179.pagination ul > .disabled > a:hover {
4180 color: #999999;
4181 background-color: transparent;
4182 cursor: default;
4183}
4184.pagination ul > li:first-child > a,
4185.pagination ul > li:first-child > span {
4186 border-left-width: 1px;
4187 -webkit-border-top-left-radius: 4px;
4188 -moz-border-radius-topleft: 4px;
4189 border-top-left-radius: 4px;
4190 -webkit-border-bottom-left-radius: 4px;
4191 -moz-border-radius-bottomleft: 4px;
4192 border-bottom-left-radius: 4px;
4193}
4194.pagination ul > li:last-child > a,
4195.pagination ul > li:last-child > span {
4196 -webkit-border-top-right-radius: 4px;
4197 -moz-border-radius-topright: 4px;
4198 border-top-right-radius: 4px;
4199 -webkit-border-bottom-right-radius: 4px;
4200 -moz-border-radius-bottomright: 4px;
4201 border-bottom-right-radius: 4px;
4202}
4203.pagination-centered {
4204 text-align: center;
4205}
4206.pagination-right {
4207 text-align: right;
4208}
4209.pagination-large ul > li > a,
4210.pagination-large ul > li > span {
4211 padding: 11px 19px;
4212 font-size: 17.5px;
4213}
4214.pagination-large ul > li:first-child > a,
4215.pagination-large ul > li:first-child > span {
4216 -webkit-border-top-left-radius: 6px;
4217 -moz-border-radius-topleft: 6px;
4218 border-top-left-radius: 6px;
4219 -webkit-border-bottom-left-radius: 6px;
4220 -moz-border-radius-bottomleft: 6px;
4221 border-bottom-left-radius: 6px;
4222}
4223.pagination-large ul > li:last-child > a,
4224.pagination-large ul > li:last-child > span {
4225 -webkit-border-top-right-radius: 6px;
4226 -moz-border-radius-topright: 6px;
4227 border-top-right-radius: 6px;
4228 -webkit-border-bottom-right-radius: 6px;
4229 -moz-border-radius-bottomright: 6px;
4230 border-bottom-right-radius: 6px;
4231}
4232.pagination-mini ul > li:first-child > a,
4233.pagination-small ul > li:first-child > a,
4234.pagination-mini ul > li:first-child > span,
4235.pagination-small ul > li:first-child > span {
4236 -webkit-border-top-left-radius: 3px;
4237 -moz-border-radius-topleft: 3px;
4238 border-top-left-radius: 3px;
4239 -webkit-border-bottom-left-radius: 3px;
4240 -moz-border-radius-bottomleft: 3px;
4241 border-bottom-left-radius: 3px;
4242}
4243.pagination-mini ul > li:last-child > a,
4244.pagination-small ul > li:last-child > a,
4245.pagination-mini ul > li:last-child > span,
4246.pagination-small ul > li:last-child > span {
4247 -webkit-border-top-right-radius: 3px;
4248 -moz-border-radius-topright: 3px;
4249 border-top-right-radius: 3px;
4250 -webkit-border-bottom-right-radius: 3px;
4251 -moz-border-radius-bottomright: 3px;
4252 border-bottom-right-radius: 3px;
4253}
4254.pagination-small ul > li > a,
4255.pagination-small ul > li > span {
4256 padding: 2px 10px;
4257 font-size: 11.9px;
4258}
4259.pagination-mini ul > li > a,
4260.pagination-mini ul > li > span {
4261 padding: 0 6px;
4262 font-size: 10.5px;
4263}
4264.pager {
4265 margin: 20px 0;
4266 list-style: none;
4267 text-align: center;
4268 *zoom: 1;
4269}
4270.pager:before,
4271.pager:after {
4272 display: table;
4273 content: "";
4274 line-height: 0;
4275}
4276.pager:after {
4277 clear: both;
4278}
4279.pager li {
4280 display: inline;
4281}
4282.pager li > a,
4283.pager li > span {
4284 display: inline-block; 1626 display: inline-block;
4285 padding: 5px 14px; 1627 margin-left: 0px;
4286 background-color: #fff; 1628 width: 100%;
4287 border: 1px solid #ddd; 1629 -webkit-appearance: textarea;
4288 -webkit-border-radius: 15px;
4289 -moz-border-radius: 15px;
4290 border-radius: 15px;
4291}
4292.pager li > a:hover {
4293 text-decoration: none;
4294 background-color: #f5f5f5;
4295}
4296.pager .next > a,
4297.pager .next > span {
4298 float: right;
4299}
4300.pager .previous > a,
4301.pager .previous > span {
4302 float: left;
4303}
4304.pager .disabled > a,
4305.pager .disabled > a:hover,
4306.pager .disabled > span {
4307 color: #999999;
4308 background-color: #fff;
4309 cursor: default;
4310}
4311.modal-backdrop {
4312 position: fixed;
4313 top: 0;
4314 right: 0;
4315 bottom: 0;
4316 left: 0;
4317 z-index: 1040;
4318 background-color: #000000;
4319}
4320.modal-backdrop.fade {
4321 opacity: 0;
4322} 1630}
4323.modal-backdrop, 1631/* line 333, ../scss/include/_skeleton.scss */
4324.modal-backdrop.fade.in { 1632#jqt ul li textarea {
4325 opacity: 0.8; 1633 height: 120px;
4326 filter: alpha(opacity=80); 1634 padding: 0;
1635 text-indent: -2px;
4327} 1636}
4328.modal { 1637/* line 338, ../scss/include/_skeleton.scss */
4329 position: fixed; 1638#jqt ul li input[type="checkbox"],
4330 top: 10%; 1639#jqt ul li input[type="radio"] {
4331 left: 50%;
4332 z-index: 1050;
4333 width: 560px;
4334 margin-left: -280px;
4335 background-color: #ffffff;
4336 border: 1px solid #999;
4337 border: 1px solid rgba(0, 0, 0, 0.3);
4338 *border: 1px solid #999;
4339 /* IE6-7 */
4340
4341 -webkit-border-radius: 6px;
4342 -moz-border-radius: 6px;
4343 border-radius: 6px;
4344 -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4345 -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4346 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
4347 -webkit-background-clip: padding-box;
4348 -moz-background-clip: padding-box;
4349 background-clip: padding-box;
4350 outline: none;
4351}
4352.modal.fade {
4353 -webkit-transition: opacity .3s linear, top .3s ease-out;
4354 -moz-transition: opacity .3s linear, top .3s ease-out;
4355 -o-transition: opacity .3s linear, top .3s ease-out;
4356 transition: opacity .3s linear, top .3s ease-out;
4357 top: -25%;
4358}
4359.modal.fade.in {
4360 top: 10%;
4361}
4362.modal-header {
4363 padding: 9px 15px;
4364 border-bottom: 1px solid #eee;
4365}
4366.modal-header .close {
4367 margin-top: 2px;
4368}
4369.modal-header h3 {
4370 margin: 0; 1640 margin: 0;
4371 line-height: 30px; 1641 padding: 10px;
4372} 1642}
4373.modal-body { 1643/* line 342, ../scss/include/_skeleton.scss */
4374 position: relative; 1644#jqt ul li input[type="checkbox"]:after,
4375 overflow-y: auto; 1645#jqt ul li input[type="radio"]:after {
4376 max-height: 400px; 1646 content: attr(title);
4377 padding: 15px;
4378}
4379.modal-form {
4380 margin-bottom: 0;
4381}
4382.modal-footer {
4383 padding: 14px 15px 15px;
4384 margin-bottom: 0;
4385 text-align: right;
4386 background-color: #f5f5f5;
4387 border-top: 1px solid #ddd;
4388 -webkit-border-radius: 0 0 6px 6px;
4389 -moz-border-radius: 0 0 6px 6px;
4390 border-radius: 0 0 6px 6px;
4391 -webkit-box-shadow: inset 0 1px 0 #ffffff;
4392 -moz-box-shadow: inset 0 1px 0 #ffffff;
4393 box-shadow: inset 0 1px 0 #ffffff;
4394 *zoom: 1;
4395}
4396.modal-footer:before,
4397.modal-footer:after {
4398 display: table;
4399 content: "";
4400 line-height: 0;
4401}
4402.modal-footer:after {
4403 clear: both;
4404}
4405.modal-footer .btn + .btn {
4406 margin-left: 5px;
4407 margin-bottom: 0;
4408}
4409.modal-footer .btn-group .btn + .btn {
4410 margin-left: -1px;
4411}
4412.modal-footer .btn-block + .btn-block {
4413 margin-left: 0;
4414}
4415.tooltip {
4416 position: absolute; 1647 position: absolute;
4417 z-index: 1030;
4418 display: block; 1648 display: block;
4419 visibility: visible; 1649 width: 0;
4420 padding: 5px; 1650 left: 21px;
4421 font-size: 11px; 1651 top: 12px;
4422 opacity: 0; 1652 font-family: "Helvetica Neue", Helvetica;
4423 filter: alpha(opacity=0); 1653 font-size: 17px;
4424} 1654 line-height: 21px;
4425.tooltip.in { 1655 width: 246px;
4426 opacity: 0.8; 1656 margin: 0 0 0 17px;
4427 filter: alpha(opacity=80); 1657 color: white;
4428} 1658 text-shadow: #3c3d3e 0 -1px 0;
4429.tooltip.top { 1659}
4430 margin-top: -3px; 1660/* line 355, ../scss/include/_skeleton.scss */
4431} 1661#jqt ul li input[type='submit'] {
4432.tooltip.right {
4433 margin-left: 3px;
4434}
4435.tooltip.bottom {
4436 margin-top: 3px;
4437}
4438.tooltip.left {
4439 margin-left: -3px;
4440}
4441.tooltip-inner {
4442 max-width: 200px;
4443 padding: 3px 8px;
4444 color: #ffffff;
4445 text-align: center;
4446 text-decoration: none;
4447 background-color: #000000;
4448 -webkit-border-radius: 4px; 1662 -webkit-border-radius: 4px;
4449 -moz-border-radius: 4px;
4450 border-radius: 4px; 1663 border-radius: 4px;
4451} 1664 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
4452.tooltip-arrow { 1665 border: 1px outset #aaa;
4453 position: absolute;
4454 width: 0;
4455 height: 0;
4456 border-color: transparent;
4457 border-style: solid;
4458}
4459.tooltip.top .tooltip-arrow {
4460 bottom: 0;
4461 left: 50%;
4462 margin-left: -5px;
4463 border-width: 5px 5px 0;
4464 border-top-color: #000000;
4465}
4466.tooltip.right .tooltip-arrow {
4467 top: 50%;
4468 left: 0;
4469 margin-top: -5px;
4470 border-width: 5px 5px 5px 0;
4471 border-right-color: #000000;
4472}
4473.tooltip.left .tooltip-arrow {
4474 top: 50%;
4475 right: 0;
4476 margin-top: -5px;
4477 border-width: 5px 0 5px 5px;
4478 border-left-color: #000000;
4479}
4480.tooltip.bottom .tooltip-arrow {
4481 top: 0;
4482 left: 50%;
4483 margin-left: -5px;
4484 border-width: 0 5px 5px;
4485 border-bottom-color: #000000;
4486}
4487.popover {
4488 position: absolute;
4489 top: 0;
4490 left: 0;
4491 z-index: 1010;
4492 display: none;
4493 width: 236px;
4494 padding: 1px;
4495 text-align: left;
4496 background-color: #ffffff;
4497 -webkit-background-clip: padding-box;
4498 -moz-background-clip: padding;
4499 background-clip: padding-box;
4500 border: 1px solid #ccc;
4501 border: 1px solid rgba(0, 0, 0, 0.2);
4502 -webkit-border-radius: 6px;
4503 -moz-border-radius: 6px;
4504 border-radius: 6px;
4505 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4506 -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4507 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4508 white-space: normal;
4509}
4510.popover.top {
4511 margin-top: -10px;
4512}
4513.popover.right {
4514 margin-left: 10px;
4515}
4516.popover.bottom {
4517 margin-top: 10px;
4518}
4519.popover.left {
4520 margin-left: -10px;
4521}
4522.popover-title {
4523 margin: 0;
4524 padding: 8px 14px;
4525 font-size: 14px;
4526 font-weight: normal;
4527 line-height: 18px;
4528 background-color: #f7f7f7;
4529 border-bottom: 1px solid #ebebeb;
4530 -webkit-border-radius: 5px 5px 0 0;
4531 -moz-border-radius: 5px 5px 0 0;
4532 border-radius: 5px 5px 0 0;
4533}
4534.popover-content {
4535 padding: 9px 14px;
4536}
4537.popover .arrow,
4538.popover .arrow:after {
4539 position: absolute;
4540 display: block; 1666 display: block;
4541 width: 0; 1667 font-size: inherit;
4542 height: 0; 1668 font-weight: inherit;
4543 border-color: transparent; 1669 padding: 10px;
4544 border-style: solid;
4545} 1670}
4546.popover .arrow { 1671/* line 368, ../scss/include/_skeleton.scss */
4547 border-width: 11px; 1672#jqt ul li.arrow small,
1673#jqt ul li.forward small {
1674 margin-right: 24px;
4548} 1675}
4549.popover .arrow:after { 1676/* line 380, ../scss/include/_skeleton.scss */
4550 border-width: 10px; 1677#jqt ul li.forward:before {
4551 content: ""; 1678 content: "";
4552} 1679 position: absolute;
4553.popover.top .arrow { 1680 display: block;
4554 left: 50%;
4555 margin-left: -11px;
4556 border-bottom-width: 0;
4557 border-top-color: #999;
4558 border-top-color: rgba(0, 0, 0, 0.25);
4559 bottom: -11px;
4560}
4561.popover.top .arrow:after {
4562 bottom: 1px;
4563 margin-left: -10px;
4564 border-bottom-width: 0;
4565 border-top-color: #ffffff;
4566}
4567.popover.right .arrow {
4568 top: 50%;
4569 left: -11px;
4570 margin-top: -11px;
4571 border-left-width: 0;
4572 border-right-color: #999;
4573 border-right-color: rgba(0, 0, 0, 0.25);
4574}
4575.popover.right .arrow:after {
4576 left: 1px;
4577 bottom: -10px;
4578 border-left-width: 0;
4579 border-right-color: #ffffff;
4580}
4581.popover.bottom .arrow {
4582 left: 50%;
4583 margin-left: -11px;
4584 border-top-width: 0;
4585 border-bottom-color: #999;
4586 border-bottom-color: rgba(0, 0, 0, 0.25);
4587 top: -11px;
4588}
4589.popover.bottom .arrow:after {
4590 top: 1px;
4591 margin-left: -10px;
4592 border-top-width: 0;
4593 border-bottom-color: #ffffff;
4594}
4595.popover.left .arrow {
4596 top: 50%; 1681 top: 50%;
4597 right: -11px; 1682 right: 6px;
4598 margin-top: -11px; 1683 margin-top: -12px;
4599 border-right-width: 0; 1684 width: 24px;
4600 border-left-color: #999; 1685 height: 24px;
4601 border-left-color: rgba(0, 0, 0, 0.25); 1686 -webkit-border-radius: 12px;
4602} 1687 border-radius: 12px;
4603.popover.left .arrow:after { 1688 background-image: none;
4604 right: 1px; 1689 background-color: #53b401;
4605 border-right-width: 0; 1690 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));
4606 border-left-color: #ffffff; 1691 background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
4607 bottom: -10px; 1692 background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
4608} 1693 border: 2px solid #fff;
4609.thumbnails { 1694 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
4610 margin-left: -20px; 1695 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
4611 list-style: none; 1696 -webkit-box-sizing: border-box;
4612 *zoom: 1; 1697 padding: 0;
4613} 1698 z-index: 10;
4614.thumbnails:before,
4615.thumbnails:after {
4616 display: table;
4617 content: "";
4618 line-height: 0; 1699 line-height: 0;
1700 pointer-events: none;
4619} 1701}
4620.thumbnails:after { 1702/* line 395, ../scss/include/_skeleton.scss */
4621 clear: both; 1703#jqt ul li.forward:after {
4622} 1704 color: white;
4623.row-fluid .thumbnails { 1705 text-shadow: #3c8101 0 -1px 0;
4624 margin-left: 0; 1706 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
4625} 1707 opacity: 1;
4626.thumbnails > li { 1708 font-size: 24px;
4627 float: left; 1709}
4628 margin-bottom: 20px; 1710/* line 404, ../scss/include/_skeleton.scss */
4629 margin-left: 20px; 1711#jqt ul.rounded,
4630} 1712#jqt ul.individual li {
4631.thumbnail { 1713 -webkit-box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
4632 display: block; 1714 box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
4633 padding: 4px; 1715 border: 1px solid #2f3031;
4634 line-height: 20px; 1716}
4635 border: 1px solid #ddd; 1717/* line 409, ../scss/include/_skeleton.scss */
4636 -webkit-border-radius: 4px; 1718#jqt ul.rounded {
4637 -moz-border-radius: 4px; 1719 -webkit-border-radius: 8px;
4638 border-radius: 4px; 1720 border-radius: 8px;
4639 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); 1721}
4640 -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); 1722/* line 412, ../scss/include/_skeleton.scss */
4641 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); 1723#jqt ul.rounded li:first-child,
4642 -webkit-transition: all 0.2s ease-in-out; 1724#jqt ul.rounded li:first-child a {
4643 -moz-transition: all 0.2s ease-in-out; 1725 border-top: 0;
4644 -o-transition: all 0.2s ease-in-out; 1726 -webkit-border-top-left-radius: 8px;
4645 transition: all 0.2s ease-in-out; 1727 border-top-left-radius: 8px;
4646} 1728 -webkit-border-top-right-radius: 8px;
4647a.thumbnail:hover { 1729 border-top-right-radius: 8px;
4648 border-color: #0088cc; 1730}
4649 -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); 1731/* line 416, ../scss/include/_skeleton.scss */
4650 -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); 1732#jqt ul.rounded li:last-child,
4651 box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); 1733#jqt ul.rounded li:last-child a {
4652} 1734 -webkit-border-bottom-left-radius: 8px;
4653.thumbnail > img { 1735 border-bottom-left-radius: 8px;
4654 display: block; 1736 -webkit-border-bottom-right-radius: 8px;
4655 max-width: 100%; 1737 border-bottom-right-radius: 8px;
4656 margin-left: auto; 1738}
4657 margin-right: auto; 1739/* line 422, ../scss/include/_skeleton.scss */
1740#jqt ul.form li {
1741 padding: 7px 10px;
4658} 1742}
4659.thumbnail .caption { 1743/* line 425, ../scss/include/_skeleton.scss */
4660 padding: 9px; 1744#jqt ul.form li.error {
4661 color: #555555; 1745 border: 2px solid red;
4662} 1746}
4663.media, 1747/* line 428, ../scss/include/_skeleton.scss */
4664.media-body { 1748#jqt ul.form li.error + #jqt ul.form li.error {
4665 overflow: hidden; 1749 border-top: 0;
4666 *overflow: visible;
4667 zoom: 1;
4668} 1750}
4669.media, 1751/* line 438, ../scss/include/_skeleton.scss */
4670.media .media { 1752#jqt ul.metal li {
4671 margin-top: 15px; 1753 background-image: none;
1754 border-top: 1px solid #fff;
1755 border-bottom: 1px solid #666;
1756 font-size: 26px;
4672} 1757}
4673.media:first-child { 1758/* line 445, ../scss/include/_skeleton.scss */
4674 margin-top: 0; 1759#jqt ul.metal li a {
1760 line-height: 26px;
1761 margin: 0;
1762 padding: 13px 0;
4675} 1763}
4676.media-object { 1764/* line 451, ../scss/include/_skeleton.scss */
1765#jqt ul.metal li em {
4677 display: block; 1766 display: block;
4678} 1767 font-size: 14px;
4679.media-heading { 1768 font-style: normal;
4680 margin: 0 0 5px; 1769 width: 50%;
4681}
4682.media .pull-left {
4683 margin-right: 10px;
4684}
4685.media .pull-right {
4686 margin-left: 10px;
4687}
4688.media-list {
4689 margin-left: 0;
4690 list-style: none;
4691}
4692.label,
4693.badge {
4694 display: inline-block;
4695 padding: 2px 4px;
4696 font-size: 11.844px;
4697 font-weight: bold;
4698 line-height: 14px; 1770 line-height: 14px;
4699 color: #ffffff;
4700 vertical-align: baseline;
4701 white-space: nowrap;
4702 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
4703 background-color: #999999;
4704}
4705.label {
4706 -webkit-border-radius: 3px;
4707 -moz-border-radius: 3px;
4708 border-radius: 3px;
4709}
4710.badge {
4711 padding-left: 9px;
4712 padding-right: 9px;
4713 -webkit-border-radius: 9px;
4714 -moz-border-radius: 9px;
4715 border-radius: 9px;
4716}
4717.label:empty,
4718.badge:empty {
4719 display: none;
4720}
4721a.label:hover,
4722a.badge:hover {
4723 color: #ffffff;
4724 text-decoration: none;
4725 cursor: pointer;
4726} 1771}
4727.label-important, 1772/* line 459, ../scss/include/_skeleton.scss */
4728.badge-important { 1773#jqt ul.metal li small {
4729 background-color: #b94a48; 1774 float: right;
4730} 1775 position: relative;
4731.label-important[href], 1776 margin-top: 10px;
4732.badge-important[href] { 1777 font-weight: bold;
4733 background-color: #953b39;
4734}
4735.label-warning,
4736.badge-warning {
4737 background-color: #f89406;
4738}
4739.label-warning[href],
4740.badge-warning[href] {
4741 background-color: #c67605;
4742}
4743.label-success,
4744.badge-success {
4745 background-color: #468847;
4746}
4747.label-success[href],
4748.badge-success[href] {
4749 background-color: #356635;
4750}
4751.label-info,
4752.badge-info {
4753 background-color: #3a87ad;
4754}
4755.label-info[href],
4756.badge-info[href] {
4757 background-color: #2d6987;
4758} 1778}
4759.label-inverse, 1779/* line 473, ../scss/include/_skeleton.scss */
4760.badge-inverse { 1780#jqt ul.edgetoedge li {
4761 background-color: #333333; 1781 font-size: 20px;
4762} 1782}
4763.label-inverse[href], 1783/* line 476, ../scss/include/_skeleton.scss */
4764.badge-inverse[href] { 1784#jqt ul.edgetoedge li:first-child {
4765 background-color: #1a1a1a; 1785 border-top: 0;
4766} 1786}
4767.btn .label, 1787/* line 480, ../scss/include/_skeleton.scss */
4768.btn .badge { 1788#jqt ul.edgetoedge li.sep {
4769 position: relative; 1789 font-size: 16px;
4770 top: -1px; 1790 padding: 2px 10px;
4771} 1791}
4772.btn-mini .label, 1792/* line 485, ../scss/include/_skeleton.scss */
4773.btn-mini .badge { 1793#jqt ul.edgetoedge li em {
4774 top: 0; 1794 font-weight: normal;
1795 font-style: normal;
4775} 1796}
4776@-webkit-keyframes progress-bar-stripes { 1797/* line 494, ../scss/include/_skeleton.scss */
4777 from { 1798#jqt ul.plastic {
4778 background-position: 40px 0; 1799 font-size: 18px;
4779 }
4780 to {
4781 background-position: 0 0;
4782 }
4783} 1800}
4784@-moz-keyframes progress-bar-stripes { 1801/* line 498, ../scss/include/_skeleton.scss */
4785 from { 1802#jqt ul.plastic li {
4786 background-position: 40px 0; 1803 border-width: 1px 0;
4787 } 1804 border-style: solid;
4788 to { 1805 background-image: none;
4789 background-position: 0 0; 1806 background-color: #2a2b2c;
4790 } 1807 border-top-color: #2f3031;
1808 border-bottom-color: #232324;
4791} 1809}
4792@-ms-keyframes progress-bar-stripes { 1810/* line 506, ../scss/include/_skeleton.scss */
4793 from { 1811#jqt ul.plastic li:nth-child(odd) {
4794 background-position: 40px 0; 1812 background-image: none;
4795 } 1813 background-color: #2f3031;
4796 to {
4797 background-position: 0 0;
4798 }
4799} 1814}
4800@-o-keyframes progress-bar-stripes { 1815/* line 510, ../scss/include/_skeleton.scss */
4801 from { 1816#jqt ul.plastic li a.active.loading {
4802 background-position: 0 0; 1817 background-image: url(img/loading.gif);
4803 } 1818 background-position: 95% center;
4804 to { 1819 background-repeat: no-repeat;
4805 background-position: 40px 0;
4806 }
4807} 1820}
4808@keyframes progress-bar-stripes { 1821/* line 515, ../scss/include/_skeleton.scss */
4809 from { 1822#jqt ul.plastic li small {
4810 background-position: 40px 0; 1823 color: #949698;
4811 } 1824 font-size: 13px;
4812 to { 1825 font-weight: bold;
4813 background-position: 0 0; 1826 text-transform: uppercase;
4814 }
4815} 1827}
4816.progress { 1828/* line 525, ../scss/include/_skeleton.scss */
1829#jqt ul.individual {
1830 border: 0;
1831 background: none;
1832 clear: both;
4817 overflow: hidden; 1833 overflow: hidden;
4818 height: 20px;
4819 margin-bottom: 20px;
4820 background-color: #f7f7f7;
4821 background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
4822 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
4823 background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
4824 background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
4825 background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
4826 background-repeat: repeat-x;
4827 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
4828 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4829 -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4830 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4831 -webkit-border-radius: 4px;
4832 -moz-border-radius: 4px;
4833 border-radius: 4px;
4834} 1834}
4835.progress .bar { 1835/* line 531, ../scss/include/_skeleton.scss */
4836 width: 0%; 1836#jqt ul.individual li {
4837 height: 100%; 1837 font-size: 14px;
4838 color: #ffffff;
4839 float: left;
4840 font-size: 12px;
4841 text-align: center; 1838 text-align: center;
4842 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 1839 -webkit-border-radius: 8px;
4843 background-color: #0e90d2; 1840 border-radius: 8px;
4844 background-image: -moz-linear-gradient(top, #149bdf, #0480be);
4845 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
4846 background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
4847 background-image: -o-linear-gradient(top, #149bdf, #0480be);
4848 background-image: linear-gradient(to bottom, #149bdf, #0480be);
4849 background-repeat: repeat-x;
4850 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
4851 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4852 -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4853 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4854 -webkit-box-sizing: border-box; 1841 -webkit-box-sizing: border-box;
4855 -moz-box-sizing: border-box;
4856 box-sizing: border-box; 1842 box-sizing: border-box;
4857 -webkit-transition: width 0.6s ease; 1843 width: 48%;
4858 -moz-transition: width 0.6s ease; 1844 float: left;
4859 -o-transition: width 0.6s ease;
4860 transition: width 0.6s ease;
4861}
4862.progress .bar + .bar {
4863 -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
4864 -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
4865 box-shadow: inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15);
4866}
4867.progress-striped .bar {
4868 background-color: #149bdf;
4869 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4870 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4871 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4872 background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4873 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4874 -webkit-background-size: 40px 40px;
4875 -moz-background-size: 40px 40px;
4876 -o-background-size: 40px 40px;
4877 background-size: 40px 40px;
4878}
4879.progress.active .bar {
4880 -webkit-animation: progress-bar-stripes 2s linear infinite;
4881 -moz-animation: progress-bar-stripes 2s linear infinite;
4882 -ms-animation: progress-bar-stripes 2s linear infinite;
4883 -o-animation: progress-bar-stripes 2s linear infinite;
4884 animation: progress-bar-stripes 2s linear infinite;
4885}
4886.progress-danger .bar,
4887.progress .bar-danger {
4888 background-color: #dd514c;
4889 background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
4890 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
4891 background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
4892 background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
4893 background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
4894 background-repeat: repeat-x;
4895 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
4896}
4897.progress-danger.progress-striped .bar,
4898.progress-striped .bar-danger {
4899 background-color: #ee5f5b;
4900 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4901 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4902 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4903 background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4904 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4905}
4906.progress-success .bar,
4907.progress .bar-success {
4908 background-color: #5eb95e;
4909 background-image: -moz-linear-gradient(top, #62c462, #57a957);
4910 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
4911 background-image: -webkit-linear-gradient(top, #62c462, #57a957);
4912 background-image: -o-linear-gradient(top, #62c462, #57a957);
4913 background-image: linear-gradient(to bottom, #62c462, #57a957);
4914 background-repeat: repeat-x;
4915 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
4916}
4917.progress-success.progress-striped .bar,
4918.progress-striped .bar-success {
4919 background-color: #62c462;
4920 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4921 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4922 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4923 background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4924 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4925}
4926.progress-info .bar,
4927.progress .bar-info {
4928 background-color: #4bb1cf;
4929 background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
4930 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
4931 background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
4932 background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
4933 background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
4934 background-repeat: repeat-x;
4935 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
4936}
4937.progress-info.progress-striped .bar,
4938.progress-striped .bar-info {
4939 background-color: #5bc0de;
4940 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4941 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4942 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4943 background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4944 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4945}
4946.progress-warning .bar,
4947.progress .bar-warning {
4948 background-color: #faa732;
4949 background-image: -moz-linear-gradient(top, #fbb450, #f89406);
4950 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
4951 background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
4952 background-image: -o-linear-gradient(top, #fbb450, #f89406);
4953 background-image: linear-gradient(to bottom, #fbb450, #f89406);
4954 background-repeat: repeat-x;
4955 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
4956}
4957.progress-warning.progress-striped .bar,
4958.progress-striped .bar-warning {
4959 background-color: #fbb450;
4960 background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
4961 background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4962 background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4963 background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4964 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
4965}
4966.accordion {
4967 margin-bottom: 20px;
4968}
4969.accordion-group {
4970 margin-bottom: 2px;
4971 border: 1px solid #e5e5e5;
4972 -webkit-border-radius: 4px;
4973 -moz-border-radius: 4px;
4974 border-radius: 4px;
4975}
4976.accordion-heading {
4977 border-bottom: 0;
4978}
4979.accordion-heading .accordion-toggle {
4980 display: block; 1845 display: block;
4981 padding: 8px 15px; 1846 padding: 11px 10px 14px 10px;
4982}
4983.accordion-toggle {
4984 cursor: pointer;
4985}
4986.accordion-inner {
4987 padding: 9px 15px;
4988 border-top: 1px solid #e5e5e5;
4989} 1847}
4990.carousel { 1848/* line 541, ../scss/include/_skeleton.scss */
4991 position: relative; 1849#jqt ul.individual li + li {
4992 margin-bottom: 20px; 1850 float: right;
4993 line-height: 1;
4994}
4995.carousel-inner {
4996 overflow: hidden;
4997 width: 100%;
4998 position: relative;
4999} 1851}
5000.carousel-inner > .item { 1852/* line 546, ../scss/include/_skeleton.scss */
5001 display: none; 1853#jqt ul.individual a {
1854 line-height: 16px;
1855 margin: -11px -10px -14px -10px;
1856 padding: 11px 10px 14px 10px;
1857 -webkit-border-radius: 8px;
1858 border-radius: 8px;
1859}
1860/* line 555, ../scss/include/_skeleton.scss */
1861#jqt .toggle {
1862 width: 94px;
5002 position: relative; 1863 position: relative;
5003 -webkit-transition: 0.6s ease-in-out left; 1864 height: 27px;
5004 -moz-transition: 0.6s ease-in-out left;
5005 -o-transition: 0.6s ease-in-out left;
5006 transition: 0.6s ease-in-out left;
5007}
5008.carousel-inner > .item > img {
5009 display: block;
5010 line-height: 1;
5011}
5012.carousel-inner > .active,
5013.carousel-inner > .next,
5014.carousel-inner > .prev {
5015 display: block; 1865 display: block;
1866 overflow: hidden;
1867 float: right;
5016} 1868}
5017.carousel-inner > .active { 1869/* line 563, ../scss/include/_skeleton.scss */
5018 left: 0; 1870#jqt .toggle input[type="checkbox"] {
5019} 1871 margin: 0;
5020.carousel-inner > .next, 1872 -webkit-border-radius: 5px;
5021.carousel-inner > .prev { 1873 border-radius: 5px;
1874 height: 27px;
1875 overflow: hidden;
1876 width: 149px;
1877 border: 0;
1878 -webkit-transition: left 0.15s ease-in-out;
1879 transition: left 0.15s ease-in-out;
5022 position: absolute; 1880 position: absolute;
5023 top: 0; 1881 top: 0;
5024 width: 100%; 1882 left: -55px;
1883 -webkit-appearance: textarea;
1884 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
5025} 1885}
5026.carousel-inner > .next { 1886/* line 577, ../scss/include/_skeleton.scss */
5027 left: 100%; 1887#jqt .toggle input[type="checkbox"]:checked {
5028} 1888 left: 0px;
5029.carousel-inner > .prev {
5030 left: -100%;
5031}
5032.carousel-inner > .next.left,
5033.carousel-inner > .prev.right {
5034 left: 0;
5035} 1889}
5036.carousel-inner > .active.left { 1890/* line 583, ../scss/include/_skeleton.scss */
5037 left: -100%; 1891#jqt .info {
5038} 1892 font-size: 12px;
5039.carousel-inner > .active.right { 1893 line-height: 16px;
5040 left: 100%;
5041}
5042.carousel-control {
5043 position: absolute;
5044 top: 40%;
5045 left: 15px;
5046 width: 40px;
5047 height: 40px;
5048 margin-top: -20px;
5049 font-size: 60px;
5050 font-weight: 100;
5051 line-height: 30px;
5052 color: #ffffff;
5053 text-align: center; 1894 text-align: center;
5054 background: #222222; 1895 color: #444;
5055 border: 3px solid #ffffff;
5056 -webkit-border-radius: 23px;
5057 -moz-border-radius: 23px;
5058 border-radius: 23px;
5059 opacity: 0.5;
5060 filter: alpha(opacity=50);
5061}
5062.carousel-control.right {
5063 left: auto;
5064 right: 15px;
5065}
5066.carousel-control:hover {
5067 color: #ffffff;
5068 text-decoration: none;
5069 opacity: 0.9;
5070 filter: alpha(opacity=90);
5071}
5072.carousel-caption {
5073 position: absolute;
5074 left: 0;
5075 right: 0;
5076 bottom: 0;
5077 padding: 15px; 1896 padding: 15px;
5078 background: #333333; 1897 font-weight: bold;
5079 background: rgba(0, 0, 0, 0.75);
5080}
5081.carousel-caption h4,
5082.carousel-caption p {
5083 color: #ffffff;
5084 line-height: 20px;
5085}
5086.carousel-caption h4 {
5087 margin: 0 0 5px;
5088}
5089.carousel-caption p {
5090 margin-bottom: 0;
5091}
5092.hero-unit {
5093 padding: 60px;
5094 margin-bottom: 30px;
5095 font-size: 18px;
5096 font-weight: 200;
5097 line-height: 30px;
5098 color: inherit;
5099 background-color: #eeeeee;
5100 -webkit-border-radius: 6px;
5101 -moz-border-radius: 6px;
5102 border-radius: 6px;
5103}
5104.hero-unit h1 {
5105 margin-bottom: 0;
5106 font-size: 60px;
5107 line-height: 1;
5108 color: inherit;
5109 letter-spacing: -1px;
5110}
5111.hero-unit li {
5112 line-height: 30px;
5113}
5114.pull-right {
5115 float: right;
5116}
5117.pull-left {
5118 float: left;
5119}
5120.hide {
5121 display: none;
5122}
5123.show {
5124 display: block;
5125}
5126.invisible {
5127 visibility: hidden;
5128}
5129.affix {
5130 position: fixed;
5131}
5132.hidden {
5133 display: none;
5134 visibility: hidden;
5135}
5136.visible-phone {
5137 display: none !important;
5138}
5139.visible-tablet {
5140 display: none !important;
5141}
5142.hidden-desktop {
5143 display: none !important;
5144}
5145.visible-desktop {
5146 display: inherit !important;
5147}
5148@media (min-width: 768px) and (max-width: 979px) {
5149 .hidden-desktop {
5150 display: inherit !important;
5151 }
5152 .visible-desktop {
5153 display: none !important ;
5154 }
5155 .visible-tablet {
5156 display: inherit !important;
5157 }
5158 .hidden-tablet {
5159 display: none !important;
5160 }
5161} 1898}
5162@media (max-width: 767px) { 1899/* line 12, ../scss/jqtouch.scss */
5163 .hidden-desktop { 1900#jqt {
5164 display: inherit !important; 1901 /* Lists */
5165 } 1902
5166 .visible-desktop {
5167 display: none !important;
5168 }
5169 .visible-phone {
5170 display: inherit !important;
5171 }
5172 .hidden-phone {
5173 display: none !important;
5174 }
5175} 1903}
5176@media (min-width: 1200px) { 1904/* line 13, ../scss/jqtouch.scss */
5177 .row { 1905#jqt > * {
5178 margin-left: -30px; 1906 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));
5179 *zoom: 1; 1907 background-image: url('data:image/png;base64,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'), -webkit-linear-gradient(top, #7b7c7f, #696a6d 30%, #555658 65%, #464748);
5180 } 1908 background-image: url('data:image/png;base64,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'), linear-gradient(top, #7b7c7f, #696a6d 30%, #555658 65%, #464748);
5181 .row:before, 1909}
5182 .row:after { 1910/* line 20, ../scss/jqtouch.scss */
5183 display: table; 1911#jqt .toolbar {
5184 content: ""; 1912 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)));
5185 line-height: 0; 1913 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%);
5186 } 1914 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%);
5187 .row:after { 1915 background-repeat: repeat;
5188 clear: both; 1916 background-position: 0 0, 8px 8px, 0 1px, 8px 9px;
5189 } 1917 background-color: #2f3031;
5190 [class*="span"] { 1918 background-size: 16px 16px;
5191 float: left; 1919}
5192 min-height: 1px; 1920/* line 29, ../scss/jqtouch.scss */
5193 margin-left: 30px; 1921#jqt ul li {
5194 } 1922 border-top: 1px solid #48494b;
5195 .container, 1923 background-image: none;
5196 .navbar-static-top .container, 1924 background-color: rgba(85, 86, 88, 0.2);
5197 .navbar-fixed-top .container, 1925 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)));
5198 .navbar-fixed-bottom .container { 1926 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));
5199 width: 1170px; 1927 background-image: linear-gradient(top, rgba(123, 124, 127, 0.2), rgba(98, 99, 101, 0.2) 3%, rgba(72, 73, 75, 0.2));
5200 } 1928}
5201 .span12 { 1929/* line 33, ../scss/jqtouch.scss */
5202 width: 1170px; 1930#jqt ul li a {
5203 } 1931 color: white;
5204 .span11 { 1932 text-shadow: #3c3d3e 0 -1px 0;
5205 width: 1070px; 1933}
5206 } 1934/* line 37, ../scss/jqtouch.scss */
5207 .span10 { 1935#jqt ul li .toggle input[type="checkbox"] {
5208 width: 970px; 1936 -webkit-border-radius: 5px;
5209 } 1937 border-radius: 5px;
5210 .span9 { 1938 background: #ffffff url(../img/jqt/on_off.png) 0 0 no-repeat;
5211 width: 870px;
5212 }
5213 .span8 {
5214 width: 770px;
5215 }
5216 .span7 {
5217 width: 670px;
5218 }
5219 .span6 {
5220 width: 570px;
5221 }
5222 .span5 {
5223 width: 470px;
5224 }
5225 .span4 {
5226 width: 370px;
5227 }
5228 .span3 {
5229 width: 270px;
5230 }
5231 .span2 {
5232 width: 170px;
5233 }
5234 .span1 {
5235 width: 70px;
5236 }
5237 .offset12 {
5238 margin-left: 1230px;
5239 }
5240 .offset11 {
5241 margin-left: 1130px;
5242 }
5243 .offset10 {
5244 margin-left: 1030px;
5245 }
5246 .offset9 {
5247 margin-left: 930px;
5248 }
5249 .offset8 {
5250 margin-left: 830px;
5251 }
5252 .offset7 {
5253 margin-left: 730px;
5254 }
5255 .offset6 {
5256 margin-left: 630px;
5257 }
5258 .offset5 {
5259 margin-left: 530px;
5260 }
5261 .offset4 {
5262 margin-left: 430px;
5263 }
5264 .offset3 {
5265 margin-left: 330px;
5266 }
5267 .offset2 {
5268 margin-left: 230px;
5269 }
5270 .offset1 {
5271 margin-left: 130px;
5272 }
5273 .row-fluid {
5274 width: 100%;
5275 *zoom: 1;
5276 }
5277 .row-fluid:before,
5278 .row-fluid:after {
5279 display: table;
5280 content: "";
5281 line-height: 0;
5282 }
5283 .row-fluid:after {
5284 clear: both;
5285 }
5286 .row-fluid [class*="span"] {
5287 display: block;
5288 width: 100%;
5289 min-height: 30px;
5290 -webkit-box-sizing: border-box;
5291 -moz-box-sizing: border-box;
5292 box-sizing: border-box;
5293 float: left;
5294 margin-left: 2.564102564102564%;
5295 *margin-left: 2.5109110747408616%;
5296 }
5297 .row-fluid [class*="span"]:first-child {
5298 margin-left: 0;
5299 }
5300 .row-fluid .controls-row [class*="span"] + [class*="span"] {
5301 margin-left: 2.564102564102564%;
5302 }
5303 .row-fluid .span12 {
5304 width: 100%;
5305 *width: 99.94680851063829%;
5306 }
5307 .row-fluid .span11 {
5308 width: 91.45299145299145%;
5309 *width: 91.39979996362975%;
5310 }
5311 .row-fluid .span10 {
5312 width: 82.90598290598291%;
5313 *width: 82.8527914166212%;
5314 }
5315 .row-fluid .span9 {
5316 width: 74.35897435897436%;
5317 *width: 74.30578286961266%;
5318 }
5319 .row-fluid .span8 {
5320 width: 65.81196581196582%;
5321 *width: 65.75877432260411%;
5322 }
5323 .row-fluid .span7 {
5324 width: 57.26495726495726%;
5325 *width: 57.21176577559556%;
5326 }
5327 .row-fluid .span6 {
5328 width: 48.717948717948715%;
5329 *width: 48.664757228587014%;
5330 }
5331 .row-fluid .span5 {
5332 width: 40.17094017094017%;
5333 *width: 40.11774868157847%;
5334 }
5335 .row-fluid .span4 {
5336 width: 31.623931623931625%;
5337 *width: 31.570740134569924%;
5338 }
5339 .row-fluid .span3 {
5340 width: 23.076923076923077%;
5341 *width: 23.023731587561375%;
5342 }
5343 .row-fluid .span2 {
5344 width: 14.52991452991453%;
5345 *width: 14.476723040552828%;
5346 }
5347 .row-fluid .span1 {
5348 width: 5.982905982905983%;
5349 *width: 5.929714493544281%;
5350 }
5351 .row-fluid .offset12 {
5352 margin-left: 105.12820512820512%;
5353 *margin-left: 105.02182214948171%;
5354 }
5355 .row-fluid .offset12:first-child {
5356 margin-left: 102.56410256410257%;
5357 *margin-left: 102.45771958537915%;
5358 }
5359 .row-fluid .offset11 {
5360 margin-left: 96.58119658119658%;
5361 *margin-left: 96.47481360247316%;
5362 }
5363 .row-fluid .offset11:first-child {
5364 margin-left: 94.01709401709402%;
5365 *margin-left: 93.91071103837061%;
5366 }
5367 .row-fluid .offset10 {
5368 margin-left: 88.03418803418803%;
5369 *margin-left: 87.92780505546462%;
5370 }
5371 .row-fluid .offset10:first-child {
5372 margin-left: 85.47008547008548%;
5373 *margin-left: 85.36370249136206%;
5374 }
5375 .row-fluid .offset9 {
5376 margin-left: 79.48717948717949%;
5377 *margin-left: 79.38079650845607%;
5378 }
5379 .row-fluid .offset9:first-child {
5380 margin-left: 76.92307692307693%;
5381 *margin-left: 76.81669394435352%;
5382 }
5383 .row-fluid .offset8 {
5384 margin-left: 70.94017094017094%;
5385 *margin-left: 70.83378796144753%;
5386 }
5387 .row-fluid .offset8:first-child {
5388 margin-left: 68.37606837606839%;
5389 *margin-left: 68.26968539734497%;
5390 }
5391 .row-fluid .offset7 {
5392 margin-left: 62.393162393162385%;
5393 *margin-left: 62.28677941443899%;
5394 }
5395 .row-fluid .offset7:first-child {
5396 margin-left: 59.82905982905982%;
5397 *margin-left: 59.72267685033642%;
5398 }
5399 .row-fluid .offset6 {
5400 margin-left: 53.84615384615384%;
5401 *margin-left: 53.739770867430444%;
5402 }
5403 .row-fluid .offset6:first-child {
5404 margin-left: 51.28205128205128%;
5405 *margin-left: 51.175668303327875%;
5406 }
5407 .row-fluid .offset5 {
5408 margin-left: 45.299145299145295%;
5409 *margin-left: 45.1927623204219%;
5410 }
5411 .row-fluid .offset5:first-child {
5412 margin-left: 42.73504273504273%;
5413 *margin-left: 42.62865975631933%;
5414 }
5415 .row-fluid .offset4 {
5416 margin-left: 36.75213675213675%;
5417 *margin-left: 36.645753773413354%;
5418 }
5419 .row-fluid .offset4:first-child {
5420 margin-left: 34.18803418803419%;
5421 *margin-left: 34.081651209310785%;
5422 }
5423 .row-fluid .offset3 {
5424 margin-left: 28.205128205128204%;
5425 *margin-left: 28.0987452264048%;
5426 }
5427 .row-fluid .offset3:first-child {
5428 margin-left: 25.641025641025642%;
5429 *margin-left: 25.53464266230224%;
5430 }
5431 .row-fluid .offset2 {
5432 margin-left: 19.65811965811966%;
5433 *margin-left: 19.551736679396257%;
5434 }
5435 .row-fluid .offset2:first-child {
5436 margin-left: 17.094017094017094%;
5437 *margin-left: 16.98763411529369%;
5438 }
5439 .row-fluid .offset1 {
5440 margin-left: 11.11111111111111%;
5441 *margin-left: 11.004728132387708%;
5442 }
5443 .row-fluid .offset1:first-child {
5444 margin-left: 8.547008547008547%;
5445 *margin-left: 8.440625568285142%;
5446 }
5447 input,
5448 textarea,
5449 .uneditable-input {
5450 margin-left: 0;
5451 }
5452 .controls-row [class*="span"] + [class*="span"] {
5453 margin-left: 30px;
5454 }
5455 input.span12, textarea.span12, .uneditable-input.span12 {
5456 width: 1156px;
5457 }
5458 input.span11, textarea.span11, .uneditable-input.span11 {
5459 width: 1056px;
5460 }
5461 input.span10, textarea.span10, .uneditable-input.span10 {
5462 width: 956px;
5463 }
5464 input.span9, textarea.span9, .uneditable-input.span9 {
5465 width: 856px;
5466 }
5467 input.span8, textarea.span8, .uneditable-input.span8 {
5468 width: 756px;
5469 }
5470 input.span7, textarea.span7, .uneditable-input.span7 {
5471 width: 656px;
5472 }
5473 input.span6, textarea.span6, .uneditable-input.span6 {
5474 width: 556px;
5475 }
5476 input.span5, textarea.span5, .uneditable-input.span5 {
5477 width: 456px;
5478 }
5479 input.span4, textarea.span4, .uneditable-input.span4 {
5480 width: 356px;
5481 }
5482 input.span3, textarea.span3, .uneditable-input.span3 {
5483 width: 256px;
5484 }
5485 input.span2, textarea.span2, .uneditable-input.span2 {
5486 width: 156px;
5487 }
5488 input.span1, textarea.span1, .uneditable-input.span1 {
5489 width: 56px;
5490 }
5491 .thumbnails {
5492 margin-left: -30px;
5493 }
5494 .thumbnails > li {
5495 margin-left: 30px;
5496 }
5497 .row-fluid .thumbnails {
5498 margin-left: 0;
5499 }
5500} 1939}
5501@media (min-width: 768px) and (max-width: 979px) { 1940/* line 42, ../scss/jqtouch.scss */
5502 .row { 1941#jqt ul li input[type='submit'] {
5503 margin-left: -20px; 1942 background-image: none;
5504 *zoom: 1; 1943 background-color: white;
5505 } 1944 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));
5506 .row:before, 1945 background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 50%, #ffffff 51%, #f2f2f2);
5507 .row:after { 1946 background-image: linear-gradient(top, #ffffff, #ffffff 50%, #ffffff 51%, #f2f2f2);
5508 display: table; 1947 border: 1px outset black;
5509 content: ""; 1948}
5510 line-height: 0; 1949/* line 47, ../scss/jqtouch.scss */
5511 } 1950#jqt ul li small.counter {
5512 .row:after { 1951 -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
5513 clear: both; 1952 box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
5514 } 1953}
5515 [class*="span"] { 1954/* line 54, ../scss/jqtouch.scss */
5516 float: left; 1955#jqt ul.metal li {
5517 min-height: 1px; 1956 background-image: none;
5518 margin-left: 20px; 1957 border-top: 1px solid #fff;
5519 } 1958 border-bottom: 1px solid #666;
5520 .container, 1959 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
5521 .navbar-static-top .container,
5522 .navbar-fixed-top .container,
5523 .navbar-fixed-bottom .container {
5524 width: 724px;
5525 }
5526 .span12 {
5527 width: 724px;
5528 }
5529 .span11 {
5530 width: 662px;
5531 }
5532 .span10 {
5533 width: 600px;
5534 }
5535 .span9 {
5536 width: 538px;
5537 }
5538 .span8 {
5539 width: 476px;
5540 }
5541 .span7 {
5542 width: 414px;
5543 }
5544 .span6 {
5545 width: 352px;
5546 }
5547 .span5 {
5548 width: 290px;
5549 }
5550 .span4 {
5551 width: 228px;
5552 }
5553 .span3 {
5554 width: 166px;
5555 }
5556 .span2 {
5557 width: 104px;
5558 }
5559 .span1 {
5560 width: 42px;
5561 }
5562 .offset12 {
5563 margin-left: 764px;
5564 }
5565 .offset11 {
5566 margin-left: 702px;
5567 }
5568 .offset10 {
5569 margin-left: 640px;
5570 }
5571 .offset9 {
5572 margin-left: 578px;
5573 }
5574 .offset8 {
5575 margin-left: 516px;
5576 }
5577 .offset7 {
5578 margin-left: 454px;
5579 }
5580 .offset6 {
5581 margin-left: 392px;
5582 }
5583 .offset5 {
5584 margin-left: 330px;
5585 }
5586 .offset4 {
5587 margin-left: 268px;
5588 }
5589 .offset3 {
5590 margin-left: 206px;
5591 }
5592 .offset2 {
5593 margin-left: 144px;
5594 }
5595 .offset1 {
5596 margin-left: 82px;
5597 }
5598 .row-fluid {
5599 width: 100%;
5600 *zoom: 1;
5601 }
5602 .row-fluid:before,
5603 .row-fluid:after {
5604 display: table;
5605 content: "";
5606 line-height: 0;
5607 }
5608 .row-fluid:after {
5609 clear: both;
5610 }
5611 .row-fluid [class*="span"] {
5612 display: block;
5613 width: 100%;
5614 min-height: 30px;
5615 -webkit-box-sizing: border-box;
5616 -moz-box-sizing: border-box;
5617 box-sizing: border-box;
5618 float: left;
5619 margin-left: 2.7624309392265194%;
5620 *margin-left: 2.709239449864817%;
5621 }
5622 .row-fluid [class*="span"]:first-child {
5623 margin-left: 0;
5624 }
5625 .row-fluid .controls-row [class*="span"] + [class*="span"] {
5626 margin-left: 2.7624309392265194%;
5627 }
5628 .row-fluid .span12 {
5629 width: 100%;
5630 *width: 99.94680851063829%;
5631 }
5632 .row-fluid .span11 {
5633 width: 91.43646408839778%;
5634 *width: 91.38327259903608%;
5635 }
5636 .row-fluid .span10 {
5637 width: 82.87292817679558%;
5638 *width: 82.81973668743387%;
5639 }
5640 .row-fluid .span9 {
5641 width: 74.30939226519337%;
5642 *width: 74.25620077583166%;
5643 }
5644 .row-fluid .span8 {
5645 width: 65.74585635359117%;
5646 *width: 65.69266486422946%;
5647 }
5648 .row-fluid .span7 {
5649 width: 57.18232044198895%;
5650 *width: 57.12912895262725%;
5651 }
5652 .row-fluid .span6 {
5653 width: 48.61878453038674%;
5654 *width: 48.56559304102504%;
5655 }
5656 .row-fluid .span5 {
5657 width: 40.05524861878453%;
5658 *width: 40.00205712942283%;
5659 }
5660 .row-fluid .span4 {
5661 width: 31.491712707182323%;
5662 *width: 31.43852121782062%;
5663 }
5664 .row-fluid .span3 {
5665 width: 22.92817679558011%;
5666 *width: 22.87498530621841%;
5667 }
5668 .row-fluid .span2 {
5669 width: 14.3646408839779%;
5670 *width: 14.311449394616199%;
5671 }
5672 .row-fluid .span1 {
5673 width: 5.801104972375691%;
5674 *width: 5.747913483013988%;
5675 }
5676 .row-fluid .offset12 {
5677 margin-left: 105.52486187845304%;
5678 *margin-left: 105.41847889972962%;
5679 }
5680 .row-fluid .offset12:first-child {
5681 margin-left: 102.76243093922652%;
5682 *margin-left: 102.6560479605031%;
5683 }
5684 .row-fluid .offset11 {
5685 margin-left: 96.96132596685082%;
5686 *margin-left: 96.8549429881274%;
5687 }
5688 .row-fluid .offset11:first-child {
5689 margin-left: 94.1988950276243%;
5690 *margin-left: 94.09251204890089%;
5691 }
5692 .row-fluid .offset10 {
5693 margin-left: 88.39779005524862%;
5694 *margin-left: 88.2914070765252%;
5695 }
5696 .row-fluid .offset10:first-child {
5697 margin-left: 85.6353591160221%;
5698 *margin-left: 85.52897613729868%;
5699 }
5700 .row-fluid .offset9 {
5701 margin-left: 79.8342541436464%;
5702 *margin-left: 79.72787116492299%;
5703 }
5704 .row-fluid .offset9:first-child {
5705 margin-left: 77.07182320441989%;
5706 *margin-left: 76.96544022569647%;
5707 }
5708 .row-fluid .offset8 {
5709 margin-left: 71.2707182320442%;
5710 *margin-left: 71.16433525332079%;
5711 }
5712 .row-fluid .offset8:first-child {
5713 margin-left: 68.50828729281768%;
5714 *margin-left: 68.40190431409427%;
5715 }
5716 .row-fluid .offset7 {
5717 margin-left: 62.70718232044199%;
5718 *margin-left: 62.600799341718584%;
5719 }
5720 .row-fluid .offset7:first-child {
5721 margin-left: 59.94475138121547%;
5722 *margin-left: 59.838368402492065%;
5723 }
5724 .row-fluid .offset6 {
5725 margin-left: 54.14364640883978%;
5726 *margin-left: 54.037263430116376%;
5727 }
5728 .row-fluid .offset6:first-child {
5729 margin-left: 51.38121546961326%;
5730 *margin-left: 51.27483249088986%;
5731 }
5732 .row-fluid .offset5 {
5733 margin-left: 45.58011049723757%;
5734 *margin-left: 45.47372751851417%;
5735 }
5736 .row-fluid .offset5:first-child {
5737 margin-left: 42.81767955801105%;
5738 *margin-left: 42.71129657928765%;
5739 }
5740 .row-fluid .offset4 {
5741 margin-left: 37.01657458563536%;
5742 *margin-left: 36.91019160691196%;
5743 }
5744 .row-fluid .offset4:first-child {
5745 margin-left: 34.25414364640884%;
5746 *margin-left: 34.14776066768544%;
5747 }
5748 .row-fluid .offset3 {
5749 margin-left: 28.45303867403315%;
5750 *margin-left: 28.346655695309746%;
5751 }
5752 .row-fluid .offset3:first-child {
5753 margin-left: 25.69060773480663%;
5754 *margin-left: 25.584224756083227%;
5755 }
5756 .row-fluid .offset2 {
5757 margin-left: 19.88950276243094%;
5758 *margin-left: 19.783119783707537%;
5759 }
5760 .row-fluid .offset2:first-child {
5761 margin-left: 17.12707182320442%;
5762 *margin-left: 17.02068884448102%;
5763 }
5764 .row-fluid .offset1 {
5765 margin-left: 11.32596685082873%;
5766 *margin-left: 11.219583872105325%;
5767 }
5768 .row-fluid .offset1:first-child {
5769 margin-left: 8.56353591160221%;
5770 *margin-left: 8.457152932878806%;
5771 }
5772 input,
5773 textarea,
5774 .uneditable-input {
5775 margin-left: 0;
5776 }
5777 .controls-row [class*="span"] + [class*="span"] {
5778 margin-left: 20px;
5779 }
5780 input.span12, textarea.span12, .uneditable-input.span12 {
5781 width: 710px;
5782 }
5783 input.span11, textarea.span11, .uneditable-input.span11 {
5784 width: 648px;
5785 }
5786 input.span10, textarea.span10, .uneditable-input.span10 {
5787 width: 586px;
5788 }
5789 input.span9, textarea.span9, .uneditable-input.span9 {
5790 width: 524px;
5791 }
5792 input.span8, textarea.span8, .uneditable-input.span8 {
5793 width: 462px;
5794 }
5795 input.span7, textarea.span7, .uneditable-input.span7 {
5796 width: 400px;
5797 }
5798 input.span6, textarea.span6, .uneditable-input.span6 {
5799 width: 338px;
5800 }
5801 input.span5, textarea.span5, .uneditable-input.span5 {
5802 width: 276px;
5803 }
5804 input.span4, textarea.span4, .uneditable-input.span4 {
5805 width: 214px;
5806 }
5807 input.span3, textarea.span3, .uneditable-input.span3 {
5808 width: 152px;
5809 }
5810 input.span2, textarea.span2, .uneditable-input.span2 {
5811 width: 90px;
5812 }
5813 input.span1, textarea.span1, .uneditable-input.span1 {
5814 width: 28px;
5815 }
5816} 1960}
5817@media (max-width: 767px) { 1961/* line 60, ../scss/jqtouch.scss */
5818 body { 1962#jqt ul.metal li a {
5819 padding-left: 20px; 1963 text-shadow: #fff 0 1px 0;
5820 padding-right: 20px;
5821 }
5822 .navbar-fixed-top,
5823 .navbar-fixed-bottom,
5824 .navbar-static-top {
5825 margin-left: -20px;
5826 margin-right: -20px;
5827 }
5828 .container-fluid {
5829 padding: 0;
5830 }
5831 .dl-horizontal dt {
5832 float: none;
5833 clear: none;
5834 width: auto;
5835 text-align: left;
5836 }
5837 .dl-horizontal dd {
5838 margin-left: 0;
5839 }
5840 .container {
5841 width: auto;
5842 }
5843 .row-fluid {
5844 width: 100%;
5845 }
5846 .row,
5847 .thumbnails {
5848 margin-left: 0;
5849 }
5850 .thumbnails > li {
5851 float: none;
5852 margin-left: 0;
5853 }
5854 [class*="span"],
5855 .uneditable-input[class*="span"],
5856 .row-fluid [class*="span"] {
5857 float: none;
5858 display: block;
5859 width: 100%;
5860 margin-left: 0;
5861 -webkit-box-sizing: border-box;
5862 -moz-box-sizing: border-box;
5863 box-sizing: border-box;
5864 }
5865 .span12,
5866 .row-fluid .span12 {
5867 width: 100%;
5868 -webkit-box-sizing: border-box;
5869 -moz-box-sizing: border-box;
5870 box-sizing: border-box;
5871 }
5872 .row-fluid [class*="offset"]:first-child {
5873 margin-left: 0;
5874 }
5875 .input-large,
5876 .input-xlarge,
5877 .input-xxlarge,
5878 input[class*="span"],
5879 select[class*="span"],
5880 textarea[class*="span"],
5881 .uneditable-input {
5882 display: block;
5883 width: 100%;
5884 min-height: 30px;
5885 -webkit-box-sizing: border-box;
5886 -moz-box-sizing: border-box;
5887 box-sizing: border-box;
5888 }
5889 .input-prepend input,
5890 .input-append input,
5891 .input-prepend input[class*="span"],
5892 .input-append input[class*="span"] {
5893 display: inline-block;
5894 width: auto;
5895 }
5896 .controls-row [class*="span"] + [class*="span"] {
5897 margin-left: 0;
5898 }
5899 .modal {
5900 position: fixed;
5901 top: 20px;
5902 left: 20px;
5903 right: 20px;
5904 width: auto;
5905 margin: 0;
5906 }
5907 .modal.fade {
5908 top: -100px;
5909 }
5910 .modal.fade.in {
5911 top: 20px;
5912 }
5913} 1964}
5914@media (max-width: 480px) { 1965/* line 62, ../scss/jqtouch.scss */
5915 .nav-collapse { 1966#jqt ul.metal li a.active {
5916 -webkit-transform: translate3d(0, 0, 0); 1967 color: #000;
5917 }
5918 .page-header h1 small {
5919 display: block;
5920 line-height: 20px;
5921 }
5922 input[type="checkbox"],
5923 input[type="radio"] {
5924 border: 1px solid #ccc;
5925 }
5926 .form-horizontal .control-label {
5927 float: none;
5928 width: auto;
5929 padding-top: 0;
5930 text-align: left;
5931 }
5932 .form-horizontal .controls {
5933 margin-left: 0;
5934 }
5935 .form-horizontal .control-list {
5936 padding-top: 0;
5937 }
5938 .form-horizontal .form-actions {
5939 padding-left: 10px;
5940 padding-right: 10px;
5941 }
5942 .media .pull-left,
5943 .media .pull-right {
5944 float: none;
5945 display: block;
5946 margin-bottom: 10px;
5947 }
5948 .media-object {
5949 margin-right: 0;
5950 margin-left: 0;
5951 }
5952 .modal {
5953 top: 10px;
5954 left: 10px;
5955 right: 10px;
5956 }
5957 .modal-header .close {
5958 padding: 10px;
5959 margin: -10px;
5960 }
5961 .carousel-caption {
5962 position: static;
5963 }
5964} 1968}
5965@media (max-width: 979px) { 1969/* line 65, ../scss/jqtouch.scss */
5966 body { 1970#jqt ul.metal li em {
5967 padding-top: 0; 1971 color: #444;
5968 }
5969 .navbar-fixed-top,
5970 .navbar-fixed-bottom {
5971 position: static;
5972 }
5973 .navbar-fixed-top {
5974 margin-bottom: 20px;
5975 }
5976 .navbar-fixed-bottom {
5977 margin-top: 20px;
5978 }
5979 .navbar-fixed-top .navbar-inner,
5980 .navbar-fixed-bottom .navbar-inner {
5981 padding: 5px;
5982 }
5983 .navbar .container {
5984 width: auto;
5985 padding: 0;
5986 }
5987 .navbar .brand {
5988 padding-left: 10px;
5989 padding-right: 10px;
5990 margin: 0 0 0 -5px;
5991 }
5992 .nav-collapse {
5993 clear: both;
5994 }
5995 .nav-collapse .nav {
5996 float: none;
5997 margin: 0 0 10px;
5998 }
5999 .nav-collapse .nav > li {
6000 float: none;
6001 }
6002 .nav-collapse .nav > li > a {
6003 margin-bottom: 2px;
6004 }
6005 .nav-collapse .nav > .divider-vertical {
6006 display: none;
6007 }
6008 .nav-collapse .nav .nav-header {
6009 color: #777777;
6010 text-shadow: none;
6011 }
6012 .nav-collapse .nav > li > a,
6013 .nav-collapse .dropdown-menu a {
6014 padding: 9px 15px;
6015 font-weight: bold;
6016 color: #777777;
6017 -webkit-border-radius: 3px;
6018 -moz-border-radius: 3px;
6019 border-radius: 3px;
6020 }
6021 .nav-collapse .btn {
6022 padding: 4px 10px 4px;
6023 font-weight: normal;
6024 -webkit-border-radius: 4px;
6025 -moz-border-radius: 4px;
6026 border-radius: 4px;
6027 }
6028 .nav-collapse .dropdown-menu li + li a {
6029 margin-bottom: 2px;
6030 }
6031 .nav-collapse .nav > li > a:hover,
6032 .nav-collapse .dropdown-menu a:hover {
6033 background-color: #f2f2f2;
6034 }
6035 .navbar-inverse .nav-collapse .nav > li > a,
6036 .navbar-inverse .nav-collapse .dropdown-menu a {
6037 color: #999999;
6038 }
6039 .navbar-inverse .nav-collapse .nav > li > a:hover,
6040 .navbar-inverse .nav-collapse .dropdown-menu a:hover {
6041 background-color: #111111;
6042 }
6043 .nav-collapse.in .btn-group {
6044 margin-top: 5px;
6045 padding: 0;
6046 }
6047 .nav-collapse .dropdown-menu {
6048 position: static;
6049 top: auto;
6050 left: auto;
6051 float: none;
6052 display: none;
6053 max-width: none;
6054 margin: 0 15px;
6055 padding: 0;
6056 background-color: transparent;
6057 border: none;
6058 -webkit-border-radius: 0;
6059 -moz-border-radius: 0;
6060 border-radius: 0;
6061 -webkit-box-shadow: none;
6062 -moz-box-shadow: none;
6063 box-shadow: none;
6064 }
6065 .nav-collapse .open > .dropdown-menu {
6066 display: block;
6067 }
6068 .nav-collapse .dropdown-menu:before,
6069 .nav-collapse .dropdown-menu:after {
6070 display: none;
6071 }
6072 .nav-collapse .dropdown-menu .divider {
6073 display: none;
6074 }
6075 .nav-collapse .nav > li > .dropdown-menu:before,
6076 .nav-collapse .nav > li > .dropdown-menu:after {
6077 display: none;
6078 }
6079 .nav-collapse .navbar-form,
6080 .nav-collapse .navbar-search {
6081 float: none;
6082 padding: 10px 15px;
6083 margin: 10px 0;
6084 border-top: 1px solid #f2f2f2;
6085 border-bottom: 1px solid #f2f2f2;
6086 -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
6087 -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
6088 box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
6089 }
6090 .navbar-inverse .nav-collapse .navbar-form,
6091 .navbar-inverse .nav-collapse .navbar-search {
6092 border-top-color: #111111;
6093 border-bottom-color: #111111;
6094 }
6095 .navbar .nav-collapse .nav.pull-right {
6096 float: none;
6097 margin-left: 0;
6098 }
6099 .nav-collapse,
6100 .nav-collapse.collapse {
6101 overflow: hidden;
6102 height: 0;
6103 }
6104 .navbar .btn-navbar {
6105 display: block;
6106 }
6107 .navbar-static .navbar-inner {
6108 padding-left: 10px;
6109 padding-right: 10px;
6110 }
6111} 1972}
6112@media (min-width: 980px) { 1973/* line 71, ../scss/jqtouch.scss */
6113 .nav-collapse.collapse { 1974#jqt ul.edgetoedge li {
6114 height: auto !important; 1975 background-image: none;
6115 overflow: visible !important; 1976 background-color: #3c3d3e;
6116 } 1977 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #282829), color-stop(100%, #2f3031));
1978 background-image: -webkit-linear-gradient(top, #282829, #2f3031);
1979 background-image: linear-gradient(top, #282829, #2f3031);
1980 border-bottom: 1px solid #1e1e1f;
1981 border-top: 1px solid #343536;
1982}
1983/* line 76, ../scss/jqtouch.scss */
1984#jqt ul.edgetoedge li.sep {
1985 background-image: none;
1986 background-color: rgba(0, 0, 0, 0.3);
1987 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)));
1988 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));
1989 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));
1990 color: #949698;
1991 text-shadow: #000000 0 -1px 0;
1992}
1993/* line 83, ../scss/jqtouch.scss */
1994#jqt .info {
1995 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cccccc), to(#aaaaaa), color-stop(0.6, #cccccc));
1996 text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
1997 color: #444;
1998 border-top: 1px solid rgba(255, 255, 255, 0.2);
6117} 1999}
6118div.spinner { 2000div.spinner {
6119 position: relative; 2001 position: relative;
6120 width: 100px; 2002 width: 100px;
6121 height: 100px; 2003 height: 100px;
6122 display: inline-block; 2004 display: inline-block;
6123} 2005}
6124div.spinner div { 2006div.spinner div {
6125 width: 12%; 2007 width: 12%;
6126 height: 26%; 2008 height: 26%;
6127 background: #000; 2009 background: #000;
6128 position: absolute; 2010 position: absolute;
6129 left: 44.5%; 2011 left: 44.5%;
6130 top: 37%; 2012 top: 37%;
6131 opacity: 0; 2013 opacity: 0;
6132 -webkit-animation: fade 1s linear infinite; 2014 -webkit-animation: fade 1s linear infinite;
6133 -webkit-border-radius: 50px; 2015 -webkit-border-radius: 50px;
6134 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 2016 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
6135} 2017}
6136div.spinner div.bar01 { 2018div.spinner div.bar01 {
6137 -webkit-transform: rotate(0deg) translate(0, -142%); 2019 -webkit-transform: rotate(0deg) translate(0, -142%);
6138 -webkit-animation-delay: 0s; 2020 -webkit-animation-delay: 0s;
6139} 2021}
6140div.spinner div.bar02 { 2022div.spinner div.bar02 {
@@ -6168,24 +2050,520 @@ div.spinner div.bar08 {
6168div.spinner div.bar09 { 2050div.spinner div.bar09 {
6169 -webkit-transform: rotate(240deg) translate(0, -142%); 2051 -webkit-transform: rotate(240deg) translate(0, -142%);
6170 -webkit-animation-delay: -0.333s; 2052 -webkit-animation-delay: -0.333s;
6171} 2053}
6172div.spinner div.bar10 { 2054div.spinner div.bar10 {
6173 -webkit-transform: rotate(270deg) translate(0, -142%); 2055 -webkit-transform: rotate(270deg) translate(0, -142%);
6174 -webkit-animation-delay: -0.25s; 2056 -webkit-animation-delay: -0.25s;
6175} 2057}
6176div.spinner div.bar11 { 2058div.spinner div.bar11 {
6177 -webkit-transform: rotate(300deg) translate(0, -142%); 2059 -webkit-transform: rotate(300deg) translate(0, -142%);
6178 -webkit-animation-delay: -0.1667s; 2060 -webkit-animation-delay: -0.1667s;
6179} 2061}
6180div.spinner div.bar12 { 2062div.spinner div.bar12 {
6181 -webkit-transform: rotate(330deg) translate(0, -142%); 2063 -webkit-transform: rotate(330deg) translate(0, -142%);
6182 -webkit-animation-delay: -0.0833s; 2064 -webkit-animation-delay: -0.0833s;
6183} 2065}
6184@-webkit-keyframes fade { 2066@-webkit-keyframes fade {
6185 from { 2067 from {
6186 opacity: 1; 2068 opacity: 1;
6187 } 2069 }
6188 to { 2070 to {
6189 opacity: 0.25; 2071 opacity: 0.25;
6190 } 2072 }
6191} 2073}
2074/*
2075
2076Color list:
2077- login box:
2078 light#ff9955
2079 dark#ff6622
2080- login button:
2081 regular#dd5500
2082 hover#773311
2083- login translations:
2084 box: #cc6622;
2085 not-selected:
2086 color: #ddaa99
2087 background:#994422
2088 selected: #772211;
2089*/
2090html {
2091 height: 100%;
2092 -webkit-text-size-adjust: none;
2093 -ms-text-size-adjust: none;
2094}
2095body {
2096 font-family: Helvetica-Neue, Helvetica, Arial, Geneva, sans-serif;
2097 margin: 0px;
2098}
2099.ellipsis {
2100 text-overflow: ellipsis;
2101 overflow: hidden;
2102 white-space: nowrap;
2103}
2104div#loginForm div.credentialsMessage.error h1 {
2105 color: red;
2106}
2107div#loginForm div.validating div.loading {
2108 margin-top: 50px;
2109 margin-bottom: 50px;
2110 margin-left: auto;
2111 margin-right: auto;
2112 width: 100px;
2113}
2114/*
2115
2116Color list:
2117- login box:
2118 light#ff9955
2119 dark#ff6622
2120- login button:
2121 regular#dd5500
2122 hover#773311
2123- login translations:
2124 box: #cc6622;
2125 not-selected:
2126 color: #ddaa99
2127 background:#994422
2128 selected: #772211;
2129*/
2130html {
2131 height: 100%;
2132 -webkit-text-size-adjust: none;
2133 -ms-text-size-adjust: none;
2134}
2135body {
2136 font-family: Helvetica-Neue, Helvetica, Arial, Geneva, sans-serif;
2137 margin: 0px;
2138}
2139.ellipsis {
2140 text-overflow: ellipsis;
2141 overflow: hidden;
2142 white-space: nowrap;
2143}
2144#jqt div.cardList ul li.cardListItem a small.favicon {
2145 background: white;
2146 -webkit-border-radius: 3px;
2147 border-radius: 3px;
2148 display: block;
2149 width: 26px;
2150 height: 26px;
2151 padding: 0px;
2152}
2153#jqt div.cardList ul li.cardListItem a small.favicon img.favicon {
2154 margin-right: 3px;
2155 margin-top: 3px;
2156 width: 20px;
2157 height: 20px;
2158}
2159#jqt div.cardDetail ul li a.password {
2160 color: gray;
2161}
2162/* ---------------------------------------- */
2163/*
2164body {
2165 margin: 0;
2166 font-family: Helvetica;
2167 background: #FFFFFF;
2168 color: #000000;
2169 overflow-x: hidden;
2170 -webkit-user-select: none;
2171 -webkit-text-size-adjust: none;
2172}
2173
2174
2175div.toolbar {
2176 box-sizing: border-box;
2177 -moz-box-sizing: border-box;
2178 -webkit-box-sizing: border-box;
2179 border-bottom: 1px solid #2d3642;
2180 border-top: 1px solid #6d84a2;
2181 padding: 10px;
2182 height: 45px;
2183 //background: url(./images/old/iPhone/toolbar.png) #6d84a2 repeat-x;
2184 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAArCAIAAAA2QHWOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUCNddjDEOgEAQAgn//5qltYWFnb1GB4vdSy4WBAYStKyb9+O0FJMYyjMyMWCC35lJM71r6vF1P07/lFSfPx6ZxNLcy1HtihzpA/RWcOj0zlDhAAAAAElFTkSuQmCCCg==) #6d84a2 repeat-x;
2185}
2186
2187div.toolbar h1#pageTitle {
2188 overflow: hidden;
2189 margin-top: 1px;
2190 margin-bottom: 0px;
2191 margin-left: auto;
2192 margin-right: auto;
2193 width: 150px;
2194 height: 25px;
2195 font-size: 20px;
2196 width: 150px;
2197 font-weight: bold;
2198 text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0;
2199 text-align: center;
2200 text-overflow: ellipsis;
2201 white-space: nowrap;
2202 color: #FFFFFF;
2203}
2204
2205div.toolbar a.button {
2206 position: absolute;
2207 overflow: hidden;
2208 top: 8px;
2209 right: 6px;
2210 margin: 0;
2211 border-width: 0 5px;
2212 padding: 0 3px;
2213 width: auto;
2214 height: 30px;
2215 line-height: 30px;
2216 font-family: inherit;
2217 font-size: 12px;
2218 font-weight: bold;
2219 color: #FFFFFF;
2220 text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;
2221 text-overflow: ellipsis;
2222 text-decoration: none;
2223 white-space: nowrap;
2224 background: none;
2225 //-webkit-border-image: url(./images/old/iPhone/toolButton.png) 0 5 0 5;
2226}
2227
2228div.toolbar a#backButton {
2229 left: 6px;
2230 right: auto;
2231 padding: 0px;
2232 max-width: 55px;
2233 border-width: 0 8px 0 14px;
2234 //-webkit-border-image: url(./images/old/iPhone/backButton.png) 0 8 0 14;
2235 -webkit-border-image: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAeCAIAAAA6iHCJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAtJJREFUeNrEV21P01AYbbtubNExBnXDbYjjZYI4BMdgEANDQoTElw/+Rw0mBs0UiSGaoJFEQEPwjRhFCW/JxrZ2Xdu1fe71bpAhCHzqupPnS5ObPOeec+5zb+lHLxao05HPiwvzr3/++J7N7FFGgaaDLe034+O+wCXyxSKET1u5+Wc98XTK39zeOzjudLmNIoAR2tlaf/Zkqm9gKNI/RBigE9dtb23MJKZj8fvuC16b3WGxsJRxOFfHeQOtH+ZnOI+XRfgEBoLAzz6fjo7ebfD4GYYhMiEdDGRAW6xOt6d7YGzl4xIL/7mgyPL044edkVt19T4EFAJEVQYud+MvOCkHc7MJ3+VrXGOzXrHeZS1s9trjOVj7tiqpONTWBRgD6BVmQFls9iMaSHnx/bu3ffEHgC2gVVqAIojKR3Iw9zLRcjVmtTnA0NydxQDg0IWvq59kYIOeZtWs9gQkagcMcgK/vLjYNXQHcEkas0AcYPdNIPr7Q/0M69B089ofavB5ZVm3OJ2cTwegzAUgxGbSe8tLS52xewjRZGabzAABZt+8mvGHBsiYNF+AAw1cXEBGNUiQqWpAlArM5MSYBXgEOl0NkLcCkxak28MRKbuDMa6KDAwAUnU8HO2Q+N0SJ3OLMCA7V1S9vt7d3tSg5LNV0ACXwOekcGfreVbVVYUqMjOvyPsH71cqkxsZ7NHFJIXBTCMONMAlEryoxAfDucyOmaOpmINyaTowrK23IyDxKbNzUIYoKU3+i37OXpCESvfGCOw11uMMcCkQke4rDlrS1coOSk2VOXftERfKtZsURmLXQUqBVqiUABgrQirc0Xp4Fv4t8kxN8dLkaJQupOVcGnTN0PuQHHlRSG1Eu9tUTLOnxZ5clclsfmK078va7/WN7axomCN2e42Xc/VEIoiiM0KePeM20DTY3M22BZtuhENW1rC/NrI3WVGTmZxSKEr7V4ABAJ+53J1I3nPjAAAAAElFTkSuQmCCCg==) 0 8 0 14;
2236}
2237
2238// -------------------------------------------
2239
2240body.iPhone form.loginForm {
2241 min-height: 372px;
2242
2243 box-sizing: border-box;
2244 -moz-box-sizing: border-box;
2245 -webkit-box-sizing: border-box;
2246 padding: 10px;
2247 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2248 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2249}
2250
2251fieldset {
2252 position: relative;
2253 margin: 0 0 20px 0;
2254 padding: 0;
2255 background: #FFFFFF;
2256 -webkit-border-radius: 10px;
2257 -moz-border-radius: 10px;
2258 border: 1px solid #999999;
2259 text-align: right;
2260 font-size: 16px;
2261}
2262
2263.row {
2264 position: relative;
2265 min-height: 42px;
2266 border-bottom: 1px solid #999999;
2267 -webkit-border-radius: 0;
2268 text-align: right;
2269}
2270
2271fieldset > .row:last-child {
2272 border-bottom: none !important;
2273}
2274
2275
2276.row > input:not(input[type|=radio]):not(input[type|=checkbox]),
2277.row > div.fieldValue {
2278 width: 100%;
2279 box-sizing: border-box;
2280 -moz-box-sizing: border-box;
2281 -webkit-box-sizing: border-box;
2282 margin: 0;
2283 border: none;
2284 padding: 0px 10px 0 112px;
2285 height: 42px;
2286 background: none;
2287 font-size: 16px;
2288 font-weight: normal;
2289
2290 color: #666a60;
2291 -webkit-user-select: text;
2292}
2293
2294.row > div.fieldValue p {
2295 margin: 0px;
2296 text-align: left;
2297 height: 40px;
2298 vertical-align: middle;
2299 line-height: 40px;
2300}
2301
2302body[orientation="landscape"] .row > div.fieldValue.password {
2303 padding-right: 120px;
2304 //background: url(./images/old/iPhone/password_background.png) no-repeat 105px;
2305 background: url(data:image/png;charset=utf-8;base64,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) no-repeat 105px;
2306}
2307
2308.row > div.fieldValue.password {
2309 color: rgba(255,255,255,0.5);
2310 //background: url(./images/old/iPhone/password_background.png) no-repeat 106px;
2311 background: url(data:image/png;charset=utf-8;base64,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) no-repeat 106px;
2312}
2313
2314.row > div.fieldValue.password.clear {
2315 color: #666a60;
2316 background: none;
2317}
2318
2319.row > input[type|=radio], .row > input[type|=checkbox] {
2320 margin: 7px 7px 0 0;
2321 height: 25px;
2322 width: 25px;
2323}
2324
2325
2326.row > label {
2327 position: absolute;
2328 margin: 0 0 0 14px;
2329 line-height: 42px;
2330 font-weight: bold;
2331 max-width: 92px;
2332 overflow: hidden;
2333 white-space: nowrap;
2334}
2335
2336body[orientation="landscape"] .row > label {
2337 max-width: 150px;
2338}
2339
2340body[orientation="landscape"] .row > input:not(input[type|=radio]):not(input[type|=checkbox]) {
2341 padding-left: 140px;
2342}
2343
2344.row > img.favicon {
2345 position: absolute;
2346 width: 20px;
2347 height: 20px;
2348 top: 12px;
2349 left: 11px;
2350}
2351
2352.row > span {
2353 padding: 8px 13px;
2354 text-align: left;
2355 display: block;
2356 color: #666a60;
2357 font-size: 10pt;
2358}
2359
2360.row.notes {
2361 -webkit-user-select: text;
2362}
2363
2364// -------------------------------------------
2365
2366.whiteButton {
2367 margin-left: auto;
2368 margin-right: auto;
2369 width: 150px;
2370 display: block;
2371 border-width: 0 12px;
2372 padding: 10px;
2373 text-align: center;
2374 font-size: 20px;
2375 font-weight: bold;
2376 text-decoration: inherit;
2377 color: inherit;
2378
2379 //-webkit-border-image: url(./images/old/iPhone/whiteButton.png) 0 12 0 12;
2380 -webkit-border-image: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAuCAQAAAB+dNqHAAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAdAAAALgChnaVgAAAAAmJLR0QA/4ePzL8AAANhSURBVEjHnZZNaFxVFMd/5747mclMkpmxzYdJtFaJglgFpYSiBAVX7l0UUZGuSkEEu3PtSulCUXFdxYXL7kQQIWD9CsRIqdomGGOaSdJmZjKTeW/eu/e4mKRmrE3n5X83j/ve7/3POfe+d67QrTxP8QLDnMTenkv4kQ2+YZ6d/Y/Kvut+XuZVKtygzVbXC8v0cT+jXORLWneix/mAZZZwKIrSbSAIAcd5kDdZ6kaf4zzfEeLPnHrr+UeOWpMJ9rjYxe7a5ntff/YThhyneJ/Zf9Ep3uEXkhNjX50bHoiStoPE76HWiPQFfcGN+kufLKxheZJ3+aOD5vmIBaLXpz89HSVhzF2Uy2TtGxe/+JksJzjHjgCvMEHz6cnZt7dD5zlAgSlkZy7MrVDgbz43FJimhV46W2vFzutBI3aN8NJZlBbTFAKepZ/o/IszU1Gs95Tz2Uw1nFuiiTE8Rhs9fbIROt/LaISvTaO0mbIM0kTKeefoUSMDCI6SxRCT9d77XlFrCYgQi0PH72vH9CyNMSjO4tGM9do76hXB4y2KU+c8aaR41KJ4SIn6DgqgPq2rggWc+kMEjBUBVDUNKQBiOx+218Pl6tVr+jJhUZx4PYSr4XBSsAKaJH9tpirT7uIoTj3pAna43TJJWtSjYDpxp5bv5OpTb4mOq3IIX0W14ypeUq+rYBH5T9fqbRerWMClrbB4PBgUjZPUuXrUGBW51Yhc71y9LSJi1NgQxVWj3a7aw2gmONSGJtNAxC9v9+56vaoe6aubXEWy4meXe/+VXl42TvqzG4ZFCkRzv/+w3lu436/PX6NNnsUgCctjUUJwnWdGC/ZenpXw47loTRrldu3XwLkSrQmiHbkSP3FkwB4MXpjfWDE3JTfw29ZGAGHjgWJdcDW9XC/0PVS4W47fVj5cuLUmFWlOVlevei8ApVLp8bWclnWU4khpZvTRwaw5VggEINHlZuSv1mcr6zW2ZF22xqLqlWr19uYdGSkeWyn4IY5okX61GBHMrp1HJaYldW4G9Ylm7c/19a4jV6k0+fBmtjbkCwxoDovdQ0lIpEXTNIrbR6OVxWr1joNeJjM+Xhyu2+0+Z6Ocmt17Kj4bBvFgPJTUNlZX4/j/zohAJlMuF4vW5vP7Z3d2kqRW29qKuxr4P1RbNFwZtqq8AAAAAElFTkSuQmCCCg==) 0 12 0 12;
2381 text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
2382}
2383
2384// -------------------------------------------
2385
2386body.iPhone .loginProgressPanel {
2387 min-height: 372px;
2388
2389 box-sizing: border-box;
2390 -moz-box-sizing: border-box;
2391 -webkit-box-sizing: border-box;
2392 padding: 10px;
2393 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2394 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2395}
2396
2397body.iPhone .loadingBar {
2398 margin-left: auto;
2399 margin-right: auto;
2400 margin-top: 60px;
2401}
2402
2403div.loadingBar {
2404 height: 22px;
2405 width: 214px;
2406 //background: url(./images/old/loading/loadingBar.gif) no-repeat center;
2407 background: url(data:image/gif;charset=utf-8;base64,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) no-repeat center;
2408}
2409
2410div.loadingBar div.loadingBarProgress {
2411 height: 100%;
2412 width: 0%;
2413}
2414
2415div.loadingBar div.loadingBarProgress div.loadingBarProgress_left {
2416 height: 100%;
2417 max-width: 8px;
2418 //background: url(./images/old/loading/loadingBarProgress.png) no-repeat 0;
2419 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAANYAAAAWCAYAAAC8C2KaAAAACXBIWXMAAAsSAAALEgHS3X78AAACIklEQVR4Ae3brU7DUBQH8HO6PQAazx4BRUKDwfChQTGFQ4wRFGEERdgQONRQoGEzGFISFI8w/DQSWHsP565r0xY2BiWY/ivW+530l52cdr0jwgEBCPy5AE9aUc7XV0kcl4jniGR20lj0QaAYAtzXWHgmNh7v3HTGXfOXgSWnKy6VqEZMCKZxcmiHgFCfAjrjva6XxfgUWNJc3tVBG9mBqEMAAmMFrrl+10r2pgJLTpYO9dZvNTkAZQhAYAoBNh3evz+KRsaBJccLevtXakYdOEMAAj8UCII6Hzx6dlY5nipBjXwTV1GAAAR+KiA1neHZWcOMJY35FS03bAMOCEAgl0CDG0/dMGP5by6xk2s1TIYABFRAjKufo8AyfoUkftyCDwQg8FsBloqdGmaswMf7qt9CYh4E0gLDWBrdCg7SXahBAAK5BEYZa9AnZmStXJSYDAEVENEtT/GtYNAjxl5AfDEgkFtAuGfXCDPW4N0jh9zci2IBCBRdwCTeY1kL2Z65RdYq+rcC159LQLjPFy9rdo0wY9nS+2uLSk5qI6FtxgEBCEwpEJg4flIvr2SrfEgOYxPulI4YBoFYwEiHL/2jqJ4KLNuowVXT4NqMBuAMAQh8I2DkSoPqLDnqU2DZTqmWF4mcXTxzJalQhkBGQJ+piEyL2/5DpifchJttjOpSLenmXMfVvboVBFmkgnOhBYbBJPqTuv41vx10C22Bi4fAfwt8AJe2flCLvH1PAAAAAElFTkSuQmCCCg==) no-repeat 0;
2420}
2421
2422div.loadingBar div.loadingBarProgress div.loadingBarProgress_right {
2423 position: relative;
2424 height: 100%;
2425 margin-left: 8px;
2426 //background: url(./images/old/loading/loadingBarProgress.png) no-repeat right;
2427 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAANYAAAAWCAYAAAC8C2KaAAAACXBIWXMAAAsSAAALEgHS3X78AAACIklEQVR4Ae3brU7DUBQH8HO6PQAazx4BRUKDwfChQTGFQ4wRFGEERdgQONRQoGEzGFISFI8w/DQSWHsP565r0xY2BiWY/ivW+530l52cdr0jwgEBCPy5AE9aUc7XV0kcl4jniGR20lj0QaAYAtzXWHgmNh7v3HTGXfOXgSWnKy6VqEZMCKZxcmiHgFCfAjrjva6XxfgUWNJc3tVBG9mBqEMAAmMFrrl+10r2pgJLTpYO9dZvNTkAZQhAYAoBNh3evz+KRsaBJccLevtXakYdOEMAAj8UCII6Hzx6dlY5nipBjXwTV1GAAAR+KiA1neHZWcOMJY35FS03bAMOCEAgl0CDG0/dMGP5by6xk2s1TIYABFRAjKufo8AyfoUkftyCDwQg8FsBloqdGmaswMf7qt9CYh4E0gLDWBrdCg7SXahBAAK5BEYZa9AnZmStXJSYDAEVENEtT/GtYNAjxl5AfDEgkFtAuGfXCDPW4N0jh9zci2IBCBRdwCTeY1kL2Z65RdYq+rcC159LQLjPFy9rdo0wY9nS+2uLSk5qI6FtxgEBCEwpEJg4flIvr2SrfEgOYxPulI4YBoFYwEiHL/2jqJ4KLNuowVXT4NqMBuAMAQh8I2DkSoPqLDnqU2DZTqmWF4mcXTxzJalQhkBGQJ+piEyL2/5DpifchJttjOpSLenmXMfVvboVBFmkgnOhBYbBJPqTuv41vx10C22Bi4fAfwt8AJe2flCLvH1PAAAAAElFTkSuQmCCCg==) no-repeat right;
2428 top: -22px;
2429}
2430
2431// -------------------------------------------
2432
2433body.iPhone .loginErrorPanel {
2434 position: absolute;
2435 min-height: 372px;
2436 box-sizing: border-box;
2437 -moz-box-sizing: border-box;
2438 -webkit-box-sizing: border-box;
2439 padding: 10px;
2440 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2441 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2442}
2443
2444body.iPhone .loginErrorPanel h2 {
2445 text-align: center;
2446 color: red;
2447 margin-top: 40px;
2448}
2449
2450// -------------------------------------------
2451
2452form.cardListSearchForm {
2453 box-sizing: border-box;
2454 -moz-box-sizing: border-box;
2455 -webkit-box-sizing: border-box;
2456 border-bottom: 1px solid #2d3642;
2457 border-top: 1px solid #6d84a2;
2458 padding: 6px;
2459 height: 45px;
2460 // background: url(./images/old/iPhone/toolbar.png) #6d84a2 repeat-x;
2461 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAArCAIAAAA2QHWOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUCNddjDEOgEAQAgn//5qltYWFnb1GB4vdSy4WBAYStKyb9+O0FJMYyjMyMWCC35lJM71r6vF1P07/lFSfPx6ZxNLcy1HtihzpA/RWcOj0zlDhAAAAAElFTkSuQmCCCg==) #6d84a2 repeat-x;
2462 margin: 0px;
2463}
2464
2465form.cardListSearchForm input {
2466 margin: 7px;
2467 -webkit-appearance: searchfield;
2468 width: 200px;
2469}
2470
2471ul.cardListPanel {
2472 margin: 0px;
2473 padding: 0px;
2474 list-style-type: none;
2475 min-height: 372px;
2476}
2477
2478li.cardListItem {
2479 height: 43px;
2480 border-bottom: 1px solid #cccccc;
2481 //background: url(./images/old/iPhone/listArrow.png) no-repeat right center;
2482 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAUCAYAAAB4d5a9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKVJREFUeNpi/P//PwOtARMDHcDwsYQFRJSXl8P4dVC6CZvizs5O8i1BsqARid9Ei+BiQ2KDLKumhSU1QNyKxG+hlkXoEQ+yqAPNogpapK5KNIvaKbUIVxKeAsTvkPg5QCxETUukgfgAkqFPgdgBzVKKLIFZoIJmwR1qBRdNLEC2BJQpV9LCAmRL/gBxAtRwqlqAXqzcgRrOQE0LQIBxtNIiBQAEGAA7xCa2yF9zEgAAAABJRU5ErkJgggo=) no-repeat right center;
2483
2484}
2485
2486li.cardListItem a {
2487 position: relative;
2488 top: -22px;
2489 left: 40px;
2490 display: block;
2491 white-space: nowrap;
2492 overflow: hidden;
2493}
2494
2495body[orientation="portrait"] li.cardListItem a {
2496 max-width: 250px;
2497}
2498
2499body[orientation="landscape"] li.cardListItem a {
2500 max-width: 400px;
2501}
2502
2503li.cardListItem img {
2504 height: 20px;
2505 width: 20px;
2506 padding: 12px 10px 0px 10px;
2507}
2508
2509li.cardListItem a {
2510 text-decoration: none;
2511 color: black;
2512 font-weight: bold;
2513 font-size: 14pt;
2514 vertical-align: 3px;
2515}
2516
2517
2518div.cardDetailPanel {
2519 position: absolute;
2520 top: 45px;
2521 min-height: 372px;
2522
2523 box-sizing: border-box;
2524 -moz-box-sizing: border-box;
2525 -webkit-box-sizing: border-box;
2526 padding: 10px;
2527 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2528 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2529}
2530
2531div.cardDetailPanel > fieldset > div.row > span.directLogin {
2532 width: 100%;
2533 box-sizing: border-box;
2534 -moz-box-sizing: border-box;
2535 -webkit-box-sizing: border-box;
2536 margin: 0;
2537 border: none;
2538 padding: 12px 10px 0 110px;
2539 height: 42px;
2540 background: none;
2541 font-size: 16px;
2542 font-weight: normal;
2543
2544 padding-left: 40px;
2545 color: black;
2546 //background: url(./images/old/iPhone/listArrow.png) no-repeat right center;
2547 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAUCAYAAAB4d5a9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKVJREFUeNpi/P//PwOtARMDHcDwsYQFRJSXl8P4dVC6CZvizs5O8i1BsqARid9Ei+BiQ2KDLKumhSU1QNyKxG+hlkXoEQ+yqAPNogpapK5KNIvaKbUIVxKeAsTvkPg5QCxETUukgfgAkqFPgdgBzVKKLIFZoIJmwR1qBRdNLEC2BJQpV9LCAmRL/gBxAtRwqlqAXqzcgRrOQE0LQIBxtNIiBQAEGAA7xCa2yF9zEgAAAABJRU5ErkJgggo=) no-repeat right center;
2548}
2549
2550body[orientation="landscape"] div.cardDetailPanel > fieldset > div.row > span.directLogin {
2551 padding-left: 50px;
2552}
2553
2554div.cardDetailPanel h2 {
2555 margin: 0 0 8px 14px;
2556 font-size: inherit;
2557 font-weight: bold;
2558 color: #4d4d70;
2559 text-shadow: rgba(255, 255, 255, 0.75) 1px 1px 0;
2560}
2561
2562body[orientation="portrait"] > * {
2563 width: 320px;
2564}
2565
2566body[orientation="landscape"] > * {
2567 width: 480px;
2568}
2569*/ \ No newline at end of file