summaryrefslogtreecommitdiff
path: root/frontend/gamma/css
Unidiff
Diffstat (limited to 'frontend/gamma/css') (more/less context) (show whitespace changes)
-rw-r--r--frontend/gamma/css/mobile.css2571
-rw-r--r--frontend/gamma/css/static.css166
-rw-r--r--frontend/gamma/css/web.css4099
3 files changed, 5731 insertions, 1105 deletions
diff --git a/frontend/gamma/css/mobile.css b/frontend/gamma/css/mobile.css
new file mode 100644
index 0000000..8c4c1bf
--- a/dev/null
+++ b/frontend/gamma/css/mobile.css
@@ -0,0 +1,2571 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz Community Edition.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please
8refer to http://www.clipperz.com.
9
10* Clipperz Community Edition is free software: you can redistribute
11 it and/or modify it under the terms of the GNU Affero General Public
12 License as published by the Free Software Foundation, either version
13 3 of the License, or (at your option) any later version.
14
15* Clipperz Community Edition is distributed in the hope that it will
16 be useful, but WITHOUT ANY WARRANTY; without even the implied
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details.
19
20* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see
22 <http://www.gnu.org/licenses/>.
23
24*/
25
26/*
27
28Color list:
29- login box:
30 light#ff9955
31 dark#ff6622
32- login button:
33 regular#dd5500
34 hover#773311
35- login translations:
36 box: #cc6622;
37 not-selected:
38 color: #ddaa99
39 background:#994422
40 selected: #772211;
41*/
42html {
43 height: 100%;
44 -webkit-text-size-adjust: none;
45 -ms-text-size-adjust: none;
46}
47body {
48 font-family: Helvetica-Neue, Helvetica, Arial, Geneva, sans-serif;
49 margin: 0px;
50}
51.ellipsis {
52 text-overflow: ellipsis;
53 overflow: hidden;
54 white-space: nowrap;
55}
56/**
57 * Background noise recipe
58 *
59 * This recipe use a sass function to generate a .png file
60 *
61 * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
62 * @link https://github.com/DanielRapp/Noisy
63 *
64 * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
65 * @link https://gist.github.com/1021332
66 *
67 * Ported to a sass gem by Antti Salonen @antsa
68 * @link https://github.com/antsa/sassy_noise
69 *
70 * Mixin: background-noise
71 * Function: background_noise
72 *
73 * @author Daniel Rapp @DanielRapp
74 * @author Aaron Russell @aaronrussell
75 * @author Philipp Bosch @philippbosch
76 * @author Antti Salonen @antsa
77 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
78 */
79/**
80 *
81 * @class Gradients
82 * @author David Kaneda http://www.davidkaneda.com/
83 *
84 */
85/**
86 * Adds a background gradient into a specified selector.
87 *
88 * @include background-gradient(#444, 'glossy');
89 *
90 * You can also use color-stops if you want full control of the gradient:
91 *
92 * @include background-gradient(#444, color-stops(#333, #222, #111));
93 *
94 * @param {color} $bg-color
95 * The base color of the gradient.
96 *
97 * @param {string/list} $type
98 * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
99 *
100 * @include background-gradient(red, 'glossy');
101 *
102 * It can also accept a list of color-stop values:;
103 *
104 * @include background-gradient(black, color-stops(#333, #111, #000));
105 *
106 * @param {string} $direction
107 * The direction of the gradient.
108 */
109/**
110 * Blueprint grid background pattern
111 *
112 * @link http://lea.verou.me/css3patterns/#blueprint-grid
113 *
114 * @author Lea Verou http://lea.verou.me/ for the original pattern
115 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
116 */
117/**
118 * Background overlay inspired by Google Chrome modal overlay
119 *
120 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
121 */
122/**
123 * Striped background pattern
124 *
125 * @link http://lea.verou.me/css3patterns/
126 *
127 * @author Lea Verou http://lea.verou.me/ for the original pattern
128 * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
129 */
130/**
131 *
132 * Before compass 0.11.5, you need to add
133 * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
134 * To your configuration (config.rb)
135 * @see https://github.com/chriseppstein/compass/issues/401
136 *
137 * @link http://lea.verou.me/css3patterns/#tartan
138 *
139 * @author Marta Armada http://swwweet.com/ for the original pattern
140 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
141 */
142/**
143 * Carbon Fiber background pattern
144 *
145 * @author Lea Verou http://lea.verou.me/ for the original pattern
146 * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
147 *
148 * @link http://lea.verou.me/css3patterns/
149 *
150 */
151/**
152 * Normalize.css
153 * Opposite approche from CSS reset
154 *
155 * Based on normalize.css commit 9576d48fc234c5224b1fc4dccba2f5965243843d
156 *
157 * @link http://github.com/necolas/normalize.css
158 */
159/* normalize.css 2011-07-12T10:51 UTC ยท http://github.com/necolas/normalize.css */
160/* =============================================================================
161 HTML5 element display
162 ========================================================================== */
163/* =============================================================================
164 Base
165 ========================================================================== */
166/* =============================================================================
167 Links
168 ========================================================================== */
169/* =============================================================================
170 Typography
171 ========================================================================== */
172/* =============================================================================
173 Lists
174 ========================================================================== */
175/* =============================================================================
176 Embedded content
177 ========================================================================== */
178/* =============================================================================
179 Figures
180 ========================================================================== */
181/* =============================================================================
182 Forms
183 ========================================================================== */
184/* =============================================================================
185 Tables
186 ========================================================================== */
187/**
188 *
189 * @author David Kaneda - http://www.davidkaneda.com
190 *
191 */
192/**
193 * @class Color
194 */
195/**
196 * Returns the brightness (out of 100) of a specified color.
197 * @todo explain why this is useful
198 * @param {color} $color The color you want the brightness value of
199 * @return {measurement}
200 */
201/**
202 * Returns the luminosity for a specified color
203 * @todo explain why this is useful
204 * @param {color} The color to check
205 * @return {measurement}
206 */
207/**
208 * Glass effect
209 * Use this on image for better effect render
210 *
211 * Inspired from Simurai's IMDB redisign
212 *
213 * @link http://lab.simurai.com/redesign/imdb
214 * @thanks Simurai @simurai
215 */
216/**
217 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
218 * IE8 need to have :before and not ::before
219 * So use only : and not :: if you want to support IE8
220 * IE9 Webkit Firefox Opera understand ::
221 */
222/**
223 * Scotch tape effect with pure CSS
224 *
225 * @thanks Nick La @nickla for original concept
226 * @link http://webdesignerwall.com/tutorials/css3-image-styles
227 *
228 * @author David Kaneda http://www.davidkaneda.com
229 *
230 */
231/**
232 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
233 * IE8 need to have :before and not ::before
234 * So use only : and not :: if you want to support IE8
235 * IE9 Webkit Firefox Opera understand ::
236 */
237/**
238 * Corner folded with pure CSS
239 *
240 * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
241 * IE8 is not supported because it not render properly box-shadow and
242 * pseudo element should be selected with ::element and not :element
243 *
244 * @thanks Nicolas Gallagher @necolas
245 * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
246 * @todo Nix in .4
247 */
248/**
249 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
250 * IE8 need to have :before and not ::before
251 * So use only : and not :: if you want to support IE8
252 * IE9 Webkit Firefox Opera understand ::
253 */
254/**
255 * Corner folded with pure CSS
256 *
257 * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
258 * IE8 is not supported because it not render properly box-shadow and
259 * pseudo element should be selected with ::element and not :element
260 *
261 * @thanks Nicolas Gallagher @necolas
262 * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
263 */
264/**
265 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
266 * IE8 need to have :before and not ::before
267 * So use only : and not :: if you want to support IE8
268 * IE9 Webkit Firefox Opera understand ::
269 */
270/**
271 * Form element inline mixin
272 * This mixin allow you to have a label inline with your input
273 * It's simply based on inline-block behavior
274 *
275 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
276 */
277/**
278 * Vertical alignement for page
279 * Inspired by http://css-tricks.com/snippets/css/center-div-with-dynamic-height/
280 *
281 * Usage:
282 *
283 * SCSS
284 * @include vertical-align-requirement;
285 * .v-align-container { @include vertical-align-container }
286 * .v-align-content-container { @include vertical-align-content-container }
287 * .v-align-content { @include vertical-align-content }
288 *
289 * HTML
290 * <body>
291 * <div class="v-align-container">
292 * <div class="v-align-content-container">
293 * <div class="v-align-content">
294 * Your content !
295 * </div>
296 * </div>
297 * </div>
298 * </body>
299 *
300 * @thanks Chris Coyier @chriscoyier
301 * @autor Maxime Thirouin maxime.thirouin@gmail.com @MoOx
302 */
303/**
304 * Media Queries Mixins
305 *
306 * @todo Do we have to take care of print ?
307 *
308 * @require sass-3.2 (you need eventually to do "sudo gem install sass --pre")
309 * @author Maxime Thirouin <maxime.thirouin@gmail.com>
310 */
311/*
312$media-query-width-big: 1280px;
313$media-query-width-medium: 960px;
314$media-query-width-small: 480px;
315*/
316/**
317 * Drop shadow mixins from Nicolas Gallagher demo
318 *
319 * @thanks Nicolas Gallagher @necolas, @simurai, @cameronmoll, @matthamm
320 *
321 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
322 */
323/**
324 * Drop shadow curled
325 *
326 * @thanks Nicolas Gallagher @necolas
327 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
328 */
329/**
330 * Drop shadow curved
331 *
332 * @thanks Nicolas Gallagher @necolas
333 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
334 */
335/**
336 * Drop shadow flying
337 *
338 * @thanks Geoffrey Crofte @geoffrey_crofte
339 * @link http://www.creativejuiz.fr/trytotry/css3-box-shadow-after-before/
340 */
341/**
342 * Drop shadow w/ lifted corners
343 *
344 * @thanks Nicolas Gallagher @necolas
345 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
346 */
347/**
348 * Drop shadow w/ perspective
349 *
350 * @thanks Nicolas Gallagher @necolas
351 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
352 */
353/**
354 * Drop shadow raised
355 *
356 * @thanks Nicolas Gallagher @necolas
357 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
358 */
359/**
360 * Drop shadow rules required for transform on drop shadow
361 *
362 * /!\ This is required if you want to apply some transform on the element using drop shadow
363 *
364 * @thanks Nicolas Gallagher @necolas
365 * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
366 */
367/**
368 * Shadow along the top edge of the browser viewport
369 *
370 * @link http://playground.genelocklin.com/depth/
371 */
372/**
373* Shapes !
374* Polygons, ellipses and symbols
375*
376* @thanks Chris Coyier @chriscoyier
377* @link http://css-tricks.com/examples/ShapesOfCSS/
378* @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
379*/
380/**
381 * Shape/Ellipse
382 *
383 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
384 */
385/**
386 * Shape/Polygon
387 *
388 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
389 */
390/**
391 * Shape/Polygon/Hexagon
392 *
393 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
394 */
395/**
396 * Shape/Polygon/Octagon
397 *
398 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
399 */
400/**
401 * Shape/Polygon/Parallelogram
402 *
403 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
404 */
405/**
406 * Shape/Polygon/Pentagon
407 *
408 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
409 */
410/**
411 * Shape/Polygon/Rectangle
412 *
413 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
414 */
415/**
416 * Shape/Polygon/Rhombus
417 *
418 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
419 */
420/**
421 * Shape/Polygon/Square
422 *
423 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
424 */
425/**
426 * Shape/Polygon/Star
427 *
428 * @todo check if setting a z-index by default is a good thing
429 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
430 */
431/**
432 * Shape/Polygon/Trapezoid
433 *
434 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
435 */
436/**
437 * Shape/Polygon/Triangle
438 *
439 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
440 */
441/**
442 * Shape/Symbol
443 *
444 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
445 */
446/**
447 * Shape/Symbol/Diamond
448 *
449 * @todo add height support
450 *
451 * @author Alexander Futekov
452 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
453 */
454/**
455 * Shape/Symbol/Egg
456 *
457 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
458 */
459/**
460 * Shape/Symbol/Heart
461 *
462 * @author Nicolas Gallagher @necolas
463 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
464 */
465/**
466 * Shape/Symbol/Infinity
467 *
468 * @author Nicolas Gallagher @necolas
469 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
470 */
471/**
472 * Shape/Symbol/Pacman
473 *
474 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
475 */
476/**
477 * Shape/Symbol/Yin-yang
478 *
479 * @author Alexander Futekov
480 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
481 */
482/**
483 * Micro clearfix hack
484 *
485 * 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.
486 * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
487 *
488 * @thanks Nicolas Gallagher @necolas
489 * @link http://nicolasgallagher.com/micro-clearfix-hack/
490 */
491/**
492 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
493 * IE8 need to have :before and not ::before
494 * So use only : and not :: if you want to support IE8
495 * IE9 Webkit Firefox Opera understand ::
496 */
497/**
498 * UI convex effect from one color
499 *
500 * @todo merge with ui-button ?
501 *
502 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
503 */
504/**
505 * UI Glossy helper
506 *
507 * @deprecated
508 * @todo Remove in 0.4
509 * @see background/gradients
510 *
511 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
512 */
513/**
514 * UI simple gradient from one color
515 *
516 * @todo merge with ui-button ?
517 *
518 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
519 */
520/**
521 * Shape/Polygon/Triangle
522 *
523 * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
524 */
525/**
526 * Keyboard key touch
527 * A simple stylesheet for rendering beautiful keyboard-style elements.
528
529 * @author Michael Hรผneburg http://michaelhue.com/keyscss
530 * @link https://github.com/michaelhue/keyscss (commit 76bb603e921d0145362e0f60eabb79d4f69cbda0)
531 *
532 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
533*/
534/**
535 * Menu dropdown helper
536 *
537 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
538*/
539/**
540 * Ui background overlay inspired by Google Chrome modal overlay
541 *
542 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
543 */
544/**
545 * Background overlay inspired by Google Chrome modal overlay
546 *
547 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
548 */
549/**
550 * <hr /> separator style
551 *
552 * @author Chris Coyier @chriscoyier
553 * @link http://jsfiddle.net/chriscoyier/GaEzp/35/
554 *
555 * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
556 */
557/**
558 * Micro clearfix hack
559 *
560 * 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.
561 * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
562 *
563 * @thanks Nicolas Gallagher @necolas
564 * @link http://nicolasgallagher.com/micro-clearfix-hack/
565 */
566/**
567 * Note IE7/6 doesn't understand pseudo element as ::before and ::after
568 * IE8 need to have :before and not ::before
569 * So use only : and not :: if you want to support IE8
570 * IE9 Webkit Firefox Opera understand ::
571 */
572/**
573 *
574 * @class Gradients
575 * @author David Kaneda http://www.davidkaneda.com/
576 *
577 */
578/**
579 * Adds a background gradient into a specified selector.
580 *
581 * @include background-gradient(#444, 'glossy');
582 *
583 * You can also use color-stops if you want full control of the gradient:
584 *
585 * @include background-gradient(#444, color-stops(#333, #222, #111));
586 *
587 * @param {color} $bg-color
588 * The base color of the gradient.
589 *
590 * @param {string/list} $type
591 * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
592 *
593 * @include background-gradient(red, 'glossy');
594 *
595 * It can also accept a list of color-stop values:;
596 *
597 * @include background-gradient(black, color-stops(#333, #111, #000));
598 *
599 * @param {string} $direction
600 * The direction of the gradient.
601 */
602/**
603 * @class Webfont Icon
604 * Great to use with the [Pictos font](http://pictos.drewwilson.com/)
605 *
606 */
607/**
608 * @cfg {color} $webfont-icon-base-color
609 * The default color of icons when using the {@link #webfont-icon} mixin.
610 *
611 * Defaults to `white`.
612 */
613/**
614 * @cfg {color} $webfont-icon-default-stroke
615 * The default color to use on the border of icons, when using the {@link #webfont-icon} mixin.
616 *
617 * Defaults to `null`.
618 */
619/**
620 * @cfg {string} $webfont-icon-default-gradient
621 * The default gradient to use when using the {@link #webfont-icon} mixin.
622 *
623 * Defaults to `matte`.
624 */
625/* line 41, ../compass-recipes/stylesheets/recipes/_webfont-icon.scss */
626.webfont-icon-base {
627 color: transparent;
628 -webkit-background-clip: text;
629 background-clip: text;
630 position: absolute;
631 top: 0;
632 left: 0;
633 text-indent: 0;
634 text-shadow: none;
635 -webkit-user-select: none;
636 user-select: none;
637}
638/**
639 * Includes a character into the specified selector, styled as an icon.
640 *
641 * @include webfont-icon('a');
642 *
643 * @param {color} $color
644 * The color of the icon. Defaults to {@link #$webfont-icon-default-background $webfont-icon-default-background}.
645 *
646 * @param {measurement} $size
647 * The size of the icon
648 *
649 * @param {color} $stroke
650 * The color of the border. Defautls to {@link #$webfont-icon-default-border $webfont-icon-default-border}.
651 *
652 * @param {boolean} $include-staes
653 * True to include states for hover and active. Defaults to `true`.
654 */
655/* line 1, ../scss/include/_base.scss */
656* {
657 margin: 0;
658 padding: 0;
659}
660/* line 6, ../scss/include/_base.scss */
661body {
662 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
663 -webkit-touch-callout: none;
664}
665/* line 11, ../scss/include/_base.scss */
666#jqt {
667 -webkit-text-size-adjust: none;
668 -webkit-user-select: none;
669 user-select: none;
670 font-family: "Helvetica Neue", Helvetica;
671 position: absolute;
672 right: 0;
673 top: 0;
674 left: 0;
675 bottom: 0;
676}
677/* line 21, ../scss/include/_base.scss */
678#jqt a {
679 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
680 -webkit-user-drag: none;
681}
682/* line 26, ../scss/include/_base.scss */
683#jqt .selectable,
684#jqt input,
685#jqt textarea {
686 -webkit-user-select: auto;
687}
688/* line 30, ../scss/include/_base.scss */
689#jqt.notransform {
690 -webkit-transform: none !important;
691}
692/* line 35, ../scss/include/_base.scss */
693#jqt > * {
694 display: block;
695 left: 0;
696 top: 0;
697 min-height: 100%;
698 width: 100%;
699 overflow-x: hidden;
700 position: absolute;
701 z-index: 0;
702 display: -webkit-box;
703 display: box;
704 -webkit-box-orient: vertical;
705 box-orient: vertical;
706 -webkit-box-flex: 1;
707 box-flex: 1;
708}
709/* line 49, ../scss/include/_base.scss */
710#jqt > .current {
711 z-index: 10;
712}
713/* line 53, ../scss/include/_base.scss */
714#jqt > :not(.current) {
715 display: none;
716}
717/* line 57, ../scss/include/_base.scss */
718#jqt.touchscroll:not(.animating3d) {
719 overflow-y: auto;
720 -webkit-overflow-scrolling: touch;
721}
722/* line 61, ../scss/include/_base.scss */
723#jqt.touchscroll:not(.animating3d) > * {
724 height: 100%;
725}
726/* line 64, ../scss/include/_base.scss */
727#jqt.touchscroll:not(.animating3d) .scroll {
728 position: relative;
729 -webkit-box-flex: 1;
730 box-flex: 1;
731 overflow-y: auto;
732 -webkit-overflow-scrolling: touch;
733}
734/* line 72, ../scss/include/_base.scss */
735#jqt .scroll {
736 -webkit-margin-collapse: separate;
737}
738/* line 76, ../scss/include/_base.scss */
739#jqt .in,
740#jqt .out {
741 -webkit-animation-duration: 250ms;
742 -webkit-animation-fill-mode: both;
743 -webkit-animation-timing-function: ease-in-out;
744}
745/* line 82, ../scss/include/_base.scss */
746#jqt .in {
747 z-index: 10;
748}
749/* line 85, ../scss/include/_base.scss */
750#jqt .in:after {
751 content: "";
752 position: absolute;
753 display: block;
754 top: 0;
755 left: 0;
756 bottom: 0;
757 right: 0;
758}
759/* line 94, ../scss/include/_base.scss */
760#jqt .out {
761 z-index: 0 !important;
762}
763/* line 98, ../scss/include/_base.scss */
764#jqt.supports3d {
765 -webkit-perspective: 1000;
766}
767/* line 101, ../scss/include/_base.scss */
768#jqt.supports3d > * {
769 -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
770}
771/* Fade */
772/* line 3, ../scss/include/_animations.scss */
773#jqt .fade.in {
774 -webkit-animation-name: fadeIn;
775}
776/* line 7, ../scss/include/_animations.scss */
777#jqt .fade.out {
778 z-index: 10;
779 -webkit-animation-name: fadeOut;
780}
781@-webkit-keyframes fadeIn {
782 /* line 13, ../scss/include/_animations.scss */
783 0% {
784 opacity: 0;
785 }
786 /* line 16, ../scss/include/_animations.scss */
787 100% {
788 opacity: 1;
789 }
790}
791@-webkit-keyframes fadeOut {
792 /* line 22, ../scss/include/_animations.scss */
793 0% {
794 opacity: 1;
795 }
796 /* line 25, ../scss/include/_animations.scss */
797 100% {
798 opacity: 1;
799 }
800}
801/* Disolve */
802/* line 34, ../scss/include/_animations.scss */
803#jqt .dissolve.in {
804 -webkit-animation-name: dissolveIn;
805}
806/* line 38, ../scss/include/_animations.scss */
807#jqt .dissolve.out {
808 -webkit-animation-name: dissolveOut;
809}
810@-webkit-keyframes dissolveIn {
811 /* line 43, ../scss/include/_animations.scss */
812 0% {
813 opacity: 0;
814 }
815 /* line 46, ../scss/include/_animations.scss */
816 100% {
817 opacity: 1;
818 }
819}
820@-webkit-keyframes dissolveOut {
821 /* line 52, ../scss/include/_animations.scss */
822 0% {
823 opacity: 1;
824 }
825 /* line 55, ../scss/include/_animations.scss */
826 100% {
827 opacity: 0;
828 }
829}
830/* #Popin' */
831/* line 64, ../scss/include/_animations.scss */
832#jqt .pop.in {
833 -webkit-animation-name: popIn;
834}
835/* line 68, ../scss/include/_animations.scss */
836#jqt .pop.out {
837 -webkit-animation-name: popOut;
838}
839@-webkit-keyframes popIn {
840 /* line 73, ../scss/include/_animations.scss */
841 0% {
842 -webkit-transform: scale(0.2);
843 opacity: 0;
844 }
845 /* line 77, ../scss/include/_animations.scss */
846 100% {
847 -webkit-transform: scale(1);
848 opacity: 1;
849 }
850}
851@-webkit-keyframes popOut {
852 /* line 84, ../scss/include/_animations.scss */
853 0% {
854 -webkit-transform: scale(1);
855 opacity: 1;
856 }
857 /* line 88, ../scss/include/_animations.scss */
858 100% {
859 -webkit-transform: scale(0.2);
860 opacity: 0;
861 }
862}
863/* Slide Left */
864/* line 98, ../scss/include/_animations.scss */
865#jqt .slideleft.in {
866 -webkit-animation-name: slideLeftIn;
867}
868/* line 102, ../scss/include/_animations.scss */
869#jqt .slideleft.out {
870 -webkit-animation-name: slideLeftOut;
871}
872@-webkit-keyframes slideLeftIn {
873 /* line 107, ../scss/include/_animations.scss */
874 0% {
875 -webkit-transform: translateX(100%);
876 }
877 /* line 110, ../scss/include/_animations.scss */
878 100% {
879 -webkit-transform: translateX(0);
880 }
881}
882@-webkit-keyframes slideLeftOut {
883 /* line 116, ../scss/include/_animations.scss */
884 0% {
885 -webkit-transform: translateX(0px);
886 }
887 /* line 119, ../scss/include/_animations.scss */
888 100% {
889 -webkit-transform: translateX(-100%);
890 }
891}
892/* Slide Right */
893/* line 128, ../scss/include/_animations.scss */
894#jqt .slideright.in {
895 -webkit-animation-name: slideRightIn;
896}
897/* line 132, ../scss/include/_animations.scss */
898#jqt .slideright.out {
899 -webkit-animation-name: slideRightOut;
900}
901@-webkit-keyframes slideRightIn {
902 /* line 137, ../scss/include/_animations.scss */
903 0% {
904 -webkit-transform: translateX(-100%);
905 }
906 /* line 140, ../scss/include/_animations.scss */
907 100% {
908 -webkit-transform: translateX(0);
909 }
910}
911@-webkit-keyframes slideRightOut {
912 /* line 146, ../scss/include/_animations.scss */
913 0% {
914 -webkit-transform: translateX(0);
915 }
916 /* line 149, ../scss/include/_animations.scss */
917 100% {
918 -webkit-transform: translateX(100%);
919 }
920}
921/* Slide Up */
922/* line 158, ../scss/include/_animations.scss */
923#jqt .slideup.in {
924 z-index: 10;
925 -webkit-animation-name: slideUpIn;
926}
927/* line 162, ../scss/include/_animations.scss */
928#jqt .slideup.out {
929 z-index: 0;
930 -webkit-animation-name: slideUpOut;
931}
932@-webkit-keyframes slideUpIn {
933 /* line 168, ../scss/include/_animations.scss */
934 0% {
935 -webkit-transform: translateY(100%);
936 }
937 /* line 171, ../scss/include/_animations.scss */
938 100% {
939 -webkit-transform: translateY(0);
940 }
941}
942@-webkit-keyframes slideUpOut {
943 /* line 177, ../scss/include/_animations.scss */
944 0% {
945 -webkit-transform: translateY(0);
946 }
947 /* line 180, ../scss/include/_animations.scss */
948 100% {
949 -webkit-transform: translateY(0);
950 }
951}
952/* Slide Down */
953/* line 189, ../scss/include/_animations.scss */
954#jqt .slidedown.in {
955 z-index: 0;
956 -webkit-animation-name: slideDownIn;
957}
958/* line 193, ../scss/include/_animations.scss */
959#jqt .slidedown.out {
960 z-index: 10;
961 -webkit-animation-name: slideDownOut;
962}
963@-webkit-keyframes slideDownIn {
964 /* line 199, ../scss/include/_animations.scss */
965 0% {
966 -webkit-transform: translateY(0);
967 }
968 /* line 202, ../scss/include/_animations.scss */
969 100% {
970 -webkit-transform: translateY(0);
971 }
972}
973@-webkit-keyframes slideDownOut {
974 /* line 208, ../scss/include/_animations.scss */
975 0% {
976 -webkit-transform: translateY(0);
977 }
978 /* line 211, ../scss/include/_animations.scss */
979 100% {
980 -webkit-transform: translateY(100%);
981 }
982}
983/* Flip Left */
984/* line 220, ../scss/include/_animations.scss */
985#jqt .flipleft {
986 -webkit-backface-visibility: hidden;
987}
988/* line 224, ../scss/include/_animations.scss */
989#jqt .flipleft.in {
990 -webkit-animation-name: flipLeftIn;
991}
992/* line 228, ../scss/include/_animations.scss */
993#jqt .flipleft.out {
994 -webkit-animation-name: flipLeftOut;
995}
996@-webkit-keyframes flipLeftIn {
997 /* line 233, ../scss/include/_animations.scss */
998 0% {
999 -webkit-transform: rotateY(180deg) scale(0.8);
1000 }
1001 /* line 236, ../scss/include/_animations.scss */
1002 100% {
1003 -webkit-transform: rotateY(0deg) scale(1);
1004 }
1005}
1006@-webkit-keyframes flipLeftOut {
1007 /* line 242, ../scss/include/_animations.scss */
1008 0% {
1009 -webkit-transform: rotateY(0deg) scale(1);
1010 }
1011 /* line 245, ../scss/include/_animations.scss */
1012 100% {
1013 -webkit-transform: rotateY(-180deg) scale(0.8);
1014 }
1015}
1016/* Flip Right */
1017/* line 254, ../scss/include/_animations.scss */
1018#jqt .flipright {
1019 -webkit-backface-visibility: hidden;
1020}
1021/* line 258, ../scss/include/_animations.scss */
1022#jqt .flipright.in {
1023 -webkit-animation-name: flipRightIn;
1024}
1025/* line 262, ../scss/include/_animations.scss */
1026#jqt .flipright.out {
1027 -webkit-animation-name: flipRightOut;
1028}
1029@-webkit-keyframes flipRightIn {
1030 /* line 267, ../scss/include/_animations.scss */
1031 0% {
1032 -webkit-transform: rotateY(-180deg) scale(0.8);
1033 }
1034 /* line 270, ../scss/include/_animations.scss */
1035 100% {
1036 -webkit-transform: rotateY(0deg) scale(1);
1037 }
1038}
1039@-webkit-keyframes flipRightOut {
1040 /* line 276, ../scss/include/_animations.scss */
1041 0% {
1042 -webkit-transform: rotateY(0deg) scale(1);
1043 }
1044 /* line 279, ../scss/include/_animations.scss */
1045 100% {
1046 -webkit-transform: rotateY(180deg) scale(0.8);
1047 }
1048}
1049/* Swap Right */
1050/* line 288, ../scss/include/_animations.scss */
1051#jqt .swapright {
1052 -webkit-animation-duration: .7s;
1053 -webkit-transform: perspective(800);
1054 -webkit-animation-timing-function: ease-out;
1055}
1056/* line 293, ../scss/include/_animations.scss */
1057#jqt .swapright.in {
1058 -webkit-animation-name: swapRightIn;
1059}
1060/* line 296, ../scss/include/_animations.scss */
1061#jqt .swapright.out {
1062 -webkit-animation-name: swapRightOut;
1063}
1064@-webkit-keyframes swapRightIn {
1065 /* line 301, ../scss/include/_animations.scss */
1066 0% {
1067 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
1068 opacity: 0;
1069 }
1070 /* line 305, ../scss/include/_animations.scss */
1071 35% {
1072 -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
1073 opacity: 1;
1074 }
1075 /* line 309, ../scss/include/_animations.scss */
1076 100% {
1077 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1078 opacity: 1;
1079 }
1080}
1081@-webkit-keyframes swapRightOut {
1082 /* line 316, ../scss/include/_animations.scss */
1083 0% {
1084 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1085 opacity: 1;
1086 }
1087 /* line 320, ../scss/include/_animations.scss */
1088 35% {
1089 -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
1090 opacity: .5;
1091 }
1092 /* line 324, ../scss/include/_animations.scss */
1093 100% {
1094 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
1095 opacity: 0;
1096 }
1097}
1098/* Swap Left */
1099/* line 332, ../scss/include/_animations.scss */
1100#jqt .swapleft {
1101 -webkit-animation-duration: .7s;
1102 -webkit-transform: perspective(800);
1103 -webkit-animation-timing-function: ease-out;
1104}
1105/* line 337, ../scss/include/_animations.scss */
1106#jqt .swapleft.in {
1107 -webkit-animation-name: swapLeftIn;
1108}
1109/* line 340, ../scss/include/_animations.scss */
1110#jqt .swapleft.out {
1111 -webkit-animation-name: swapLeftOut;
1112}
1113@-webkit-keyframes swapLeftIn {
1114 /* line 345, ../scss/include/_animations.scss */
1115 0% {
1116 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
1117 opacity: 0;
1118 }
1119 /* line 349, ../scss/include/_animations.scss */
1120 35% {
1121 -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
1122 opacity: 1;
1123 }
1124 /* line 353, ../scss/include/_animations.scss */
1125 100% {
1126 opacity: 1;
1127 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1128 }
1129}
1130@-webkit-keyframes swapLeftOut {
1131 /* line 360, ../scss/include/_animations.scss */
1132 0% {
1133 -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1134 opacity: 1;
1135 }
1136 /* line 364, ../scss/include/_animations.scss */
1137 35% {
1138 -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
1139 opacity: .5;
1140 }
1141 /* line 368, ../scss/include/_animations.scss */
1142 100% {
1143 -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
1144 opacity: 0;
1145 }
1146}
1147/* Cube Left */
1148/* line 382, ../scss/include/_animations.scss */
1149#jqt .cubeleft.in,
1150#jqt .cubeleft.out,
1151#jqt .cuberight.in,
1152#jqt .cuberight.out {
1153 -webkit-animation-duration: .6s;
1154 -webkit-transform: perspective(800);
1155}
1156/* line 389, ../scss/include/_animations.scss */
1157#jqt .cubeleft.in {
1158 -webkit-transform-origin: 0% 50%;
1159 -webkit-animation-name: cubeLeftIn;
1160}
1161/* line 394, ../scss/include/_animations.scss */
1162#jqt .cubeleft.out {
1163 -webkit-transform-origin: 100% 50%;
1164 -webkit-animation-name: cubeLeftOut;
1165}
1166@-webkit-keyframes cubeLeftIn {
1167 /* line 400, ../scss/include/_animations.scss */
1168 0% {
1169 -webkit-transform: rotateY(90deg) translateZ(320px);
1170 opacity: .5;
1171 }
1172 /* line 404, ../scss/include/_animations.scss */
1173 100% {
1174 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1175 opacity: 1;
1176 }
1177}
1178@-webkit-keyframes cubeLeftOut {
1179 /* line 411, ../scss/include/_animations.scss */
1180 0% {
1181 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1182 opacity: 1;
1183 }
1184 /* line 415, ../scss/include/_animations.scss */
1185 100% {
1186 -webkit-transform: rotateY(-90deg) translateZ(320px);
1187 opacity: .5;
1188 }
1189}
1190/* Cube Right */
1191/* line 423, ../scss/include/_animations.scss */
1192#jqt .cuberight.in {
1193 -webkit-transform-origin: 100% 50%;
1194 -webkit-animation-name: cubeRightIn;
1195}
1196/* line 428, ../scss/include/_animations.scss */
1197#jqt .cuberight.out {
1198 -webkit-transform-origin: 0% 50%;
1199 -webkit-animation-name: cubeRightOut;
1200}
1201@-webkit-keyframes cubeRightIn {
1202 /* line 434, ../scss/include/_animations.scss */
1203 0% {
1204 -webkit-transform: rotateY(-90deg) translateZ(320px);
1205 opacity: .5;
1206 }
1207 /* line 438, ../scss/include/_animations.scss */
1208 100% {
1209 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1210 opacity: 1;
1211 }
1212}
1213@-webkit-keyframes cubeRightOut {
1214 /* line 445, ../scss/include/_animations.scss */
1215 0% {
1216 -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1217 opacity: 1;
1218 }
1219 /* line 449, ../scss/include/_animations.scss */
1220 100% {
1221 -webkit-transform: rotateY(90deg) translateZ(320px);
1222 opacity: .5;
1223 }
1224}
1225/* line 5, ../scss/include/_skeleton.scss */
1226body {
1227 background: black;
1228}
1229/* line 9, ../scss/include/_skeleton.scss */
1230.base-chevron,
1231#jqt ul li.arrow:after,
1232#jqt ul li.forward:after {
1233 content: 'โ€บ';
1234 width: 22px;
1235 height: 100%;
1236 vertical-align: middle;
1237 font-size: 30px;
1238 line-height: 38px;
1239 font-family: Futura, "Futura Condensed", Helvetica, Arial, sans-serif;
1240 font-weight: bold;
1241 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
1242 opacity: 0.6;
1243 position: absolute;
1244 right: 0;
1245 top: 0;
1246 pointer-events: none;
1247 z-index: 10;
1248}
1249/* line 26, ../scss/include/_skeleton.scss */
1250.base-flatlists,
1251#jqt ul.metal,
1252#jqt ul.edgetoedge,
1253#jqt ul.plastic {
1254 margin: 0;
1255 padding: 0;
1256 border-width: 0 0 0 1px;
1257 -webkit-border-radius: 0;
1258 border-radius: 0;
1259}
1260/* line 35, ../scss/include/_skeleton.scss */
1261#jqt h1,
1262#jqt h2 {
1263 font: bold 18px "Helvetica Neue", Helvetica;
1264 margin: 10px 20px 6px;
1265 color: #bbbcbe;
1266 text-shadow: #3c3d3e 0 -1px 0;
1267}
1268/* line 41, ../scss/include/_skeleton.scss */
1269#jqt .toolbar {
1270 -webkit-box-sizing: border-box;
1271 box-sizing: border-box;
1272 -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
1273 box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
1274 border-bottom: 1px solid black;
1275 z-index: 10;
1276 position: relative;
1277 padding: 10px;
1278 height: 44px;
1279}
1280/* line 52, ../scss/include/_skeleton.scss */
1281#jqt .toolbar > h1 {
1282 position: absolute;
1283 overflow: hidden;
1284 left: 50%;
1285 bottom: 9px;
1286 margin: 1px 0 0 -75px;
1287 width: 150px;
1288 font-size: 20px;
1289 font-weight: bold;
1290 line-height: 1.3em;
1291 text-align: center;
1292 text-overflow: ellipsis;
1293 white-space: nowrap;
1294 color: white;
1295 text-shadow: #161717 0 -1px 0;
1296}
1297/* line 71, ../scss/include/_skeleton.scss */
1298#jqt.black-translucent .toolbar {
1299 padding-top: 30px;
1300 height: 64px;
1301}
1302/* line 75, ../scss/include/_skeleton.scss */
1303#jqt.landscape .toolbar > h1 {
1304 margin-left: -125px;
1305 width: 250px;
1306}
1307/* line 80, ../scss/include/_skeleton.scss */
1308#jqt .button,
1309#jqt .back,
1310#jqt .cancel,
1311#jqt .add {
1312 position: absolute;
1313 overflow: hidden;
1314 width: auto;
1315 height: 30px;
1316 font-family: inherit;
1317 font-size: 12px;
1318 font-weight: bold;
1319 line-height: 30px;
1320 text-overflow: ellipsis;
1321 text-decoration: none;
1322 white-space: nowrap;
1323 background: none;
1324 bottom: 6px;
1325 right: 10px;
1326 margin: 0;
1327 padding: 0 10px;
1328 color: #e2e3e3;
1329 text-shadow: #000000 0 -1px 0;
1330 -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
1331 box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
1332 border: 1px solid black;
1333 -webkit-border-radius: 5px;
1334 border-radius: 5px;
1335 background-image: none;
1336 background-color: #0a0a0a;
1337 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));
1338 background-image: -webkit-linear-gradient(top, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
1339 background-image: linear-gradient(top, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
1340}
1341/* line 107, ../scss/include/_skeleton.scss */
1342#jqt .button.active,
1343#jqt .back.active,
1344#jqt .cancel.active,
1345#jqt .add.active {
1346 border-color: black;
1347 background-image: none;
1348 background-color: black;
1349 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));
1350 background-image: -webkit-linear-gradient(top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1351 background-image: linear-gradient(top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1352 color: #d8d9d9;
1353 text-shadow: #000000 0 -1px 0;
1354}
1355/* line 114, ../scss/include/_skeleton.scss */
1356#jqt .back {
1357 max-width: 60px;
1358 margin-left: 15px;
1359 overflow: visible;
1360 padding-left: 5px;
1361}
1362/* line 121, ../scss/include/_skeleton.scss */
1363#jqt .back:after,
1364#jqt .back:before {
1365 content: '';
1366 position: absolute;
1367 width: 20px;
1368 height: 20px;
1369 top: 1px;
1370 left: 1px;
1371 -webkit-transform: rotate(45deg) translate3d(0.2px, 0, 0);
1372 transform: rotate(45deg) translate3d(0.2px, 0, 0);
1373 -webkit-transform-origin: 0 0;
1374 transform-origin: 0 0;
1375 background-image: none;
1376 background-color: #0a0a0a;
1377 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));
1378 background-image: -webkit-linear-gradient(top left, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
1379 background-image: linear-gradient(top left, #2f3031, #161717 50%, #0a0a0a 51%, #000000);
1380 background-size: 100% 98%;
1381 -webkit-border-radius: 0 0 0 2px;
1382 border-radius: 0 0 0 2px;
1383 -webkit-mask-image: -webkit-linear-gradient(45deg, #000000, #000000 15px, rgba(0, 0, 0, 0) 15px);
1384 -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)));
1385 -webkit-mask-clip: border-box;
1386 -webkit-background-clip: content-box;
1387}
1388/* line 149, ../scss/include/_skeleton.scss */
1389#jqt .back:after {
1390 -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
1391 box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
1392}
1393/* line 152, ../scss/include/_skeleton.scss */
1394#jqt .back:before {
1395 margin-left: -1px;
1396 background: black none;
1397}
1398/* line 157, ../scss/include/_skeleton.scss */
1399#jqt .back.active:after {
1400 background-image: none;
1401 background-color: black;
1402 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));
1403 background-image: -webkit-linear-gradient(left top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1404 background-image: linear-gradient(left top, #262627, #0d0d0d 50%, #000000 51%, #000000);
1405}
1406/* line 160, ../scss/include/_skeleton.scss */
1407#jqt .back.active:before {
1408 background-color: black;
1409}
1410/* line 166, ../scss/include/_skeleton.scss */
1411#jqt .blueButton {
1412 background-image: #2f7ce3, glossy;
1413 color: white;
1414 text-shadow: #1a63c5 0 -1px 0;
1415}
1416/* line 170, ../scss/include/_skeleton.scss */
1417#jqt .whiteButton,
1418#jqt .grayButton,
1419#jqt .redButton,
1420#jqt .blueButton,
1421#jqt .greenButton {
1422 display: block;
1423 font-size: 20px;
1424 font-weight: bold;
1425 margin: 10px 20px;
1426 padding: 10px;
1427 text-align: center;
1428 text-decoration: inherit;
1429 -webkit-border-radius: 8px;
1430 border-radius: 8px;
1431 -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;
1432 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;
1433}
1434/* line 185, ../scss/include/_skeleton.scss */
1435#jqt .whiteButton.active,
1436#jqt .whiteButton:active,
1437#jqt .grayButton.active,
1438#jqt .grayButton:active,
1439#jqt .redButton.active,
1440#jqt .redButton:active,
1441#jqt .blueButton.active,
1442#jqt .blueButton:active,
1443#jqt .greenButton.active,
1444#jqt .greenButton:active {
1445 background-image: none;
1446 background-color: #3c8101;
1447 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));
1448 background-image: -webkit-linear-gradient(top, #5fcd01, #479b01 50%, #3c8101 51%, #306801);
1449 background-image: linear-gradient(top, #5fcd01, #479b01 50%, #3c8101 51%, #306801);
1450 color: white;
1451 text-shadow: #244f00 0 -1px 0;
1452}
1453/* line 191, ../scss/include/_skeleton.scss */
1454#jqt .whiteButton {
1455 background-image: none;
1456 background-color: #eeeeee;
1457 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));
1458 background-image: -webkit-linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
1459 background-image: linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
1460 color: #151515;
1461 text-shadow: white 0 1px 0;
1462}
1463/* line 195, ../scss/include/_skeleton.scss */
1464#jqt .grayButton {
1465 background-image: none;
1466 background-color: #444444;
1467 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));
1468 background-image: -webkit-linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
1469 background-image: linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
1470 color: white;
1471 text-shadow: #2b2b2b 0 -1px 0;
1472}
1473/* line 200, ../scss/include/_skeleton.scss */
1474#jqt .redButton {
1475 background-image: none;
1476 background-color: #d83b38;
1477 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));
1478 background-image: -webkit-linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
1479 background-image: linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
1480 color: white;
1481 text-shadow: #b92724 0 -1px 0;
1482}
1483/* line 204, ../scss/include/_skeleton.scss */
1484#jqt .redButton.active,
1485#jqt .redButton:active {
1486 background-image: none;
1487 background-color: #c12926;
1488 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));
1489 background-image: -webkit-linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
1490 background-image: linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
1491 color: white;
1492 text-shadow: #97201e 0 -1px 0;
1493}
1494/* line 211, ../scss/include/_skeleton.scss */
1495#jqt .greenButton {
1496 background-image: none;
1497 background-color: #53b401;
1498 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));
1499 background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
1500 background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
1501 color: white;
1502 text-shadow: #3c8101 0 -1px 0;
1503}
1504/* line 216, ../scss/include/_skeleton.scss */
1505#jqt .leftButton,
1506#jqt .cancel,
1507#jqt .back {
1508 left: 6px;
1509 right: auto;
1510}
1511/* line 221, ../scss/include/_skeleton.scss */
1512#jqt .add {
1513 font-size: 24px;
1514 line-height: 24px;
1515 font-weight: bold;
1516}
1517/* line 229, ../scss/include/_skeleton.scss */
1518#jqt ul {
1519 padding: 0;
1520 margin: 5px 10px 10px 10px;
1521 -webkit-margin-collapse: separate;
1522}
1523/* line 231, ../scss/include/_skeleton.scss */
1524#jqt ul,
1525#jqt ul.individual li {
1526 background-color: #555658;
1527 color: #d5d6d7;
1528 text-shadow: #3c3d3e 0 -1px 0;
1529 border: 1px solid #2f3031;
1530 font: bold 18px "Helvetica Neue", Helvetica;
1531}
1532/* line 240, ../scss/include/_skeleton.scss */
1533#jqt ul:first-child {
1534 margin-top: 15px;
1535}
1536/* line 246, ../scss/include/_skeleton.scss */
1537#jqt ul li {
1538 border-top: 1px solid #48494b;
1539 list-style-type: none;
1540 overflow: hidden;
1541 padding: 10px;
1542 -webkit-transform: translate3d(0, 0, 0);
1543 /* expensive way to avoid flickr */
1544
1545}
1546/* line 253, ../scss/include/_skeleton.scss */
1547#jqt ul li a {
1548 text-decoration: none;
1549 text-overflow: ellipsis;
1550 white-space: nowrap;
1551 overflow: hidden;
1552 display: block;
1553 padding: 10px;
1554 margin: -10px;
1555 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1556 -webkit-transform: translateZ(0);
1557 color: white;
1558 text-shadow: #3c3d3e 0 -1px 0;
1559}
1560/* line 265, ../scss/include/_skeleton.scss */
1561#jqt ul li a.active {
1562 background-image: none;
1563 background-color: #53b401;
1564 -webkit-box-shadow: #5cc801 0 1px 0px inset;
1565 box-shadow: #5cc801 0 1px 0px inset;
1566 color: white;
1567 text-shadow: #3c8101 0 -1px 0;
1568}
1569/* line 270, ../scss/include/_skeleton.scss */
1570#jqt ul li a.active small {
1571 color: #a0fe50;
1572 text-shadow: #000000 0 -1px 0;
1573}
1574/* line 271, ../scss/include/_skeleton.scss */
1575#jqt ul li a.active small.counter {
1576 background-color: #306801;
1577}
1578/* line 280, ../scss/include/_skeleton.scss */
1579#jqt ul li small {
1580 color: #53b401;
1581 font: 16px "Helvetica Neue", Helvetica;
1582 text-align: right;
1583 text-overflow: ellipsis;
1584 white-space: nowrap;
1585 overflow: hidden;
1586 display: block;
1587 width: 23%;
1588 position: relative;
1589 z-index: 20;
1590 float: right;
1591 line-height: 16px;
1592 padding: 2px 8px 4px 8px;
1593}
1594/* line 295, ../scss/include/_skeleton.scss */
1595#jqt ul li small.counter {
1596 background: #2f3031;
1597 color: #949698;
1598 text-shadow: #0a0a0a 0 -1px 0;
1599 z-index: 10;
1600 font-size: 16px;
1601 font-weight: bold;
1602 -webkit-border-radius: 3px;
1603 border-radius: 3px;
1604 display: block;
1605 width: auto;
1606}
1607/* line 311, ../scss/include/_skeleton.scss */
1608#jqt ul li ::-webkit-input-placeholder {
1609 color: #949698;
1610 text-shadow: #3c3d3e 0 -1px 0;
1611}
1612/* line 322, ../scss/include/_skeleton.scss */
1613#jqt ul li input[type="text"],
1614#jqt ul li input[type="password"],
1615#jqt ul li input[type="tel"],
1616#jqt ul li input[type="number"],
1617#jqt ul li input[type="search"],
1618#jqt ul li input[type="email"],
1619#jqt ul li input[type="url"],
1620#jqt ul li textarea,
1621#jqt ul li select {
1622 color: white;
1623 text-shadow: #3c3d3e 0 -1px 0;
1624 background: transparent url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
1625 border: 0;
1626 font: normal 17px "Helvetica Neue", Helvetica;
1627 padding: 0;
1628 display: inline-block;
1629 margin-left: 0px;
1630 width: 100%;
1631 -webkit-appearance: textarea;
1632}
1633/* line 333, ../scss/include/_skeleton.scss */
1634#jqt ul li textarea {
1635 height: 120px;
1636 padding: 0;
1637 text-indent: -2px;
1638}
1639/* line 338, ../scss/include/_skeleton.scss */
1640#jqt ul li input[type="checkbox"],
1641#jqt ul li input[type="radio"] {
1642 margin: 0;
1643 padding: 10px;
1644}
1645/* line 342, ../scss/include/_skeleton.scss */
1646#jqt ul li input[type="checkbox"]:after,
1647#jqt ul li input[type="radio"]:after {
1648 content: attr(title);
1649 position: absolute;
1650 display: block;
1651 width: 0;
1652 left: 21px;
1653 top: 12px;
1654 font-family: "Helvetica Neue", Helvetica;
1655 font-size: 17px;
1656 line-height: 21px;
1657 width: 246px;
1658 margin: 0 0 0 17px;
1659 color: white;
1660 text-shadow: #3c3d3e 0 -1px 0;
1661}
1662/* line 355, ../scss/include/_skeleton.scss */
1663#jqt ul li input[type='submit'] {
1664 -webkit-border-radius: 4px;
1665 border-radius: 4px;
1666 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
1667 border: 1px outset #aaa;
1668 display: block;
1669 font-size: inherit;
1670 font-weight: inherit;
1671 padding: 10px;
1672}
1673/* line 368, ../scss/include/_skeleton.scss */
1674#jqt ul li.arrow small,
1675#jqt ul li.forward small {
1676 margin-right: 24px;
1677}
1678/* line 380, ../scss/include/_skeleton.scss */
1679#jqt ul li.forward:before {
1680 content: "";
1681 position: absolute;
1682 display: block;
1683 top: 50%;
1684 right: 6px;
1685 margin-top: -12px;
1686 width: 24px;
1687 height: 24px;
1688 -webkit-border-radius: 12px;
1689 border-radius: 12px;
1690 background-image: none;
1691 background-color: #53b401;
1692 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));
1693 background-image: -webkit-linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
1694 background-image: linear-gradient(top, #76fe04, #5fcd01 50%, #53b401 51%, #479b01);
1695 border: 2px solid #fff;
1696 -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
1697 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
1698 -webkit-box-sizing: border-box;
1699 padding: 0;
1700 z-index: 10;
1701 line-height: 0;
1702 pointer-events: none;
1703}
1704/* line 395, ../scss/include/_skeleton.scss */
1705#jqt ul li.forward:after {
1706 color: white;
1707 text-shadow: #3c8101 0 -1px 0;
1708 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
1709 opacity: 1;
1710 font-size: 24px;
1711}
1712/* line 404, ../scss/include/_skeleton.scss */
1713#jqt ul.rounded,
1714#jqt ul.individual li {
1715 -webkit-box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
1716 box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
1717 border: 1px solid #2f3031;
1718}
1719/* line 409, ../scss/include/_skeleton.scss */
1720#jqt ul.rounded {
1721 -webkit-border-radius: 8px;
1722 border-radius: 8px;
1723}
1724/* line 412, ../scss/include/_skeleton.scss */
1725#jqt ul.rounded li:first-child,
1726#jqt ul.rounded li:first-child a {
1727 border-top: 0;
1728 -webkit-border-top-left-radius: 8px;
1729 border-top-left-radius: 8px;
1730 -webkit-border-top-right-radius: 8px;
1731 border-top-right-radius: 8px;
1732}
1733/* line 416, ../scss/include/_skeleton.scss */
1734#jqt ul.rounded li:last-child,
1735#jqt ul.rounded li:last-child a {
1736 -webkit-border-bottom-left-radius: 8px;
1737 border-bottom-left-radius: 8px;
1738 -webkit-border-bottom-right-radius: 8px;
1739 border-bottom-right-radius: 8px;
1740}
1741/* line 422, ../scss/include/_skeleton.scss */
1742#jqt ul.form li {
1743 padding: 7px 10px;
1744}
1745/* line 425, ../scss/include/_skeleton.scss */
1746#jqt ul.form li.error {
1747 border: 2px solid red;
1748}
1749/* line 428, ../scss/include/_skeleton.scss */
1750#jqt ul.form li.error + #jqt ul.form li.error {
1751 border-top: 0;
1752}
1753/* line 438, ../scss/include/_skeleton.scss */
1754#jqt ul.metal li {
1755 background-image: none;
1756 border-top: 1px solid #fff;
1757 border-bottom: 1px solid #666;
1758 font-size: 26px;
1759}
1760/* line 445, ../scss/include/_skeleton.scss */
1761#jqt ul.metal li a {
1762 line-height: 26px;
1763 margin: 0;
1764 padding: 13px 0;
1765}
1766/* line 451, ../scss/include/_skeleton.scss */
1767#jqt ul.metal li em {
1768 display: block;
1769 font-size: 14px;
1770 font-style: normal;
1771 width: 50%;
1772 line-height: 14px;
1773}
1774/* line 459, ../scss/include/_skeleton.scss */
1775#jqt ul.metal li small {
1776 float: right;
1777 position: relative;
1778 margin-top: 10px;
1779 font-weight: bold;
1780}
1781/* line 473, ../scss/include/_skeleton.scss */
1782#jqt ul.edgetoedge li {
1783 font-size: 20px;
1784}
1785/* line 476, ../scss/include/_skeleton.scss */
1786#jqt ul.edgetoedge li:first-child {
1787 border-top: 0;
1788}
1789/* line 480, ../scss/include/_skeleton.scss */
1790#jqt ul.edgetoedge li.sep {
1791 font-size: 16px;
1792 padding: 2px 10px;
1793}
1794/* line 485, ../scss/include/_skeleton.scss */
1795#jqt ul.edgetoedge li em {
1796 font-weight: normal;
1797 font-style: normal;
1798}
1799/* line 494, ../scss/include/_skeleton.scss */
1800#jqt ul.plastic {
1801 font-size: 18px;
1802}
1803/* line 498, ../scss/include/_skeleton.scss */
1804#jqt ul.plastic li {
1805 border-width: 1px 0;
1806 border-style: solid;
1807 background-image: none;
1808 background-color: #2a2b2c;
1809 border-top-color: #2f3031;
1810 border-bottom-color: #232324;
1811}
1812/* line 506, ../scss/include/_skeleton.scss */
1813#jqt ul.plastic li:nth-child(odd) {
1814 background-image: none;
1815 background-color: #2f3031;
1816}
1817/* line 510, ../scss/include/_skeleton.scss */
1818#jqt ul.plastic li a.active.loading {
1819 background-image: url(img/loading.gif);
1820 background-position: 95% center;
1821 background-repeat: no-repeat;
1822}
1823/* line 515, ../scss/include/_skeleton.scss */
1824#jqt ul.plastic li small {
1825 color: #949698;
1826 font-size: 13px;
1827 font-weight: bold;
1828 text-transform: uppercase;
1829}
1830/* line 525, ../scss/include/_skeleton.scss */
1831#jqt ul.individual {
1832 border: 0;
1833 background: none;
1834 clear: both;
1835 overflow: hidden;
1836}
1837/* line 531, ../scss/include/_skeleton.scss */
1838#jqt ul.individual li {
1839 font-size: 14px;
1840 text-align: center;
1841 -webkit-border-radius: 8px;
1842 border-radius: 8px;
1843 -webkit-box-sizing: border-box;
1844 box-sizing: border-box;
1845 width: 48%;
1846 float: left;
1847 display: block;
1848 padding: 11px 10px 14px 10px;
1849}
1850/* line 541, ../scss/include/_skeleton.scss */
1851#jqt ul.individual li + li {
1852 float: right;
1853}
1854/* line 546, ../scss/include/_skeleton.scss */
1855#jqt ul.individual a {
1856 line-height: 16px;
1857 margin: -11px -10px -14px -10px;
1858 padding: 11px 10px 14px 10px;
1859 -webkit-border-radius: 8px;
1860 border-radius: 8px;
1861}
1862/* line 555, ../scss/include/_skeleton.scss */
1863#jqt .toggle {
1864 width: 94px;
1865 position: relative;
1866 height: 27px;
1867 display: block;
1868 overflow: hidden;
1869 float: right;
1870}
1871/* line 563, ../scss/include/_skeleton.scss */
1872#jqt .toggle input[type="checkbox"] {
1873 margin: 0;
1874 -webkit-border-radius: 5px;
1875 border-radius: 5px;
1876 height: 27px;
1877 overflow: hidden;
1878 width: 149px;
1879 border: 0;
1880 -webkit-transition: left 0.15s ease-in-out;
1881 transition: left 0.15s ease-in-out;
1882 position: absolute;
1883 top: 0;
1884 left: -55px;
1885 -webkit-appearance: textarea;
1886 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1887}
1888/* line 577, ../scss/include/_skeleton.scss */
1889#jqt .toggle input[type="checkbox"]:checked {
1890 left: 0px;
1891}
1892/* line 583, ../scss/include/_skeleton.scss */
1893#jqt .info {
1894 font-size: 12px;
1895 line-height: 16px;
1896 text-align: center;
1897 color: #444;
1898 padding: 15px;
1899 font-weight: bold;
1900}
1901/* line 12, ../scss/jqtouch.scss */
1902#jqt {
1903 /* Lists */
1904
1905}
1906/* line 13, ../scss/jqtouch.scss */
1907#jqt > * {
1908 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));
1909 background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAQAAACQ9RH5AAAUyUlEQVR4nFVZB5jU5Nb+ksxkkpnMZCgXpIuiIL1IURCW3ouAV5ByryCIFJUuTUQp0uXSlqqAuiILy9IEBOlVOlylCawgIFImM5lJMpkk9823w/r/8zw7Sb5yynvec76TWZYQQSBE8pL053Of+x1k3e9G4VVyc5L0R5jF/nYeUvD5RZT9hGR4/x7Jk/Kvy8OEDA61oU+7OUKahfPHm3sb0dU1mKc7WEHW9WZENQn5iWkenOdtliJkhLyFKj4cqc3oHj4RdoYkqjt/q6msDTKq+/ebE72tgu7z+6E9ZiPuLEQPjBDSLZlQ74UIOQLjmpgKVbXXnAeHLntuCcHw6/wRMt7P6koTrphMyJ1AM2dvbIRZzyJkiPGs310+OqQkjqTylfWG2DNUzVDctbYvJAiZau6OEcKT/0SH2oetWuZ93z3JJiX0g+QYmxmYgrmD2sQ0Fr9ifX1L0WIR4m9Ipifg2QHruE5I6XgaAow8r5ePlvLJgcVWRtIdGw7QbuHuUaoz+Zg9IHbzNnNui1hHzfswQIhmunfPGCXU43Jl3A0zB1F5e20We9vB2614UihqW6grFNJbRl/+KYxd09c/DCWewGYPvKyLzZlY0VKrTz61L0Y3mkK4jEbIb/DiM2YWVbFbboKV3f2vKnR3/DLAbguTFkQy2B1G80C2/VSDpWaxacWidy31bAeeni54E8oeYONk7jr/FmZ3UjvHk1OyzC3yfp+O+KbAJHq3SlyRPBA75MmGKW7gCKkUJeQaxWG/rbOKtjjkwfhDpjq872mf87Ad2Y1khi9fTDv7MeyUmUNgsAmuF4MvkyIVoPaIN5WO9cvKUOEl0kk5C5iV4A2Yl4CnYX4DEBDomgdK/spb5Hoy/64Mf8qeZp62E1I17oKxDdJrptitdjeyjusL317jp7IVYbFMXksNEStQNvahiMyUx5LC9O51WN1Waw5PtoEXcuyZlIsC7tRl7CNSF3eDCrj/LP0+ACr2hgF3tRoxv3oO6zvgLxGg4lYk/QD4UHKi/VeqLnMSI4u1WSqyjl2H8Q6escpEXwUqJgdMbUSDMck+4opMzAh/gbHD4rt2ETISePWHC92C17DiEljRS25i9vV+AyLm+UrKU4TiGD/C8p5fXFafZGtrmVq+lasDa3zjCoh2nqq44j8p5ajnPT8Ki/lBTmPp6ex6wf0eF6kJ0IdbXwTbMXuAQl2EZ2PsBcxURxi+UW5zWVZnsokpZ9xV/kmLyEtcMjXXz7bw1bOHQ9jLVF2/eHPhS4OQb0PN/BlsvoJr0fL6MmIkW+pDkpnOIa0w3d5f/gDGdoKPrZD5FZjTxg7nfHKerwBpchZ/ElvGmsk/sorxw+F1Jkba+wojUHkcuwdq5gPWU0k7UA4+3Iu0ghnfGz8l9hckwK+I9z5puXeavMnnWLN941AIVykHAWoV9VVhljE1/FdiHSXSCCN/R1+oqQHDVMhoYW4QGhnz3fTTfuG30xVHo+w+dqGwjVYkNp6nz4GwQUaNYCVjFbaOBf92AInGZlTsoy5lJyhHPV8H+qszIrUxmgfLm5Ml7O7QxMhKjhKJKt3lywl2oHcHgc3hYHWLi3wRuAzjt6UqU/MmizNZtqk9TO8Qcx+/CL3rHRXvQbqatfX9wTue2r7vvRbfji4NaU+ks7B1Trx3/BFCsAp/nyADWtg1EwtiTX1PaLy/416GAa2N12Mj9BPiaKax+RK3GOa1YHmzEs13idFgzBRtrA0BQ7FpYuC4/GH0RXhZGVHSvMdjk2NnjJsaR9UuwHgc4ahHU6wI4LvkKQEVPbF2kbjd2WeMBqW6sEutU4j3KoTqjtPPN9sZxrzPZrlpRwYne9DTbassmhXkLsxbfihehKmp8QZI+8K2HPgYfn2XGMj2DFRid0PwY3ZyoDiUHMf9yYITqo/aECpMn80NTedDL2ZzmhOZFPb/4pw6xb1nvhmuEdqImSbuqKcpRq8rm51vE5S5a9jxuPYXtiQUWnf3hJfbb5PLditD4QvbU+I91FUMa+WL7Sn2gQn1PdmkU4CLuqMGeDEleD+YP39F+hkuZIPtecHKfM/Q+sj5qDv+njFOJCgda3mVrqOK/2VPh02r9BzbrTNz/F/hKZxwZ+R00WsX+BAwrwkekLO0dUYJ6QREbImvx4zK+uKjRYvdS8W3JxXVTUJR7rFdL1QutiqRRUenIFSDpcveLQhC36REZopWmO2Phzo+N4nd8tjEFMXj9hvack8L6kEPkXoRKKFuFPr5/hVronzly/XdU//OVsme45utfUrr83fSduKRd1ov+geqn+H5MGSbiO1khCOYyol2wr7j8keBfj4uwp7F4GkjSTJF0ddbeIUss7L16amBqWj0R2z5TjvpKe6bg/iUiNUzqvJVxH8b+0HGnh6W+68/X/UosOKGWAWIHNb5YEpZbh5FlrSGr43Ua+Si9walFU+J+bGngSKQ6fENHvZKOjaDtOXa1/ox8gPAPkFJ1JKeNfVSfxorKGBh/rH1K67z4V1WyraqJIoI+XufZ5/TKjPXvDsDVc1+6drVmGK1Odxdfw5ySvg/oyQ8Axc+id/mD1hsPLKaewrbeViVBXr5UZlyvdPYq1w29zX7MG1aj+Rdy9Y+COQ/dfIPlB/pWtiPWc4+FchlvjevK2f01fC/Euc2Pc0xMzpiODUDG7h7ifxd22jdyo4vclj3PJ2I7y4ArobDeLaTPaEESN/ZnGC/aH0l9baLxkpAxM50f7ggPs27FtctiTbJ27IYScRi4lUy1U5aE+h8e9DlshWFxL0xE98jwtftu95M5hOhZIGDr+COvRYaGskSd3GbYdOl4G9Oe9KCAruOHhrXaRIxsSD7T6cQRqbChAmmGnJHu2plAPpP/DGSJW/WshGiHCC1Pdmaa+AN2QkYeo59gR8ZUbUP9EFOGe/CdJ4vDObijn0Ban6Lt7Ze5VWpauw5qmgNBKiIUYy5TPl7l8TsKHmC1JoI2gQCheKDKPzjJVXyeXezPWFAd/PXQGVzW2gOs8tqAcEyzKybupZ86mX/WHPKiHfZYbFiTjqP3c+zSTVdg74WJsD795S6bNDpTBW0ofz9iGnrnt5cL72nlRlbDBJNV1s4DePx+KJQCTy9FK8Yn2GNgtCp1jHJNHK906n0d+DGz7gLU/nL0n7TqZfE8+FvyTPw9kUs6q3fSXIeW/wZS3LhYWFxZ6IJ1n3u/ICRnWQ5RWWIsQCAHwcVl5Kh0XsgTRHQ7ki8KZCqJ70CpGbxj2girQRj6tqq0BEeLxGfOkoV/6qtVmZKZbHsasR9Li1aKRb2FaKxfKzNFA/Y36Sp8bG1hO5ZJ3wQzR+Zi31jIPARLbf7tNnSSRqgy9bcZNECRLsaD4DFYK1A8af5XHWu4cztnB6843aMUPQkWiF4G36MxfPJgree/O6rD44Wj7cMatMseFLbM4sGRYKpo9WZfte4R1jx0C6GMD3yuz3XiXSTUDLsIsGuARsroXf81BeJ5ZLe6WqkCLrlRud6rAz8uIiFC1KnMF4KodiTNqAfO9i5AOF/wr8esfeoLypQuMGMTQy2H3ldiP7iHiRWBIokqglGwUvf3UgRlBT2fdzmJp8RS2KLL5inu1N55HksayqtjJygSfUTjWp5EGgHzJiFSLukW22/bBNa3e7Dv3UBG+aPwN1G7KnDFzHdTR35YcxuMPuifks1vYtpq/8G657YOG0Jqajdh70ZfiOWBYV1wqWlAXot4tce+naI1/0/evKtvQiFNcwZ1BSXdDOFvnYh4sf+1gB4sMIiqdxSM9o4L59OPqAt4XHto8AG+j4RkbzmEGUjuLDBPpbcKbN9Y1MobWr4R0J56eQeobB+kPvauSFtt/qlpigVEi1TY+jWDHNY0I2aJP/X/0+3I6PouO9X7YDWEHixMlQNxg1kS8DZx/47XPfQGblU+iQLq02lsb6K3t+xc2WyjcIa3GQK5PlER+ddbK7qtZ2mShXxJXO172hBD+1+tgY+gZBxjKpUSXwPIxvA4DF05iAAXqz+W55OKttXmf7MOa4DU0kpbWVHayt5BV36PrWMXTVaVnuZHiNsdnJDOreyuGUQ/G9rL9i3Uz1uFLIf0lP2nfAMWnNWJ4sgIU4w4/iQ+0InHrckQQp3liJC/jt0z+iNaNn4i059q5VyA+omQW4LYau1HoTdHp7kdnfmfZDzFGU36+ffoHxczt0N7uGWSB8Yr5Ek4pPBlU7XmJWRcRTUHLO4p5ncPnktFXWhxBpV/ziSq4bp7AC2tXM63JrumOf5xbjscQ/C2aZXfDPxdihsf+bWZ7YdZvfT6sDKafEDrZGRFlZuvK2128sjpvutujQEXuTv72mwviI/Kfkvsgu4SlHy/z77AjKpE9kV/JjjmSrSIl8hSshs6zfIcqIOsFxOov4zKFAZdCd7CTBtpGds6XBX1hIbCZvTbV1tbL3t7RLsTsoSwVMJI21T7vviL0iKD7BmtudQ+G/F12NuXP5wXrGSjmRneIpTHLqLeUimo8xVxHUgkdTN/gGAPItPl8wA5fWdyCZ7T+Kw3pNicJKcgZoy5r14NlnM6KnLpAViVpHJUSpDw0x2Sei457XICuYkmH4EprjW9g+UUtviOi5VNf3DRi2tubNKuuoU4n7G7ldIl8QKSO+ZpIpriL3w0Dxdi3/h6lNjnqQZvRdPQ5wV8hvSHsTsCm2K1oYa+PPIRr03N8Cph4xuqHRw+UZWQd16eHMwsbTg5S3L31+1mLhWF7uP4blxeoZV2PPaX+p1uXS6f4qQEwBqstBafSd0HmD7zL7hXuEBygb199A7MKZ9cLHQN9pEdX+eKORchJqing6hbYhbPOz+HvTA/NnrdtF3YUkdGL0vsZnnnN4ApI5kShkhm98CfBrJlFwsyYmviZeFLWUDY60uof2pKfqnHInVoGmyNvINPbPKRn9k9/q2x1xUCwVq6KWFjYFqyVahh6lt0VYwoAxZZG5lBjp1zX0wuCRWnaZB60WPl9Xe02oTe0wsqnZCqA4r6WPrc9i3FjC29B5CS+COjBLnUvB3UeK1BB4xElGbGxnSJUTrCUC9o9+NrSC7KUdrQNXjSC2po+MjY0JNU+7r2U+0dEwMxQ3bfZtyM4Vt51yAlkS4up8qLul5ZOzzu3m7KuIa4TahfpWn7M7ScvD9o/6nN0gUrNivbk4Tp5dnpTAA18dukMwJINlROn6WNAkflFQnyXfzXPQJTJ8Ai2T6GDPu24sXWeyPXEiwpWDrXVh4i+trT5O2Q4gQr01Vis4/EI0d3tfJHf4xX9zMV3c0cM86SWtdD+kdmjKFdbdQTIsV9ayg0NY3Qup+jA22a1oLyQCyLv6UaCVQw8zo8+Fcl1x/0DjeCTcwPw8OttvrS8kITx4VHPDGUNweGG8EXmALFzRt3UCderTW8ele+QENxnzhYep9OvLQ+lxwj9MbiUnOcqO4UpMbTIM20XMvsVNYJ/0WcRsOtqKnPIJfOpLkGyuF3CaPzEuVo4Ib+XXdTYcr1sj062nD8BHSW73D+MSLKG6tqTFJwf01LOjrApSmSF8hdJmpY4ntkDQK/v0e/jJwzioFYx+Tqakechu9T/q0Yq+kqtPMqgGSeGjufiMclc4iYrvoEdEzsYg0Ey9RohyJNCSzU/9hDK0ayvlWeR0zlvD6UNSvmOH+ujtZ1aRqvoP+qvAw7JuTmCZlGm/DrAlwoDA54f0OEq/JacW8L1fPv60lp9Q8aSDppb+qnrFHFZSAxnqzSDtfGx/jHQX1v8uz0tW9o9LHmUk+5BbRZCtK4eSTF43GiQbm7mBLt6Vwpmuf43qMmQmf7wunhO/YF5TNtGKwSaO9P0kbtbPKXLmcupwKvenMSbdmA7Ex0/97bKcxOzAH4JZVugpPTaoOYL+wLgKnBsJNoyE874zVZ8JHhFaxDfC0Tfz98Efg0CvOWFCzc6yi3QNGd6GOuo22zcfyBY2k4B6A7VMT50CwLfxiT9Ca4xlESfP0jOrOZ8gcU0nYHK5ATajmvvXqbiBASHtSqHZkjucJdWW0bFLzLTzNduPMNkrXjfkiu1X4Ri+U9qEFqQmLV+Kvr/ekUTTUKTkktTowKjWT3cfUJP+JVKQ96FvR/YrlXNabRTcl/kF3dkVY1sLcK6KY+AxcyVELUVdmK4fh7wCOw1NFkK+cfhgej3Z/CdTYTHD6XuqhUBbxe046l2rNr4OV3Ulj/0NakzLYKeJYu6lTEYBeSTwF+V/YHIKQv3T3kNyEHffAjorpdn0MGQ8zFoUOCRcB8RnKlk622+g9Iz7wrKZEZbdrF3khVVQvZXUPl9Tr87uSD0O1pU5mJQBYAUtzopO1ed7h3Bh6sIdQd+Zj45qE3zOCwuYekix7ITBWyZR/9r4BQN/1XGTqkbeZ3ORrNJpD2XryJYx3tp8V72vFUo8irNvQL2Sr0XzcLmZHWlpLsaBodAEAWsLN56+nPRhhzrfqIILl5ShQGI71b4YSqXn2gOBh2grYtuMeNUpd021ll6V+cLpYXzo/Qm0tFJe31dZaVYx7jFtaBrzPYWy3oR9mrxfm+paFC8PDhk5tcLF3UMeywdZVGtFsCtRqz1uI5k3leW6+5yYzgF8fvQw0VsQawZz7NDkQqID7Q9R46cD/+bdQWWN64DXyGXVtDoxckhopbUTG3+TZov439ZHGGFo4l9MC4o0dgtDhgaU0P7sjflnSF/y3sH8Y95s1PFXeWeH+Y6Qgz59xmQ3q3IivM6b771tNzIHcPhqGfuHc1Pj4IdKIhmkAKLbSmat2BMfLJ9mT+mKoUeCvSgbScvYlOWzU8s6npf1NaSGW9VQvJASsWmj97UtDmKWkG+O2bDsxv2GZZq9GeJZb3YHWHmYtTc9v2aNwa7V8GPfz7BTbGsRb52efs4dgaTGpm/9p914mnBO4Ca7/4XObmWGxH6h4veAFs5PbJ4srmD8lGWPlEMUf7B2aSl4Xr4bilE53mQ2A83tnG0AfF3rL/tRlvtneyg23kwNiOHLcu0wHJKXYLHGtZyNNlapg7e1INy0CMEVEWoKAbda2Alh5yf3ZBQ2QNsApTvHJAzIPghthTI72YvRPmiolnWZxt51VAfGM6ITwRHi+LfER1zmyQzEw09RfMvQ/bwW2EDwFbhEAAAAASUVORK5CYII='), -webkit-linear-gradient(top, #7b7c7f, #696a6d 30%, #555658 65%, #464748);
1910 background-image: url('data:image/png;base64,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'), linear-gradient(top, #7b7c7f, #696a6d 30%, #555658 65%, #464748);
1911}
1912/* line 20, ../scss/jqtouch.scss */
1913#jqt .toolbar {
1914 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)));
1915 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%);
1916 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%);
1917 background-repeat: repeat;
1918 background-position: 0 0, 8px 8px, 0 1px, 8px 9px;
1919 background-color: #2f3031;
1920 background-size: 16px 16px;
1921}
1922/* line 29, ../scss/jqtouch.scss */
1923#jqt ul li {
1924 border-top: 1px solid #48494b;
1925 background-image: none;
1926 background-color: rgba(85, 86, 88, 0.2);
1927 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)));
1928 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));
1929 background-image: linear-gradient(top, rgba(123, 124, 127, 0.2), rgba(98, 99, 101, 0.2) 3%, rgba(72, 73, 75, 0.2));
1930}
1931/* line 33, ../scss/jqtouch.scss */
1932#jqt ul li a {
1933 color: white;
1934 text-shadow: #3c3d3e 0 -1px 0;
1935}
1936/* line 37, ../scss/jqtouch.scss */
1937#jqt ul li .toggle input[type="checkbox"] {
1938 -webkit-border-radius: 5px;
1939 border-radius: 5px;
1940 background: #ffffff url(../img/jqt/on_off.png) 0 0 no-repeat;
1941}
1942/* line 42, ../scss/jqtouch.scss */
1943#jqt ul li input[type='submit'] {
1944 background-image: none;
1945 background-color: white;
1946 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));
1947 background-image: -webkit-linear-gradient(top, #ffffff, #ffffff 50%, #ffffff 51%, #f2f2f2);
1948 background-image: linear-gradient(top, #ffffff, #ffffff 50%, #ffffff 51%, #f2f2f2);
1949 border: 1px outset black;
1950}
1951/* line 47, ../scss/jqtouch.scss */
1952#jqt ul li small.counter {
1953 -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
1954 box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
1955}
1956/* line 54, ../scss/jqtouch.scss */
1957#jqt ul.metal li {
1958 background-image: none;
1959 border-top: 1px solid #fff;
1960 border-bottom: 1px solid #666;
1961 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
1962}
1963/* line 60, ../scss/jqtouch.scss */
1964#jqt ul.metal li a {
1965 text-shadow: #fff 0 1px 0;
1966}
1967/* line 62, ../scss/jqtouch.scss */
1968#jqt ul.metal li a.active {
1969 color: #000;
1970}
1971/* line 65, ../scss/jqtouch.scss */
1972#jqt ul.metal li em {
1973 color: #444;
1974}
1975/* line 71, ../scss/jqtouch.scss */
1976#jqt ul.edgetoedge li {
1977 background-image: none;
1978 background-color: #3c3d3e;
1979 background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #282829), color-stop(100%, #2f3031));
1980 background-image: -webkit-linear-gradient(top, #282829, #2f3031);
1981 background-image: linear-gradient(top, #282829, #2f3031);
1982 border-bottom: 1px solid #1e1e1f;
1983 border-top: 1px solid #343536;
1984}
1985/* line 76, ../scss/jqtouch.scss */
1986#jqt ul.edgetoedge li.sep {
1987 background-image: none;
1988 background-color: rgba(0, 0, 0, 0.3);
1989 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)));
1990 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));
1991 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));
1992 color: #949698;
1993 text-shadow: #000000 0 -1px 0;
1994}
1995/* line 83, ../scss/jqtouch.scss */
1996#jqt .info {
1997 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cccccc), to(#aaaaaa), color-stop(0.6, #cccccc));
1998 text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
1999 color: #444;
2000 border-top: 1px solid rgba(255, 255, 255, 0.2);
2001}
2002div.spinner {
2003 position: relative;
2004 width: 100px;
2005 height: 100px;
2006 display: inline-block;
2007}
2008div.spinner div {
2009 width: 12%;
2010 height: 26%;
2011 background: #000;
2012 position: absolute;
2013 left: 44.5%;
2014 top: 37%;
2015 opacity: 0;
2016 -webkit-animation: fade 1s linear infinite;
2017 -webkit-border-radius: 50px;
2018 -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
2019}
2020div.spinner div.bar01 {
2021 -webkit-transform: rotate(0deg) translate(0, -142%);
2022 -webkit-animation-delay: 0s;
2023}
2024div.spinner div.bar02 {
2025 -webkit-transform: rotate(30deg) translate(0, -142%);
2026 -webkit-animation-delay: -0.9167s;
2027}
2028div.spinner div.bar03 {
2029 -webkit-transform: rotate(60deg) translate(0, -142%);
2030 -webkit-animation-delay: -0.833s;
2031}
2032div.spinner div.bar04 {
2033 -webkit-transform: rotate(90deg) translate(0, -142%);
2034 -webkit-animation-delay: -0.75s;
2035}
2036div.spinner div.bar05 {
2037 -webkit-transform: rotate(120deg) translate(0, -142%);
2038 -webkit-animation-delay: -0.667s;
2039}
2040div.spinner div.bar06 {
2041 -webkit-transform: rotate(150deg) translate(0, -142%);
2042 -webkit-animation-delay: -0.5833s;
2043}
2044div.spinner div.bar07 {
2045 -webkit-transform: rotate(180deg) translate(0, -142%);
2046 -webkit-animation-delay: -0.5s;
2047}
2048div.spinner div.bar08 {
2049 -webkit-transform: rotate(210deg) translate(0, -142%);
2050 -webkit-animation-delay: -0.41667s;
2051}
2052div.spinner div.bar09 {
2053 -webkit-transform: rotate(240deg) translate(0, -142%);
2054 -webkit-animation-delay: -0.333s;
2055}
2056div.spinner div.bar10 {
2057 -webkit-transform: rotate(270deg) translate(0, -142%);
2058 -webkit-animation-delay: -0.25s;
2059}
2060div.spinner div.bar11 {
2061 -webkit-transform: rotate(300deg) translate(0, -142%);
2062 -webkit-animation-delay: -0.1667s;
2063}
2064div.spinner div.bar12 {
2065 -webkit-transform: rotate(330deg) translate(0, -142%);
2066 -webkit-animation-delay: -0.0833s;
2067}
2068@-webkit-keyframes fade {
2069 from {
2070 opacity: 1;
2071 }
2072 to {
2073 opacity: 0.25;
2074 }
2075}
2076/*
2077
2078Color list:
2079- login box:
2080 light#ff9955
2081 dark#ff6622
2082- login button:
2083 regular#dd5500
2084 hover#773311
2085- login translations:
2086 box: #cc6622;
2087 not-selected:
2088 color: #ddaa99
2089 background:#994422
2090 selected: #772211;
2091*/
2092html {
2093 height: 100%;
2094 -webkit-text-size-adjust: none;
2095 -ms-text-size-adjust: none;
2096}
2097body {
2098 font-family: Helvetica-Neue, Helvetica, Arial, Geneva, sans-serif;
2099 margin: 0px;
2100}
2101.ellipsis {
2102 text-overflow: ellipsis;
2103 overflow: hidden;
2104 white-space: nowrap;
2105}
2106div#loginForm div.credentialsMessage.error h1 {
2107 color: red;
2108}
2109div#loginForm div.validating div.loading {
2110 margin-top: 50px;
2111 margin-bottom: 50px;
2112 margin-left: auto;
2113 margin-right: auto;
2114 width: 100px;
2115}
2116/*
2117
2118Color list:
2119- login box:
2120 light#ff9955
2121 dark#ff6622
2122- login button:
2123 regular#dd5500
2124 hover#773311
2125- login translations:
2126 box: #cc6622;
2127 not-selected:
2128 color: #ddaa99
2129 background:#994422
2130 selected: #772211;
2131*/
2132html {
2133 height: 100%;
2134 -webkit-text-size-adjust: none;
2135 -ms-text-size-adjust: none;
2136}
2137body {
2138 font-family: Helvetica-Neue, Helvetica, Arial, Geneva, sans-serif;
2139 margin: 0px;
2140}
2141.ellipsis {
2142 text-overflow: ellipsis;
2143 overflow: hidden;
2144 white-space: nowrap;
2145}
2146#jqt div.cardList ul li.cardListItem a small.favicon {
2147 background: white;
2148 -webkit-border-radius: 3px;
2149 border-radius: 3px;
2150 display: block;
2151 width: 26px;
2152 height: 26px;
2153 padding: 0px;
2154}
2155#jqt div.cardList ul li.cardListItem a small.favicon img.favicon {
2156 margin-right: 3px;
2157 margin-top: 3px;
2158 width: 20px;
2159 height: 20px;
2160}
2161#jqt div.cardDetail ul li a.password {
2162 color: gray;
2163}
2164/* ---------------------------------------- */
2165/*
2166body {
2167 margin: 0;
2168 font-family: Helvetica;
2169 background: #FFFFFF;
2170 color: #000000;
2171 overflow-x: hidden;
2172 -webkit-user-select: none;
2173 -webkit-text-size-adjust: none;
2174}
2175
2176
2177div.toolbar {
2178 box-sizing: border-box;
2179 -moz-box-sizing: border-box;
2180 -webkit-box-sizing: border-box;
2181 border-bottom: 1px solid #2d3642;
2182 border-top: 1px solid #6d84a2;
2183 padding: 10px;
2184 height: 45px;
2185 //background: url(./images/old/iPhone/toolbar.png) #6d84a2 repeat-x;
2186 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAArCAIAAAA2QHWOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUCNddjDEOgEAQAgn//5qltYWFnb1GB4vdSy4WBAYStKyb9+O0FJMYyjMyMWCC35lJM71r6vF1P07/lFSfPx6ZxNLcy1HtihzpA/RWcOj0zlDhAAAAAElFTkSuQmCCCg==) #6d84a2 repeat-x;
2187}
2188
2189div.toolbar h1#pageTitle {
2190 overflow: hidden;
2191 margin-top: 1px;
2192 margin-bottom: 0px;
2193 margin-left: auto;
2194 margin-right: auto;
2195 width: 150px;
2196 height: 25px;
2197 font-size: 20px;
2198 width: 150px;
2199 font-weight: bold;
2200 text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0;
2201 text-align: center;
2202 text-overflow: ellipsis;
2203 white-space: nowrap;
2204 color: #FFFFFF;
2205}
2206
2207div.toolbar a.button {
2208 position: absolute;
2209 overflow: hidden;
2210 top: 8px;
2211 right: 6px;
2212 margin: 0;
2213 border-width: 0 5px;
2214 padding: 0 3px;
2215 width: auto;
2216 height: 30px;
2217 line-height: 30px;
2218 font-family: inherit;
2219 font-size: 12px;
2220 font-weight: bold;
2221 color: #FFFFFF;
2222 text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;
2223 text-overflow: ellipsis;
2224 text-decoration: none;
2225 white-space: nowrap;
2226 background: none;
2227 //-webkit-border-image: url(./images/old/iPhone/toolButton.png) 0 5 0 5;
2228}
2229
2230div.toolbar a#backButton {
2231 left: 6px;
2232 right: auto;
2233 padding: 0px;
2234 max-width: 55px;
2235 border-width: 0 8px 0 14px;
2236 //-webkit-border-image: url(./images/old/iPhone/backButton.png) 0 8 0 14;
2237 -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;
2238}
2239
2240// -------------------------------------------
2241
2242body.iPhone form.loginForm {
2243 min-height: 372px;
2244
2245 box-sizing: border-box;
2246 -moz-box-sizing: border-box;
2247 -webkit-box-sizing: border-box;
2248 padding: 10px;
2249 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2250 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2251}
2252
2253fieldset {
2254 position: relative;
2255 margin: 0 0 20px 0;
2256 padding: 0;
2257 background: #FFFFFF;
2258 -webkit-border-radius: 10px;
2259 -moz-border-radius: 10px;
2260 border: 1px solid #999999;
2261 text-align: right;
2262 font-size: 16px;
2263}
2264
2265.row {
2266 position: relative;
2267 min-height: 42px;
2268 border-bottom: 1px solid #999999;
2269 -webkit-border-radius: 0;
2270 text-align: right;
2271}
2272
2273fieldset > .row:last-child {
2274 border-bottom: none !important;
2275}
2276
2277
2278.row > input:not(input[type|=radio]):not(input[type|=checkbox]),
2279.row > div.fieldValue {
2280 width: 100%;
2281 box-sizing: border-box;
2282 -moz-box-sizing: border-box;
2283 -webkit-box-sizing: border-box;
2284 margin: 0;
2285 border: none;
2286 padding: 0px 10px 0 112px;
2287 height: 42px;
2288 background: none;
2289 font-size: 16px;
2290 font-weight: normal;
2291
2292 color: #666a60;
2293 -webkit-user-select: text;
2294}
2295
2296.row > div.fieldValue p {
2297 margin: 0px;
2298 text-align: left;
2299 height: 40px;
2300 vertical-align: middle;
2301 line-height: 40px;
2302}
2303
2304body[orientation="landscape"] .row > div.fieldValue.password {
2305 padding-right: 120px;
2306 //background: url(./images/old/iPhone/password_background.png) no-repeat 105px;
2307 background: url(data:image/png;charset=utf-8;base64,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) no-repeat 105px;
2308}
2309
2310.row > div.fieldValue.password {
2311 color: rgba(255,255,255,0.5);
2312 //background: url(./images/old/iPhone/password_background.png) no-repeat 106px;
2313 background: url(data:image/png;charset=utf-8;base64,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) no-repeat 106px;
2314}
2315
2316.row > div.fieldValue.password.clear {
2317 color: #666a60;
2318 background: none;
2319}
2320
2321.row > input[type|=radio], .row > input[type|=checkbox] {
2322 margin: 7px 7px 0 0;
2323 height: 25px;
2324 width: 25px;
2325}
2326
2327
2328.row > label {
2329 position: absolute;
2330 margin: 0 0 0 14px;
2331 line-height: 42px;
2332 font-weight: bold;
2333 max-width: 92px;
2334 overflow: hidden;
2335 white-space: nowrap;
2336}
2337
2338body[orientation="landscape"] .row > label {
2339 max-width: 150px;
2340}
2341
2342body[orientation="landscape"] .row > input:not(input[type|=radio]):not(input[type|=checkbox]) {
2343 padding-left: 140px;
2344}
2345
2346.row > img.favicon {
2347 position: absolute;
2348 width: 20px;
2349 height: 20px;
2350 top: 12px;
2351 left: 11px;
2352}
2353
2354.row > span {
2355 padding: 8px 13px;
2356 text-align: left;
2357 display: block;
2358 color: #666a60;
2359 font-size: 10pt;
2360}
2361
2362.row.notes {
2363 -webkit-user-select: text;
2364}
2365
2366// -------------------------------------------
2367
2368.whiteButton {
2369 margin-left: auto;
2370 margin-right: auto;
2371 width: 150px;
2372 display: block;
2373 border-width: 0 12px;
2374 padding: 10px;
2375 text-align: center;
2376 font-size: 20px;
2377 font-weight: bold;
2378 text-decoration: inherit;
2379 color: inherit;
2380
2381 //-webkit-border-image: url(./images/old/iPhone/whiteButton.png) 0 12 0 12;
2382 -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;
2383 text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
2384}
2385
2386// -------------------------------------------
2387
2388body.iPhone .loginProgressPanel {
2389 min-height: 372px;
2390
2391 box-sizing: border-box;
2392 -moz-box-sizing: border-box;
2393 -webkit-box-sizing: border-box;
2394 padding: 10px;
2395 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2396 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2397}
2398
2399body.iPhone .loadingBar {
2400 margin-left: auto;
2401 margin-right: auto;
2402 margin-top: 60px;
2403}
2404
2405div.loadingBar {
2406 height: 22px;
2407 width: 214px;
2408 //background: url(./images/old/loading/loadingBar.gif) no-repeat center;
2409 background: url(data:image/gif;charset=utf-8;base64,R0lGODlh1gAWAMQAAP////f39/f37+/v7+/v5ubm5ubm3t7e3t7e1tbWzs7Ozs7Oxc7OvcXFvcXFtb29tb29rbW1rbW1pa2tpa2tnKWlnKWllP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAXACwAAAAA1gAWAAAF/+AljkQjUVWqrmzrvnAsz3Rt33iur5S0DKPgaOCgWHbIpHLJbDpjx0ZAKDoYKz4CYMsFDBLgsHhc6Jq737E6XD6f02t1242Or+f0LdzOztf5Ynh5e2ALEEYWFAZCBhUWEwiDgIF+XIR8gnSXdplum3Gdb5N9lV6jYKFmn2APKRMFQxIWEgGSp6l/o7iWpwm7er2/prelw7rFq2ELE4lTFw+PA7bHpclkyMHYxNXZ3NuV1sqODRcDKZGa3eDqfuGk69/t7NOTwu6oCCkDDY/0gPbz0sXzh0kbNXgH5W2bUGGZhQUCExLkZLBexX8XC3qTGNHilgYVIjiSJmpgR4wbPf8iVKmQo6eAL+MVqIAopsuSN1XBxMlyIqiMFFOi5BIghQULPIe27HlS40qlPu8A/SnUKRcBNFFo4WXSJlOvUJsGfWo1qpypUs8coCkLIrCuScuKpUp27NKwYOXmtdsFZIQFs97mzPU1Lt+5aevSvavX8OIuASQ0HIACwT1faM9WPbz3MWLNihMz5rwlAU0gDhIpgKuTNWG8jkWbvbbZc2fZXQoYWSCCcqIFhVsP5jpccPDXjYUfJx68ADNaIxrRdJAcOWnlsLFXZ57duu3YoM0ESGCEAqwgBWTRjNAg/GxKtXHfdv+Zdmj68+0TLdAAxazzQuyDyFEEFmjggQgmqOAoggw26OCDEEYo4YQUKkjBAs5Q0dsCJzhS4YcghijiiCSWSCBbGFIRAgAh+QQFBwAXACwCAAIA0gASAAAF/+AlilQznhegqkPivnBcrHQNtHH+zraN6zlej/YDwoRDljGYJC5lzdUARb2UDFHlc5e9bbnZ4hOZFC/JQ7MR3VMD2b4qiqKA19w6u/Ob0Ev5fV14TGGAflpfhzdyJxQLioNQhXyQhoKWk4mXlIKMJw2VnJlboZqjY5umUZFHnYwJJhRYp2eppLaotGu4tbpvrnIvJby7vnnEv8aEq5jMoqueMBByd81NrGDOqtfWZd1p322ACcqS2rflrenZ3M/t296UKe/o57n2vfjF+sn8x+suClSp5i4ePHAFER4Ul5DhQh+GBu55SJDixHr07mXMt3FfxzcS/zSEOLIiRoMnFWOmdLiSZKKQiFqa1IiSpkqbLHG6lHlxjJwAIi0G5TlU50yONZHeVJrzDCMJBLyU7Ml0p1GqHpNmXbq16RpPFyYsCGe16tGuZdGe7ffxn78gYOOaa7uM7lytbPG6tavurQxPIQAAIfkEBQcAFwAsAQABANMAEwAABf/gJY5kaZ5oqq5s675wLM80+ixJXgB87/eDnHBITOx+SECwyDQmkcsm8fgESovUqvI61Vq5wgKKR1hMVl3vFqxTr9nZahQcf8659eT9moey22oDKmlee1J9P4ZNiD6KTIxfcG6OWJN/ToGDQ5A8lIRanpuWf5xvdKOSgZelgimfcquop6qksni2fLiHk5phuou/j8GVtKmFscWzhSoPosm3z7nRu9PA1cLXxMsqOIDHtdmvdsjfxqDk5+DbKA0XvuHO5crp5rDq9PP29XaDCu6Y8qAFlDaQWkFrB7El1AZK04ILC1ih05dv3D2KAvFlxEiwoasc7RwME6dnosV9JS9+nqyYEiWUXgkipEhksiVLPyptbly5U2dHjlLOnKCZE6dLokcb1TR6E2lTpX/aDYWaNNJTqz2ZZnW6lerVTpcSjPHaFetPnmd9GtSYVmtbrlxQJAhgdi1QhGztotWrFu9dhXmbSEUxoYEBAkvh8nW7WLHfvY/7ApbTq4HMEiEAACH5BAUHABcALAIAAgDSABIAAAX/4CWO5JWcZwGsbMsOaCyjqmsD8Kwn9d3mO1nPtwIGacTfUZh8LWOFknRaYjZxT+TVuBwSuUevDxwU38g7sw2ti04BCQqVZG2yZ2rXvZ7cQ69YWTyAflp2gjxULxFzJn9biHlKgpJOlISRmJeQm00Gc3xfmZxZlUWjh519qKuqX6CPqaWas6RPpoG1sre0vFuwhq26wr67Xb3HtsnGYYTAKcjNytLMZdHW09jVac5Vbdfc2eHb3+Ll5Hjg531T66KuY6zvw/PFxMv31OxUofHwZ/L80RNorx4+g/peUYEQK582h+MguiN4kGJCiw8VUqEQDGFGjBE9hgQ5EeC/NQHPYzSS02CQuXQv+5kcOLMgSZjoZK5p9GDEAXU4JQYVWRLlST0pjdLcOWdBIxFIj05aGpXqVJs1K2a9qLKpnEZVsSoVG1brWLNluZ5Vq4fn0wsBrqKVy5bux6131+ZNu/fHWxIhAAAh+QQFBwAXACwCAAIA0gASAAAF/+AlitJojkmaFkDrvu6gzrTKwjgg13xy569dj/YDtoRDmzGYJC5jzZnhRJ1EZ0UjspkFbpPd3HcYxo17ZdiZl2ZefdSTpPD2PY/1NvStx/PvOnmAazV9gXxxJhMGgneETo6NT49Yg5JLlEqRiHEDKJdaoF6iYqRmpmqoblcFiS0IF1Z/m6yWs5Oqe7W0UYaZK3cTiSKQuLeYuX67xsvIx6HPQA3Dxc7N0Nej0aXbp92p30EX2dzk3ubg6Ku9tuq67I7EXO3wzPXW99j52u7K+2LUKvGaNxAMPYL2EOJTqI+hl4CaEhosSObgRIkVKaKxmHESRGAa2XDcGLLQSJElq2E1vIjpo52UAjGSlImSpkmYERey1DJMQUydHYHOFFqT6E2bKvn9MzPsAoUFIJH+XBmU6lCrRbEeNZoUYFOnDg6c3Kq167ml6dCuc1hObYyvcNOyPTtX7k6lddfebZv3bdMQACH5BAkBABcALAAAAADWABYAAAX/4CWOZGmeaKqubOu+cCzPdG3feK7vfH8tBABgoEoYjQWUcElMHZHK5bD4TJ6kU2c1yqQerSZsE/VMgEvi4gJCaSGk41P5TEprv1xh3DTPZ8lbV3BeUIJdd4Vhg4gJDSsBi4B4hnqEZn57JX2Uf3KBioeSiWiRnpOglYx0JgOlfJ+koaajda6asLWyr6exqaKXnJkkm6idu7Qmb7q3vLm+s8DFwiPEvcbMyCJ2v6vatsO4I9vQ3b3TItXO1+DN4t/U4d7L7NkX48fR1ucX6e7z8O1MLPiHLp69dwUDHiTIz+A9bPnU7esn7xm+cg/pRUTRah3Aehk/bqzoMSFIhA0V1YY0OXKhRYgYUVK0d+alxpgMZ65MeTKnQ5k/faoEOjRAnYlBbYrEqZQl05I8W+7USbRn06g4BZA4YOkp0qFCrUKlGlZqVbNlmXJtQfZq27FJ4YJ1G/erWLtohThgW7crJr/BAEsTrI+wRMP+hBDgO1fuXcQk8XqF7NJxXsuTWbyV/FdVZ26fyYW+OBpmadGBPacGvRr1YNWvWcd2XVhzX9i1ZeemfRh3b92/eScGsLgFhQgNLnNuTZq5aec3Ty+V7pRLgAJ7fWjfzr279+/gw4sfTz5FCAA7Cg==) no-repeat center;
2410}
2411
2412div.loadingBar div.loadingBarProgress {
2413 height: 100%;
2414 width: 0%;
2415}
2416
2417div.loadingBar div.loadingBarProgress div.loadingBarProgress_left {
2418 height: 100%;
2419 max-width: 8px;
2420 //background: url(./images/old/loading/loadingBarProgress.png) no-repeat 0;
2421 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;
2422}
2423
2424div.loadingBar div.loadingBarProgress div.loadingBarProgress_right {
2425 position: relative;
2426 height: 100%;
2427 margin-left: 8px;
2428 //background: url(./images/old/loading/loadingBarProgress.png) no-repeat right;
2429 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;
2430 top: -22px;
2431}
2432
2433// -------------------------------------------
2434
2435body.iPhone .loginErrorPanel {
2436 position: absolute;
2437 min-height: 372px;
2438 box-sizing: border-box;
2439 -moz-box-sizing: border-box;
2440 -webkit-box-sizing: border-box;
2441 padding: 10px;
2442 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2443 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2444}
2445
2446body.iPhone .loginErrorPanel h2 {
2447 text-align: center;
2448 color: red;
2449 margin-top: 40px;
2450}
2451
2452// -------------------------------------------
2453
2454form.cardListSearchForm {
2455 box-sizing: border-box;
2456 -moz-box-sizing: border-box;
2457 -webkit-box-sizing: border-box;
2458 border-bottom: 1px solid #2d3642;
2459 border-top: 1px solid #6d84a2;
2460 padding: 6px;
2461 height: 45px;
2462 // background: url(./images/old/iPhone/toolbar.png) #6d84a2 repeat-x;
2463 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAArCAIAAAA2QHWOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE1JREFUCNddjDEOgEAQAgn//5qltYWFnb1GB4vdSy4WBAYStKyb9+O0FJMYyjMyMWCC35lJM71r6vF1P07/lFSfPx6ZxNLcy1HtihzpA/RWcOj0zlDhAAAAAElFTkSuQmCCCg==) #6d84a2 repeat-x;
2464 margin: 0px;
2465}
2466
2467form.cardListSearchForm input {
2468 margin: 7px;
2469 -webkit-appearance: searchfield;
2470 width: 200px;
2471}
2472
2473ul.cardListPanel {
2474 margin: 0px;
2475 padding: 0px;
2476 list-style-type: none;
2477 min-height: 372px;
2478}
2479
2480li.cardListItem {
2481 height: 43px;
2482 border-bottom: 1px solid #cccccc;
2483 //background: url(./images/old/iPhone/listArrow.png) no-repeat right center;
2484 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAUCAYAAAB4d5a9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKVJREFUeNpi/P//PwOtARMDHcDwsYQFRJSXl8P4dVC6CZvizs5O8i1BsqARid9Ei+BiQ2KDLKumhSU1QNyKxG+hlkXoEQ+yqAPNogpapK5KNIvaKbUIVxKeAsTvkPg5QCxETUukgfgAkqFPgdgBzVKKLIFZoIJmwR1qBRdNLEC2BJQpV9LCAmRL/gBxAtRwqlqAXqzcgRrOQE0LQIBxtNIiBQAEGAA7xCa2yF9zEgAAAABJRU5ErkJgggo=) no-repeat right center;
2485
2486}
2487
2488li.cardListItem a {
2489 position: relative;
2490 top: -22px;
2491 left: 40px;
2492 display: block;
2493 white-space: nowrap;
2494 overflow: hidden;
2495}
2496
2497body[orientation="portrait"] li.cardListItem a {
2498 max-width: 250px;
2499}
2500
2501body[orientation="landscape"] li.cardListItem a {
2502 max-width: 400px;
2503}
2504
2505li.cardListItem img {
2506 height: 20px;
2507 width: 20px;
2508 padding: 12px 10px 0px 10px;
2509}
2510
2511li.cardListItem a {
2512 text-decoration: none;
2513 color: black;
2514 font-weight: bold;
2515 font-size: 14pt;
2516 vertical-align: 3px;
2517}
2518
2519
2520div.cardDetailPanel {
2521 position: absolute;
2522 top: 45px;
2523 min-height: 372px;
2524
2525 box-sizing: border-box;
2526 -moz-box-sizing: border-box;
2527 -webkit-box-sizing: border-box;
2528 padding: 10px;
2529 //background: #c8c8c8 url(./images/old/iPhone/pinstripes.png);
2530 background: #c8c8c8 url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAABCAIAAACdaSOZAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpiPHrmCgMC/GNjYwNSAAEGADdNA3dnzPlQAAAAAElFTkSuQmCCCg==);
2531}
2532
2533div.cardDetailPanel > fieldset > div.row > span.directLogin {
2534 width: 100%;
2535 box-sizing: border-box;
2536 -moz-box-sizing: border-box;
2537 -webkit-box-sizing: border-box;
2538 margin: 0;
2539 border: none;
2540 padding: 12px 10px 0 110px;
2541 height: 42px;
2542 background: none;
2543 font-size: 16px;
2544 font-weight: normal;
2545
2546 padding-left: 40px;
2547 color: black;
2548 //background: url(./images/old/iPhone/listArrow.png) no-repeat right center;
2549 background: url(data:image/png;charset=utf-8;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAUCAYAAAB4d5a9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKVJREFUeNpi/P//PwOtARMDHcDwsYQFRJSXl8P4dVC6CZvizs5O8i1BsqARid9Ei+BiQ2KDLKumhSU1QNyKxG+hlkXoEQ+yqAPNogpapK5KNIvaKbUIVxKeAsTvkPg5QCxETUukgfgAkqFPgdgBzVKKLIFZoIJmwR1qBRdNLEC2BJQpV9LCAmRL/gBxAtRwqlqAXqzcgRrOQE0LQIBxtNIiBQAEGAA7xCa2yF9zEgAAAABJRU5ErkJgggo=) no-repeat right center;
2550}
2551
2552body[orientation="landscape"] div.cardDetailPanel > fieldset > div.row > span.directLogin {
2553 padding-left: 50px;
2554}
2555
2556div.cardDetailPanel h2 {
2557 margin: 0 0 8px 14px;
2558 font-size: inherit;
2559 font-weight: bold;
2560 color: #4d4d70;
2561 text-shadow: rgba(255, 255, 255, 0.75) 1px 1px 0;
2562}
2563
2564body[orientation="portrait"] > * {
2565 width: 320px;
2566}
2567
2568body[orientation="landscape"] > * {
2569 width: 480px;
2570}
2571*/ \ No newline at end of file
diff --git a/frontend/gamma/css/static.css b/frontend/gamma/css/static.css
new file mode 100644
index 0000000..9953a8d
--- a/dev/null
+++ b/frontend/gamma/css/static.css
@@ -0,0 +1,166 @@
1/*
2
3Copyright 2008-2011 Clipperz Srl
4
5This file is part of Clipperz Community Edition.
6Clipperz Community Edition is an online password manager.
7For further information about its features and functionalities please
8refer to http://www.clipperz.com.
9
10* Clipperz Community Edition is free software: you can redistribute
11 it and/or modify it under the terms of the GNU Affero General Public
12 License as published by the Free Software Foundation, either version
13 3 of the License, or (at your option) any later version.
14
15* Clipperz Community Edition is distributed in the hope that it will
16 be useful, but WITHOUT ANY WARRANTY; without even the implied
17 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU Affero General Public License for more details.
19
20* You should have received a copy of the GNU Affero General Public
21 License along with Clipperz Community Edition. If not, see
22 <http://www.gnu.org/licenses/>.
23
24*/
25
26body {
27 padding: 0px;
28 margin: 0px;
29 font-family: Helvetica, Arial, Geneva, sans-serif;
30 color: #666666;
31}
32div.header {
33 padding: 20px 25px;
34 background-color: #1f2148;
35}
36div#logo {
37 background: url(./images/old/logo.png);
38 width: 150px;
39 height: 39px;
40 display: block;
41}
42h5.clipperzPayoff {
43 color: white;
44 font-size: 13pt;
45 font-weight: normal;
46 padding-left: 20px;
47 white-space: nowrap;
48 margin: 0px;
49 padding-left: 4px;
50}
51/*
52h1 {
53 font-size: 40pt;
54 color: #333366;
55}
56
57h1 span.logo_z {
58 color: #ff9400;
59}
60*/
61div.contentWrapper {
62 padding: 20px;
63}
64div.block1 {
65 float: left;
66 margin-right: 40px;
67}
68div.block2 {
69 float: left;
70}
71div.languageBlock {
72 clear: both;
73 padding-top: 20px;
74}
75div.flags {
76 float: left;
77}
78div.content {
79 float: left;
80 margin-left: 20px;
81 width: 300px;
82}
83h3 {
84 margin: 0px;
85 padding-top: 10px;
86}
87p {
88 font-size: 10pt;
89 line-height: 20px;
90}
91/* @group RSS feed */
92body.iFrame {
93 margin: 0px;
94 padding: 0px;
95 border: 0px;
96 font-family: Helvetica, Arial, Geneva, sans-serif;
97}
98div#feedContent ul {
99 list-style-type: none;
100 padding: 0px;
101 margin: 0px;
102}
103div#feedContent ul li {
104 display: none;
105}
106div#feedContent ul li.selected {
107 display: block;
108 padding-top: 6px;
109}
110div#feedContent ul li.selected em.date {
111 display: none;
112}
113div#feedContent ul li.selected a {
114 display: none;
115}
116div#feedContent ul li.selected h2 {
117 font-size: 8pt;
118 color: #c3c4cf;
119 margin: 0px;
120 border: 0px;
121 padding: 0px;
122}
123div#feedContent ul li.selected p {
124 font-size: 8pt;
125 color: #c3c4cf;
126 margin: 0px;
127 display: inline;
128 line-height: 15px;
129}
130div#feedContent ul li.selected p a {
131 font-size: 8pt;
132 color: #c3c4cf;
133 display: inline;
134}
135div.languageBlock div.flags {
136 height: 64px;
137 width: 64px;
138}
139div.languageBlock.en-us div.flags {
140 background: url(./images/old/flags/en.png);
141}
142div.languageBlock.zh-cn div.flags {
143 background: url(./images/old/flags/cn.png);
144}
145div.languageBlock.fr-fr div.flags {
146 background: url(./images/old/flags/fr.png);
147}
148div.languageBlock.it-it div.flags {
149 background: url(./images/old/flags/it.png);
150}
151div.languageBlock.ja-jp div.flags {
152 background: url(./images/old/flags/jp.png);
153}
154div.languageBlock.pt-br div.flags {
155 background: url(./images/old/flags/br.png);
156}
157div.languageBlock.es-es div.flags {
158 background: url(./images/old/flags/es.png);
159}
160div.languageBlock.ru-ru div.flags {
161 background: url(./images/old/flags/ru.png);
162}
163div.languageBlock.de-de div.flags {
164 background: url(./images/old/flags/de.png);
165}
166/* @end */
diff --git a/frontend/gamma/css/web.css b/frontend/gamma/css/web.css
index 0a72e09..5d8bc20 100644
--- a/frontend/gamma/css/web.css
+++ b/frontend/gamma/css/web.css
@@ -212,308 +212,8 @@ div.tooltip div.tooltip_body {
212 border-radius: 8px; 212 border-radius: 8px;
213 -moz-border-radius: 8px; 213 -moz-border-radius: 8px;
214 -webkit-border-radius: 8px; 214 -webkit-border-radius: 8px;
215 border-radius: 8px;
216 -moz-border-radius: 8px;
217 -webkit-border-radius: 8px;
218 border-radius: 8px;
219 -moz-border-radius: 8px;
220 -webkit-border-radius: 8px;
221 border-radius: 8px;
222 -moz-border-radius: 8px;
223 -webkit-border-radius: 8px;
224 border-radius: 8px;
225 -moz-border-radius: 8px;
226 -webkit-border-radius: 8px;
227 border-radius: 8px;
228 -moz-border-radius: 8px;
229 -webkit-border-radius: 8px;
230 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
231 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
232 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
233 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
234 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
235 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
236 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
237 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
238 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
239 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
240 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
241 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
242 -webkit-box-shadow: 4px 4px 10px #333333;
243 -moz-box-shadow: 4px 4px 10px #333333;
244 box-shadow: 4px 4px 10px #333333;
245 -webkit-box-shadow: 4px 4px 10px #333333;
246 -moz-box-shadow: 4px 4px 10px #333333;
247 box-shadow: 4px 4px 10px #333333;
248 -webkit-box-shadow: 4px 4px 10px #333333;
249 -moz-box-shadow: 4px 4px 10px #333333;
250 box-shadow: 4px 4px 10px #333333;
251 -webkit-box-shadow: 4px 4px 10px #333333;
252 -moz-box-shadow: 4px 4px 10px #333333;
253 box-shadow: 4px 4px 10px #333333;
254 -webkit-box-shadow: 4px 4px 10px #333333;
255 -moz-box-shadow: 4px 4px 10px #333333;
256 box-shadow: 4px 4px 10px #333333;
257 -webkit-box-shadow: 4px 4px 10px #333333;
258 -moz-box-shadow: 4px 4px 10px #333333;
259 box-shadow: 4px 4px 10px #333333;
260 border-top: 1px solid #d4d4d4;
261 border-left: 1px solid #a2a2a2;
262 border-right: 1px solid #6f6f6f;
263 border-bottom: 1px solid #3c3c3c;
264 border-radius: 8px;
265 -moz-border-radius: 8px;
266 -webkit-border-radius: 8px;
267 border-radius: 8px;
268 -moz-border-radius: 8px;
269 -webkit-border-radius: 8px;
270 border-radius: 8px;
271 -moz-border-radius: 8px;
272 -webkit-border-radius: 8px;
273 border-radius: 8px;
274 -moz-border-radius: 8px;
275 -webkit-border-radius: 8px;
276 border-radius: 8px;
277 -moz-border-radius: 8px;
278 -webkit-border-radius: 8px;
279 border-radius: 8px;
280 -moz-border-radius: 8px;
281 -webkit-border-radius: 8px;
282 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
283 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
284 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
285 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
286 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
287 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
288 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
289 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
290 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555)); 215 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
291 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb); 216 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
292 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
293 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
294 -webkit-box-shadow: 4px 4px 10px #333333;
295 -moz-box-shadow: 4px 4px 10px #333333;
296 box-shadow: 4px 4px 10px #333333;
297 -webkit-box-shadow: 4px 4px 10px #333333;
298 -moz-box-shadow: 4px 4px 10px #333333;
299 box-shadow: 4px 4px 10px #333333;
300 -webkit-box-shadow: 4px 4px 10px #333333;
301 -moz-box-shadow: 4px 4px 10px #333333;
302 box-shadow: 4px 4px 10px #333333;
303 -webkit-box-shadow: 4px 4px 10px #333333;
304 -moz-box-shadow: 4px 4px 10px #333333;
305 box-shadow: 4px 4px 10px #333333;
306 -webkit-box-shadow: 4px 4px 10px #333333;
307 -moz-box-shadow: 4px 4px 10px #333333;
308 box-shadow: 4px 4px 10px #333333;
309 -webkit-box-shadow: 4px 4px 10px #333333;
310 -moz-box-shadow: 4px 4px 10px #333333;
311 box-shadow: 4px 4px 10px #333333;
312 border-top: 1px solid #d4d4d4;
313 border-left: 1px solid #a2a2a2;
314 border-right: 1px solid #6f6f6f;
315 border-bottom: 1px solid #3c3c3c;
316 border-radius: 8px;
317 -moz-border-radius: 8px;
318 -webkit-border-radius: 8px;
319 border-radius: 8px;
320 -moz-border-radius: 8px;
321 -webkit-border-radius: 8px;
322 border-radius: 8px;
323 -moz-border-radius: 8px;
324 -webkit-border-radius: 8px;
325 border-radius: 8px;
326 -moz-border-radius: 8px;
327 -webkit-border-radius: 8px;
328 border-radius: 8px;
329 -moz-border-radius: 8px;
330 -webkit-border-radius: 8px;
331 border-radius: 8px;
332 -moz-border-radius: 8px;
333 -webkit-border-radius: 8px;
334 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
335 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
336 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
337 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
338 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
339 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
340 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
341 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
342 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
343 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
344 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
345 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
346 -webkit-box-shadow: 4px 4px 10px #333333;
347 -moz-box-shadow: 4px 4px 10px #333333;
348 box-shadow: 4px 4px 10px #333333;
349 -webkit-box-shadow: 4px 4px 10px #333333;
350 -moz-box-shadow: 4px 4px 10px #333333;
351 box-shadow: 4px 4px 10px #333333;
352 -webkit-box-shadow: 4px 4px 10px #333333;
353 -moz-box-shadow: 4px 4px 10px #333333;
354 box-shadow: 4px 4px 10px #333333;
355 -webkit-box-shadow: 4px 4px 10px #333333;
356 -moz-box-shadow: 4px 4px 10px #333333;
357 box-shadow: 4px 4px 10px #333333;
358 -webkit-box-shadow: 4px 4px 10px #333333;
359 -moz-box-shadow: 4px 4px 10px #333333;
360 box-shadow: 4px 4px 10px #333333;
361 -webkit-box-shadow: 4px 4px 10px #333333;
362 -moz-box-shadow: 4px 4px 10px #333333;
363 box-shadow: 4px 4px 10px #333333;
364 border-top: 1px solid #d4d4d4;
365 border-left: 1px solid #a2a2a2;
366 border-right: 1px solid #6f6f6f;
367 border-bottom: 1px solid #3c3c3c;
368 border-radius: 8px;
369 -moz-border-radius: 8px;
370 -webkit-border-radius: 8px;
371 border-radius: 8px;
372 -moz-border-radius: 8px;
373 -webkit-border-radius: 8px;
374 border-radius: 8px;
375 -moz-border-radius: 8px;
376 -webkit-border-radius: 8px;
377 border-radius: 8px;
378 -moz-border-radius: 8px;
379 -webkit-border-radius: 8px;
380 border-radius: 8px;
381 -moz-border-radius: 8px;
382 -webkit-border-radius: 8px;
383 border-radius: 8px;
384 -moz-border-radius: 8px;
385 -webkit-border-radius: 8px;
386 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
387 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
388 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
389 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
390 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
391 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
392 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
393 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
394 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
395 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
396 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
397 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
398 -webkit-box-shadow: 4px 4px 10px #333333;
399 -moz-box-shadow: 4px 4px 10px #333333;
400 box-shadow: 4px 4px 10px #333333;
401 -webkit-box-shadow: 4px 4px 10px #333333;
402 -moz-box-shadow: 4px 4px 10px #333333;
403 box-shadow: 4px 4px 10px #333333;
404 -webkit-box-shadow: 4px 4px 10px #333333;
405 -moz-box-shadow: 4px 4px 10px #333333;
406 box-shadow: 4px 4px 10px #333333;
407 -webkit-box-shadow: 4px 4px 10px #333333;
408 -moz-box-shadow: 4px 4px 10px #333333;
409 box-shadow: 4px 4px 10px #333333;
410 -webkit-box-shadow: 4px 4px 10px #333333;
411 -moz-box-shadow: 4px 4px 10px #333333;
412 box-shadow: 4px 4px 10px #333333;
413 -webkit-box-shadow: 4px 4px 10px #333333;
414 -moz-box-shadow: 4px 4px 10px #333333;
415 box-shadow: 4px 4px 10px #333333;
416 border-top: 1px solid #d4d4d4;
417 border-left: 1px solid #a2a2a2;
418 border-right: 1px solid #6f6f6f;
419 border-bottom: 1px solid #3c3c3c;
420 border-radius: 8px;
421 -moz-border-radius: 8px;
422 -webkit-border-radius: 8px;
423 border-radius: 8px;
424 -moz-border-radius: 8px;
425 -webkit-border-radius: 8px;
426 border-radius: 8px;
427 -moz-border-radius: 8px;
428 -webkit-border-radius: 8px;
429 border-radius: 8px;
430 -moz-border-radius: 8px;
431 -webkit-border-radius: 8px;
432 border-radius: 8px;
433 -moz-border-radius: 8px;
434 -webkit-border-radius: 8px;
435 border-radius: 8px;
436 -moz-border-radius: 8px;
437 -webkit-border-radius: 8px;
438 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
439 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
440 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
441 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
442 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
443 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
444 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
445 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
446 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
447 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
448 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
449 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
450 -webkit-box-shadow: 4px 4px 10px #333333;
451 -moz-box-shadow: 4px 4px 10px #333333;
452 box-shadow: 4px 4px 10px #333333;
453 -webkit-box-shadow: 4px 4px 10px #333333;
454 -moz-box-shadow: 4px 4px 10px #333333;
455 box-shadow: 4px 4px 10px #333333;
456 -webkit-box-shadow: 4px 4px 10px #333333;
457 -moz-box-shadow: 4px 4px 10px #333333;
458 box-shadow: 4px 4px 10px #333333;
459 -webkit-box-shadow: 4px 4px 10px #333333;
460 -moz-box-shadow: 4px 4px 10px #333333;
461 box-shadow: 4px 4px 10px #333333;
462 -webkit-box-shadow: 4px 4px 10px #333333;
463 -moz-box-shadow: 4px 4px 10px #333333;
464 box-shadow: 4px 4px 10px #333333;
465 -webkit-box-shadow: 4px 4px 10px #333333;
466 -moz-box-shadow: 4px 4px 10px #333333;
467 box-shadow: 4px 4px 10px #333333;
468 border-top: 1px solid #d4d4d4;
469 border-left: 1px solid #a2a2a2;
470 border-right: 1px solid #6f6f6f;
471 border-bottom: 1px solid #3c3c3c;
472 border-radius: 8px;
473 -moz-border-radius: 8px;
474 -webkit-border-radius: 8px;
475 border-radius: 8px;
476 -moz-border-radius: 8px;
477 -webkit-border-radius: 8px;
478 border-radius: 8px;
479 -moz-border-radius: 8px;
480 -webkit-border-radius: 8px;
481 border-radius: 8px;
482 -moz-border-radius: 8px;
483 -webkit-border-radius: 8px;
484 border-radius: 8px;
485 -moz-border-radius: 8px;
486 -webkit-border-radius: 8px;
487 border-radius: 8px;
488 -moz-border-radius: 8px;
489 -webkit-border-radius: 8px;
490 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
491 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
492 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
493 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
494 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
495 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
496 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
497 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
498 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
499 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
500 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbbbbb), to(#555555));
501 background: -moz-linear-gradient(0% 100% 90deg, #555555, #bbbbbb);
502 -webkit-box-shadow: 4px 4px 10px #333333;
503 -moz-box-shadow: 4px 4px 10px #333333;
504 box-shadow: 4px 4px 10px #333333;
505 -webkit-box-shadow: 4px 4px 10px #333333;
506 -moz-box-shadow: 4px 4px 10px #333333;
507 box-shadow: 4px 4px 10px #333333;
508 -webkit-box-shadow: 4px 4px 10px #333333;
509 -moz-box-shadow: 4px 4px 10px #333333;
510 box-shadow: 4px 4px 10px #333333;
511 -webkit-box-shadow: 4px 4px 10px #333333;
512 -moz-box-shadow: 4px 4px 10px #333333;
513 box-shadow: 4px 4px 10px #333333;
514 -webkit-box-shadow: 4px 4px 10px #333333;
515 -moz-box-shadow: 4px 4px 10px #333333;
516 box-shadow: 4px 4px 10px #333333;
517 -webkit-box-shadow: 4px 4px 10px #333333; 217 -webkit-box-shadow: 4px 4px 10px #333333;
518 -moz-box-shadow: 4px 4px 10px #333333; 218 -moz-box-shadow: 4px 4px 10px #333333;
519 box-shadow: 4px 4px 10px #333333; 219 box-shadow: 4px 4px 10px #333333;
@@ -563,6 +263,53 @@ div.tooltip.RIGHT div.tooltip_arrow {
563div.tooltip.RIGHT div.tooltip_body div.tooltip_text { 263div.tooltip.RIGHT div.tooltip_body div.tooltip_text {
564 min-height: 45px; 264 min-height: 45px;
565} 265}
266.button.default {
267 display: inline-block;
268 height: 20px;
269 cursor: pointer;
270 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffa76f), to(#ff6622));
271 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffa76f);
272 border-radius: 5;
273 -moz-border-radius: 5;
274 -webkit-border-radius: 5;
275 border: 1px solid #ff7f46;
276 padding-top: 4px;
277 padding-left: 15px;
278 padding-right: 15px;
279 padding-bottom: 2px;
280 color: white;
281 font-weight: lighter;
282 text-shadow: -1px -1px 1px #ff6622, 1px 1px 1px #ffa76f;
283 text-decoration: none;
284 font-weight: normal;
285}
286.button.default:hover {
287 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff8e46), to(#ff6622));
288 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff8e46);
289}
290.button {
291 display: inline-block;
292 height: 20px;
293 cursor: pointer;
294 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bfbfbf), to(#999999));
295 background: -moz-linear-gradient(0% 100% 90deg, #999999, #bfbfbf);
296 border-radius: 5;
297 -moz-border-radius: 5;
298 -webkit-border-radius: 5;
299 border: 1px solid #ababab;
300 padding-top: 4px;
301 padding-left: 15px;
302 padding-right: 15px;
303 padding-bottom: 2px;
304 color: white;
305 font-weight: lighter;
306 text-shadow: -1px -1px 1px #999999, 1px 1px 1px #bfbfbf;
307 text-decoration: none;
308}
309.button:hover {
310 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ababab), to(#999999));
311 background: -moz-linear-gradient(0% 100% 90deg, #999999, #ababab);
312}
566/* 313/*
567 314
568Color list: 315Color list:
@@ -614,47 +361,32 @@ div.modalDialogMask.userInfoBoxMask {
614div.pageHeaderAndBody { 361div.pageHeaderAndBody {
615 height: 100%; 362 height: 100%;
616} 363}
617body > div.pageHeaderAndBody { 364div.pageHeaderAndBody div#pageBody {
618 height: auto; 365 min-width: 1013px;
619 min-height: 100%; 366 padding-bottom: 90px;
620} 367}
621div.pageHeader { 368div.pageHeaderAndBody div.pageHeader {
622 background-color: #1f2148; 369 background-color: #1f2148;
623 min-width: 1013px; 370 min-width: 1013px;
624} 371}
625div.pageHeader div#miscLinks { 372div.pageHeaderAndBody div.pageHeader div#miscLinks {
626 float: right; 373 float: right;
627} 374}
628div.pageHeader div#miscLinks ul { 375div.pageHeaderAndBody div.pageHeader div#miscLinks ul {
629 margin: 12px 0px 0px; 376 margin: 12px 0px 0px;
630 padding: 15px; 377 padding: 15px;
631} 378}
632div.pageHeader div#miscLinks ul li { 379div.pageHeaderAndBody div.pageHeader div#miscLinks ul li {
633 display: inline; 380 display: inline;
634 margin: 0px; 381 margin: 0px;
635 padding: 0px; 382 padding: 0px;
636 border: 0px; 383 border: 0px;
637} 384}
638div.pageHeader div#miscLinks ul li a { 385div.pageHeaderAndBody div.pageHeader div#miscLinks ul li a {
639 color: #ffffff; 386 color: #ffffff;
640 margin: 0px; 387 margin: 0px;
641 padding: 0px; 388 padding: 0px;
642 border: 0px; 389 border: 0px;
643 margin: 0px;
644 padding: 0px;
645 border: 0px;
646 margin: 0px;
647 padding: 0px;
648 border: 0px;
649 margin: 0px;
650 padding: 0px;
651 border: 0px;
652 margin: 0px;
653 padding: 0px;
654 border: 0px;
655 margin: 0px;
656 padding: 0px;
657 border: 0px;
658 padding: 15px; 390 padding: 15px;
659 border-left: 1px solid #3e428f; 391 border-left: 1px solid #3e428f;
660 font-weight: normal; 392 font-weight: normal;
@@ -662,106 +394,66 @@ div.pageHeader div#miscLinks ul li a {
662 font-size: 12pt; 394 font-size: 12pt;
663 min-width: 70px; 395 min-width: 70px;
664} 396}
665div.pageHeader div#miscLinks ul li a:hover { 397div.pageHeaderAndBody div.pageHeader div#miscLinks ul li a:hover {
666 color: #b8bae1; 398 color: #b8bae1;
667} 399}
668div.pageHeader div#miscLinks ul li a#donateHeaderLink { 400div.pageHeaderAndBody div.pageHeader div#miscLinks ul li a#donateHeaderLink {
669 border-left: 0px; 401 border-left: 0px;
670} 402}
671div.pageHeader div#logoFrame { 403div.pageHeaderAndBody div.pageHeader div#logoFrame {
672 padding: 16px 16px 60px 16px; 404 padding: 16px 16px 60px 16px;
673 min-height: 44px; 405 min-height: 44px;
674} 406}
675div.pageHeader div#logoFrame a { 407div.pageHeaderAndBody div.pageHeader div#logoFrame a {
676 color: white; 408 color: white;
677 text-decoration: none; 409 text-decoration: none;
678} 410}
679div.pageHeader div#logoFrame a canvas { 411div.pageHeaderAndBody div.pageHeader div#logoFrame a canvas {
680 margin: 0px;
681 padding: 0px;
682 border: 0px;
683 margin: 0px;
684 padding: 0px;
685 border: 0px;
686 margin: 0px;
687 padding: 0px;
688 border: 0px;
689 margin: 0px;
690 padding: 0px;
691 border: 0px;
692 margin: 0px;
693 padding: 0px;
694 border: 0px;
695 margin: 0px; 412 margin: 0px;
696 padding: 0px; 413 padding: 0px;
697 border: 0px; 414 border: 0px;
698 width: 150px; 415 width: 150px;
699 height: 39px; 416 height: 39px;
700} 417}
701div.pageHeader div#logoFrame a h5.clipperzPayoff { 418div.pageHeaderAndBody div.pageHeader div#logoFrame a h5.clipperzPayoff {
702 font-size: 13pt; 419 font-size: 13pt;
703 font-weight: normal; 420 font-weight: normal;
704 white-space: nowrap; 421 white-space: nowrap;
705 margin: 0px; 422 margin: 0px;
706 padding-left: 4px; 423 padding-left: 4px;
707} 424}
708div.pageHeader div#featureTabs table { 425div.pageHeaderAndBody div.pageHeader div#featureTabs table {
709 width: 100%; 426 width: 100%;
710 padding: 6px; 427 padding: 6px;
711 padding-left: 15px; 428 padding-left: 15px;
712 padding-right: 15px; 429 padding-right: 15px;
713 padding-bottom: 46px; 430 padding-bottom: 46px;
714} 431}
715div.pageHeader div#featureTabs table tr td { 432div.pageHeaderAndBody div.pageHeader div#featureTabs table tr td {
716 width: 25%; 433 width: 25%;
717 vertical-align: top; 434 vertical-align: top;
718 font-size: 11pt; 435 font-size: 11pt;
719 color: white; 436 color: white;
720} 437}
721div.pageHeader div#featureTabs table tr td img { 438div.pageHeaderAndBody div.pageHeader div#featureTabs table tr td img {
722 float: left; 439 float: left;
723} 440}
724div.pageHeader div#featureTabs table tr td span { 441div.pageHeaderAndBody div.pageHeader div#featureTabs table tr td span {
725 display: block; 442 display: block;
726 padding: 5 10 5 85; 443 padding: 5 10 5 85;
727} 444}
728div.pageHeader div#featureTabs canvas.featureIcon { 445div.pageHeaderAndBody div.pageHeader div#featureTabs canvas.featureIcon {
729 width: 76px; 446 width: 76px;
730 height: 76px; 447 height: 76px;
731 display: block; 448 display: block;
732 float: left; 449 float: left;
733 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622)); 450 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622));
734 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79); 451 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79);
735 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622));
736 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79);
737 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622));
738 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79);
739 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622));
740 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79);
741 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622));
742 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79);
743 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffad79), to(#ff6622));
744 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ffad79);
745 border-radius: 38px;
746 -moz-border-radius: 38px;
747 -webkit-border-radius: 38px;
748 border-radius: 38px;
749 -moz-border-radius: 38px;
750 -webkit-border-radius: 38px;
751 border-radius: 38px;
752 -moz-border-radius: 38px;
753 -webkit-border-radius: 38px;
754 border-radius: 38px;
755 -moz-border-radius: 38px;
756 -webkit-border-radius: 38px;
757 border-radius: 38px;
758 -moz-border-radius: 38px;
759 -webkit-border-radius: 38px;
760 border-radius: 38px; 452 border-radius: 38px;
761 -moz-border-radius: 38px; 453 -moz-border-radius: 38px;
762 -webkit-border-radius: 38px; 454 -webkit-border-radius: 38px;
763} 455}
764div.pageHeader div#news { 456div.pageHeaderAndBody div.pageHeader div#news {
765 top: -82px; 457 top: -82px;
766 left: 240px; 458 left: 240px;
767 width: 310px; 459 width: 310px;
@@ -771,257 +463,32 @@ div.pageHeader div#news {
771 -webkit-border-bottom-left-radius: 8px; 463 -webkit-border-bottom-left-radius: 8px;
772 -moz-border-radius-bottomleft: 8px; 464 -moz-border-radius-bottomleft: 8px;
773 border-bottom-left-radius: 8px; 465 border-bottom-left-radius: 8px;
774 -webkit-border-bottom-left-radius: 8px;
775 -moz-border-radius-bottomleft: 8px;
776 border-bottom-left-radius: 8px;
777 -webkit-border-bottom-left-radius: 8px;
778 -moz-border-radius-bottomleft: 8px;
779 border-bottom-left-radius: 8px;
780 -webkit-border-bottom-left-radius: 8px;
781 -moz-border-radius-bottomleft: 8px;
782 border-bottom-left-radius: 8px;
783 -webkit-border-bottom-left-radius: 8px;
784 -moz-border-radius-bottomleft: 8px;
785 border-bottom-left-radius: 8px;
786 -webkit-border-bottom-left-radius: 8px;
787 -moz-border-radius-bottomleft: 8px;
788 border-bottom-left-radius: 8px;
789 -webkit-border-bottom-right-radius: 8px; 466 -webkit-border-bottom-right-radius: 8px;
790 -moz-border-radius-bottomright: 8px; 467 -moz-border-radius-bottomright: 8px;
791 border-bottom-right-radius: 8px; 468 border-bottom-right-radius: 8px;
792 -webkit-border-bottom-right-radius: 8px;
793 -moz-border-radius-bottomright: 8px;
794 border-bottom-right-radius: 8px;
795 -webkit-border-bottom-right-radius: 8px;
796 -moz-border-radius-bottomright: 8px;
797 border-bottom-right-radius: 8px;
798 -webkit-border-bottom-right-radius: 8px;
799 -moz-border-radius-bottomright: 8px;
800 border-bottom-right-radius: 8px;
801 -webkit-border-bottom-right-radius: 8px;
802 -moz-border-radius-bottomright: 8px;
803 border-bottom-right-radius: 8px;
804 -webkit-border-bottom-right-radius: 8px;
805 -moz-border-radius-bottomright: 8px;
806 border-bottom-right-radius: 8px;
807 -webkit-border-bottom-left-radius: 8px;
808 -moz-border-radius-bottomleft: 8px;
809 border-bottom-left-radius: 8px;
810 -webkit-border-bottom-left-radius: 8px;
811 -moz-border-radius-bottomleft: 8px;
812 border-bottom-left-radius: 8px;
813 -webkit-border-bottom-left-radius: 8px;
814 -moz-border-radius-bottomleft: 8px;
815 border-bottom-left-radius: 8px;
816 -webkit-border-bottom-left-radius: 8px;
817 -moz-border-radius-bottomleft: 8px;
818 border-bottom-left-radius: 8px;
819 -webkit-border-bottom-left-radius: 8px;
820 -moz-border-radius-bottomleft: 8px;
821 border-bottom-left-radius: 8px;
822 -webkit-border-bottom-left-radius: 8px;
823 -moz-border-radius-bottomleft: 8px;
824 border-bottom-left-radius: 8px;
825 -webkit-border-bottom-right-radius: 8px;
826 -moz-border-radius-bottomright: 8px;
827 border-bottom-right-radius: 8px;
828 -webkit-border-bottom-right-radius: 8px;
829 -moz-border-radius-bottomright: 8px;
830 border-bottom-right-radius: 8px;
831 -webkit-border-bottom-right-radius: 8px;
832 -moz-border-radius-bottomright: 8px;
833 border-bottom-right-radius: 8px;
834 -webkit-border-bottom-right-radius: 8px;
835 -moz-border-radius-bottomright: 8px;
836 border-bottom-right-radius: 8px;
837 -webkit-border-bottom-right-radius: 8px;
838 -moz-border-radius-bottomright: 8px;
839 border-bottom-right-radius: 8px;
840 -webkit-border-bottom-right-radius: 8px;
841 -moz-border-radius-bottomright: 8px;
842 border-bottom-right-radius: 8px;
843 -webkit-border-bottom-left-radius: 8px;
844 -moz-border-radius-bottomleft: 8px;
845 border-bottom-left-radius: 8px;
846 -webkit-border-bottom-left-radius: 8px;
847 -moz-border-radius-bottomleft: 8px;
848 border-bottom-left-radius: 8px;
849 -webkit-border-bottom-left-radius: 8px;
850 -moz-border-radius-bottomleft: 8px;
851 border-bottom-left-radius: 8px;
852 -webkit-border-bottom-left-radius: 8px;
853 -moz-border-radius-bottomleft: 8px;
854 border-bottom-left-radius: 8px;
855 -webkit-border-bottom-left-radius: 8px;
856 -moz-border-radius-bottomleft: 8px;
857 border-bottom-left-radius: 8px;
858 -webkit-border-bottom-left-radius: 8px;
859 -moz-border-radius-bottomleft: 8px;
860 border-bottom-left-radius: 8px;
861 -webkit-border-bottom-right-radius: 8px;
862 -moz-border-radius-bottomright: 8px;
863 border-bottom-right-radius: 8px;
864 -webkit-border-bottom-right-radius: 8px;
865 -moz-border-radius-bottomright: 8px;
866 border-bottom-right-radius: 8px;
867 -webkit-border-bottom-right-radius: 8px;
868 -moz-border-radius-bottomright: 8px;
869 border-bottom-right-radius: 8px;
870 -webkit-border-bottom-right-radius: 8px;
871 -moz-border-radius-bottomright: 8px;
872 border-bottom-right-radius: 8px;
873 -webkit-border-bottom-right-radius: 8px;
874 -moz-border-radius-bottomright: 8px;
875 border-bottom-right-radius: 8px;
876 -webkit-border-bottom-right-radius: 8px;
877 -moz-border-radius-bottomright: 8px;
878 border-bottom-right-radius: 8px;
879 -webkit-border-bottom-left-radius: 8px;
880 -moz-border-radius-bottomleft: 8px;
881 border-bottom-left-radius: 8px;
882 -webkit-border-bottom-left-radius: 8px;
883 -moz-border-radius-bottomleft: 8px;
884 border-bottom-left-radius: 8px;
885 -webkit-border-bottom-left-radius: 8px;
886 -moz-border-radius-bottomleft: 8px;
887 border-bottom-left-radius: 8px;
888 -webkit-border-bottom-left-radius: 8px;
889 -moz-border-radius-bottomleft: 8px;
890 border-bottom-left-radius: 8px;
891 -webkit-border-bottom-left-radius: 8px;
892 -moz-border-radius-bottomleft: 8px;
893 border-bottom-left-radius: 8px;
894 -webkit-border-bottom-left-radius: 8px;
895 -moz-border-radius-bottomleft: 8px;
896 border-bottom-left-radius: 8px;
897 -webkit-border-bottom-right-radius: 8px;
898 -moz-border-radius-bottomright: 8px;
899 border-bottom-right-radius: 8px;
900 -webkit-border-bottom-right-radius: 8px;
901 -moz-border-radius-bottomright: 8px;
902 border-bottom-right-radius: 8px;
903 -webkit-border-bottom-right-radius: 8px;
904 -moz-border-radius-bottomright: 8px;
905 border-bottom-right-radius: 8px;
906 -webkit-border-bottom-right-radius: 8px;
907 -moz-border-radius-bottomright: 8px;
908 border-bottom-right-radius: 8px;
909 -webkit-border-bottom-right-radius: 8px;
910 -moz-border-radius-bottomright: 8px;
911 border-bottom-right-radius: 8px;
912 -webkit-border-bottom-right-radius: 8px;
913 -moz-border-radius-bottomright: 8px;
914 border-bottom-right-radius: 8px;
915 -webkit-border-bottom-left-radius: 8px;
916 -moz-border-radius-bottomleft: 8px;
917 border-bottom-left-radius: 8px;
918 -webkit-border-bottom-left-radius: 8px;
919 -moz-border-radius-bottomleft: 8px;
920 border-bottom-left-radius: 8px;
921 -webkit-border-bottom-left-radius: 8px;
922 -moz-border-radius-bottomleft: 8px;
923 border-bottom-left-radius: 8px;
924 -webkit-border-bottom-left-radius: 8px;
925 -moz-border-radius-bottomleft: 8px;
926 border-bottom-left-radius: 8px;
927 -webkit-border-bottom-left-radius: 8px;
928 -moz-border-radius-bottomleft: 8px;
929 border-bottom-left-radius: 8px;
930 -webkit-border-bottom-left-radius: 8px;
931 -moz-border-radius-bottomleft: 8px;
932 border-bottom-left-radius: 8px;
933 -webkit-border-bottom-right-radius: 8px;
934 -moz-border-radius-bottomright: 8px;
935 border-bottom-right-radius: 8px;
936 -webkit-border-bottom-right-radius: 8px;
937 -moz-border-radius-bottomright: 8px;
938 border-bottom-right-radius: 8px;
939 -webkit-border-bottom-right-radius: 8px;
940 -moz-border-radius-bottomright: 8px;
941 border-bottom-right-radius: 8px;
942 -webkit-border-bottom-right-radius: 8px;
943 -moz-border-radius-bottomright: 8px;
944 border-bottom-right-radius: 8px;
945 -webkit-border-bottom-right-radius: 8px;
946 -moz-border-radius-bottomright: 8px;
947 border-bottom-right-radius: 8px;
948 -webkit-border-bottom-right-radius: 8px;
949 -moz-border-radius-bottomright: 8px;
950 border-bottom-right-radius: 8px;
951 -webkit-border-bottom-left-radius: 8px;
952 -moz-border-radius-bottomleft: 8px;
953 border-bottom-left-radius: 8px;
954 -webkit-border-bottom-left-radius: 8px;
955 -moz-border-radius-bottomleft: 8px;
956 border-bottom-left-radius: 8px;
957 -webkit-border-bottom-left-radius: 8px;
958 -moz-border-radius-bottomleft: 8px;
959 border-bottom-left-radius: 8px;
960 -webkit-border-bottom-left-radius: 8px;
961 -moz-border-radius-bottomleft: 8px;
962 border-bottom-left-radius: 8px;
963 -webkit-border-bottom-left-radius: 8px;
964 -moz-border-radius-bottomleft: 8px;
965 border-bottom-left-radius: 8px;
966 -webkit-border-bottom-left-radius: 8px;
967 -moz-border-radius-bottomleft: 8px;
968 border-bottom-left-radius: 8px;
969 -webkit-border-bottom-right-radius: 8px;
970 -moz-border-radius-bottomright: 8px;
971 border-bottom-right-radius: 8px;
972 -webkit-border-bottom-right-radius: 8px;
973 -moz-border-radius-bottomright: 8px;
974 border-bottom-right-radius: 8px;
975 -webkit-border-bottom-right-radius: 8px;
976 -moz-border-radius-bottomright: 8px;
977 border-bottom-right-radius: 8px;
978 -webkit-border-bottom-right-radius: 8px;
979 -moz-border-radius-bottomright: 8px;
980 border-bottom-right-radius: 8px;
981 -webkit-border-bottom-right-radius: 8px;
982 -moz-border-radius-bottomright: 8px;
983 border-bottom-right-radius: 8px;
984 -webkit-border-bottom-right-radius: 8px;
985 -moz-border-radius-bottomright: 8px;
986 border-bottom-right-radius: 8px;
987 -webkit-box-shadow: 2px 2px 9px #333333;
988 -moz-box-shadow: 2px 2px 9px #333333;
989 box-shadow: 2px 2px 9px #333333;
990 -webkit-box-shadow: 2px 2px 9px #333333;
991 -moz-box-shadow: 2px 2px 9px #333333;
992 box-shadow: 2px 2px 9px #333333;
993 -webkit-box-shadow: 2px 2px 9px #333333;
994 -moz-box-shadow: 2px 2px 9px #333333;
995 box-shadow: 2px 2px 9px #333333;
996 -webkit-box-shadow: 2px 2px 9px #333333;
997 -moz-box-shadow: 2px 2px 9px #333333;
998 box-shadow: 2px 2px 9px #333333;
999 -webkit-box-shadow: 2px 2px 9px #333333;
1000 -moz-box-shadow: 2px 2px 9px #333333;
1001 box-shadow: 2px 2px 9px #333333;
1002 -webkit-box-shadow: 2px 2px 9px #333333; 469 -webkit-box-shadow: 2px 2px 9px #333333;
1003 -moz-box-shadow: 2px 2px 9px #333333; 470 -moz-box-shadow: 2px 2px 9px #333333;
1004 box-shadow: 2px 2px 9px #333333; 471 box-shadow: 2px 2px 9px #333333;
1005} 472}
1006div.pageHeader div#news div#newsframe { 473div.pageHeaderAndBody div.pageHeader div#news div#newsframe {
1007 margin-left: 10px; 474 margin-left: 10px;
1008 margin-right: 10px; 475 margin-right: 10px;
1009 height: 75px; 476 height: 75px;
1010 overflow: hidden; 477 overflow: hidden;
1011} 478}
1012div.pageHeader div#news div#newsframe iframe { 479div.pageHeaderAndBody div.pageHeader div#news div#newsframe iframe {
1013 width: 290px; 480 width: 290px;
1014 border: 0px; 481 border: 0px;
1015 color: #616475; 482 color: #616475;
1016 background-color: #616475; 483 background-color: #616475;
1017} 484}
1018div.pageHeader div#news div.grip { 485div.pageHeaderAndBody div.pageHeader div#news div.grip {
1019 width: 310px; 486 width: 310px;
1020 height: 12px; 487 height: 6px;
1021 margin-top: 2px; 488 margin-top: 2px;
1022 cursor: pointer; 489 cursor: pointer;
1023} 490}
1024div.pageHeader div#news div.grip div.gripHandler { 491div.pageHeaderAndBody div.pageHeader div#news div.grip div.gripHandler {
1025 margin-left: auto; 492 margin-left: auto;
1026 margin-right: auto; 493 margin-right: auto;
1027 margin-top: 8px; 494 margin-top: 8px;
@@ -1030,10 +497,10 @@ div.pageHeader div#news div.grip div.gripHandler {
1030 border-left: 5px solid transparent; 497 border-left: 5px solid transparent;
1031 border-right: 5px solid transparent; 498 border-right: 5px solid transparent;
1032} 499}
1033div.pageHeader div#news.open div.grip div.gripHandler { 500div.pageHeaderAndBody div.pageHeader div#news.open div.grip div.gripHandler {
1034 border-bottom: 5px solid #e9e9ec; 501 border-bottom: 5px solid #e9e9ec;
1035} 502}
1036div.pageHeader div#news.hidden div.grip div.gripHandler { 503div.pageHeaderAndBody div.pageHeader div#news.hidden div.grip div.gripHandler {
1037 border-top: 5px solid #e9e9ec; 504 border-top: 5px solid #e9e9ec;
1038} 505}
1039div.pageFooter { 506div.pageFooter {
@@ -1066,7 +533,7 @@ div.pageFooter div.footerWrapper div.footerContent a {
1066 font-weight: bold; 533 font-weight: bold;
1067 text-decoration: none; 534 text-decoration: none;
1068} 535}
1069div.pageFooter div.footerWrapper div.footerContent span.applicationVersion { 536div.pageFooter div.footerWrapper div.footerContent div.applicationVersion {
1070 padding: 8px; 537 padding: 8px;
1071 color: #888888; 538 color: #888888;
1072 background-color: #d2d2d2; 539 background-color: #d2d2d2;
@@ -1074,6 +541,10 @@ div.pageFooter div.footerWrapper div.footerContent span.applicationVersion {
1074 top: -40px; 541 top: -40px;
1075 float: right; 542 float: right;
1076} 543}
544div.pageFooter div.footerWrapper div.footerContent div.applicationVersion a {
545 padding-left: 0px;
546 display: inline;
547}
1077/* 548/*
1078 549
1079Color list: 550Color list:
@@ -1137,216 +608,6 @@ div#loginBox div.header {
1137 -webkit-border-top-left-radius: 20px; 608 -webkit-border-top-left-radius: 20px;
1138 -moz-border-radius-topleft: 20px; 609 -moz-border-radius-topleft: 20px;
1139 border-top-left-radius: 20px; 610 border-top-left-radius: 20px;
1140 -webkit-border-top-left-radius: 20px;
1141 -moz-border-radius-topleft: 20px;
1142 border-top-left-radius: 20px;
1143 -webkit-border-top-left-radius: 20px;
1144 -moz-border-radius-topleft: 20px;
1145 border-top-left-radius: 20px;
1146 -webkit-border-top-left-radius: 20px;
1147 -moz-border-radius-topleft: 20px;
1148 border-top-left-radius: 20px;
1149 -webkit-border-top-left-radius: 20px;
1150 -moz-border-radius-topleft: 20px;
1151 border-top-left-radius: 20px;
1152 -webkit-border-top-left-radius: 20px;
1153 -moz-border-radius-topleft: 20px;
1154 border-top-left-radius: 20px;
1155 -webkit-border-top-right-radius: 20px;
1156 -moz-border-radius-topright: 20px;
1157 border-top-right-radius: 20px;
1158 -webkit-border-top-right-radius: 20px;
1159 -moz-border-radius-topright: 20px;
1160 border-top-right-radius: 20px;
1161 -webkit-border-top-right-radius: 20px;
1162 -moz-border-radius-topright: 20px;
1163 border-top-right-radius: 20px;
1164 -webkit-border-top-right-radius: 20px;
1165 -moz-border-radius-topright: 20px;
1166 border-top-right-radius: 20px;
1167 -webkit-border-top-right-radius: 20px;
1168 -moz-border-radius-topright: 20px;
1169 border-top-right-radius: 20px;
1170 -webkit-border-top-right-radius: 20px;
1171 -moz-border-radius-topright: 20px;
1172 border-top-right-radius: 20px;
1173 -webkit-border-top-left-radius: 20px;
1174 -moz-border-radius-topleft: 20px;
1175 border-top-left-radius: 20px;
1176 -webkit-border-top-left-radius: 20px;
1177 -moz-border-radius-topleft: 20px;
1178 border-top-left-radius: 20px;
1179 -webkit-border-top-left-radius: 20px;
1180 -moz-border-radius-topleft: 20px;
1181 border-top-left-radius: 20px;
1182 -webkit-border-top-left-radius: 20px;
1183 -moz-border-radius-topleft: 20px;
1184 border-top-left-radius: 20px;
1185 -webkit-border-top-left-radius: 20px;
1186 -moz-border-radius-topleft: 20px;
1187 border-top-left-radius: 20px;
1188 -webkit-border-top-left-radius: 20px;
1189 -moz-border-radius-topleft: 20px;
1190 border-top-left-radius: 20px;
1191 -webkit-border-top-right-radius: 20px;
1192 -moz-border-radius-topright: 20px;
1193 border-top-right-radius: 20px;
1194 -webkit-border-top-right-radius: 20px;
1195 -moz-border-radius-topright: 20px;
1196 border-top-right-radius: 20px;
1197 -webkit-border-top-right-radius: 20px;
1198 -moz-border-radius-topright: 20px;
1199 border-top-right-radius: 20px;
1200 -webkit-border-top-right-radius: 20px;
1201 -moz-border-radius-topright: 20px;
1202 border-top-right-radius: 20px;
1203 -webkit-border-top-right-radius: 20px;
1204 -moz-border-radius-topright: 20px;
1205 border-top-right-radius: 20px;
1206 -webkit-border-top-right-radius: 20px;
1207 -moz-border-radius-topright: 20px;
1208 border-top-right-radius: 20px;
1209 -webkit-border-top-left-radius: 20px;
1210 -moz-border-radius-topleft: 20px;
1211 border-top-left-radius: 20px;
1212 -webkit-border-top-left-radius: 20px;
1213 -moz-border-radius-topleft: 20px;
1214 border-top-left-radius: 20px;
1215 -webkit-border-top-left-radius: 20px;
1216 -moz-border-radius-topleft: 20px;
1217 border-top-left-radius: 20px;
1218 -webkit-border-top-left-radius: 20px;
1219 -moz-border-radius-topleft: 20px;
1220 border-top-left-radius: 20px;
1221 -webkit-border-top-left-radius: 20px;
1222 -moz-border-radius-topleft: 20px;
1223 border-top-left-radius: 20px;
1224 -webkit-border-top-left-radius: 20px;
1225 -moz-border-radius-topleft: 20px;
1226 border-top-left-radius: 20px;
1227 -webkit-border-top-right-radius: 20px;
1228 -moz-border-radius-topright: 20px;
1229 border-top-right-radius: 20px;
1230 -webkit-border-top-right-radius: 20px;
1231 -moz-border-radius-topright: 20px;
1232 border-top-right-radius: 20px;
1233 -webkit-border-top-right-radius: 20px;
1234 -moz-border-radius-topright: 20px;
1235 border-top-right-radius: 20px;
1236 -webkit-border-top-right-radius: 20px;
1237 -moz-border-radius-topright: 20px;
1238 border-top-right-radius: 20px;
1239 -webkit-border-top-right-radius: 20px;
1240 -moz-border-radius-topright: 20px;
1241 border-top-right-radius: 20px;
1242 -webkit-border-top-right-radius: 20px;
1243 -moz-border-radius-topright: 20px;
1244 border-top-right-radius: 20px;
1245 -webkit-border-top-left-radius: 20px;
1246 -moz-border-radius-topleft: 20px;
1247 border-top-left-radius: 20px;
1248 -webkit-border-top-left-radius: 20px;
1249 -moz-border-radius-topleft: 20px;
1250 border-top-left-radius: 20px;
1251 -webkit-border-top-left-radius: 20px;
1252 -moz-border-radius-topleft: 20px;
1253 border-top-left-radius: 20px;
1254 -webkit-border-top-left-radius: 20px;
1255 -moz-border-radius-topleft: 20px;
1256 border-top-left-radius: 20px;
1257 -webkit-border-top-left-radius: 20px;
1258 -moz-border-radius-topleft: 20px;
1259 border-top-left-radius: 20px;
1260 -webkit-border-top-left-radius: 20px;
1261 -moz-border-radius-topleft: 20px;
1262 border-top-left-radius: 20px;
1263 -webkit-border-top-right-radius: 20px;
1264 -moz-border-radius-topright: 20px;
1265 border-top-right-radius: 20px;
1266 -webkit-border-top-right-radius: 20px;
1267 -moz-border-radius-topright: 20px;
1268 border-top-right-radius: 20px;
1269 -webkit-border-top-right-radius: 20px;
1270 -moz-border-radius-topright: 20px;
1271 border-top-right-radius: 20px;
1272 -webkit-border-top-right-radius: 20px;
1273 -moz-border-radius-topright: 20px;
1274 border-top-right-radius: 20px;
1275 -webkit-border-top-right-radius: 20px;
1276 -moz-border-radius-topright: 20px;
1277 border-top-right-radius: 20px;
1278 -webkit-border-top-right-radius: 20px;
1279 -moz-border-radius-topright: 20px;
1280 border-top-right-radius: 20px;
1281 -webkit-border-top-left-radius: 20px;
1282 -moz-border-radius-topleft: 20px;
1283 border-top-left-radius: 20px;
1284 -webkit-border-top-left-radius: 20px;
1285 -moz-border-radius-topleft: 20px;
1286 border-top-left-radius: 20px;
1287 -webkit-border-top-left-radius: 20px;
1288 -moz-border-radius-topleft: 20px;
1289 border-top-left-radius: 20px;
1290 -webkit-border-top-left-radius: 20px;
1291 -moz-border-radius-topleft: 20px;
1292 border-top-left-radius: 20px;
1293 -webkit-border-top-left-radius: 20px;
1294 -moz-border-radius-topleft: 20px;
1295 border-top-left-radius: 20px;
1296 -webkit-border-top-left-radius: 20px;
1297 -moz-border-radius-topleft: 20px;
1298 border-top-left-radius: 20px;
1299 -webkit-border-top-right-radius: 20px;
1300 -moz-border-radius-topright: 20px;
1301 border-top-right-radius: 20px;
1302 -webkit-border-top-right-radius: 20px;
1303 -moz-border-radius-topright: 20px;
1304 border-top-right-radius: 20px;
1305 -webkit-border-top-right-radius: 20px;
1306 -moz-border-radius-topright: 20px;
1307 border-top-right-radius: 20px;
1308 -webkit-border-top-right-radius: 20px;
1309 -moz-border-radius-topright: 20px;
1310 border-top-right-radius: 20px;
1311 -webkit-border-top-right-radius: 20px;
1312 -moz-border-radius-topright: 20px;
1313 border-top-right-radius: 20px;
1314 -webkit-border-top-right-radius: 20px;
1315 -moz-border-radius-topright: 20px;
1316 border-top-right-radius: 20px;
1317 -webkit-border-top-left-radius: 20px;
1318 -moz-border-radius-topleft: 20px;
1319 border-top-left-radius: 20px;
1320 -webkit-border-top-left-radius: 20px;
1321 -moz-border-radius-topleft: 20px;
1322 border-top-left-radius: 20px;
1323 -webkit-border-top-left-radius: 20px;
1324 -moz-border-radius-topleft: 20px;
1325 border-top-left-radius: 20px;
1326 -webkit-border-top-left-radius: 20px;
1327 -moz-border-radius-topleft: 20px;
1328 border-top-left-radius: 20px;
1329 -webkit-border-top-left-radius: 20px;
1330 -moz-border-radius-topleft: 20px;
1331 border-top-left-radius: 20px;
1332 -webkit-border-top-left-radius: 20px;
1333 -moz-border-radius-topleft: 20px;
1334 border-top-left-radius: 20px;
1335 -webkit-border-top-right-radius: 20px;
1336 -moz-border-radius-topright: 20px;
1337 border-top-right-radius: 20px;
1338 -webkit-border-top-right-radius: 20px;
1339 -moz-border-radius-topright: 20px;
1340 border-top-right-radius: 20px;
1341 -webkit-border-top-right-radius: 20px;
1342 -moz-border-radius-topright: 20px;
1343 border-top-right-radius: 20px;
1344 -webkit-border-top-right-radius: 20px;
1345 -moz-border-radius-topright: 20px;
1346 border-top-right-radius: 20px;
1347 -webkit-border-top-right-radius: 20px;
1348 -moz-border-radius-topright: 20px;
1349 border-top-right-radius: 20px;
1350 -webkit-border-top-right-radius: 20px; 611 -webkit-border-top-right-radius: 20px;
1351 -moz-border-radius-topright: 20px; 612 -moz-border-radius-topright: 20px;
1352 border-top-right-radius: 20px; 613 border-top-right-radius: 20px;
@@ -1354,16 +615,6 @@ div#loginBox div.header {
1354div#loginBox div.body { 615div#loginBox div.body {
1355 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622)); 616 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1356 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a); 617 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1357 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1358 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1359 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1360 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1361 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1362 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1363 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1364 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1365 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1366 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1367} 618}
1368div#loginBox div.body h4 { 619div#loginBox div.body h4 {
1369 color: #ffffff; 620 color: #ffffff;
@@ -1473,216 +724,6 @@ div#loginBox div.footer {
1473 -webkit-border-bottom-left-radius: 20px; 724 -webkit-border-bottom-left-radius: 20px;
1474 -moz-border-radius-bottomleft: 20px; 725 -moz-border-radius-bottomleft: 20px;
1475 border-bottom-left-radius: 20px; 726 border-bottom-left-radius: 20px;
1476 -webkit-border-bottom-left-radius: 20px;
1477 -moz-border-radius-bottomleft: 20px;
1478 border-bottom-left-radius: 20px;
1479 -webkit-border-bottom-left-radius: 20px;
1480 -moz-border-radius-bottomleft: 20px;
1481 border-bottom-left-radius: 20px;
1482 -webkit-border-bottom-left-radius: 20px;
1483 -moz-border-radius-bottomleft: 20px;
1484 border-bottom-left-radius: 20px;
1485 -webkit-border-bottom-left-radius: 20px;
1486 -moz-border-radius-bottomleft: 20px;
1487 border-bottom-left-radius: 20px;
1488 -webkit-border-bottom-left-radius: 20px;
1489 -moz-border-radius-bottomleft: 20px;
1490 border-bottom-left-radius: 20px;
1491 -webkit-border-bottom-right-radius: 20px;
1492 -moz-border-radius-bottomright: 20px;
1493 border-bottom-right-radius: 20px;
1494 -webkit-border-bottom-right-radius: 20px;
1495 -moz-border-radius-bottomright: 20px;
1496 border-bottom-right-radius: 20px;
1497 -webkit-border-bottom-right-radius: 20px;
1498 -moz-border-radius-bottomright: 20px;
1499 border-bottom-right-radius: 20px;
1500 -webkit-border-bottom-right-radius: 20px;
1501 -moz-border-radius-bottomright: 20px;
1502 border-bottom-right-radius: 20px;
1503 -webkit-border-bottom-right-radius: 20px;
1504 -moz-border-radius-bottomright: 20px;
1505 border-bottom-right-radius: 20px;
1506 -webkit-border-bottom-right-radius: 20px;
1507 -moz-border-radius-bottomright: 20px;
1508 border-bottom-right-radius: 20px;
1509 -webkit-border-bottom-left-radius: 20px;
1510 -moz-border-radius-bottomleft: 20px;
1511 border-bottom-left-radius: 20px;
1512 -webkit-border-bottom-left-radius: 20px;
1513 -moz-border-radius-bottomleft: 20px;
1514 border-bottom-left-radius: 20px;
1515 -webkit-border-bottom-left-radius: 20px;
1516 -moz-border-radius-bottomleft: 20px;
1517 border-bottom-left-radius: 20px;
1518 -webkit-border-bottom-left-radius: 20px;
1519 -moz-border-radius-bottomleft: 20px;
1520 border-bottom-left-radius: 20px;
1521 -webkit-border-bottom-left-radius: 20px;
1522 -moz-border-radius-bottomleft: 20px;
1523 border-bottom-left-radius: 20px;
1524 -webkit-border-bottom-left-radius: 20px;
1525 -moz-border-radius-bottomleft: 20px;
1526 border-bottom-left-radius: 20px;
1527 -webkit-border-bottom-right-radius: 20px;
1528 -moz-border-radius-bottomright: 20px;
1529 border-bottom-right-radius: 20px;
1530 -webkit-border-bottom-right-radius: 20px;
1531 -moz-border-radius-bottomright: 20px;
1532 border-bottom-right-radius: 20px;
1533 -webkit-border-bottom-right-radius: 20px;
1534 -moz-border-radius-bottomright: 20px;
1535 border-bottom-right-radius: 20px;
1536 -webkit-border-bottom-right-radius: 20px;
1537 -moz-border-radius-bottomright: 20px;
1538 border-bottom-right-radius: 20px;
1539 -webkit-border-bottom-right-radius: 20px;
1540 -moz-border-radius-bottomright: 20px;
1541 border-bottom-right-radius: 20px;
1542 -webkit-border-bottom-right-radius: 20px;
1543 -moz-border-radius-bottomright: 20px;
1544 border-bottom-right-radius: 20px;
1545 -webkit-border-bottom-left-radius: 20px;
1546 -moz-border-radius-bottomleft: 20px;
1547 border-bottom-left-radius: 20px;
1548 -webkit-border-bottom-left-radius: 20px;
1549 -moz-border-radius-bottomleft: 20px;
1550 border-bottom-left-radius: 20px;
1551 -webkit-border-bottom-left-radius: 20px;
1552 -moz-border-radius-bottomleft: 20px;
1553 border-bottom-left-radius: 20px;
1554 -webkit-border-bottom-left-radius: 20px;
1555 -moz-border-radius-bottomleft: 20px;
1556 border-bottom-left-radius: 20px;
1557 -webkit-border-bottom-left-radius: 20px;
1558 -moz-border-radius-bottomleft: 20px;
1559 border-bottom-left-radius: 20px;
1560 -webkit-border-bottom-left-radius: 20px;
1561 -moz-border-radius-bottomleft: 20px;
1562 border-bottom-left-radius: 20px;
1563 -webkit-border-bottom-right-radius: 20px;
1564 -moz-border-radius-bottomright: 20px;
1565 border-bottom-right-radius: 20px;
1566 -webkit-border-bottom-right-radius: 20px;
1567 -moz-border-radius-bottomright: 20px;
1568 border-bottom-right-radius: 20px;
1569 -webkit-border-bottom-right-radius: 20px;
1570 -moz-border-radius-bottomright: 20px;
1571 border-bottom-right-radius: 20px;
1572 -webkit-border-bottom-right-radius: 20px;
1573 -moz-border-radius-bottomright: 20px;
1574 border-bottom-right-radius: 20px;
1575 -webkit-border-bottom-right-radius: 20px;
1576 -moz-border-radius-bottomright: 20px;
1577 border-bottom-right-radius: 20px;
1578 -webkit-border-bottom-right-radius: 20px;
1579 -moz-border-radius-bottomright: 20px;
1580 border-bottom-right-radius: 20px;
1581 -webkit-border-bottom-left-radius: 20px;
1582 -moz-border-radius-bottomleft: 20px;
1583 border-bottom-left-radius: 20px;
1584 -webkit-border-bottom-left-radius: 20px;
1585 -moz-border-radius-bottomleft: 20px;
1586 border-bottom-left-radius: 20px;
1587 -webkit-border-bottom-left-radius: 20px;
1588 -moz-border-radius-bottomleft: 20px;
1589 border-bottom-left-radius: 20px;
1590 -webkit-border-bottom-left-radius: 20px;
1591 -moz-border-radius-bottomleft: 20px;
1592 border-bottom-left-radius: 20px;
1593 -webkit-border-bottom-left-radius: 20px;
1594 -moz-border-radius-bottomleft: 20px;
1595 border-bottom-left-radius: 20px;
1596 -webkit-border-bottom-left-radius: 20px;
1597 -moz-border-radius-bottomleft: 20px;
1598 border-bottom-left-radius: 20px;
1599 -webkit-border-bottom-right-radius: 20px;
1600 -moz-border-radius-bottomright: 20px;
1601 border-bottom-right-radius: 20px;
1602 -webkit-border-bottom-right-radius: 20px;
1603 -moz-border-radius-bottomright: 20px;
1604 border-bottom-right-radius: 20px;
1605 -webkit-border-bottom-right-radius: 20px;
1606 -moz-border-radius-bottomright: 20px;
1607 border-bottom-right-radius: 20px;
1608 -webkit-border-bottom-right-radius: 20px;
1609 -moz-border-radius-bottomright: 20px;
1610 border-bottom-right-radius: 20px;
1611 -webkit-border-bottom-right-radius: 20px;
1612 -moz-border-radius-bottomright: 20px;
1613 border-bottom-right-radius: 20px;
1614 -webkit-border-bottom-right-radius: 20px;
1615 -moz-border-radius-bottomright: 20px;
1616 border-bottom-right-radius: 20px;
1617 -webkit-border-bottom-left-radius: 20px;
1618 -moz-border-radius-bottomleft: 20px;
1619 border-bottom-left-radius: 20px;
1620 -webkit-border-bottom-left-radius: 20px;
1621 -moz-border-radius-bottomleft: 20px;
1622 border-bottom-left-radius: 20px;
1623 -webkit-border-bottom-left-radius: 20px;
1624 -moz-border-radius-bottomleft: 20px;
1625 border-bottom-left-radius: 20px;
1626 -webkit-border-bottom-left-radius: 20px;
1627 -moz-border-radius-bottomleft: 20px;
1628 border-bottom-left-radius: 20px;
1629 -webkit-border-bottom-left-radius: 20px;
1630 -moz-border-radius-bottomleft: 20px;
1631 border-bottom-left-radius: 20px;
1632 -webkit-border-bottom-left-radius: 20px;
1633 -moz-border-radius-bottomleft: 20px;
1634 border-bottom-left-radius: 20px;
1635 -webkit-border-bottom-right-radius: 20px;
1636 -moz-border-radius-bottomright: 20px;
1637 border-bottom-right-radius: 20px;
1638 -webkit-border-bottom-right-radius: 20px;
1639 -moz-border-radius-bottomright: 20px;
1640 border-bottom-right-radius: 20px;
1641 -webkit-border-bottom-right-radius: 20px;
1642 -moz-border-radius-bottomright: 20px;
1643 border-bottom-right-radius: 20px;
1644 -webkit-border-bottom-right-radius: 20px;
1645 -moz-border-radius-bottomright: 20px;
1646 border-bottom-right-radius: 20px;
1647 -webkit-border-bottom-right-radius: 20px;
1648 -moz-border-radius-bottomright: 20px;
1649 border-bottom-right-radius: 20px;
1650 -webkit-border-bottom-right-radius: 20px;
1651 -moz-border-radius-bottomright: 20px;
1652 border-bottom-right-radius: 20px;
1653 -webkit-border-bottom-left-radius: 20px;
1654 -moz-border-radius-bottomleft: 20px;
1655 border-bottom-left-radius: 20px;
1656 -webkit-border-bottom-left-radius: 20px;
1657 -moz-border-radius-bottomleft: 20px;
1658 border-bottom-left-radius: 20px;
1659 -webkit-border-bottom-left-radius: 20px;
1660 -moz-border-radius-bottomleft: 20px;
1661 border-bottom-left-radius: 20px;
1662 -webkit-border-bottom-left-radius: 20px;
1663 -moz-border-radius-bottomleft: 20px;
1664 border-bottom-left-radius: 20px;
1665 -webkit-border-bottom-left-radius: 20px;
1666 -moz-border-radius-bottomleft: 20px;
1667 border-bottom-left-radius: 20px;
1668 -webkit-border-bottom-left-radius: 20px;
1669 -moz-border-radius-bottomleft: 20px;
1670 border-bottom-left-radius: 20px;
1671 -webkit-border-bottom-right-radius: 20px;
1672 -moz-border-radius-bottomright: 20px;
1673 border-bottom-right-radius: 20px;
1674 -webkit-border-bottom-right-radius: 20px;
1675 -moz-border-radius-bottomright: 20px;
1676 border-bottom-right-radius: 20px;
1677 -webkit-border-bottom-right-radius: 20px;
1678 -moz-border-radius-bottomright: 20px;
1679 border-bottom-right-radius: 20px;
1680 -webkit-border-bottom-right-radius: 20px;
1681 -moz-border-radius-bottomright: 20px;
1682 border-bottom-right-radius: 20px;
1683 -webkit-border-bottom-right-radius: 20px;
1684 -moz-border-radius-bottomright: 20px;
1685 border-bottom-right-radius: 20px;
1686 -webkit-border-bottom-right-radius: 20px; 727 -webkit-border-bottom-right-radius: 20px;
1687 -moz-border-radius-bottomright: 20px; 728 -moz-border-radius-bottomright: 20px;
1688 border-bottom-right-radius: 20px; 729 border-bottom-right-radius: 20px;
@@ -1760,6 +801,7 @@ div.activeFeatures div.createAccountLink {
1760 display: inline-block; 801 display: inline-block;
1761 width: 282; 802 width: 282;
1762 height: 65px; 803 height: 65px;
804 background-image: url(./images/old/home/register.png);
1763 margin-right: 20px; 805 margin-right: 20px;
1764} 806}
1765div.activeFeatures div.createAccountLink a.createAccountLink { 807div.activeFeatures div.createAccountLink a.createAccountLink {
@@ -1779,6 +821,9 @@ div.activeFeatures div.createAccountLink a.createAccountLink span.link {
1779 padding-bottom: 10px; 821 padding-bottom: 10px;
1780 font-size: 12pt; 822 font-size: 12pt;
1781} 823}
824div.activeFeatures div.createAccountLink:hover {
825 background-image: url(./images/old/home/register_selected.png);
826}
1782div.activeFeatures div.createAccountLink:hover a.createAccountLink span.payoff { 827div.activeFeatures div.createAccountLink:hover a.createAccountLink span.payoff {
1783 color: #54535a; 828 color: #54535a;
1784} 829}
@@ -1847,49 +892,9 @@ div.userInfoBox {
1847 background-color: #ff9955; 892 background-color: #ff9955;
1848 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723)); 893 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723));
1849 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56); 894 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56);
1850 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723));
1851 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56);
1852 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723));
1853 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56);
1854 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723));
1855 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56);
1856 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723));
1857 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56);
1858 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9a56), to(#ff6723));
1859 background: -moz-linear-gradient(0% 100% 90deg, #ff6723, #ff9a56);
1860 border-radius: 10px;
1861 -moz-border-radius: 10px;
1862 -webkit-border-radius: 10px;
1863 border-radius: 10px;
1864 -moz-border-radius: 10px;
1865 -webkit-border-radius: 10px;
1866 border-radius: 10px;
1867 -moz-border-radius: 10px;
1868 -webkit-border-radius: 10px;
1869 border-radius: 10px; 895 border-radius: 10px;
1870 -moz-border-radius: 10px; 896 -moz-border-radius: 10px;
1871 -webkit-border-radius: 10px; 897 -webkit-border-radius: 10px;
1872 border-radius: 10px;
1873 -moz-border-radius: 10px;
1874 -webkit-border-radius: 10px;
1875 border-radius: 10px;
1876 -moz-border-radius: 10px;
1877 -webkit-border-radius: 10px;
1878 -webkit-box-shadow: 2px 2px 9px #333333;
1879 -moz-box-shadow: 2px 2px 9px #333333;
1880 box-shadow: 2px 2px 9px #333333;
1881 -webkit-box-shadow: 2px 2px 9px #333333;
1882 -moz-box-shadow: 2px 2px 9px #333333;
1883 box-shadow: 2px 2px 9px #333333;
1884 -webkit-box-shadow: 2px 2px 9px #333333;
1885 -moz-box-shadow: 2px 2px 9px #333333;
1886 box-shadow: 2px 2px 9px #333333;
1887 -webkit-box-shadow: 2px 2px 9px #333333;
1888 -moz-box-shadow: 2px 2px 9px #333333;
1889 box-shadow: 2px 2px 9px #333333;
1890 -webkit-box-shadow: 2px 2px 9px #333333;
1891 -moz-box-shadow: 2px 2px 9px #333333;
1892 box-shadow: 2px 2px 9px #333333;
1893 -webkit-box-shadow: 2px 2px 9px #333333; 898 -webkit-box-shadow: 2px 2px 9px #333333;
1894 -moz-box-shadow: 2px 2px 9px #333333; 899 -moz-box-shadow: 2px 2px 9px #333333;
1895 box-shadow: 2px 2px 9px #333333; 900 box-shadow: 2px 2px 9px #333333;
@@ -1898,10 +903,10 @@ div.userInfoBox.locked {
1898 z-index: 19001; 903 z-index: 19001;
1899} 904}
1900div.userInfoBox.locked div.header a.lockButton { 905div.userInfoBox.locked div.header a.lockButton {
1901 background: url(../images/old/lock/locked.png) no-repeat -5px -2px; 906 background: url(./images/old/lock/locked.png) no-repeat -5px -2px;
1902} 907}
1903div.userInfoBox.locked div.header a.lockButton:hover { 908div.userInfoBox.locked div.header a.lockButton:hover {
1904 background: url(../images/old/lock/locked_hover.png) no-repeat -5px -2px; 909 background: url(./images/old/lock/locked_hover.png) no-repeat -5px -2px;
1905} 910}
1906div.userInfoBox.locked div.body a { 911div.userInfoBox.locked div.body a {
1907 display: none; 912 display: none;
@@ -1924,10 +929,10 @@ div.userInfoBox div.header a.lockButton {
1924 width: 15px; 929 width: 15px;
1925 height: 20px; 930 height: 20px;
1926 text-decoration: none; 931 text-decoration: none;
1927 background: url(../images/old/lock/unlocked.png) no-repeat -5px -2px; 932 background: url(./images/old/lock/unlocked.png) no-repeat -5px -2px;
1928} 933}
1929div.userInfoBox div.header a.lockButton:hover { 934div.userInfoBox div.header a.lockButton:hover {
1930 background: url(../images/old/lock/unlocked_hover.png) no-repeat -5px -2px; 935 background: url(./images/old/lock/unlocked_hover.png) no-repeat -5px -2px;
1931} 936}
1932div.userInfoBox div.body { 937div.userInfoBox div.body {
1933 padding: 0px 12px; 938 padding: 0px 12px;
@@ -1942,7 +947,6 @@ div.userInfoBox div.body ul {
1942 padding: 0px; 947 padding: 0px;
1943 margin: 4px 0px; 948 margin: 4px 0px;
1944 list-style-position: inside; 949 list-style-position: inside;
1945 text-shadow: #000000 0 0 0;
1946} 950}
1947div.userInfoBox div.body ul li span.number { 951div.userInfoBox div.body ul li span.number {
1948 font-weight: bold; 952 font-weight: bold;
@@ -2022,35 +1026,24 @@ div.sidePanels div.tabSidePanel ul.mainTabs li.selected div.selectionHighlighter
2022 margin-top: -43px; 1026 margin-top: -43px;
2023} 1027}
2024div.sidePanels div.tabSidePanel ul.mainTabs li.cards a { 1028div.sidePanels div.tabSidePanel ul.mainTabs li.cards a {
2025 background: url(../images/old/main/tabs/cardsBackground.png) -19px -63px; 1029 background: url(./images/old/main/tabs/cardsBackground.png) -19px -63px;
2026} 1030}
2027div.sidePanels div.tabSidePanel ul.mainTabs li.cards a:hover { 1031div.sidePanels div.tabSidePanel ul.mainTabs li.cards a:hover {
2028 background: url(../images/old/main/tabs/cardsBackground.png) -19px -110px; 1032 background: url(./images/old/main/tabs/cardsBackground.png) -19px -110px;
2029} 1033}
2030div.sidePanels div.tabSidePanel ul.mainTabs li.cards.selected a { 1034div.sidePanels div.tabSidePanel ul.mainTabs li.cards.selected a {
2031 margin-left: -10px; 1035 margin-left: -10px;
2032 padding-left: 50px; 1036 padding-left: 50px;
2033 color: white; 1037 color: white;
2034 background: url(../images/old/main/tabs/cardsBackground.png) -9px -14px; 1038 background: url(./images/old/main/tabs/cardsBackground.png) -9px -14px;
2035}
2036div.sidePanels div.tabSidePanel ul.mainTabs li.cards.selected a:hover {
2037 background: url(../images/old/main/tabs/cardsBackground.png) -9px -14px;
2038}
2039div.sidePanels div.tabSidePanel ul.mainTabs li.directLogins a {
2040 background: url(../images/old/main/tabs/directLoginBackground.png) -19px -63px;
2041}
2042div.sidePanels div.tabSidePanel ul.mainTabs li.directLogins a:hover {
2043 background: url(../images/old/main/tabs/directLoginBackground.png) -19px -110px;
2044} 1039}
2045div.sidePanels div.tabSidePanel ul.mainTabs li.directLogins.selected a { 1040div.sidePanels div.tabSidePanel ul.mainTabs li.directLogins.selected a {
2046 margin-left: -10px; 1041 margin-left: -10px;
2047 padding-left: 50px; 1042 padding-left: 50px;
2048 color: white; 1043 color: white;
2049 background: url(../images/old/main/tabs/directLoginBackground.png) -9px -14px;
2050} 1044}
2051div.sidePanels div.tabSidePanel ul.mainTabs li.directLogins.selected a:hover { 1045div.sidePanels div.tabSidePanel ul.mainTabs li.directLogins.selected a:hover {
2052 color: white; 1046 color: white;
2053 background: url(../images/old/main/tabs/directLoginBackground.png) -9px -14px;
2054} 1047}
2055div.sidePanels div.tabSidePanel ul.otherTabs { 1048div.sidePanels div.tabSidePanel ul.otherTabs {
2056 margin: 10px 0px; 1049 margin: 10px 0px;
@@ -2070,12 +1063,12 @@ div.sidePanels div.tabSidePanel ul.otherTabs li a {
2070 text-decoration: none; 1063 text-decoration: none;
2071} 1064}
2072div.sidePanels div.tabSidePanel ul.otherTabs li a:hover { 1065div.sidePanels div.tabSidePanel ul.otherTabs li a:hover {
2073 background: url(../images/old/main/tabs/itemsBackground.png) -10px -49px; 1066 background: url(./images/old/main/tabs/itemsBackground.png) -10px -49px;
2074} 1067}
2075div.sidePanels div.tabSidePanel ul.otherTabs li.selected a { 1068div.sidePanels div.tabSidePanel ul.otherTabs li.selected a {
2076 margin-left: -10px; 1069 margin-left: -10px;
2077 padding-left: 50px; 1070 padding-left: 50px;
2078 background: url(../images/old/main/tabs/itemsBackground.png) 1px -96px; 1071 background: url(./images/old/main/tabs/itemsBackground.png) 1px -96px;
2079 color: white; 1072 color: white;
2080} 1073}
2081div.sidePanels div.tabSidePanel ul.otherTabs li.selected div.selectionHighlighter { 1074div.sidePanels div.tabSidePanel ul.otherTabs li.selected div.selectionHighlighter {
@@ -2090,7 +1083,7 @@ div.tagSidePanel {
2090 1083
2091 div.tagSidePanel div.header { 1084 div.tagSidePanel div.header {
2092 height: 50px; 1085 height: 50px;
2093 background-image: url(../images/old/main/tabs/tagsBackground.png); 1086 background-image: url(./images/old/main/tabs/tagsBackground.png);
2094 } 1087 }
2095 div.tagSidePanel div.header h1 { 1088 div.tagSidePanel div.header h1 {
2096 padding-left: 52px; 1089 padding-left: 52px;
@@ -2100,11 +1093,11 @@ div.tagSidePanel {
2100 color: #888888; 1093 color: #888888;
2101 } 1094 }
2102 div.tagSidePanel div.body { 1095 div.tagSidePanel div.body {
2103 background: url(../images/old/main/tabs/tagsBackground.png) -255px; 1096 background: url(./images/old/main/tabs/tagsBackground.png) -255px;
2104 } 1097 }
2105 div.tagSidePanel div.footer { 1098 div.tagSidePanel div.footer {
2106 height: 10px; 1099 height: 10px;
2107 background: url(../images/old/main/tabs/tagsBackground.png) -510px -40px; 1100 background: url(./images/old/main/tabs/tagsBackground.png) -510px -40px;
2108 } 1101 }
2109 div.tagSidePanel ul.tags { 1102 div.tagSidePanel ul.tags {
2110 margin: 0px; 1103 margin: 0px;
@@ -2146,7 +1139,7 @@ div.groupSidePanel {
2146 1139
2147 div.groupSidePanel div.header { 1140 div.groupSidePanel div.header {
2148 height: 50px; 1141 height: 50px;
2149 background-image: url(../images/old/main/tabs/groupsBackground.png); 1142 background-image: url(./images/old/main/tabs/groupsBackground.png);
2150 } 1143 }
2151 div.groupSidePanel div.header h1 { 1144 div.groupSidePanel div.header h1 {
2152 padding-left: 52px; 1145 padding-left: 52px;
@@ -2168,11 +1161,11 @@ div.groupSidePanel {
2168 color: #444444; 1161 color: #444444;
2169 } 1162 }
2170 div.groupSidePanel div.body { 1163 div.groupSidePanel div.body {
2171 background: url(../images/old/main/tabs/groupsBackground.png) -255px; 1164 background: url(./images/old/main/tabs/groupsBackground.png) -255px;
2172 } 1165 }
2173 div.groupSidePanel div.footer { 1166 div.groupSidePanel div.footer {
2174 height: 10px; 1167 height: 10px;
2175 background: url(../images/old/main/tabs/groupsBackground.png) -510px -39px; 1168 background: url(./images/old/main/tabs/groupsBackground.png) -510px -39px;
2176 } 1169 }
2177 div.groupSidePanel ul.groups { 1170 div.groupSidePanel ul.groups {
2178 margin: 0px; 1171 margin: 0px;
@@ -2208,3 +1201,2899 @@ div.groupSidePanel {
2208 } 1201 }
2209*/ 1202*/
2210} 1203}
1204div.subPanelTabs ul {
1205 margin: 0px;
1206 margin-right: 7px;
1207 padding: 0px;
1208}
1209div.subPanelTabs ul li {
1210 display: inline-block;
1211 vertical-align: middle;
1212 height: 50px;
1213 border-right: 1px solid #eef0e3;
1214 border-bottom: 1px solid #d5d5bc;
1215}
1216div.subPanelTabs ul li.first {
1217 -webkit-border-top-left-radius: 20px;
1218 -moz-border-radius-topleft: 20px;
1219 border-top-left-radius: 20px;
1220}
1221div.subPanelTabs ul li.selected {
1222 background-color: #eef0e3;
1223 border-bottom: 1px solid #eef0e3;
1224 border-right: 1px solid #d5d5bc;
1225}
1226div.subPanelTabs ul li.selected:hover {
1227 border-right: 1px solid #d5d5bc;
1228}
1229div.subPanelTabs ul li.selected a {
1230 color: #444440;
1231}
1232div.subPanelTabs ul li:hover {
1233 border-right: 1px solid #d5d5bc;
1234 background-color: #eef0e3;
1235}
1236div.subPanelTabs ul li a {
1237 color: #787872;
1238 text-decoration: none;
1239 display: block;
1240 text-align: center;
1241 padding-top: 15px;
1242 padding-left: 20px;
1243 padding-right: 20px;
1244 font-size: 13pt;
1245}
1246div.subPanelContent {
1247 padding-top: 20px;
1248 padding-left: 30px;
1249 padding-right: 30px;
1250 min-height: 280px;
1251 color: #787872;
1252 margin: 0px 6px 0 9px;
1253}
1254div.subPanelContent h3 {
1255 margin: 0px;
1256 border: 0px;
1257 padding: 0px;
1258}
1259div.subPanelContent ul {
1260 margin: 0px;
1261 padding: 0px;
1262 list-style-type: none;
1263}
1264div.subPanelContent ul li {
1265 display: none;
1266}
1267div.subPanelContent ul li.selected {
1268 display: block;
1269}
1270.downloadOfflineCopy {
1271 display: inline-block;
1272 height: 20px;
1273 cursor: pointer;
1274 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#59bc4c), to(#448833));
1275 background: -moz-linear-gradient(0% 100% 90deg, #448833, #59bc4c);
1276 border-radius: 5;
1277 -moz-border-radius: 5;
1278 -webkit-border-radius: 5;
1279 border: 1px solid #51a23d;
1280 padding-top: 4px;
1281 padding-left: 15px;
1282 padding-right: 15px;
1283 padding-bottom: 2px;
1284 color: white;
1285 font-weight: lighter;
1286 text-shadow: -1px -1px 1px #448833, 1px 1px 1px #59bc4c;
1287 text-decoration: none;
1288}
1289.downloadOfflineCopy:hover {
1290 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#49a23d), to(#448833));
1291 background: -moz-linear-gradient(0% 100% 90deg, #448833, #49a23d);
1292}
1293div.SimpleMessagePanel {
1294 position: relative;
1295 left: -225px;
1296 top: -70px;
1297 width: 450px;
1298 height: 140px;
1299}
1300div.SimpleMessagePanel div.body {
1301 padding: 20px;
1302 padding-bottom: 15px;
1303 background-color: #f1f1ef;
1304 -webkit-box-shadow: 2px 2px 9px #333333;
1305 -moz-box-shadow: 2px 2px 9px #333333;
1306 box-shadow: 2px 2px 9px #333333;
1307 border-radius: 10;
1308 -moz-border-radius: 10;
1309 -webkit-border-radius: 10;
1310}
1311div.SimpleMessagePanel div.body h3 {
1312 font-size: 14pt;
1313 font-weight: normal;
1314 margin: 0px;
1315 padding-top: 4px;
1316 color: #787872;
1317}
1318div.SimpleMessagePanel div.body div.img {
1319 width: 50px;
1320 height: 50px;
1321 float: left;
1322 margin-right: 15px;
1323 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9b5a), to(#ff6622));
1324 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9b5a);
1325 border-radius: 25px;
1326 -moz-border-radius: 25px;
1327 -webkit-border-radius: 25px;
1328}
1329div.SimpleMessagePanel div.body div.img canvas {
1330 width: 50px;
1331 height: 50px;
1332}
1333div.SimpleMessagePanel div.body p {
1334 margin: 0;
1335 font-size: 10pt;
1336 font-weight: normal;
1337 color: #787872;
1338 padding-top: 10px;
1339 padding-bottom: 5px;
1340 line-height: 1.3;
1341}
1342div.SimpleMessagePanel div.body div.buttonArea {
1343 height: 40px;
1344 clear: both;
1345}
1346div.SimpleMessagePanel div.body div.buttonArea > div {
1347 float: right;
1348 margin-left: 15px;
1349 margin-top: 10px;
1350}
1351div.SimpleMessagePanel div.passphrase {
1352 padding-left: 65px;
1353}
1354div.SimpleMessagePanel div.passphrase input {
1355 width: 250px;
1356 font-size: 14pt;
1357 border: 1px solid #bb4924;
1358 color: #333366;
1359 background-color: white;
1360 padding: 2px 5px;
1361 height: 28px;
1362}
1363div.SimpleMessagePanel div.progressBarWrapper {
1364 margin-left: 80px;
1365}
1366/* @end */
1367/* @group Javascript Alert */
1368div#javaScriptAlert div.mask {
1369 position: fixed;
1370 top: 0px;
1371 left: 0px;
1372 right: 0px;
1373 bottom: 0px;
1374 background-color: black;
1375 z-index: 1001;
1376 -moz-opacity: 0.7;
1377 opacity: .70;
1378 filter: alpha(opacity=70);
1379}
1380div#javaScriptAlert div.header {
1381 height: 34px;
1382 width: 468;
1383 background-image: url(./images/old/alert/header.png);
1384}
1385div#javaScriptAlert div.body {
1386 background-image: url(./images/old/alert/body.png);
1387 padding: 0px 20px 10px 20px;
1388}
1389/*
1390div#javaScriptAlert div.body div.alert {
1391 padding-left: 100px;
1392 background: url(./images/old/alert/alert.png) no-repeat;
1393}
1394*/
1395/*div#javaScriptAlert div.body img.alert {*/
1396div#javaScriptAlert div.body div.alertLogo {
1397 float: left;
1398 background-image: url(./images/old/alert/alert.png);
1399 width: 88px;
1400 height: 88px;
1401}
1402div#javaScriptAlert div.body div.alert {
1403 padding-left: 100px;
1404}
1405div#javaScriptAlert div.footer {
1406 height: 34px;
1407 width: 468;
1408 background-image: url(./images/old/alert/footer.png);
1409}
1410div#javaScriptAlert div.message {
1411 position: relative;
1412 top: -150px;
1413 z-index: 1002;
1414 /*
1415 left: 100px;
1416 right: 100px;
1417*/
1418
1419 margin-left: auto;
1420 margin-right: auto;
1421 max-width: 468px;
1422}
1423div#javaScriptAlert div.message h1 {
1424 font-size: 16pt;
1425 margin: 0px;
1426 color: #ff5930;
1427}
1428div#javaScriptAlert div.message p {
1429 margin-top: 0px;
1430 color: #999999;
1431}
1432div#javaScriptAlert div.message h3 {
1433 font-size: 12pt;
1434 margin-bottom: 0px;
1435 color: #ff5930;
1436}
1437div#javaScriptAlert div.message h5 {
1438 margin: 0px;
1439 color: #999999;
1440}
1441/* @end */
1442/* @group Components
1443 */
1444/* @group LoginProgress */
1445div.LoginProgress {
1446 position: relative;
1447 left: -190px;
1448 top: -100px;
1449 width: 380px;
1450 height: 200px;
1451 /* background: url(./images/old/loginProgress/background.png);*/
1452
1453 background-color: #d7d7c0;
1454 -webkit-border-radius: 20px;
1455 -moz-border-radius: 20px;
1456 border-radius: 20px;
1457 -webkit-box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.6);
1458 -moz-box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.6);
1459 box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.6);
1460}
1461div.LoginProgress div.header {
1462 height: 40px;
1463}
1464div.LoginProgress div.header h3 {
1465 font-size: 12pt;
1466 font-weight: normal;
1467 margin: 0px;
1468 color: #777777;
1469 padding-top: 13px;
1470 padding-left: 18px;
1471}
1472div.LoginProgress div.body {
1473 height: 120px;
1474 overflow: auto;
1475 padding-left: 20px;
1476 padding-right: 20px;
1477 background-color: #f1f1e9;
1478 /*
1479 margin-left: 19px;
1480 margin-right: 18px;
1481*/
1482
1483}
1484div.LoginProgress div.body div.img {
1485 margin: 10px;
1486 width: 50px;
1487 height: 50px;
1488 float: left;
1489}
1490div.LoginProgress div.body div.img.ALERT {
1491 /* background-image: url(./images/old/simpleMessageBox/Alert.png);*/
1492
1493 background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ff9955), to(#ff6622), color-stop(1, #333333));
1494 background: -moz-linear-gradient(0% 100% 90deg, #ff6622, #ff9955);
1495 -webkit-border-radius: 25px;
1496 -moz-border-radius: 25px;
1497 border-radius: 25px;
1498}
1499div.LoginProgress div.body div.img.ALERT canvas {
1500 width: 50px;
1501 height: 50px;
1502 /*background-image: url(./images/old/simpleMessageBox/excalmationPoint.png); */
1503
1504}
1505div.LoginProgress div.body div.loadingBar {
1506 position: relative;
1507 top: 51px;
1508 left: 60px;
1509}
1510div.LoginProgress div.body div.errorBox p {
1511 color: #787872;
1512 padding-top: 20px;
1513 padding-left: 80px;
1514}
1515div.LoginProgress div.footer {
1516 margin-left: 19px;
1517 margin-right: 18px;
1518}
1519/*
1520div.LoginProgress div.footer a {
1521 text-decoration: none;
1522 text-align: center;
1523 color: #787872;
1524 display: block;
1525 font-weight: bold;
1526 font-size: 11pt;
1527 width: 100px;
1528 margin-top: 11px;
1529 margin-left: auto;
1530 margin-right: auto;
1531}
1532*/
1533div.LoginProgress div.buttonArea {
1534 padding-top: 6px;
1535 text-align: center;
1536}
1537div.LoginProgress div.button {
1538 display: inline-block;
1539}
1540div.LoginProgress div.footer a:hover {
1541 color: #515247;
1542}
1543/* @end */
1544/* @group SimpleMessagePanel */
1545/* -> SimpleMessagePanel.less
1546div.SimpleMessagePanel {
1547 position: relative;
1548 left: -225px;
1549 top: -70px;
1550 width: 450px;
1551 height: 140px;
1552//background: url(./images/old/loginProgress/background.png);
1553 background-color: #f1f1ef;
1554 .border-radius(10);
1555}
1556//div.SimpleMessagePanel div.header {
1557// height: 17px;
1558// background: url(./images/old/simpleMessageBox/background_header.png) no-repeat;
1559}
1560div.SimpleMessagePanel div.body {
1561/ *
1562 height: 120px;
1563 overflow: auto;
1564 margin-left: 19px;
1565 margin-right: 18px;
1566* /
1567
1568// background: url(./images/old/simpleMessageBox/background_body.png) repeat-y;
1569// padding-left: 25px;
1570// padding-right: 25px;
1571// padding-top: 10px;
1572 padding: 20px;
1573 .box-shadow (2px, 2px, 9px, @Global_shadow-color);
1574}
1575div.SimpleMessagePanel div.body h3 {
1576 font-size: 14pt;
1577 font-weight: normal;
1578 margin: 0px;
1579 padding-top: 4px;
1580 color: #787872;
1581}
1582div.SimpleMessagePanel div.body div.img {
1583 width: 60px;
1584 height: 60px;
1585 float: left;
1586 margin-right: 10px;
1587
1588 .graduated-background (#ff6622, #ffad79);
1589 .border-radius(30);
1590}
1591div.SimpleMessagePanel div.body div.img canvas {
1592 width: 60px;
1593 height: 60px;
1594}
1595div.SimpleMessagePanel div.body p {
1596 margin: 0;
1597 font-size: 10pt;
1598 font-weight: normal;
1599 color: #787872;
1600 padding-top: 10px;
1601 padding-bottom: 5px;
1602 line-height: 1.3;
1603}
1604div.SimpleMessagePanel div.body div.img.ALERT {
1605// background: url(./images/old/simpleMessageBox/Alert.png) no-repeat;
1606}
1607div.SimpleMessagePanel div.body div.img.INFO {
1608// background: url(./images/old/simpleMessageBox/Info.png) no-repeat;
1609}
1610div.SimpleMessagePanel div.body div.buttonArea {
1611 height: 40px;
1612 clear: both;
1613}
1614div.SimpleMessagePanel div.body div.buttonArea > div {
1615 float: right;
1616 margin-left: 15px;
1617 margin-top: 10px;
1618}
1619div.SimpleMessagePanel div.footer {
1620 height: 25px;
1621// background: url(./images/old/simpleMessageBox/background_footer.png) no-repeat;
1622}
1623div.SimpleMessagePanel div.passphrase {
1624 padding-left: 65px;
1625}
1626div.SimpleMessagePanel div.passphrase input {
1627 width: 250px;
1628 font-size: 14pt;
1629 border: 1px solid #bb4924;
1630 color: #333366;
1631 background-color: white;
1632 padding: 2px 5px;
1633 height: 28px;
1634}
1635div.SimpleMessagePanel div.progressBarWrapper {
1636 margin-left: 80px;
1637}
1638*/
1639/* @end */
1640/* @group Button */
1641/* -> Button.less
1642div.button_wrapper {
1643 height: 32px;
1644 background: url(./images/old/button/default_left.png) no-repeat;
1645 cursor: pointer;
1646}
1647div.button_wrapper.hover {
1648 background: url(./images/old/button/hover_left.png) no-repeat;
1649}
1650div.button_wrapper.clicked {
1651 background: url(./images/old/button/clicked_left.png) no-repeat;
1652}
1653div.button_bodyWrapper {
1654 height: 32px;
1655 margin-left: 6px;
1656 padding-right: 6px;
1657 background: url(./images/old/button/default_main.png) repeat-x right 0;
1658}
1659div.button_wrapper.hover div.button_bodyWrapper {
1660 background: url(./images/old/button/hover_main.png) repeat-x right 0;
1661}
1662div.button_wrapper.clicked div.button_bodyWrapper {
1663 background: url(./images/old/button/clicked_main.png) repeat-x right 0;
1664}
1665div.button_body {
1666 text-align: center;
1667 min-width: 60px;
1668 padding: 0px 7px;
1669 padding-top: 8px;
1670}
1671div.button_body span {
1672 font-size: 11pt;
1673 color: white;
1674}
1675div.button_wrapper.default div.button_body span {
1676 font-weight: bold;
1677}
1678/ *
1679div.button_footer {
1680 margin: 0px;
1681 height: 31px;
1682 width: 6px;
1683 background: green url(./images/old/button/default_right.png) no-repeat;
1684}
1685* /
1686*/
1687/* @end */
1688/* @group Password enthropy */
1689input.entropyLevelIndicator {
1690 background: url(./images/old/passwordField/background.png) no-repeat 0 26px;
1691}
1692div.passwordEntropyWrapper {
1693 padding: 0px;
1694 border: 1px solid #bb4924;
1695 border-top: 0px;
1696 margin-bottom: 4px;
1697 background-color: white;
1698 margin-right: 3px;
1699 margin-top: -2;
1700}
1701div.passwordEntropy {
1702 height: 4px;
1703 font-size: 1pt;
1704 background: url(./images/old/entropyBackground.gif) repeat-x 0 0;
1705 line-height: 3px;
1706}
1707div.messageBox {
1708 position: absolute;
1709 width: 409px;
1710 height: 29px;
1711 top: 23px;
1712 left: 204px;
1713 background: url(./images/old/main/messageBoxBackground.png);
1714}
1715div.messageBox h3 {
1716 display: inline-block;
1717 color: #342f6b;
1718 font-weight: bold;
1719 margin: 7px 2px 0px 12px;
1720 font-size: 10pt;
1721}
1722body.ext-gecko div.messageBox h3 {
1723 display: -moz-inline-box;
1724}
1725div.messageBox h1 {
1726 color: #342f6b;
1727 display: inline;
1728 font-weight: normal;
1729 margin: 0px 1px;
1730 font-size: 9pt;
1731}
1732div.messageBox a {
1733 display: block;
1734 width: 20px;
1735 height: 20px;
1736 float: right;
1737 position: absolute;
1738 right: 5px;
1739 top: 4px;
1740 background-image: url(./images/old/main/messageBoxCloseButton.png);
1741}
1742div.messageBox a:hover {
1743 background-image: url(./images/old/main/messageBoxCloseButtonActive.png);
1744}
1745/* @end */
1746/* @group Side panels */
1747/* @end */
1748/* @end */
1749/* @group MainPanels */
1750div.mainPanels {
1751 float: left;
1752 width: 833px;
1753 margin-top: -38px;
1754 /*
1755 position: relative;
1756 width: 100%;
1757 min-height: 600px;
1758 top: -40px;
1759 left: 250px;
1760*/
1761
1762}
1763div.mainFooter {
1764 clear: both;
1765}
1766/* @end */
1767/* @group Grids */
1768/* @group grid Component */
1769/* @group delete */
1770/*div.body div.rows table.rows tbody tr td.delete */
1771div.delete,
1772div.new {
1773 padding-left: 5px;
1774 height: 19px;
1775}
1776div.new span,
1777div.delete span {
1778 margin: 0px;
1779 padding: 0px;
1780 border: 0px;
1781 display: inline-block;
1782 height: 19px;
1783 padding-right: 6px;
1784}
1785div.new span a,
1786div.delete span a {
1787 white-space: nowrap;
1788}
1789div.delete:hover {
1790 background: url(./images/old/delete_background_left.png) no-repeat 0;
1791}
1792div.delete:hover span {
1793 background: url(./images/old/delete_background.png) no-repeat right 0;
1794}
1795div.new:hover {
1796 background: url(./images/old/new_background_left.png) no-repeat 0;
1797}
1798div.new:hover span {
1799 background: url(./images/old/new_background.png) no-repeat right 0;
1800}
1801/*
1802tr.selected div.delete {
1803 background: url(./images/old/delete_background_left.png) no-repeat 0;
1804}
1805tr.selected div.delete span {
1806 background: url(./images/old/delete_background.png) no-repeat right 0;
1807}
1808*/
1809div.body div.rows table.rows tbody tr td.delete div.delete span a {
1810 visibility: hidden;
1811 font-size: 8pt;
1812 vertical-align: -13px;
1813 color: black;
1814}
1815div.body div.rows table.rows tbody tr.selected td.delete div.delete span a {
1816 visibility: visible;
1817}
1818div.body div.rows table.rows tbody tr:hover td.delete div.delete span a {
1819 visibility: visible;
1820}
1821div.body div.rows table.rows tbody tr:hover td.delete div.delete:hover span a {
1822 color: white;
1823}
1824/*
1825div.body div.rows table.rows tbody tr.selected td.delete div.delete span a {
1826 color: white;
1827}
1828*/
1829/* @end */
1830/* @group header */
1831div.gridComponent table.rows thead tr th {
1832 text-align: left;
1833 height: 30px;
1834 vertical-align: bottom;
1835}
1836div.gridComponent table.rows thead tr th.sortable span {
1837 cursor: pointer;
1838}
1839div.gridComponent table.rows thead tr th.sortable span a {
1840 margin-left: 5px;
1841 padding-left: 10px;
1842}
1843div.gridComponent table.rows thead tr th.directLoginTH {
1844 width: 420px;
1845}
1846div.gridComponent table.rows thead tr th.latestUpdateTH {
1847 width: 100px;
1848}
1849div.gridComponent table.rows thead tr th.commandsTH {
1850 width: 150px;
1851}
1852div.gridComponent table.rows thead a {
1853 text-decoration: none;
1854}
1855div.gridComponent table.rows thead span {
1856 font-weight: normal;
1857 font-size: 9pt;
1858 line-height: 20px;
1859}
1860div.gridComponent div.header div.headerSlot {
1861 float: right;
1862}
1863/* @end */
1864div.mainPanels div.gridComponent div.body table.rows td.favicon {
1865 padding-left: 25px;
1866}
1867div.mainPanels div.gridComponent div.body table.rows td.favicon img {
1868 width: 16px;
1869 height: 16px;
1870 border: 0px;
1871}
1872/* @end */
1873/* @group Card Grid */
1874/* @group DirectLogin links */
1875div.gridComponent th.directLoginTH span {
1876 margin-left: 7px;
1877}
1878td.card_directLogins div {
1879 display: inline-table;
1880}
1881td.card_directLogins span {
1882 display: inline-block;
1883}
1884/*
1885td.card_directLogins a {
1886 display: inline-table;
1887 height: 19px;
1888
1889 padding-right: 7px;
1890}
1891
1892td.card_directLogins a:hover {
1893 background: url(./images/old/directLink_background.png) right 0;
1894}
1895*/
1896div.card_directLogin {
1897 display: inline-block;
1898 height: 19px;
1899 padding-left: 7px;
1900}
1901div.card_directLogin_ellipses span {
1902 padding-bottom: 2px;
1903}
1904div.card_directLogin div.card_directLogin_body {
1905 display: inline-block;
1906 height: 19px;
1907 padding-right: 8px;
1908 background-position: left;
1909}
1910div.card_directLogin div.card_directLogin_body a {
1911 vertical-align: -14px;
1912}
1913/*div.card_directLogin:hover {*/
1914div.card_directLogin:hover {
1915 background: url(./images/old/directLink_background_left.png) no-repeat 0 0;
1916}
1917/*div.card_directLogin:hover div {*/
1918div.card_directLogin:hover div.card_directLogin_body {
1919 background: url(./images/old/directLink_background.png) right 0;
1920}
1921/* @group DirectLogin Popup */
1922div.DirectLoginListPopup {
1923 position: absolute;
1924 width: 184px;
1925}
1926div.DirectLoginListPopup div.DirectLoginListPopup_body {
1927 background-image: url(./images/old/directLogins_background.png);
1928 padding-top: 8px;
1929}
1930div.DirectLoginListPopup div.DirectLoginListPopup_footer {
1931 height: 8px;
1932 background-image: url(./images/old/directLogins_background_bottom.png);
1933}
1934div.DirectLoginListPopup div.DirectLoginListPopup_body ul {
1935 margin: 0px;
1936 padding-left: 13px;
1937 list-style: none;
1938}
1939div.DirectLoginListPopup div.DirectLoginListPopup_body ul li {
1940 padding-top: 4px;
1941 height: 20px;
1942 padding-right: 10px;
1943 white-space: nowrap;
1944}
1945div.DirectLoginListPopup div.DirectLoginListPopup_body ul li div {
1946 padding-right: 10px;
1947 overflow: hidden;
1948}
1949div.DirectLoginListPopup div.DirectLoginListPopup_body ul li img.favicon {
1950 padding-left: 9px;
1951 padding-right: 5px;
1952}
1953div.DirectLoginListPopup div.DirectLoginListPopup_body ul li a {
1954 text-decoration: none;
1955 color: white;
1956 font-weight: normal;
1957 font-size: 10pt;
1958 vertical-align: 3px;
1959 white-space: nowrap;
1960 padding-right: 8px;
1961}
1962div.DirectLoginListPopup div.DirectLoginListPopup_body ul li:hover {
1963 /* background-color: #a5a696;*/
1964
1965 /* background-color: #7b7d70;*/
1966
1967 background-color: rgba(123, 125, 112, 0.5);
1968}
1969div.DirectLoginListPopup div.DirectLoginListPopup_body ul li:hover a {
1970 background: url(./images/old/directLink_no_background.png) right;
1971}
1972/* @end */
1973/* @end */
1974div.mainPanels div.gridComponent div.header {
1975 /*
1976 height: 90px;
1977 background: url(./images/old/main/blocks/cardGridBackground.png) no-repeat;
1978*/
1979
1980 background: url(./images/old/main/blocks/cardGridBackground.png) no-repeat;
1981 padding-left: 40px;
1982 padding-right: 40px;
1983 padding-top: 20px;
1984 padding-bottom: 10px;
1985}
1986div.mainPanels div.gridComponent div.header form.search {
1987 height: 32px;
1988 margin: 0px;
1989}
1990div.mainPanels div.gridComponent div.header form.search div.clearSearchButton {
1991 position: absolute;
1992 margin-left: 192px;
1993 width: 22px;
1994 height: 22px;
1995 margin-top: 6px;
1996 background: url(./images/old/filter/clearFilter_notSelected.png) no-repeat;
1997}
1998div.mainPanels div.gridComponent div.header form.search div.clearSearchButton:hover {
1999 background: url(./images/old/filter/clearFilter_selected.png) no-repeat;
2000 cursor: pointer;
2001}
2002div.mainPanels div.gridComponent div.header form.search div.search {
2003 display: block;
2004 float: left;
2005 width: 217px;
2006}
2007div.mainPanels div.gridComponent div.header form.search input.search {
2008 border: 1px solid #76786a;
2009 color: #666666;
2010 font-size: 12pt;
2011 width: 100%;
2012 padding: 4px;
2013 padding-left: 24px;
2014 padding-right: 26px;
2015 background: #e8ecde url(./images/old/main/grid/search.png) no-repeat 2px 4px;
2016}
2017div.mainPanels div.gridComponent div.header form.search input.search.disabled {
2018 disabled: disabled;
2019}
2020div.mainPanels div.gridComponent div.header form.search input.search.running {
2021 background: #e8ecde url(./images/old/main/grid/running_search.gif) no-repeat 4px 5px;
2022}
2023div.mainPanels div.gridComponent div.body {
2024 clear: both;
2025 background: url(./images/old/main/blocks/cardGridBackground.png) repeat-y -836px;
2026}
2027div.mainPanels div.gridComponent div.footer {
2028 background: url(./images/old/main/blocks/cardGridBackground.png) 834px -28px;
2029 height: 35px;
2030}
2031div.mainPanels div.gridComponent div.body h1 {
2032 margin: 0px;
2033}
2034div.mainPanels div.gridComponent div.body div.rows {
2035 margin-left: 9px;
2036 margin-right: 6px;
2037 min-height: 582px;
2038 background: url(./images/old/main/blocks/cardGridStripes.png) 0 7px;
2039}
2040div.mainPanels div.gridComponent.noRows div.body table.rows thead,
2041div.mainPanels div.gridComponent.empty div.body table.rows thead {
2042 visibility: hidden;
2043}
2044div.mainPanels div.gridComponent.empty div.body div.rows {
2045 background: #eaebe6 url(./images/old/lock/background_star.png) no-repeat center center;
2046}
2047div.mainPanels div.gridComponent.noRows div.body div.rows {
2048 background: #eaebe6;
2049}
2050div.mainPanels div.gridComponent div.body table.rows {
2051 display: block;
2052 width: 100%;
2053}
2054div.mainPanels div.gridComponent div.body table.rows tbody tr.odd.selected {
2055 background-color: #a5a696;
2056}
2057div.mainPanels div.gridComponent div.body table.rows tbody tr.even.selected {
2058 background-color: #a5a696;
2059}
2060div.mainPanels div.gridComponent div.body table.rows tbody tr.selected td a {
2061 color: #f3f4eb;
2062}
2063div.mainPanels div.gridComponent div.body table.rows tbody tr.odd {
2064 background-color: #d4d5cf;
2065}
2066div.mainPanels div.gridComponent div.body table.rows tbody tr.even {
2067 background-color: #eaebe6;
2068}
2069div.mainPanels div.gridComponent div.body table.rows tbody tr.odd:hover {
2070 background-color: #a5a696;
2071}
2072div.mainPanels div.gridComponent div.body table.rows tbody tr.even:hover {
2073 background-color: #a5a696;
2074}
2075div.mainPanels div.gridComponent div.body table.rows tbody tr td {
2076 height: 23px;
2077 max-height: 23px;
2078 /*
2079 white-space: nowrap;
2080 overflow: hidden;
2081*/
2082
2083}
2084div.mainPanels div.gridComponent div.body table.rows tbody tr td span {
2085 color: #828479;
2086 font-size: 10pt;
2087}
2088div.mainPanels div.gridComponent div.body table.rows tbody tr td a {
2089 color: #828479;
2090 font-size: 10pt;
2091 text-decoration: none;
2092}
2093div.mainPanels div.gridComponent div.body table.rows tbody tr:hover td span {
2094 color: #f3f4eb;
2095}
2096div.mainPanels div.gridComponent div.body table.rows tbody tr.selected td span {
2097 color: #f3f4eb;
2098}
2099div.mainPanels div.gridComponent div.body table.rows tbody tr:hover td a {
2100 color: #f3f4eb;
2101}
2102div.mainPanels div.gridComponent div.body table.rows tbody tr td.title a {
2103 font-weight: bold;
2104}
2105div.mainPanels div.gridComponent div.body table.rows tbody tr td img.favicon {
2106 float: right;
2107 padding-right: 6px;
2108}
2109/* @group header */
2110div.gridComponent table.rows thead img {
2111 padding-left: 10px;
2112 vertical-align: middle;
2113}
2114div.gridComponent table.rows thead tr th {
2115 background-color: #eaebe6;
2116 border-bottom: 1px solid #b3b4af;
2117}
2118div.gridComponent table.rows thead span {
2119 color: #8c8f7e;
2120}
2121div.gridComponent table.rows thead tr th.unsorted span.sortable a {
2122 background-image: url(./images/old/main/grid/unsorted.png);
2123}
2124div.gridComponent table.rows thead tr th.descending span.sortable a {
2125 background-image: url(./images/old/main/grid/descending.png);
2126}
2127div.gridComponent table.rows thead tr th.ascending span.sortable a {
2128 background-image: url(./images/old/main/grid/ascending.png);
2129}
2130div.gridComponent table.rows thead tr th.faviconTH {
2131 width: 53px;
2132}
2133div.gridComponent table.rows thead tr th.titleTH {
2134 width: 200px;
2135 max-width: 200px;
2136}
2137div.gridComponent table.rows thead tr th.deleteTH {
2138 width: 50px;
2139}
2140/* @end */
2141/* @end */
2142/* @group Direct login Grid */
2143/*
2144div.mainPanels div.directLoginGrid div.header {
2145/*
2146 height: 90px;
2147 background: url(./images/old/main/blocks/cardGridBackground.png) no-repeat;
2148* /
2149}
2150
2151div.mainPanels div.directLoginGrid div.header form.search {
2152 background: url(./images/old/main/blocks/directLoginGridBackground.png) no-repeat;
2153 padding-left: 40px;
2154 padding-top: 20px;
2155 padding-bottom: 10px;
2156 margin: 0px;
2157}
2158
2159div.mainPanels div.directLoginGrid div.header form.search input.search {
2160 border: 1px solid #76786a;
2161 color: #666666;
2162 font-size: 12pt;
2163 padding: 4px;
2164 background-color: #e8ecde;
2165}
2166
2167div.mainPanels div.directLoginGrid div.header form.search input.searchButton {
2168 background-color: #858877;
2169 border: 0px;
2170 color: white;
2171 font-size: 10pt;
2172}
2173
2174div.mainPanels div.directLoginGrid div.body {
2175 background: url(./images/old/main/blocks/directLoginGridBackground.png) repeat-y -836px;
2176}
2177
2178div.mainPanels div.directLoginGrid div.footer {
2179 background: url(./images/old/main/blocks/directLoginGridBackground.png) 834px -28px;
2180 height: 35px;
2181}
2182
2183div.mainPanels div.directLoginGrid div.body h1 {
2184 margin: 0px;
2185}
2186
2187div.mainPanels div.directLoginGrid div.body div.rows {
2188 margin-left: 9px;
2189 margin-right: 6px;
2190 min-height: 582px;
2191 background: url(./images/old/main/blocks/directLoginGridStripes.png) 0 7px;
2192}
2193
2194div.mainPanels div.directLoginGrid div.body table.rows {
2195 display: block;
2196 width: 100%;
2197}
2198
2199div.mainPanels div.directLoginGrid div.body table.rows img {
2200 border: 0px;
2201}
2202
2203div.mainPanels div.directLoginGrid div.body table.rows tbody tr.even {
2204 background-color: #787666;
2205}
2206
2207div.mainPanels div.directLoginGrid div.body table.rows tbody tr.odd {
2208 background-color: #646351;
2209}
2210
2211div.mainPanels div.directLoginGrid div.body table.rows tbody tr.odd:hover {
2212 background-color: #d1d4c6;
2213}
2214
2215div.mainPanels div.directLoginGrid div.body table.rows tbody tr.even:hover {
2216 background-color: #d1d4c6;
2217}
2218
2219div.mainPanels div.directLoginGrid div.body table.rows tbody tr td {
2220 height: 23px;
2221 color: #e1e0d6;
2222 font-size: 10pt;
2223}
2224
2225div.mainPanels div.directLoginGrid div.body table.rows tbody tr:hover td {
2226 color: #777867;
2227}
2228
2229div.mainPanels div.directLoginGrid div.body table.rows tbody tr td.title {
2230 font-weight: bold;
2231}
2232
2233div.directLoginGrid div.body table.rows tbody tr a {
2234 color: #e1e0d6;
2235 text-decoration: none;
2236}
2237
2238div.directLoginGrid div.body table.rows tbody tr:hover a {
2239 color: #777867;
2240}
2241*/
2242/* @group DirectLogin links */
2243/*
2244td.card_directLogins div {
2245 display: inline-table;
2246}
2247
2248td.card_directLogins span {
2249 display: inline-table;
2250}
2251*/
2252div.directLogin_directLogin {
2253 display: inline-block;
2254 height: 19px;
2255 padding-left: 7px;
2256}
2257div.directLogin_directLogin div.directLogin_directLogin_body {
2258 display: inline-block;
2259 height: 19px;
2260 padding-right: 8px;
2261 background-position: left;
2262}
2263div.directLogin_directLogin div.directLogin_directLogin_body a {
2264 vertical-align: -14px;
2265}
2266div.directLogin_directLogin:hover {
2267 background: url(./images/old/directLink_background_left.png) no-repeat 0 0;
2268}
2269div.directLogin_directLogin:hover div.directLogin_directLogin_body {
2270 background: url(./images/old/directLink_background.png) right 0;
2271}
2272table.rows tbody tr td div.directLogin_directLogin:hover div.directLogin_directLogin_body a {
2273 color: #f3f4eb;
2274}
2275/* @end */
2276/* @group header */
2277div.directLoginGrid table.rows thead span {
2278 color: #e1e0d6;
2279}
2280div.directLoginGrid table.rows thead tr th {
2281 background-color: #787762;
2282 border-bottom: 1px solid #999883;
2283}
2284div.directLoginGrid table.rows thead tr th.faviconTH {
2285 min-width: 53px;
2286 width: 53px;
2287}
2288div.directLoginGrid table.rows thead tr th.titleTH {
2289 min-width: 250px;
2290 width: 250px;
2291}
2292div.directLoginGrid table.rows thead tr th.titleTH span {
2293 margin-left: 7px;
2294}
2295div.directLoginGrid table.rows thead tr th.strengthTH {
2296 width: 100px;
2297}
2298div.directLoginGrid table.rows thead tr th.cardTitleTH {
2299 width: 400px;
2300}
2301div.directLoginGrid table.rows thead tr th.bookmarkableLinkTH {
2302 width: 64px;
2303}
2304div.directLoginGrid table.rows thead tr th.deleteTH {
2305 width: 50px;
2306}
2307div.directLoginGrid table.rows thead tr th.latestAccessTH {
2308 width: 100px;
2309}
2310div.directLoginGrid table.rows thead tr th.commandsTH {
2311 width: 100px;
2312}
2313/*
2314div.directLoginGrid table.rows thead a {
2315 font-weight: normal;
2316 text-decoration: none;
2317 color: #e9e9df;
2318 font-size: 9pt;
2319 line-height: 20px;
2320}
2321*/
2322div.directLoginGrid table.rows thead img {
2323 padding-left: 10px;
2324 vertical-align: middle;
2325}
2326div.directLoginGrid table.rows thead tr th.unsorted span.sortable a {
2327 background: url(./images/old/main/grid/directLogins/unsorted.png) no-repeat;
2328}
2329div.directLoginGrid table.rows thead tr th.descending span.sortable a {
2330 background: url(./images/old/main/grid/directLogins/descending.png) no-repeat;
2331}
2332div.directLoginGrid table.rows thead tr th.ascending span.sortable a {
2333 background: url(./images/old/main/grid/directLogins/ascending.png) no-repeat;
2334}
2335/* @end */
2336/* @end */
2337/* @end */
2338/* @end */
2339/* @group other Panels */
2340/* @group common styles */
2341/*
2342div.subPanelTabs ul {
2343 margin: 0px;
2344 margin-right: 7px;
2345 padding: 0px;
2346}
2347div.subPanelTabs ul li {
2348 display: inline-block;
2349 vertical-align: middle;
2350 /*width: 130px; * /
2351
2352 height: 50px;
2353 /*border-right: 1px solid #a5a79c;
2354 border-bottom: 1px solid #a5a79c;* /
2355
2356 border-right: 1px solid #eef0e3;
2357 border-bottom: 1px solid #d5d5bc;
2358}
2359div.subPanelTabs ul li.first:hover {
2360 /*background: url(./images/old/main/blocks/otherPanelBackground_selected.png) no-repeat -9px -5px; * /
2361
2362}
2363div.subPanelTabs ul li:hover {
2364 /*background: url(./images/old/main/blocks/otherPanelBackground_selected.png) no-repeat -45px -5px; * /
2365
2366 border-right: 1px solid #d5d5bc;
2367 background-color: #eef0e3;
2368}
2369div.subPanelTabs ul li a {
2370 color: #787872;
2371 text-decoration: none;
2372 display: block;
2373 text-align: center;
2374 padding-top: 15px;
2375 padding-left: 20px;
2376 padding-right: 20px;
2377 font-size: 13pt;
2378}
2379div.subPanelTabs ul li.first {
2380 /*background: url(./images/old/main/blocks/otherPanelBackground_selected.png) no-repeat -9px -5px; * /
2381
2382 -webkit-border-top-left-radius: 20px;
2383 -moz-border-radius-topleft: 20px;
2384 border-top-left-radius: 20px;
2385}
2386div.subPanelTabs ul li.selected {
2387 /*background: url(./images/old/main/blocks/otherPanelBackground_selected.png) no-repeat -45px -5px; * /
2388
2389 background-color: #eef0e3;
2390 border-bottom: 1px solid #eef0e3;
2391 border-right: 1px solid #d5d5bc;
2392}
2393div.subPanelTabs ul li.selected:hover {
2394 border-right: 1px solid #d5d5bc;
2395}
2396div.subPanelTabs ul li.selected a {
2397 color: #444440;
2398}
2399div.subPanelContent {
2400 padding-top: 20px;
2401 padding-left: 30px;
2402 padding-right: 30px;
2403 min-height: 280px;
2404 color: #787872;
2405 margin: 0px 6px 0 9px;
2406}
2407div.subPanelContent ul {
2408 margin: 0px;
2409 padding: 0px;
2410 list-style-type: none;
2411}
2412div.subPanelContent ul li.selected {
2413 display: block;
2414}
2415div.subPanelContent ul li {
2416 display: none;
2417}
2418div.subPanelContent h3 {
2419 margin: 0px;
2420 border: 0px;
2421 padding: 0px;
2422}
2423*/
2424/* @end */
2425/* @group mainPanels otherPanel */
2426div.mainPanels div.otherPanel {
2427 margin: 5px 10px;
2428 background-color: #eef0e3;
2429 -webkit-border-radius: 20px;
2430 -moz-border-radius: 20px;
2431 border-radius: 20px;
2432 -webkit-box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.6);
2433 -moz-box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.6);
2434 box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.6);
2435}
2436div.mainPanels div.otherPanel div.header {
2437 /*background: url(./images/old/main/blocks/otherPanelBackground.png) no-repeat; */
2438
2439 /*
2440 height: 90px;
2441*/
2442
2443 background-color: #d5d5bc;
2444 /*padding-left: 9px;
2445 padding-top: 5px; */
2446
2447 margin: 0px;
2448 margin-bottom: 0px;
2449 -webkit-border-top-left-radius: 20px;
2450 -webkit-border-top-right-radius: 20px;
2451 -moz-border-radius-topleft: 20px;
2452 -moz-border-radius-topright: 20px;
2453 border-top-left-radius: 20px;
2454 border-top-right-radius: 20px;
2455}
2456div.mainPanels div.otherPanel div.body {
2457 /*background: url(./images/old/main/blocks/otherPanelBackground.png) repeat-y -836px; */
2458
2459 margin: 0px;
2460 border: 0px;
2461 padding: 0px;
2462}
2463div.mainPanels div.otherPanel div.footer {
2464 /*background: url(./images/old/main/blocks/otherPanelBackground.png) 834px -18px; */
2465
2466 height: 45px;
2467}
2468div.mainPanels div.otherPanel div.body h1 {
2469 margin: 0px;
2470}
2471/* @end */
2472/* @group Account */
2473form.changePassphrase div.currentCredentials,
2474form.changePassphrase div.newPassphrase {
2475 float: left;
2476 padding: 10px 20px;
2477}
2478form.changePassphrase label {
2479 display: inline-block;
2480 width: 150px;
2481}
2482form.changePassphrase div.confirm {
2483 clear: both;
2484 padding: 10px 20px;
2485}
2486form.changePassphrase div.confirm label {
2487 width: 500px;
2488}
2489div.accountPanel h3.manageOTP {
2490 margin-top: 20px;
2491 margin-left: -20px;
2492 padding-top: 10px;
2493 padding-left: 20px;
2494 border-top: 1px solid #aaaaaa;
2495}
2496/* @end */
2497/* @end */
2498/* @group Message Panel (?) */
2499/*
2500div.messagePanelWrapper div.mask {
2501 position: fixed;
2502 top: 0px;
2503 left: 0px;
2504 right: 0px;
2505 bottom: 0px;
2506
2507 background-color: black;
2508 z-index:50001;
2509
2510 -moz-opacity: 0.0;
2511 opacity:.0;
2512 filter: alpha(opacity=0);
2513/ *
2514 -moz-opacity: 0.7;
2515 opacity:.70;
2516 filter: alpha(opacity=70);
2517* /
2518}
2519
2520div.messagePanelFrame {
2521 border: 1px solid white;
2522 z-index:50002;
2523/ *
2524 width: 443px;
2525 height: 155px;
2526 position: fixed;
2527 top: 205px;
2528 left: 260px;
2529 margin-left: auto;
2530 margin-right: auto;
2531 max-width: 468px;
2532* /
2533}
2534
2535
2536div.messagePanel {
2537 position: fixed;
2538 z-index:50003;
2539 top: 0px;
2540 left: 0px;
2541/ *
2542 margin-left: auto;
2543 margin-right: auto;
2544 max-width: 468px;
2545 top: 200px;
2546 left: 250px;
2547 left: 100px;
2548 right: 100px;
2549* /
2550}
2551
2552 div.messagePanel div.header {
2553 height: 34px;
2554 width: 468;
2555 background-image: url(./images/old/alert/header.png);
2556}
2557
2558 div.messagePanel div.body {
2559 background-image: url(./images/old/alert/body.png);
2560 padding: 0px 20px 10px 20px;
2561 min-height: 100px;
2562}
2563/ *
2564div#javaScriptAlert div.body div.alert {
2565 padding-left: 100px;
2566 background: url(./images/old/alert/alert.png) no-repeat;
2567}
2568* /
2569
2570div.messagePanel div.body img.alert {
2571 float: left;
2572}
2573
2574div.messagePanel div.body div.alert {
2575 padding-left: 100px;
2576}
2577
2578 div.messagePanel div.footer {
2579 height: 34px;
2580 width: 468;
2581 background-image: url(./images/old/alert/footer.png);
2582}
2583
2584div.messagePanel div.message h1 {
2585 font-size: 16pt;
2586 margin: 0px;
2587 color: #ff5930;
2588}
2589
2590div.messagePanel div.message p {
2591 margin-top: 0px;
2592 color: #999999;
2593}
2594
2595div.messagePanel div.message h3 {
2596 font-size: 12pt;
2597 margin-bottom: 0px;
2598 color: #ff5930;
2599}
2600
2601div.messagePanel div.message h5 {
2602 margin: 0px;
2603 color: #999999;
2604}
2605
2606
2607*/
2608/* @end */
2609/* @group LoginProgress (?) */
2610/*
2611div#loginProgress {
2612 position: relative;
2613 left: -198px;
2614 top: -118px;
2615 width: 397px;
2616 height: 236px;
2617 background: url(./images/old/loginProgress/background.png);
2618}
2619
2620div#loginProgress div.header {
2621 height: 52px;
2622}
2623
2624div#loginProgress div.header h3 {
2625 font-size: 12pt;
2626 font-weight: normal;
2627 margin: 0px;
2628 color: #787872;
2629 padding-top: 25px;
2630 padding-left: 35px;
2631}
2632
2633div#loginProgress div.body {
2634 height: 120px;
2635 overflow: auto;
2636 margin-left: 19px;
2637 margin-right: 18px;
2638}
2639
2640div#loginProgress div.footer {
2641 margin-left: 19px;
2642 margin-right: 18px;
2643}
2644
2645div#loginProgress div.footer a {
2646 font-weight: bold;
2647 text-decoration: none;
2648 text-align: center;
2649 color: #787872;
2650 display: block;
2651 font-size: 11pt;
2652 width: 100px;
2653 margin-top: 13px;
2654 margin-left: auto;
2655 margin-right: auto;
2656}
2657
2658div#loginProgress div.footer a:hover {
2659 color: #515247;
2660}
2661
2662*/
2663/* @end */
2664div#modalDialogMask,
2665div.modalDialogMask {
2666 z-index: 20000;
2667 /* position: absolute;*/
2668
2669 position: fixed;
2670 top: 0;
2671 left: 0;
2672 -moz-opacity: 0.5;
2673 opacity: .50;
2674 filter: alpha(opacity=50);
2675 /* background-color: #cccccc;*/
2676
2677 background-color: #000000;
2678 width: 100%;
2679 height: 100%;
2680 zoom: 1;
2681}
2682div#modalDialogFrame,
2683div.modalDialogFrame {
2684 position: absolute;
2685 /* border: 1px solid white;*/
2686
2687 -moz-opacity: 0.5;
2688 opacity: .50;
2689 filter: alpha(opacity=50);
2690 background-color: #333333;
2691 z-index: 20001;
2692 -webkit-border-radius: 20px;
2693 -moz-border-radius: 20px;
2694 border-radius: 20px;
2695}
2696div#modalDialog,
2697div.modalDialog {
2698 z-index: 20001;
2699}
2700/*div#modalDialog.scrollable,*/
2701div.modalDialog.scrollable {
2702 position: absolute;
2703 top: 0;
2704 left: 50%;
2705}
2706/*div#modalDialog.fixed,*/
2707div.modalDialog.fixed {
2708 position: fixed;
2709 top: 40%;
2710 left: 50%;
2711}
2712div#modalDialog div,
2713div.modalDialog div {
2714 z-index: 20002;
2715 list-style-type: circle;
2716}
2717div.modalDialogMask.simpleMessagePanelMask {
2718 z-index: 20010;
2719}
2720div.modalDialogFrame.simpleMessagePanelMask {
2721 z-index: 20011;
2722}
2723div.modalDialog.simpleMessagePanelMask {
2724 z-index: 20011;
2725}
2726div.modalDialog.simpleMessagePanelMask div {
2727 z-index: 20012;
2728}
2729/* @group Bookmarklet */
2730div.bookmarklet div.bookmarklet_link {
2731 /*
2732 padding-top: 5px;
2733 padding-left: 4px;
2734 padding-right: 3px;
2735
2736 float: right;
2737 margin-top: 12px;
2738 margin-right: 13px;
2739*/
2740
2741 height: 34px;
2742}
2743div.bookmarklet div.bookmarklet_link a {
2744 color: #838975;
2745 text-decoration: none;
2746 font-weight: bold;
2747 font-size: 10pt;
2748 /*
2749 display: block;
2750 text-align: right;
2751 padding-top: 7px;
2752 padding-right: 11px;
2753 padding-bottom: 6px;
2754*/
2755
2756}
2757div.bookmarklet div.bookmarklet_link a div.icon {
2758 background: url(./images/old/bookmarklet/placeholder_icon.png) no-repeat 0 0;
2759 float: left;
2760 width: 34px;
2761 height: 34px;
2762}
2763div.bookmarklet div.bookmarklet_link a:hover div.icon {
2764 background: url(./images/old/bookmarklet/placeholder_selected_icon.png) no-repeat 0 0;
2765}
2766div.bookmarklet div.bookmarklet_link a div.text {
2767 display: block;
2768 float: right;
2769 background: url(./images/old/bookmarklet/placeholder.png) no-repeat right 0;
2770 white-space: nowrap;
2771 height: 34px;
2772}
2773div.bookmarklet div.bookmarklet_link a:hover div.text {
2774 background: url(./images/old/bookmarklet/placeholder_selected.png) no-repeat right 0;
2775}
2776div.bookmarklet div.bookmarklet_link a div.text span {
2777 display: block;
2778 padding-top: 10px;
2779 padding-right: 10px;
2780 padding-left: 6px;
2781 clear: both;
2782}
2783/* @end */
2784/* @group Tooltip */
2785/*
2786div#Clipperz_PM_UI_Common_Components_Tooltip_wrapperNode {
2787 position: absolute;
2788 top: 0px;
2789 left: 0px;
2790}
2791*/
2792/* @end */
2793/* @group News */
2794/*
2795div#news {
2796 top: 11px;
2797 left: 240px;
2798 width: 353px;
2799 height: 85px;
2800 padding-top: 4px;
2801 position: absolute;
2802 overflow: hidden;
2803 background: url(./images/old/note.png) 1px 3px;
2804}
2805
2806div#news.hidden {
2807 display: none;
2808}
2809
2810div#news div.close {
2811 display: inline;
2812 margin-top: 6px;
2813 margin-left: 17px;
2814 float: left;
2815 width: 15px;
2816}
2817
2818div#news div.close a {
2819 text-decoration: none;
2820 color: #929c1b;
2821}
2822
2823div#news div.close a:hover {
2824 text-decoration: none;
2825 color: #3d420b;
2826}
2827
2828div#news div#newsframe {
2829 display: block;
2830 overflow: hidden;
2831 width: 305px;
2832 height: 70px;
2833}
2834
2835div#news div#newsframe iframe {
2836 border: 0px;
2837}
2838*/
2839/* --------------------------------------- */
2840div#news {
2841 top: -82px;
2842 left: 240px;
2843 width: 310px;
2844 height: 90px;
2845 position: absolute;
2846 /*background: url(./images/old/tips/Tips_background.png) 0 -5px; */
2847
2848 background-color: #616474;
2849 -webkit-border-bottom-right-radius: 8px;
2850 -webkit-border-bottom-left-radius: 8px;
2851 -moz-border-radius-bottomright: 8px;
2852 -moz-border-radius-bottomleft: 8px;
2853 border-bottom-right-radius: 8px;
2854 border-bottom-left-radius: 8px;
2855 -webkit-box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.6);
2856 -moz-box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.6);
2857 box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.6);
2858}
2859/*
2860div#news.open {
2861 background: url(./images/old/tips/Tips_open.png) 0 -5px;
2862}
2863
2864div#news.hidden {
2865 background: url(./images/old/tips/Tips_close.png) 0 -5px;
2866}
2867*/
2868/*
2869div#news div#newsframe {
2870 margin-left: 10px;
2871 margin-right: 10px;
2872 height: 75px;
2873 overflow: hidden;
2874}
2875div#news div#newsframe.loading {
2876 background: url(./images/old/loading/news.gif) no-repeat center center;
2877}
2878div#news div#newsframe iframe {
2879 width: 290px;
2880 border: 0px;
2881 color: #616474;
2882 background-color: #616474;
2883}
2884div#news div.grip {
2885 width: 310px;
2886 height: 12px;
2887 margin-top: 2px;
2888 cursor: pointer;
2889}
2890div#news.open div.grip {
2891 background: url(./images/old/tips/close.png) no-repeat center 6px;
2892}
2893div#news.hidden div.grip {
2894 background: url(./images/old/tips/open.png) no-repeat center 6px;
2895}
2896*/
2897/* @end */
2898/* @group mainDialog */
2899div.mainDialog {
2900 position: relative;
2901 left: -263px;
2902 width: 525px;
2903 height: 325px;
2904}
2905div.scrollable div.mainDialog {
2906 top: 0px;
2907}
2908div.fixed div.mainDialog {
2909 top: -118px;
2910}
2911div.mainDialog div.header {
2912 height: 55px;
2913 background: url(./images/old/cardDialog/background_header.png) no-repeat;
2914}
2915div.mainDialog div.header div.title {
2916 padding-top: 16px;
2917 padding-left: 20px;
2918 padding-right: 20px;
2919}
2920div.mainDialog div.header div.title input {
2921 width: 100%;
2922 display: block;
2923 font-size: 16pt;
2924 margin: 0px;
2925 border: 0px;
2926 padding: 3px 10px;
2927 color: #787872;
2928 border: 1px solid #cccec0;
2929 background-color: #cccec0;
2930}
2931div.mainDialog div.header div.title h3 {
2932 display: block;
2933 font-size: 16pt;
2934 color: #787872;
2935 margin: 0px;
2936 border: 0px;
2937 padding: 3px 10px;
2938}
2939div.mainDialog div.header div.title.selectedField input,
2940div.mainDialog div.header div.title:hover input {
2941 border: 1px solid #515247;
2942 background-color: #b5b7ab;
2943}
2944div.mainDialog div.header div.title.disabled:hover input {
2945 border: 1px solid #cccec0;
2946 background-color: #cccec0;
2947}
2948div.mainDialog div.body {
2949 padding-top: 0px;
2950 padding-left: 10px;
2951 padding-right: 9px;
2952 min-height: 200px;
2953 background: url(./images/old/cardDialog/background_body.png) repeat-y;
2954}
2955div.mainDialog div.body div.mask {
2956 display: none;
2957}
2958div.mainDialog.loading div.body div.mask {
2959 display: block;
2960 position: absolute;
2961 top: 55px;
2962 left: 10px;
2963 right: 9px;
2964 bottom: 70px;
2965 z-index: 1001;
2966 background-color: white;
2967 padding-left: 146px;
2968 padding-right: 146px;
2969 padding-top: 70px;
2970}
2971div.mainDialog.loading div.body .tabPanels {
2972 display: none;
2973}
2974div.mainDialog.loading div.body div.mask h3.progressDescription {
2975 margin: 0px;
2976 text-align: center;
2977 padding-bottom: 10px;
2978 color: #cccec0;
2979 font-size: 14pt;
2980 font-weight: normal;
2981}
2982div.loadingBar {
2983 height: 22px;
2984 width: 214px;
2985 background: url(./images/old/loading/loadingBar.gif) no-repeat center top;
2986}
2987div.loadingBar div.loadingBarProgressBox {
2988 padding: 2px;
2989}
2990div.loadingBar div.loadingBarProgress {
2991 height: 18px;
2992 width: 0%;
2993 /* background-repeat: no-repeat;*/
2994
2995 background-color: rgba(248, 79, 0, 0.6);
2996 -webkit-border-radius: 9px;
2997 -moz-border-radius: 9px;
2998 border-radius: 9px;
2999}
3000/*
3001div.loadingBar div.loadingBarProgress div.loadingBarProgress_left {
3002 height: 100%;
3003 max-width: 8px;
3004 background: url(./images/old/loading/loadingBarProgress.png) no-repeat 0;
3005}
3006
3007div.loadingBar div.loadingBarProgress div.loadingBarProgress_right {
3008 position: relative;
3009 height: 100%;
3010 margin-left: 8px;
3011 background: url(./images/old/loading/loadingBarProgress.png) no-repeat right;
3012 top: -22px;
3013}
3014*/
3015div.mainDialog div.body div ul {
3016 padding: 0px;
3017 clear: both;
3018 margin: 0px;
3019 list-style-type: none;
3020}
3021div.mainDialog div.body div.tabs {
3022 height: 20px;
3023}
3024div.mainDialog div.body div.tabs ul.tabs {
3025 height: 33px;
3026 /*border-bottom: 1px solid #515247;*/
3027
3028 /*background: #cccec0 url(./images/old/cardDialog/tabs_shadow.png) repeat-x 0 -5px;*/
3029
3030 background: url(./images/old/cardDialog/tabs_background.png) repeat-x;
3031}
3032div.mainDialog div.body div.tabs ul.tabs li {
3033 /* width: 150px;*/
3034
3035 height: 32px;
3036 font-size: 11pt;
3037 text-align: center;
3038 border-right: 1px solid #515247;
3039 float: left;
3040 color: #787872;
3041 border-bottom: 1px solid #515247;
3042 background: #cccec0 url(./images/old/cardDialog/tabs_shadow.png) repeat-x 0 -5px;
3043 cursor: pointer;
3044}
3045div.mainDialog div.body div.tabs ul.tabs li div {
3046 display: none;
3047}
3048div.mainDialog div.body div.tabs ul.tabs li span {
3049 display: block;
3050 padding-top: 9px;
3051 padding-bottom: 6px;
3052 padding-left: 40px;
3053 padding-right: 40px;
3054}
3055div.mainDialog div.body div.tabs ul.tabs li:hover {
3056 color: #515247;
3057}
3058div.mainDialog div.body div.tabs ul.tabs li.disabled:hover {
3059 color: #787872;
3060 cursor: default;
3061}
3062div.mainDialog div.body div.tabs ul.tabs li.selected {
3063 color: #515247;
3064 background-color: #f1f2e9;
3065 border-bottom: 1px solid #f1f2e9;
3066 cursor: default;
3067}
3068div.mainDialog div.body div.tabs ul.tabs li.selected.disabled:hover {
3069 color: #515247;
3070}
3071div.mainDialog div.body div.tabs ul.tabs li.selected div.backToDirectLoginList {
3072 position: absolute;
3073 display: block;
3074 top: 63px;
3075 left: 140;
3076 width: 20px;
3077}
3078div.mainDialog div.body div.tabs ul.tabs li.selected div.addDirectLoginButton {
3079 position: absolute;
3080 display: block;
3081 top: 63px;
3082 left: 265px;
3083 width: 20px;
3084}
3085div.mainDialog div.body div.tabs ul.tabs li.selected div span {
3086 padding: 0px;
3087 margin: 0px;
3088}
3089div.mainDialog div.body div.tabs ul.tabs li.selected div:hover {
3090 cursor: pointer;
3091}
3092div.mainDialog div.body .tabPanels {
3093 clear: both;
3094}
3095div.mainDialog div.body ul.tabPanels li.tabPanel {
3096 display: none;
3097}
3098div.mainDialog div.body ul.tabPanels li.tabPanel.selected {
3099 display: block;
3100}
3101div.mainDialog div.body ul.tabPanels li.tabPanel.selected h2 {
3102 margin: 0px;
3103 text-align: center;
3104 padding-top: 50px;
3105 color: #787872;
3106}
3107div.mainDialog div.body ul.tabPanels li.tabPanel.selected div.wizardStepDescription {
3108 margin: 0px 20px 10px;
3109 font-size: 10pt;
3110 color: b0b0b0;
3111 font-style: italic;
3112 text-align: center;
3113}
3114div.mainDialog div.footer {
3115 height: 70px;
3116 background: url(./images/old/cardDialog/background_footer.png) no-repeat 0 -14px;
3117}
3118div.mainDialog div.footer div.buttonArea {
3119 padding-left: 40px;
3120 padding-right: 40px;
3121 padding-top: 15px;
3122}
3123div.mainDialog div.footer div.buttonArea div {
3124 padding-left: 20px;
3125 padding-right: 20px;
3126 float: left;
3127 font-weight: bold;
3128 color: #787872;
3129}
3130div.mainDialog div.footer div.buttonArea div.disabled {
3131 color: #b1b1a8;
3132}
3133div.mainDialog div.footer div.buttonArea div.disabled:hover {
3134 color: #b1b1a8;
3135 cursor: default;
3136}
3137div.mainDialog div.footer div.buttonArea div:hover {
3138 color: #515247;
3139 cursor: pointer;
3140}
3141div.mainDialog div.footer div.buttonArea div.save {
3142 float: right;
3143}
3144/* @end */
3145/* @group Card Dialog */
3146div.addDirectLoginButton {
3147 height: 20px;
3148 width: 20px;
3149 background: url(./images/old/cardDialog/addDirectLogin_disabled_background.png) no-repeat -9px -9px;
3150 color: white;
3151 font-weight: bold;
3152}
3153div.addDirectLoginButton span {
3154 display: block;
3155 height: 20px;
3156 width: 20px;
3157}
3158div.addDirectLoginButton:hover {
3159 background: url(./images/old/cardDialog/addDirectLogin_background.png) no-repeat -9px -9px;
3160}
3161/* @group Card Dialog - Direct Login */
3162div.directLoginsComponentContainer {
3163 overflow: hidden;
3164 /* background-color: green;*/
3165
3166}
3167div.CardDialog div.directLogins {
3168 /* background-color: yellow;*/
3169
3170 padding-top: 2px;
3171}
3172div.CardDialog div.addNewDirectLoginSplash {
3173 margin: 0px 80px;
3174}
3175div.CardDialog div.addNewDirectLoginSplash h3 {
3176 color: #aaaaaa;
3177 text-align: center;
3178 font-weight: normal;
3179 font-size: 11pt;
3180}
3181div.CardDialog div.addNewDirectLoginSplash a {
3182 display: block;
3183 text-decoration: none;
3184 margin-left: auto;
3185 margin-right: auto;
3186 width: 190px;
3187 /* color: #787878;*/
3188
3189 color: rgba(255, 98, 6, 0.75);
3190 text-transform: uppercase;
3191 background: url(./images/old/cardDialog/addDirectLogin_disabled_background.png) no-repeat right;
3192}
3193div.CardDialog div.addNewDirectLoginSplash a span {
3194 text-align: center;
3195}
3196div.CardDialog div.addNewDirectLoginSplash a:hover {
3197 color: #ff6206;
3198 background: url(./images/old/cardDialog/addDirectLogin_background.png) no-repeat right;
3199}
3200div.CardDialog div.directLoginItem {
3201 clear: both;
3202 min-height: 32px;
3203 padding-left: 10px;
3204 padding-top: 4px;
3205 padding-bottom: 2px;
3206 /* width: 100px;*/
3207
3208 max-height: 32px;
3209 overflow: hidden;
3210}
3211div.CardDialog div.directLoginItem:hover {
3212 background-color: #cccec0;
3213}
3214div.CardDialog div.addDirectLoginListItem {
3215 min-height: 32px;
3216 padding-left: 10px;
3217 padding-top: 4px;
3218 padding-bottom: 2px;
3219 max-height: 32px;
3220 overflow: hidden;
3221 background: url(./images/old/cardDialog/addDirectLogin_disabled_background.png) no-repeat 22px 0;
3222}
3223div.CardDialog div.addDirectLoginListItem a {
3224 display: block;
3225 font-size: 11pt;
3226 padding-top: 6px;
3227 padding-left: 50px;
3228 color: rgba(255, 98, 6, 0.75);
3229 text-decoration: none;
3230 text-transform: uppercase;
3231}
3232div.CardDialog div.addDirectLoginListItem:hover {
3233 background: url(./images/old/cardDialog/addDirectLogin_background.png) no-repeat 22px 0;
3234 color: #ff6206;
3235 background-color: #cccec0;
3236}
3237div.CardDialog div.directLoginItem div.cardDialogRecordDirectLoginComponent_favicon img.favicon {
3238 width: 32px;
3239 height: 32px;
3240 float: left;
3241}
3242div.CardDialog div.directLoginItem div.cardDialogRecordDirectLoginComponent_label input {
3243 float: left;
3244 font-size: 11pt;
3245 border: 0px;
3246 padding: 5px;
3247 color: #787872;
3248 border: 1px solid #ededeb;
3249 background-color: #ededeb;
3250 height: 30px;
3251 margin-left: 10px;
3252 width: 68%;
3253 margin-right: 5px;
3254}
3255div.CardDialog div.directLoginItem:hover div.cardDialogRecordDirectLoginComponent_label input {
3256 border: 1px solid #515247;
3257 background-color: #b5b7ab;
3258}
3259div.CardDialog div.directLoginItem > div.open {
3260 float: left;
3261 margin-top: 5px;
3262 margin-right: 2px;
3263 padding-left: 5px;
3264 visibility: hidden;
3265}
3266div.CardDialog div.directLoginItem > div.edit,
3267div.CardDialog div.directLoginItem > div.delete {
3268 float: left;
3269 margin-top: 5px;
3270 margin-left: 3px;
3271 padding-left: 5px;
3272 visibility: hidden;
3273}
3274div.CardDialog div.directLoginItem > div.open a {
3275 display: block;
3276 width: 22px;
3277 height: 22px;
3278 background: url(./images/old/cardDialog/openDirectLogin.png) no-repeat 0 -2px;
3279}
3280div.CardDialog div.directLoginItem > div.open a:hover {
3281 background: url(./images/old/cardDialog/openDirectLogin_selected.png) no-repeat 0 -2px;
3282}
3283div.CardDialog div.directLoginItem:hover > div.open,
3284div.CardDialog div.directLoginItem:hover > div.edit,
3285div.CardDialog div.directLoginItem:hover > div.delete {
3286 visibility: visible;
3287}
3288div.CardDialog div.directLoginItem div.edit span {
3289 padding-right: 6px;
3290 display: block;
3291}
3292div.CardDialog div.directLoginItem div.open span a,
3293div.CardDialog div.directLoginItem div.edit span a,
3294div.CardDialog div.directLoginItem div.delete span a {
3295 font-size: 8pt;
3296 color: #666666;
3297 text-decoration: none;
3298 line-height: 19px;
3299}
3300div.CardDialog div.directLoginItem div.edit:hover {
3301 background: url(./images/old/new_background_left.png) no-repeat;
3302}
3303div.CardDialog div.directLoginItem div:hover span a {
3304 color: white;
3305}
3306div.CardDialog div.directLoginItem div.edit:hover span {
3307 background: url(./images/old/new_background.png) no-repeat right center;
3308}
3309div.CardDialog div.directLoginItem div.delete:hover {
3310 background: url(./images/old/delete_background_left.png) no-repeat;
3311}
3312div.CardDialog div.directLoginItem div.delete:hover span {
3313 background: url(./images/old/delete_background.png) right;
3314}
3315/* @group Direct Login Editing */
3316div.CardDialog div.directLoginEditDetail {
3317 position: relative;
3318 /* background-color: red;*/
3319
3320}
3321/*
3322div.CardDialog div.directLoginEditDetail div.back {
3323 float: left;
3324 width: 30px;
3325}
3326
3327div.CardDialog div.directLoginEditDetail div.back a {
3328 display: block;
3329 padding: 5px;
3330 text-decoration: none;
3331 font-weight: bold;
3332 font-size: 14pt;
3333 color: #cccec0;
3334
3335 background: url(./images/old/cardDialog/back.png) no-repeat 5px 14px;
3336 width: 20px;
3337 height: 200px;
3338}
3339
3340div.CardDialog div.directLoginEditDetail div.back a:hover {
3341 color: #7f7872;
3342 background: url(./images/old/cardDialog/back_selected.png) no-repeat 5px 14px;
3343}
3344*/
3345form.directLoginEditingForm div.title,
3346form.directLoginEditingForm div.favicon {
3347 padding: 5px 10px;
3348}
3349form.directLoginEditingForm div.title.disabled:hover {
3350 background-color: #f1f2e9;
3351}
3352form.directLoginEditingForm div.title:hover,
3353form.directLoginEditingForm div.favicon:hover {
3354 background-color: #cccec0;
3355}
3356form.directLoginEditingForm div.title input {
3357 /* width: 100%; */
3358
3359 margin: 0px;
3360 margin-left: 10px;
3361 width: 440px;
3362}
3363form.directLoginEditingForm div.favicon {
3364 padding-left: 10px;
3365}
3366/*form.directLoginEditingForm div.favicon img.favicon {*/
3367form.directLoginEditingForm img.favicon {
3368 float: left;
3369 width: 32px;
3370 height: 32px;
3371}
3372form.directLoginEditingForm div.favicon input {
3373 margin-top: 1px;
3374 width: 465px;
3375}
3376form.directLoginEditingForm div.disabled:hover input,
3377form.directLoginEditingForm div input {
3378 font-size: 11pt;
3379 border: 0px;
3380 padding: 5px;
3381 color: #787872;
3382 border: 1px solid #ededeb;
3383 background-color: #ededeb;
3384 height: 30px;
3385}
3386form.directLoginEditingForm div:hover input {
3387 border: 1px solid #515247;
3388 background-color: #b5b7ab;
3389}
3390/* @group Bindings */
3391div.bindings div.binding > span.formFieldName {
3392 display: inline-block;
3393 width: 140px;
3394 overflow: hidden;
3395 margin-right: 10px;
3396 color: #6b5147;
3397 text-overflow: ellipsis;
3398}
3399div.bindings div.binding {
3400 padding-bottom: 3px;
3401}
3402div.bindings div.binding > input {
3403 margin-right: 10px;
3404 background: #cccec0;
3405 width: 150px;
3406 border: 1px solid #cccec0;
3407}
3408div.bindings div.binding:hover > input {
3409 border: 1px solid #cccec0;
3410}
3411div.bindings div.binding > select {
3412 font-size: 13pt;
3413}
3414div.bindings div.binding span.fieldLock {
3415 display: inline-block;
3416 width: 20px;
3417 height: 20px;
3418 margin-right: 3px;
3419}
3420div.bindings div.binding.showLocked input {
3421 background: url(./images/old/cardDialog/password_background.png) no-repeat 2px 3px;
3422 /* color: black;*/
3423
3424 overflow: hidden;
3425 background: #cccec0 url(./images/old/cardDialog/password_background.png) no-repeat 2px 3px;
3426 color: rgba(237, 237, 235, 0.1);
3427}
3428div.bindings div.binding span.fieldLock a {
3429 display: none;
3430}
3431div.bindings div.binding.locked span.fieldLock a {
3432 display: block;
3433 width: 20px;
3434 height: 20px;
3435 text-decoration: none;
3436 background-image: url(./images/old/cardDialog/lock_open.png);
3437}
3438div.bindings div.binding.locked.showLocked span.fieldLock a {
3439 background-image: url(./images/old/cardDialog/lock_closed.png);
3440 text-decoration: none;
3441}
3442/* @end */
3443/* @group FormValues */
3444div.formValues {
3445 padding-top: 15px;
3446}
3447div.formValues div.formValue div {
3448 margin: 0px;
3449 display: inline-block;
3450}
3451div.formValues div.formValue > span.formFieldName {
3452 display: inline-table;
3453 width: 160px;
3454 overflow: hidden;
3455 margin-right: 10px;
3456 color: #6b5147;
3457}
3458/* @end */
3459/* @group FormValues */
3460/*
3461div.formValues {
3462 padding-top: 15px;
3463}
3464
3465div.formValues div.formValue > span.formFieldName {
3466 display: inline-table;
3467 width: 150px;
3468 overflow: hidden;
3469 margin-right: 35px;
3470 color: #6b5147;
3471}
3472
3473div.formValues div.formValue > select {
3474 padding-left: 20px;
3475}
3476*/
3477/* @end */
3478/* @group Panels */
3479div.directLoginEditing {
3480 padding-top: 2px;
3481}
3482div.directLoginEditing div.tabContainer {
3483 min-height: 150px;
3484 height: 200px;
3485}
3486div.directLoginEditing div.tabContainer > ul.tabs {
3487 display: none;
3488}
3489/*
3490div.directLoginEditing li.configuration,
3491div.directLoginEditing li.bindings,
3492div.directLoginEditing li.favicon {
3493 padding: 10px;
3494}
3495*/
3496div.directLoginEditing li {
3497 padding: 10px;
3498}
3499div.directLoginEditing li.configuration > .bookmarkletConfigurationWrapper > textarea {
3500 float: left;
3501 width: 320px;
3502 height: 125px;
3503 font-family: monospace;
3504 font-weight: normal;
3505 font-size: 8pt;
3506 border: 1px solid #ccc;
3507}
3508div.directLoginEditing li.configuration > .bookmarkletConfigurationWrapper .bookmarkletComponent {
3509 float: right;
3510}
3511div.directLoginEditing li.configuration > textarea.error {
3512 border: 1px solid red;
3513 background-color: rgba(255, 0, 0, 0.1);
3514}
3515/*
3516div.directLoginEditing > form.directLoginEditingForm > div.tabContainer {
3517 padding-top: 10px;
3518}
3519
3520div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabs > li {
3521 float: left;
3522 padding-left: 10px;
3523 padding-right: 10px;
3524 display: block;
3525 font-size: 10pt;
3526 color: #787872;
3527 cursor: pointer;
3528
3529 height: 22px;
3530 text-align: center;
3531 border-right: 1px solid #aaa;
3532 border-bottom: 1px solid #aaa;
3533 border-top: 1px solid #aaa;
3534
3535 background-color: #cccec0;
3536}
3537
3538div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabs > li:first-child {
3539 border-left: 1px solid #aaa;
3540}
3541
3542div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabs {
3543 height: 23px;
3544 padding-left: 10px;
3545 border-bottom: 1px solid #aaa;
3546 margin-left: 10px;
3547 margin-right: 10px;
3548}
3549
3550div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabs > li > span {
3551 line-height: 23px;
3552}
3553
3554div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabs > li.selected {
3555 color: #6a5147;
3556 cursor: default;
3557 border-bottom: 1px solid #f1f2e9;
3558 background-color: #f1f2e9;
3559}
3560
3561div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabs > li:hover {
3562 color: #6a5147;
3563}
3564
3565div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabPanels {
3566 padding-bottom: 5px;
3567 margin-left: 10px;
3568 margin-right: 10px;
3569}
3570
3571div.directLoginEditing > form.directLoginEditingForm > div.tabContainer > ul.tabPanels > li.selected {
3572 border-bottom: 1px solid #aaa;
3573 border-left: 1px solid #aaa;
3574 border-right: 1px solid #aaa;
3575}
3576
3577div.directLoginEditing li.configuration {
3578 padding: 5px;
3579}
3580
3581div.directLoginEditing li.configuration > textarea {
3582 width: 100%;
3583 height: 100px;
3584 font-family: monospace;
3585 font-weight: normal;
3586 font-size: 8pt;
3587}
3588*/
3589/* @end */
3590/* @end */
3591/* @end */
3592/* @group Card Dialog FIELDS */
3593div.CardDialog div.body {
3594 padding-bottom: 1px;
3595}
3596div.CardDialog div.body table.fields {
3597 width: 100%;
3598 padding-top: 8px;
3599 padding-bottom: 1px;
3600}
3601div.CardDialog div.body table.fields thead {
3602 background: url(./images/old/cardDialog/dottedLine_background.png) repeat-x 0 15px;
3603}
3604div.CardDialog div.body table.fields tfoot {
3605 background: url(./images/old/cardDialog/dottedLine_background.png) repeat-x 0 bottom;
3606}
3607div.CardDialog div.body table.fields thead th {
3608 text-align: left;
3609 font-weight: normal;
3610 font-size: 9pt;
3611 color: #787872;
3612 padding-left: 10px;
3613 padding-bottom: 3px;
3614 /*
3615 border-bottom: 1px dotted;
3616*/
3617
3618}
3619div.CardDialog div.body table.fields thead th.fieldStateTH {
3620 width: 10px;
3621}
3622div.CardDialog div.body table.fields tbody td.fieldLabel input {
3623 width: 130px;
3624}
3625div.CardDialog div.body table.fields thead th.fieldLockTH {
3626 width: 10px;
3627}
3628div.CardDialog div.body table.fields tbody td.fieldValue input {
3629 width: 280px;
3630}
3631div.CardDialog div.body table.fields thead th.fieldActionTH {
3632 width: 30px;
3633}
3634div.CardDialog div.body table.fields thead th.fieldDeleteTH {
3635 width: 40px;
3636}
3637div.CardDialog div.body table.fields tbody tr:hover,
3638div.CardDialog div.body table.fields tbody tr.selectedField {
3639 background-color: #cccec0;
3640}
3641div.CardDialog div.body table.fields tbody tr td {
3642 font-size: 11pt;
3643 color: #787872;
3644 height: 35px;
3645}
3646div.CardDialog div.body table.fields tbody tr td input {
3647 font-size: 11pt;
3648 border: 0px;
3649 padding: 5px;
3650 color: #787872;
3651 border: 1px solid #ededeb;
3652 background-color: #ededeb;
3653 height: 30px;
3654}
3655/*
3656div.CardDialog div.body table.fields tbody tr td.fieldValue div {
3657 margin-right: 10px;
3658}
3659
3660div.CardDialog div.body table.fields tbody tr td.fieldValue div input {
3661 width: 100%;
3662}
3663*/
3664div.CardDialog div.body table.fields tbody tr td.fieldValue div.locked input {
3665 background: #ededeb url(./images/old/cardDialog/password_background.png) no-repeat 2px 3px;
3666 color: #ededeb;
3667 color: rgba(237, 237, 235, 0.1);
3668 /* color: black;*/
3669
3670 /* line-height: 100px;*/
3671
3672 overflow: hidden;
3673}
3674div.locked input.value::-moz-selection {
3675 background: #ff0000;
3676}
3677div.locked input.value::selection {
3678 background: #ff0000;
3679}
3680div.CardDialog div.body table.fields tbody tr.new.selectedField td input,
3681div.CardDialog div.body table.fields tbody tr.new:hover td input,
3682div.CardDialog div.body table.fields tbody tr:hover td input,
3683div.CardDialog div.body table.fields tbody tr.selectedField td input {
3684 border: 1px solid #515247;
3685 background-color: #b5b7ab;
3686}
3687div.CardDialog div.body table.fields tbody tr:hover td.fieldValue div.locked input,
3688div.CardDialog div.body table.fields tbody tr.selectedField td.fieldValue div.locked input {
3689 background: #b5b7ab url(./images/old/cardDialog/password_background.png) no-repeat 2px 3px;
3690 color: #b5b7ab;
3691 color: rgba(237, 237, 235, 0.1);
3692}
3693div.CardDialog div.body table.fields tbody td.fieldLock div {
3694 width: 20px;
3695 height: 19px;
3696 cursor: pointer;
3697}
3698div.CardDialog div.body table.fields tbody tr:hover td.fieldLock div.locked {
3699 background-image: url(./images/old/cardDialog/lock_closed.png);
3700}
3701div.CardDialog div.body table.fields tbody tr:hover td.fieldLock div.unlocked {
3702 background-image: url(./images/old/cardDialog/lock_open.png);
3703}
3704div.CardDialog div.body table.fields tbody tr td.fieldAddDelete div span a {
3705 text-decoration: none;
3706 visibility: hidden;
3707 font-size: 8pt;
3708 vertical-align: -13px;
3709 color: black;
3710}
3711div.CardDialog div.body table.fields tbody tr.selectedField td.fieldAddDelete div span a {
3712 visibility: visible;
3713}
3714div.CardDialog div.body table.fields tbody tr:hover td.fieldAddDelete div span a {
3715 visibility: visible;
3716}
3717div.CardDialog div.body table.fields tbody tr:hover td.fieldAddDelete div:hover span a {
3718 color: white;
3719}
3720div.CardDialog div.body div.notes {
3721 background: url(./images/old/cardDialog/dottedLine_background.png) repeat-x 0 0;
3722 padding-top: 2px;
3723}
3724div.CardDialog div.body div.notes div {
3725 padding-left: 20px;
3726 padding-right: 20px;
3727 padding-top: 4px;
3728 padding-bottom: 4px;
3729}
3730div.CardDialog div.body div.notes div:hover,
3731div.CardDialog div.body div.notes.selectedField div {
3732 background-color: #cccec0;
3733}
3734div.CardDialog.loading div.body div.notes div textarea {
3735 display: none;
3736}
3737div.CardDialog div.body div.notes div textarea {
3738 border: 0;
3739 width: 470px;
3740 /*
3741 width: 100%;
3742 height: 100px;
3743 min-height: 400px;
3744 overflow: hidden;
3745*/
3746
3747 color: #787872;
3748 border: 1px solid #ededeb;
3749 background-color: #ededeb;
3750 display: block;
3751 line-height: 12pt;
3752 min-height: 50px;
3753}
3754div.CardDialog div.body div.notes div:hover textarea,
3755div.CardDialog div.body div.notes.selectedField div textarea {
3756 border: 1px solid #515247;
3757 background-color: #b5b7ab;
3758}
3759div.CardDialog div.body table.fields tbody tr td.fieldAction {
3760 /* background-color: red;*/
3761
3762 padding-left: 4px;
3763}
3764div.CardDialog div.body table.fields tbody tr td.fieldAction a {
3765 display: inline-block;
3766 text-decoration: none;
3767 text-align: center;
3768 width: 16px;
3769 height: 16px;
3770}
3771div.CardDialog div.body table.fields tbody tr td.fieldAction a.email {
3772 background: url(./images/old/cardDialog/fieldTypes/email.png) no-repeat 0 0;
3773}
3774div.CardDialog div.body table.fields tbody tr td.fieldAction a.email:hover {
3775 background: url(./images/old/cardDialog/fieldTypes/email_selected.png) no-repeat 0 0;
3776}
3777div.CardDialog div.body table.fields tbody tr td.fieldAction a.url {
3778 background: url(./images/old/cardDialog/fieldTypes/url.png) no-repeat 0 0;
3779}
3780div.CardDialog div.body table.fields tbody tr td.fieldAction a.url:hover {
3781 background: url(./images/old/cardDialog/fieldTypes/url_selected.png) no-repeat 0 0;
3782}
3783div.CardDialog div.body table.fields tbody tr td.fieldAction a.password {
3784 background: url(./images/old/cardDialog/fieldTypes/password.png) no-repeat 0 0;
3785}
3786div.CardDialog div.body table.fields tbody tr td.fieldAction a.password:hover {
3787 background: url(./images/old/cardDialog/fieldTypes/password_selected.png) no-repeat 0 0;
3788}
3789/*
3790/ *div.CardDialog div.body table.fields tbody* / tr.new {
3791 background: yellow;
3792}
3793
3794div.CardDialog div.body table.fields tbody tr.new td input {
3795 border: 1px solid red;
3796 background-color: green;
3797}
3798*/
3799/* @end */
3800/* @end */
3801div#disabledZone {
3802 display: block;
3803 visibility: visible;
3804}
3805div#messageZone {
3806 display: block;
3807 visibility: visible;
3808}
3809div.CardDialog div.error div.img {
3810 margin: 10px;
3811 width: 50px;
3812 height: 50px;
3813 float: left;
3814 background-image: url(./images/old/simpleMessageBox/Alert.png);
3815}
3816/* @group Ruler */
3817/*
3818div.rulerExtraWrapper {
3819 position: absolute;
3820 top: 0px;
3821 left: 0px;
3822 width: 100%;
3823 height: 100%;
3824 overflow: hidden;
3825 background-color: rgba(255, 0, 0, 0.2);
3826 z-index: 24999;
3827}
3828*/
3829div.rulerWrapper {
3830 left: -1000px;
3831 margin-top: -30px;
3832 margin-left: 50%;
3833 z-index: 25000;
3834}
3835div.rulerWrapper.fixed {
3836 position: fixed;
3837}
3838div.rulerWrapper.scrollable {
3839 position: absolute;
3840}
3841div.ruler {
3842 /* position: absolute;*/
3843
3844 width: 541px;
3845 height: 96px;
3846 margin-left: -270px;
3847 background: url(./images/old/ruler/ruler.png) no-repeat;
3848}
3849div.ruler a {
3850 position: absolute;
3851 display: block;
3852 width: 15px;
3853 height: 15px;
3854 top: 3px;
3855 text-decoration: none;
3856}
3857div.ruler a.exit {
3858 margin-left: 2px;
3859 background: url(./images/old/ruler/exit.png) no-repeat;
3860}
3861div.ruler a.exit:hover {
3862 background: url(./images/old/ruler/exit_selected.png) no-repeat;
3863}
3864div.ruler a.smallButton.previous {
3865 right: 16px;
3866 background: url(./images/old/ruler/small_previous.png) no-repeat;
3867}
3868div.ruler a.smallButton.previous:hover {
3869 cursor: pointer;
3870 background: url(./images/old/ruler/small_previous_selected.png) no-repeat;
3871}
3872div.ruler a.smallButton.previous.disabled,
3873div.ruler a.smallButton.previous.disabled:hover {
3874 cursor: default;
3875 background: url(./images/old/ruler/small_previous_disabled.png) no-repeat;
3876}
3877div.ruler a.smallButton.next {
3878 right: 3px;
3879 background: url(./images/old/ruler/small_next.png) no-repeat;
3880}
3881div.ruler a.smallButton.next:hover {
3882 cursor: pointer;
3883 background: url(./images/old/ruler/small_next_selected.png) no-repeat;
3884}
3885div.ruler a.smallButton.next.disabled,
3886div.ruler a.smallButton.next.disabled:hover {
3887 cursor: default;
3888 background: url(./images/old/ruler/small_next_disabled.png) no-repeat;
3889}
3890div.ruler div.steps,
3891div.ruler div.dots {
3892 position: absolute;
3893 background-color: rgba(255, 255, 255, 0);
3894 margin-left: 30px;
3895 margin-right: 30px;
3896}
3897div.ruler div.steps {
3898 top: 25px;
3899 height: 30px;
3900}
3901div.ruler div.dots {
3902 top: 58px;
3903 height: 25px;
3904}
3905div.ruler div ul {
3906 list-style-type: none;
3907 margin: 0px;
3908 padding: 0px;
3909}
3910div.ruler div ul li {
3911 display: inline-block;
3912 vertical-align: top;
3913}
3914div.ruler > div.steps > ul > li:first-child,
3915div.ruler > div.dots > ul > li:first-child {
3916 margin-left: 0px;
3917}
3918div.ruler div.steps_3 ul li {
3919 margin-left: 135px;
3920}
3921div.ruler div.steps_4 ul li {
3922 margin-left: 67px;
3923}
3924div.ruler div.steps_5 ul li {
3925 margin-left: 32px;
3926}
3927div.ruler div.steps_6 ul li {
3928 margin-left: 12px;
3929}
3930div.ruler div ul li span {
3931 font-weight: bold;
3932 text-align: center;
3933 width: 70px;
3934 display: block;
3935 font-size: 8pt;
3936 overflow: hidden;
3937 color: rgba(0, 0, 0, 0.3);
3938}
3939div.ruler div ul li.selected span {
3940 color: black;
3941}
3942div.ruler div.dots ul li span {
3943 /*
3944 text-align: center;
3945 width: 26px;
3946 margin-left: 22px;
3947 margin-right: 22px;
3948 height: 25px;
3949 background-color: #e57218;
3950*/
3951
3952 font-size: 40pt;
3953 line-height: 47px;
3954}
3955div.ruler div.marker {
3956 position: absolute;
3957 top: -3px;
3958 /* left: -246px;*/
3959
3960}
3961div.ruler div.marker div.markerBody {
3962 width: 77px;
3963 height: 97px;
3964 background: url(./images/old/ruler/marker.png) no-repeat;
3965}
3966div.ruler div.marker div.next {
3967 position: absolute;
3968 top: 25px;
3969 left: 76px;
3970 width: 27px;
3971 height: 65px;
3972 background: url(./images/old/ruler/next.png) no-repeat -13px;
3973 z-index: 26000;
3974}
3975div.ruler div.marker div.next:hover {
3976 cursor: pointer;
3977 background: url(./images/old/ruler/next.png) no-repeat -2px;
3978}
3979div.ruler div.marker div.disabled {
3980 display: none;
3981}
3982div.ruler div.marker div.previous {
3983 position: absolute;
3984 top: 25px;
3985 left: -24px;
3986 width: 27px;
3987 height: 65px;
3988 /* background: url(./images/old/ruler/previous.png) no-repeat 13px 1px;*/
3989
3990 background: url(./images/old/ruler/previous.png) no-repeat 18px 1px;
3991 z-index: 26000;
3992}
3993div.ruler div.marker div.previous:hover {
3994 cursor: pointer;
3995 /* background: url(./images/old/ruler/previous.png) no-repeat 2px 1px;*/
3996
3997 background: url(./images/old/ruler/previous.png) no-repeat 7px 1px;
3998}
3999/* @end */
4000div.createNewCardSplash {
4001 margin-top: -450px;
4002 margin-left: 250px;
4003 width: 354px;
4004 float: left;
4005 height: 186px;
4006 text-align: center;
4007 background: url(./images/old/main/grid/createNewCardSplash.png) no-repeat;
4008}
4009div.createNewCardSplash:hover {
4010 cursor: pointer;
4011 background: url(./images/old/main/grid/createNewCardSplash_selected.png) no-repeat;
4012}
4013div.createNewCardSplash span {
4014 display: block;
4015 padding-top: 130px;
4016 font-size: 14pt;
4017 color: #9a9586;
4018}
4019div.createNewCardSplash:hover span {
4020 color: #605c4e;
4021}
4022/*=============================================*/
4023div.NewUserCreation div.tabContainer {
4024 min-height: 150px;
4025 height: 200px;
4026}
4027div.NewUserCreation div.tabContainer > ul.tabs {
4028 display: none;
4029}
4030ul.createUserStates li.creating {
4031 background: url(./images/old/creatingUser.gif) no-repeat center center;
4032}
4033ul.createUserStates li {
4034 height: 100px;
4035}
4036ul.createUserStates li span {
4037 display: block;
4038 width: 100%;
4039 text-align: center;
4040 color: #999;
4041 font-style: italic;
4042}
4043div.NewUserCreation form.newUserCreationForm ul.tabPanels {
4044 padding-top: 10px;
4045}
4046div.NewUserCreation form.newUserCreationForm ul ul {
4047 margin-left: auto;
4048 margin-right: auto;
4049 width: 400px;
4050}
4051div.NewUserCreation form.newUserCreationForm ul.credentials li {
4052 height: 45px;
4053}
4054div.NewUserCreation form.newUserCreationForm ul.credentials span.label {
4055 text-align: right;
4056 display: inline-block;
4057 font-size: 12pt;
4058 color: #787872;
4059 width: 110px;
4060 vertical-align: baseline;
4061}
4062div.NewUserCreation form.newUserCreationForm ul.credentials input {
4063 font-size: 13pt;
4064 color: #787872;
4065 height: 35px;
4066 margin-left: 15px;
4067 padding-left: 5px;
4068}
4069div.NewUserCreation form.newUserCreationForm ul.termsOfService li {
4070 padding: 0 0 15 0;
4071}
4072div.NewUserCreation form.newUserCreationForm ul.termsOfService input {
4073 display: inline-block;
4074}
4075div.NewUserCreation form.newUserCreationForm ul.termsOfService .label {
4076 display: inline-block;
4077 text-align: left;
4078 font-size: 12pt;
4079 color: #787872;
4080 width: 350px;
4081 vertical-align: top;
4082 padding-left: 10px;
4083}
4084div.NewUserCreation form.newUserCreationForm ul.termsOfService a {
4085 font-weight: bold;
4086 color: #787872;
4087 text-decoration: none;
4088}
4089div.NewUserCreation form.newUserCreationForm ul.termsOfService a:hover {
4090 color: #444;
4091}
4092div.NewUserCreation form.newUserCreationForm ul.createUserStates li.done span {
4093 font-size: 16pt;
4094 color: green;
4095}
4096div.NewUserCreation form.newUserCreationForm ul.createUserStates li.fail span {
4097 font-size: 16pt;
4098 color: red;
4099}