~stephen-stewart/ulysses/move-box-sizing-to-base

« back to all changes in this revision

Viewing changes to public/ulysses.css

  • Committer: Tarmac
  • Author(s): Stephen Stewart
  • Date: 2014-09-25 09:26:43 UTC
  • mfrom: (43.1.14 gulpify-and-update)
  • Revision ID: tarmac-20140925092643-jzluuaboybxm4q73
[r=james-w] update to version 1.0.0

* update grids to pure 0.5
* default to border-box
* default to minified css
* switch to gulp
* remove bower dep
* svg symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
2
 
 
3
 
/* ==========================================================================
4
 
   HTML5 display definitions
5
 
   ========================================================================== */
6
 
 
7
 
/**
8
 
 * Correct `block` display not defined in IE 8/9.
9
 
 */
10
 
 
11
 
article,
12
 
aside,
13
 
details,
14
 
figcaption,
15
 
figure,
16
 
footer,
17
 
header,
18
 
hgroup,
19
 
main,
20
 
nav,
21
 
section,
22
 
summary {
23
 
    display: block;
24
 
}
25
 
 
26
 
/**
27
 
 * Correct `inline-block` display not defined in IE 8/9.
28
 
 */
29
 
 
30
 
audio,
31
 
canvas,
32
 
video {
33
 
    display: inline-block;
34
 
}
35
 
 
36
 
/**
37
 
 * Prevent modern browsers from displaying `audio` without controls.
38
 
 * Remove excess height in iOS 5 devices.
39
 
 */
40
 
 
41
 
audio:not([controls]) {
42
 
    display: none;
43
 
    height: 0;
44
 
}
45
 
 
46
 
/**
47
 
 * Address `[hidden]` styling not present in IE 8/9.
48
 
 * Hide the `template` element in IE, Safari, and Firefox < 22.
49
 
 */
50
 
 
51
 
[hidden],
52
 
template {
53
 
    display: none;
54
 
}
55
 
 
56
 
/* ==========================================================================
57
 
   Base
58
 
   ========================================================================== */
59
 
 
60
 
/**
61
 
 * 1. Set default font family to sans-serif.
62
 
 * 2. Prevent iOS text size adjust after orientation change, without disabling
63
 
 *    user zoom.
64
 
 */
65
 
 
66
 
html {
67
 
    font-family: sans-serif; /* 1 */
68
 
    -ms-text-size-adjust: 100%; /* 2 */
69
 
    -webkit-text-size-adjust: 100%; /* 2 */
70
 
}
71
 
 
72
 
/**
73
 
 * Remove default margin.
74
 
 */
75
 
 
76
 
body {
77
 
    margin: 0;
78
 
}
79
 
 
80
 
/* ==========================================================================
81
 
   Links
82
 
   ========================================================================== */
83
 
 
84
 
/**
85
 
 * Remove the gray background color from active links in IE 10.
86
 
 */
87
 
 
88
 
a {
89
 
    background: transparent;
90
 
}
91
 
 
92
 
/**
93
 
 * Address `outline` inconsistency between Chrome and other browsers.
94
 
 */
95
 
 
96
 
a:focus {
97
 
    outline: thin dotted;
98
 
}
99
 
 
100
 
/**
101
 
 * Improve readability when focused and also mouse hovered in all browsers.
102
 
 */
103
 
 
104
 
a:active,
105
 
a:hover {
106
 
    outline: 0;
107
 
}
108
 
 
109
 
/* ==========================================================================
110
 
   Typography
111
 
   ========================================================================== */
112
 
 
113
 
/**
114
 
 * Address variable `h1` font-size and margin within `section` and `article`
115
 
 * contexts in Firefox 4+, Safari 5, and Chrome.
116
 
 */
117
 
 
118
 
h1 {
119
 
    font-size: 2em;
120
 
    margin: 0.67em 0;
121
 
}
122
 
 
123
 
/**
124
 
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
125
 
 */
126
 
 
127
 
abbr[title] {
128
 
    border-bottom: 1px dotted;
129
 
}
130
 
 
131
 
/**
132
 
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
133
 
 */
134
 
 
135
 
b,
136
 
strong {
137
 
    font-weight: bold;
138
 
}
139
 
 
140
 
/**
141
 
 * Address styling not present in Safari 5 and Chrome.
142
 
 */
143
 
 
144
 
dfn {
145
 
    font-style: italic;
146
 
}
147
 
 
148
 
/**
149
 
 * Address differences between Firefox and other browsers.
150
 
 */
151
 
 
152
 
hr {
153
 
    -moz-box-sizing: content-box;
154
 
    box-sizing: content-box;
155
 
    height: 0;
156
 
}
157
 
 
158
 
/**
159
 
 * Address styling not present in IE 8/9.
160
 
 */
161
 
 
162
 
mark {
163
 
    background: #ff0;
164
 
    color: #000;
165
 
}
166
 
 
167
 
/**
168
 
 * Correct font family set oddly in Safari 5 and Chrome.
169
 
 */
170
 
 
171
 
code,
172
 
kbd,
173
 
pre,
174
 
samp {
175
 
    font-family: monospace, serif;
176
 
    font-size: 1em;
177
 
}
178
 
 
179
 
/**
180
 
 * Improve readability of pre-formatted text in all browsers.
181
 
 */
182
 
 
183
 
pre {
184
 
    white-space: pre-wrap;
185
 
}
186
 
 
187
 
/**
188
 
 * Set consistent quote types.
189
 
 */
190
 
 
191
 
q {
192
 
    quotes: "\201C" "\201D" "\2018" "\2019";
193
 
}
194
 
 
195
 
/**
196
 
 * Address inconsistent and variable font size in all browsers.
197
 
 */
198
 
 
199
 
small {
200
 
    font-size: 80%;
201
 
}
202
 
 
203
 
/**
204
 
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
205
 
 */
206
 
 
207
 
sub,
208
 
sup {
209
 
    font-size: 75%;
210
 
    line-height: 0;
211
 
    position: relative;
212
 
    vertical-align: baseline;
213
 
}
214
 
 
215
 
sup {
216
 
    top: -0.5em;
217
 
}
218
 
 
219
 
sub {
220
 
    bottom: -0.25em;
221
 
}
222
 
 
223
 
/* ==========================================================================
224
 
   Embedded content
225
 
   ========================================================================== */
226
 
 
227
 
/**
228
 
 * Remove border when inside `a` element in IE 8/9.
229
 
 */
230
 
 
231
 
img {
232
 
    border: 0;
233
 
}
234
 
 
235
 
/**
236
 
 * Correct overflow displayed oddly in IE 9.
237
 
 */
238
 
 
239
 
svg:not(:root) {
240
 
    overflow: hidden;
241
 
}
242
 
 
243
 
/* ==========================================================================
244
 
   Figures
245
 
   ========================================================================== */
246
 
 
247
 
/**
248
 
 * Address margin not present in IE 8/9 and Safari 5.
249
 
 */
250
 
 
251
 
figure {
252
 
    margin: 0;
253
 
}
254
 
 
255
 
/* ==========================================================================
256
 
   Forms
257
 
   ========================================================================== */
258
 
 
259
 
/**
260
 
 * Define consistent border, margin, and padding.
261
 
 */
262
 
 
263
 
fieldset {
264
 
    border: 1px solid #c0c0c0;
265
 
    margin: 0 2px;
266
 
    padding: 0.35em 0.625em 0.75em;
267
 
}
268
 
 
269
 
/**
270
 
 * 1. Correct `color` not being inherited in IE 8/9.
271
 
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
272
 
 */
273
 
 
274
 
legend {
275
 
    border: 0; /* 1 */
276
 
    padding: 0; /* 2 */
277
 
}
278
 
 
279
 
/**
280
 
 * 1. Correct font family not being inherited in all browsers.
281
 
 * 2. Correct font size not being inherited in all browsers.
282
 
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
283
 
 */
284
 
 
285
 
button,
286
 
input,
287
 
select,
288
 
textarea {
289
 
    font-family: inherit; /* 1 */
290
 
    font-size: 100%; /* 2 */
291
 
    margin: 0; /* 3 */
292
 
}
293
 
 
294
 
/**
295
 
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
296
 
 * the UA stylesheet.
297
 
 */
298
 
 
299
 
button,
300
 
input {
301
 
    line-height: normal;
302
 
}
303
 
 
304
 
/**
305
 
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
306
 
 * All other form control elements do not inherit `text-transform` values.
307
 
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
308
 
 * Correct `select` style inheritance in Firefox 4+ and Opera.
309
 
 */
310
 
 
311
 
button,
312
 
select {
313
 
    text-transform: none;
314
 
}
315
 
 
316
 
/**
317
 
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
318
 
 *    and `video` controls.
319
 
 * 2. Correct inability to style clickable `input` types in iOS.
320
 
 * 3. Improve usability and consistency of cursor style between image-type
321
 
 *    `input` and others.
322
 
 */
323
 
 
324
 
button,
325
 
html input[type="button"], /* 1 */
326
 
input[type="reset"],
327
 
input[type="submit"] {
328
 
    -webkit-appearance: button; /* 2 */
329
 
    cursor: pointer; /* 3 */
330
 
}
331
 
 
332
 
/**
333
 
 * Re-set default cursor for disabled elements.
334
 
 */
335
 
 
336
 
button[disabled],
337
 
html input[disabled] {
338
 
    cursor: default;
339
 
}
340
 
 
341
 
/**
342
 
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
343
 
 * 2. Remove excess padding in IE 8/9/10.
344
 
 */
345
 
 
346
 
input[type="checkbox"],
347
 
input[type="radio"] {
348
 
    box-sizing: border-box; /* 1 */
349
 
    padding: 0; /* 2 */
350
 
}
351
 
 
352
 
/**
353
 
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
354
 
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
355
 
 *    (include `-moz` to future-proof).
356
 
 */
357
 
 
358
 
input[type="search"] {
359
 
    -webkit-appearance: textfield; /* 1 */
360
 
    -moz-box-sizing: content-box;
361
 
    -webkit-box-sizing: content-box; /* 2 */
362
 
    box-sizing: content-box;
363
 
}
364
 
 
365
 
/**
366
 
 * Remove inner padding and search cancel button in Safari 5 and Chrome
367
 
 * on OS X.
368
 
 */
369
 
 
370
 
input[type="search"]::-webkit-search-cancel-button,
371
 
input[type="search"]::-webkit-search-decoration {
372
 
    -webkit-appearance: none;
373
 
}
374
 
 
375
 
/**
376
 
 * Remove inner padding and border in Firefox 4+.
377
 
 */
378
 
 
379
 
button::-moz-focus-inner,
380
 
input::-moz-focus-inner {
381
 
    border: 0;
382
 
    padding: 0;
383
 
}
384
 
 
385
 
/**
386
 
 * 1. Remove default vertical scrollbar in IE 8/9.
387
 
 * 2. Improve readability and alignment in all browsers.
388
 
 */
389
 
 
390
 
textarea {
391
 
    overflow: auto; /* 1 */
392
 
    vertical-align: top; /* 2 */
393
 
}
394
 
 
395
 
/* ==========================================================================
396
 
   Tables
397
 
   ========================================================================== */
398
 
 
399
 
/**
400
 
 * Remove most spacing between table cells.
401
 
 */
402
 
 
403
 
table {
404
 
    border-collapse: collapse;
405
 
    border-spacing: 0;
406
 
}
407
 
 
408
 
/** anything you want to add to normalize.css or base css like stuff */
409
 
.ues-button {
410
 
  background-color: #dedede;
411
 
  background-image: -o-linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
412
 
  background-image: -ms-linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
413
 
  background-image: -moz-linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
414
 
  background-image: -webkit-linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
415
 
  background-image: linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
416
 
  display: inline-block;
417
 
  font-weight: 300;
418
 
  font-size: 13px;
419
 
  line-height: 20px;
420
 
  padding: 5px 19px;
421
 
  text-align: center;
422
 
  vertical-align: baseline;
423
 
  text-transform: uppercase;
424
 
  border: 1px solid #ccc;
425
 
  -o-border-radius: 3px;
426
 
  -ms-border-radius: 3px;
427
 
  -moz-border-radius: 3px;
428
 
  -webkit-border-radius: 3px;
429
 
  border-radius: 3px;
430
 
}
431
 
 
432
 
.ues-button:hover {
433
 
  background-color: #e6e6e6;
434
 
  background-image: -o-linear-gradient(to bottom, #fff 0%, #e6e6e6 100%);
435
 
  background-image: -ms-linear-gradient(to bottom, #fff 0%, #e6e6e6 100%);
436
 
  background-image: -moz-linear-gradient(to bottom, #fff 0%, #e6e6e6 100%);
437
 
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #e6e6e6 100%);
438
 
  background-image: linear-gradient(to bottom, #fff 0%, #e6e6e6 100%);
439
 
}
440
 
 
441
 
.ues-button:focus {
442
 
  -o-box-shadow: #f7f6f5 0 0 0 1px;
443
 
  -ms-box-shadow: #f7f6f5 0 0 0 1px;
444
 
  -moz-box-shadow: #f7f6f5 0 0 0 1px;
445
 
  -webkit-box-shadow: #f7f6f5 0 0 0 1px;
446
 
  box-shadow: #f7f6f5 0 0 0 1px;
447
 
}
448
 
 
449
 
.ues-button:focus,
450
 
.ues-button:active {
451
 
  background-color: #e6e6e6;
452
 
  background-image: -o-linear-gradient(to bottom, #e6e6e6 0%, #cdcdcd 90%, #fff 100%);
453
 
  background-image: -ms-linear-gradient(to bottom, #e6e6e6 0%, #cdcdcd 90%, #fff 100%);
454
 
  background-image: -moz-linear-gradient(to bottom, #e6e6e6 0%, #cdcdcd 90%, #fff 100%);
455
 
  background-image: -webkit-linear-gradient(to bottom, #e6e6e6 0%, #cdcdcd 90%, #fff 100%);
456
 
  background-image: linear-gradient(to bottom, #e6e6e6 0%, #cdcdcd 90%, #fff 100%);
457
 
}
458
 
 
459
 
.ues-button-primary {
460
 
  background-color: #dd4814;
461
 
  background-image: -o-linear-gradient(to bottom, #f39455 0%, #ef5e1f 5%, #dd4814 100%);
462
 
  background-image: -ms-linear-gradient(to bottom, #f39455 0%, #ef5e1f 5%, #dd4814 100%);
463
 
  background-image: -moz-linear-gradient(to bottom, #f39455 0%, #ef5e1f 5%, #dd4814 100%);
464
 
  background-image: -webkit-linear-gradient(to bottom, #f39455 0%, #ef5e1f 5%, #dd4814 100%);
465
 
  background-image: linear-gradient(to bottom, #f39455 0%, #ef5e1f 5%, #dd4814 100%);
466
 
  color: #fff;
467
 
  border-color: #ad2e03;
468
 
}
469
 
 
470
 
.ues-button-primary:hover {
471
 
  background-color: #f28a45;
472
 
  background-image: -o-linear-gradient(to bottom, #f39455 0%, #f28a45 5%, #dd4814 100%);
473
 
  background-image: -ms-linear-gradient(to bottom, #f39455 0%, #f28a45 5%, #dd4814 100%);
474
 
  background-image: -moz-linear-gradient(to bottom, #f39455 0%, #f28a45 5%, #dd4814 100%);
475
 
  background-image: -webkit-linear-gradient(to bottom, #f39455 0%, #f28a45 5%, #dd4814 100%);
476
 
  background-image: linear-gradient(to bottom, #f39455 0%, #f28a45 5%, #dd4814 100%);
477
 
}
478
 
 
479
 
.ues-button-primary:focus,
480
 
.ues-button-primary:active {
481
 
  background-color: #dd4814;
482
 
  background-image: -o-linear-gradient(to bottom, #dd4814 0%, #bf3b0d 5%, #f39455 100%);
483
 
  background-image: -ms-linear-gradient(to bottom, #dd4814 0%, #bf3b0d 5%, #f39455 100%);
484
 
  background-image: -moz-linear-gradient(to bottom, #dd4814 0%, #bf3b0d 5%, #f39455 100%);
485
 
  background-image: -webkit-linear-gradient(to bottom, #dd4814 0%, #bf3b0d 5%, #f39455 100%);
486
 
  background-image: linear-gradient(to bottom, #dd4814 0%, #bf3b0d 5%, #f39455 100%);
487
 
  border-color: #333;
488
 
}
489
 
 
490
 
.ues-button-tertiary {
491
 
  background-color: white;
492
 
  background-image: none;
493
 
  border: 1px solid #c8c8c8;
494
 
}
495
 
 
496
 
.ues-button-tertiary:hover {
497
 
  background-color: #e6e6e6;
498
 
  background-image: none;
499
 
  border-color: #cdcdcd;
500
 
}
501
 
 
502
 
.ues-button-tertiary:focus,
503
 
.ues-button-tertiary:active {
504
 
  background-color: #e6e6e6;
505
 
  background-image: none;
506
 
  border-color: #dd4814;
507
 
}
508
 
 
509
 
.ues-button-search {
510
 
  background-color: transparent;
511
 
  background-image: none;
512
 
  border: none;
513
 
  border-left: 1px solid #eee;
514
 
}
515
 
 
516
 
.ues-button-search:hover {
517
 
  background-color: #f0f0f0;
518
 
  border-color: #dedede;
519
 
}
520
 
 
521
 
.ues-button-search:focus,
522
 
.ues-button-search:active {
523
 
  border-color: #c8c8c8;
524
 
  background-color: #dedede;
525
 
}
526
 
 
527
 
a.ues-button {
528
 
  color: inherit;
529
 
}
530
 
 
531
 
.ues-button-small {
532
 
  font-size: 11px;
533
 
  padding: 0 5px;
534
 
  font-weight: 400;
535
 
  -o-border-radius: 3px;
536
 
  -ms-border-radius: 3px;
537
 
  -moz-border-radius: 3px;
538
 
  -webkit-border-radius: 3px;
539
 
  border-radius: 3px;
540
 
}
541
 
 
542
 
.ues-button-large {
543
 
  font-size: 16px;
544
 
  padding: 14px 38px;
545
 
  -o-border-radius: 7px;
546
 
  -ms-border-radius: 7px;
547
 
  -moz-border-radius: 7px;
548
 
  -webkit-border-radius: 7px;
549
 
  border-radius: 7px;
550
 
}
551
 
 
552
 
.ues-button-block {
553
 
  margin: 0.5em 0;
554
 
  display: block;
555
 
  width: 100%;
556
 
}
557
 
 
558
 
/** a non text button needs less padding */
559
 
 
560
 
.ues-button-icon {
561
 
  padding-left: 7px;
562
 
  padding-right: 7px;
563
 
}
564
 
 
565
 
.ues-button-group {
566
 
  position: relative;
567
 
  display: inline-block;
568
 
  vertical-align: middle;
569
 
}
570
 
 
571
 
.ues-button-group:before,
572
 
.ues-button-group:after {
573
 
  content: ' ';
574
 
  display: table;
575
 
}
576
 
 
577
 
.ues-button-group:after {
578
 
  clear: both;
579
 
}
580
 
 
581
 
.ues-button-group .ues-button,
582
 
.ues-button-group input[type="search"] {
583
 
  float: left;
584
 
}
585
 
 
586
 
/** first child of >1 buttons **/
587
 
 
588
 
.ues-button-group > input[type="search"]:first-child:not(:last-child):not(.ues-dropdown-toggle),
589
 
.ues-button-group > .ues-button:first-child:not(:last-child):not(.ues-dropdown-toggle) {
590
 
  border-top-right-radius: 0px;
591
 
  border-bottom-right-radius: 0px;
592
 
  border-right: none;
593
 
}
594
 
 
595
 
/** last child of >1 buttons **/
596
 
 
597
 
.ues-button-group > input[type="search"]:last-child:not(:first-child),
598
 
.ues-button-group > .ues-button:last-child:not(:first-child),
599
 
.ues-button-group > .ues-dropdown-toggle:not(:first-child) {
600
 
  border-top-left-radius: 0px;
601
 
  border-bottom-left-radius: 0px;
602
 
}
603
 
 
604
 
/** any button surrounded by other buttons **/
605
 
 
606
 
.ues-button-group > .ues-button:not(:first-child):not(:last-child):not(.ues-dropdown-toggle) {
607
 
  border-right: none;
608
 
  -o-border-radius: 0px;
609
 
  -ms-border-radius: 0px;
610
 
  -moz-border-radius: 0px;
611
 
  -webkit-border-radius: 0px;
612
 
  border-radius: 0px;
613
 
}
614
 
.ues-dropdown {
615
 
  position: relative;
616
 
}
617
 
 
618
 
.ues-dropdown-menu {
619
 
  font-size: 13px;
620
 
  position: absolute;
621
 
  display: none;
622
 
  top: 100%;
623
 
  left: 0px;
624
 
  z-index: 10000000;
625
 
  float: left;
626
 
  min-width: 160px;
627
 
  padding: 5px 0;
628
 
  list-style: none;
629
 
  background-clip: padding-box;
630
 
  background-color: #fff;
631
 
  color: #333;
632
 
  margin: 0;
633
 
  border: 1px solid #ddd;
634
 
  border-top: none;
635
 
  -o-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
636
 
  -ms-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
637
 
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
638
 
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
639
 
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
640
 
}
641
 
 
642
 
.open .ues-dropdown-menu {
643
 
  display: block;
644
 
}
645
 
 
646
 
.ues-dropdown-menu > li > a {
647
 
  display: block;
648
 
  white-space: nowrap;
649
 
  clear: both;
650
 
  padding: 0 15px;
651
 
}
652
 
 
653
 
.ues-dropdown-menu > li > a:hover {
654
 
  background-color: #eee;
655
 
}
656
 
 
657
 
.ues-dropdown-divider {
658
 
  height: 1px;
659
 
  margin: 5px 0;
660
 
  overflow: hidden;
661
 
  background-color: #ddd;
662
 
}
663
 
 
664
 
.ues-dropdown-header {
665
 
  display: block;
666
 
  padding: 2px 20px;
667
 
  color: #999;
668
 
}
669
 
form {
670
 
  margin: 15px 0;
671
 
}
672
 
 
673
 
fieldset {
674
 
  margin: 0 0 15px 0;
675
 
  padding: 0;
676
 
  border: 0;
677
 
}
678
 
 
679
 
legend {
680
 
  display: block;
681
 
  width: 100%;
682
 
  font-size: 23px;
683
 
  line-height: inherit;
684
 
  border: 0;
685
 
  margin: 0 0 15px 0;
686
 
}
687
 
 
688
 
label {
689
 
  display: block;
690
 
  margin: 10px 0 5px;
691
 
}
692
 
 
693
 
input[type="checkbox"],
694
 
input[type="radio"] {
695
 
  margin-right: 5px;
696
 
}
697
 
 
698
 
/** use a span or div depending on what you want for block/inline **/
699
 
 
700
 
.ues-form-help {
701
 
  font-size: 14px;
702
 
  padding: 0em 15px;
703
 
  background-color: #eee;
704
 
  color: #555;
705
 
  position: relative;
706
 
  margin: 10px 0;
707
 
  -o-border-radius: 3px;
708
 
  -ms-border-radius: 3px;
709
 
  -moz-border-radius: 3px;
710
 
  -webkit-border-radius: 3px;
711
 
  border-radius: 3px;
712
 
}
713
 
 
714
 
span.ues-form-help {
715
 
  display: inline-block;
716
 
  margin: 0;
717
 
}
718
 
 
719
 
/** TODO move to base? **/
720
 
 
721
 
.ues-inline {
722
 
  display: inline-block;
723
 
  margin-right: 10px;
724
 
}
725
 
 
726
 
input[type="text"],
727
 
input[type="password"],
728
 
input[type="email"],
729
 
input[type="url"],
730
 
input[type="date"],
731
 
input[type="month"],
732
 
input[type="time"],
733
 
input[type="datetime"],
734
 
input[type="datetime-local"],
735
 
input[type="week"],
736
 
input[type="number"],
737
 
input[type="search"],
738
 
input[type="tel"],
739
 
input[type="color"],
740
 
select,
741
 
textarea {
742
 
  width: 100%;
743
 
  padding: 8px;
744
 
  margin: 0 0 8px 0;
745
 
  display: block;
746
 
  border: 1px solid #ccc;
747
 
  line-height: 14px;
748
 
  font-weight: inherit;
749
 
  -o-border-radius: 2px;
750
 
  -ms-border-radius: 2px;
751
 
  -moz-border-radius: 2px;
752
 
  -webkit-border-radius: 2px;
753
 
  border-radius: 2px;
754
 
  -o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
755
 
  -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
756
 
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
757
 
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
758
 
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
759
 
  -o-transition: 0.3s linear border;
760
 
  -ms-transition: 0.3s linear border;
761
 
  -moz-transition: 0.3s linear border;
762
 
  -webkit-transition: 0.3s linear border;
763
 
  transition: 0.3s linear border;
764
 
}
765
 
 
766
 
input[type="text"]:focus,
767
 
input[type="password"]:focus,
768
 
input[type="email"]:focus,
769
 
input[type="url"]:focus,
770
 
input[type="date"]:focus,
771
 
input[type="month"]:focus,
772
 
input[type="time"]:focus,
773
 
input[type="datetime"]:focus,
774
 
input[type="datetime-local"]:focus,
775
 
input[type="week"]:focus,
776
 
input[type="number"]:focus,
777
 
input[type="search"]:focus,
778
 
input[type="tel"]:focus,
779
 
input[type="color"]:focus,
780
 
select:focus,
781
 
textarea:focus {
782
 
  outline: 0;
783
 
  outline: thin dotted \9;
784
 
  /* IE6-9 */
785
 
  border-color: #129FEA;
786
 
}
787
 
 
788
 
input[type="file"]:focus,
789
 
input[type="radio"]:focus,
790
 
input[type="checkbox"]:focus {
791
 
  outline: thin dotted #333;
792
 
  outline: 1px auto #129FEA;
793
 
}
794
 
 
795
 
input[type="text"][disabled],
796
 
input[type="password"][disabled],
797
 
input[type="email"][disabled],
798
 
input[type="url"][disabled],
799
 
input[type="date"][disabled],
800
 
input[type="month"][disabled],
801
 
input[type="time"][disabled],
802
 
input[type="datetime"][disabled],
803
 
input[type="datetime-local"][disabled],
804
 
input[type="week"][disabled],
805
 
input[type="number"][disabled],
806
 
input[type="search"][disabled],
807
 
input[type="tel"][disabled],
808
 
input[type="color"][disabled],
809
 
select[disabled],
810
 
textarea[disabled] {
811
 
  cursor: not-allowed;
812
 
  background-color: #eaeded;
813
 
  color: #cad2d3;
814
 
}
815
 
 
816
 
input[readonly],
817
 
select[readonly],
818
 
textarea[readonly] {
819
 
  background: #eee;
820
 
  /* menu hover bg color */
821
 
  color: #777;
822
 
  /* menu text color */
823
 
  border-color: #ccc;
824
 
}
825
 
 
826
 
input:focus:invalid,
827
 
textarea:focus:invalid,
828
 
select:focus:invalid {
829
 
  color: #b94a48;
830
 
  border: 1px solid #ee5f5b;
831
 
}
832
 
 
833
 
input:focus:invalid:focus,
834
 
textarea:focus:invalid:focus,
835
 
select:focus:invalid:focus {
836
 
  border-color: #e9322d;
837
 
}
838
 
 
839
 
input[type="file"]:focus:invalid:focus,
840
 
input[type="radio"]:focus:invalid:focus,
841
 
input[type="checkbox"]:focus:invalid:focus {
842
 
  outline-color: #e9322d;
843
 
}
844
 
 
845
 
select {
846
 
  display: inline-block;
847
 
  width: auto;
848
 
}
849
 
 
850
 
.ues-form-inline label,
851
 
.ues-form-inline input {
852
 
  width: auto;
853
 
  display: inline-block;
854
 
}
855
 
 
856
 
/** Maybe this is something better left out of the scaffold? **/
857
 
 
858
 
.ues-form-inline label {
859
 
  margin-left: 1em;
860
 
  margin-right: 1em;
861
 
}
862
 
 
863
 
.ues-site-search {
864
 
  position: relative;
865
 
}
866
 
 
867
 
.ues-site-search .ues-site-search-input {
868
 
  padding-right: 53px;
869
 
  height: 44px;
870
 
  line-height: 44px;
871
 
  margin-bottom: 0;
872
 
  padding: 0 15px;
873
 
  border: 1px solid #bbb;
874
 
  background-color: white;
875
 
  -o-box-shadow: none;
876
 
  -ms-box-shadow: none;
877
 
  -moz-box-shadow: none;
878
 
  -webkit-box-shadow: none;
879
 
  box-shadow: none;
880
 
  -o-box-sizing: border-box;
881
 
  -ms-box-sizing: border-box;
882
 
  -moz-box-sizing: border-box;
883
 
  -webkit-box-sizing: border-box;
884
 
  box-sizing: border-box;
885
 
  -o-transition: 0.2s ease border;
886
 
  -ms-transition: 0.2s ease border;
887
 
  -moz-transition: 0.2s ease border;
888
 
  -webkit-transition: 0.2s ease border;
889
 
  transition: 0.2s ease border;
890
 
  -o-appearance: none;
891
 
  -ms-appearance: none;
892
 
  -moz-appearance: none;
893
 
  -webkit-appearance: none;
894
 
  appearance: none;
895
 
}
896
 
 
897
 
.ues-site-search .ues-site-search-input:focus {
898
 
  border: 1px solid #ad2e03;
899
 
}
900
 
 
901
 
.ues-icon-search + .ues-site-search-input {
902
 
  padding-left: 40px;
903
 
  padding-right: 0;
904
 
}
905
 
 
906
 
.ues-site-search > .ues-icon-search {
907
 
  left: 15px;
908
 
  position: absolute;
909
 
  top: 15px;
910
 
}
911
 
 
912
 
.ues-site-search .ues-button-search {
913
 
  border-width: 0 0 0 1px;
914
 
  bottom: 1px;
915
 
  padding: 0 20px;
916
 
  position: absolute;
917
 
  right: 1px;
918
 
  top: 1px;
919
 
  -o-border-radius: 0 2px 2px 0;
920
 
  -ms-border-radius: 0 2px 2px 0;
921
 
  -moz-border-radius: 0 2px 2px 0;
922
 
  -webkit-border-radius: 0 2px 2px 0;
923
 
  border-radius: 0 2px 2px 0;
924
 
}
 
1
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
 
2
 
 
3
.ues-button{background-color:#dedede;background-image:-webkit-linear-gradient(top,#f7f7f7 0%,#e6e6e6 100%);background-image:linear-gradient(to bottom,#f7f7f7 0%,#e6e6e6 100%);border-radius:3px;display:inline-block;font-weight:300;font-size:13px;line-height:20px;padding:5px 19px;text-align:center;vertical-align:baseline;text-transform:uppercase;border:1px solid #ccc}.ues-button:hover{background-color:#e6e6e6;background-image:-webkit-linear-gradient(top,#fff 0%,#e6e6e6 100%);background-image:linear-gradient(to bottom,#fff 0%,#e6e6e6 100%)}.ues-button:focus{box-shadow:#f7f6f5 0 0 0 1px}.ues-button:focus,.ues-button:active{background-color:#e6e6e6;background-image:-webkit-linear-gradient(top,#e6e6e6 0%,#cdcdcd 90%,#fff 100%);background-image:linear-gradient(to bottom,#e6e6e6 0%,#cdcdcd 90%,#fff 100%)}.ues-button-primary{background-color:#dd4814;background-image:-webkit-linear-gradient(top,#f39455 0%,#ef5e1f 5%,#dd4814 100%);background-image:linear-gradient(to bottom,#f39455 0%,#ef5e1f 5%,#dd4814 100%);color:#fff;border-color:#ad2e03}.ues-button-primary:hover{background-color:#f28a45;background-image:-webkit-linear-gradient(top,#f39455 0%,#f28a45 5%,#dd4814 100%);background-image:linear-gradient(to bottom,#f39455 0%,#f28a45 5%,#dd4814 100%)}.ues-button-primary:focus,.ues-button-primary:active{background-color:#dd4814;background-image:-webkit-linear-gradient(top,#dd4814 0%,#bf3b0d 5%,#f39455 100%);background-image:linear-gradient(to bottom,#dd4814 0%,#bf3b0d 5%,#f39455 100%);border-color:#333}.ues-button-tertiary{background-color:#fff;background-image:none;border:1px solid #c8c8c8}.ues-button-tertiary:hover{background-color:#e6e6e6;background-image:none;border-color:#cdcdcd}.ues-button-tertiary:focus,.ues-button-tertiary:active{background-color:#e6e6e6;background-image:none;border-color:#dd4814}.ues-button-search{background-color:transparent;background-image:none;border:none;border-left:1px solid #eee}.ues-button-search:hover{background-color:#f0f0f0;border-color:#dedede}.ues-button-search:focus,.ues-button-search:active{border-color:#c8c8c8;background-color:#dedede}a.ues-button{color:inherit}.ues-button-small{border-radius:3px;font-size:11px;padding:0 5px;font-weight:400}.ues-button-large{font-size:16px;padding:14px 38px;border-radius:7px}.ues-button-block{margin:.5em 0;display:block;width:100%}.ues-button-icon{padding-left:7px;padding-right:7px}.ues-button-group{position:relative;display:inline-block;vertical-align:middle}.ues-button-group:before,.ues-button-group:after{content:' ';display:table}.ues-button-group:after{clear:both}.ues-button-group .ues-button,.ues-button-group input[type="search"]{float:left}.ues-button-group>input[type="search"]:first-child:not(:last-child):not(.ues-dropdown-toggle),.ues-button-group>.ues-button:first-child:not(:last-child):not(.ues-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0;border-right:none}.ues-button-group>input[type="search"]:last-child:not(:first-child),.ues-button-group>.ues-button:last-child:not(:first-child),.ues-button-group>.ues-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.ues-button-group>.ues-button:not(:first-child):not(:last-child):not(.ues-dropdown-toggle){border-radius:0;border-right:none}
 
4
.ues-dropdown{position:relative}.ues-dropdown-menu{font-size:13px;position:absolute;display:none;top:100%;left:0;z-index:10000000;float:left;min-width:160px;padding:5px 0;list-style:none;background-clip:padding-box;background-color:#fff;color:#333;box-shadow:0 1px 5px 0 rgba(0,0,0,.1);margin:0;border:1px solid #ddd;border-top:none}.open .ues-dropdown-menu{display:block}.ues-dropdown-menu>li>a{display:block;white-space:nowrap;clear:both;padding:0 15px}.ues-dropdown-menu>li>a:hover{background-color:#eee}.ues-dropdown-divider{height:1px;margin:5px 0;overflow:hidden;background-color:#ddd}.ues-dropdown-header{display:block;padding:2px 20px;color:#999}
 
5
.ues-message{padding:.5em .6em;border-radius:2px;background-color:#E6E4E2;border-color:#AEA79F;color:#555}.ues-message a:link{color:inherit;color:rgba(0,0,0,.75);text-decoration:underline}.ues-message a:hover{color:#000}.ues-message-inline{display:inline-block}.ues-message-bordered{border-width:1px;border-style:solid;box-shadow:1px 1px 3px 0 rgba(0,0,0,.25)}.ues-message-stack li{border-radius:0;border-top-width:0;border-bottom-color:#000;border-bottom-color:rgba(0,0,0,.25)}.ues-message-stack :first-child{border-radius:2px 2px 0 0;border-top-width:1px}.ues-message-stack :last-child{border-radius:0 0 2px 2px;border-bottom-width:1px}.ues-message-closeable{position:relative;cursor:pointer;-webkit-transition:.3s ease all;transition:.3s ease all;overflow:hidden;max-height:1000px}.ues-message-closeable:after{content:"✖";position:absolute;right:.6em;opacity:0}.ues-message-closeable:hover:after{opacity:1}.ues-message-closed{max-height:0;padding:0;border:none;box-shadow:none;margin:0;opacity:0}.ues-disabled{color:#999;border-color:#ccc}.ues-success{background-color:#AFE1B6;border-color:#38B44A;color:#114918}.ues-warning{background-color:#F8E2B1;border-color:#EFB73E;color:#68563F}.ues-error{background-color:#F5C2BF;border-color:#DF382C;color:#A11E1A}@-webkit-keyframes ues-error-pulsating{from{background:#FFE6E5}to{background:#FFA09B}}@keyframes ues-error-pulsating{from{background:#FFE6E5}to{background:#FFA09B}}.ues-error-pulsating{-webkit-animation:ues-error-pulsating .7s ease-in-out infinite alternate;animation:ues-error-pulsating .7s ease-in-out infinite alternate}.ues-information{background-color:#B9E9FA;border-color:#19B6EE;color:#40525C}
 
6
form{margin:15px 0}fieldset{padding:0}fieldset,legend{border:0;margin:0 0 15px}legend{display:block;width:100%;font-size:23px;line-height:inherit}label{display:block;margin:10px 0 5px}input[type="checkbox"],input[type="radio"]{margin-right:5px}.ues-form-help{font-size:14px;padding:0 15px;border-radius:3px;background-color:#eee;color:#555;position:relative;margin:10px 0}span.ues-form-help{display:inline-block;margin:0}.ues-inline{display:inline-block;margin-right:10px}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea{box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-radius:2px;width:100%;padding:8px;margin:0 0 8px;display:block;border:1px solid #ccc;line-height:14px;font-weight:inherit;-webkit-transition:.3s linear border;transition:.3s linear border}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,select:focus,textarea:focus{outline:0;outline:thin dotted \9;border-color:#129FEA}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:1px auto #129FEA}input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled],select[disabled],textarea[disabled]{cursor:not-allowed;background-color:#eaeded;color:#cad2d3}input[readonly],select[readonly],textarea[readonly]{background:#eee;color:#777;border-color:#ccc}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border:1px solid #ee5f5b}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d}input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{outline-color:#e9322d}select,.ues-form-inline label,.ues-form-inline input{display:inline-block;width:auto}.ues-form-inline label{margin-left:1em;margin-right:1em}.ues-site-search{position:relative}.ues-site-search .ues-site-search-input{box-shadow:none;height:44px;line-height:44px;margin-bottom:0;padding:0 15px;-webkit-transition:.2s ease border;transition:.2s ease border;-moz-box-sizing:border-box;box-sizing:border-box;border:1px solid #bbb;appearance:none;background-color:#fff}.ues-site-search .ues-site-search-input:focus{border:1px solid #ad2e03}.ues-icon-search+.ues-site-search-input{padding-left:40px;padding-right:0}.ues-site-search>.ues-icon-search{left:15px;position:absolute;top:15px}.ues-site-search .ues-button-search{border-radius:0 2px 2px 0;border-width:0 0 0 1px;bottom:1px;padding:0 20px;position:absolute;right:1px;top:1px}
925
7
/*!
926
 
Pure v0.3.0
927
 
Copyright 2013 Yahoo! Inc. All rights reserved.
 
8
Pure v0.5.0
 
9
Copyright 2014 Yahoo! Inc. All rights reserved.
928
10
Licensed under the BSD License.
929
11
https://github.com/yui/pure/blob/master/LICENSE.md
930
 
*/
931
 
 
932
 
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
933
 
 
934
 
.ues-g {
935
 
    letter-spacing: -0.31em;
936
 
    /* Webkit: collapse white-space between units */
937
 
    *letter-spacing: normal;
938
 
    /* reset IE < 8 */
939
 
    *word-spacing: -0.43em;
940
 
    /* IE < 8: collapse white-space between units */
941
 
    text-rendering: optimizespeed;
942
 
    /* Webkit: fixes text-rendering: optimizeLegibility */
943
 
    /*
944
 
    Sets the font stack to fonts known to work properly with the above letter
945
 
    and word spacings. See: https://github.com/yui/pure/issues/41/
946
 
 
947
 
    The following font stack makes Pure Grids work on all known environments.
948
 
 
949
 
    * FreeSans: Ships with many Linux distros, including Ubuntu
950
 
 
951
 
    * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
952
 
      Arial to get picked up by the browser, even though neither is available
953
 
      in Chrome OS.
954
 
 
955
 
    * Droid Sans: Ships with all versions of Android.
956
 
 
957
 
    * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
958
 
    */
959
 
    font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
960
 
    /*
961
 
    Use flexbox when possible to avoid `letter-spacing` side-effects.
962
 
 
963
 
    NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
964
 
    `-moz-` prefix version is omitted.
965
 
    */
966
 
    display: -webkit-flex;
967
 
    -webkit-flex-flow: row wrap;
968
 
    /* IE10 uses display: flexbox */
969
 
    display: -ms-flexbox;
970
 
    -ms-flex-flow: row wrap;
971
 
}
972
 
 
973
 
/* Opera as of 12 on Windows needs word-spacing.
974
 
   The ".opera-only" selector is used to prevent actual prefocus styling
975
 
   and is not required in markup.
976
 
*/
977
 
 
978
 
.opera-only :-o-prefocus,
979
 
.ues-g {
980
 
    word-spacing: -0.43em;
981
 
}
982
 
 
983
 
.ues-u {
984
 
    display: inline-block;
985
 
    *display: inline;
986
 
    /* IE < 8: fake inline-block */
987
 
    zoom: 1;
988
 
    letter-spacing: normal;
989
 
    word-spacing: normal;
990
 
    vertical-align: top;
991
 
    text-rendering: auto;
992
 
}
993
 
 
994
 
/*
995
 
Resets the font family back to the OS/browser's default sans-serif font,
996
 
this the same font stack that Normalize.css sets for the `body`.
997
 
*/
998
 
 
999
 
.ues-g [class *= "ues-u"] {
1000
 
    font-family: sans-serif;
1001
 
}
1002
 
 
1003
 
.ues-u-1,
1004
 
.ues-u-1-2,
1005
 
.ues-u-1-3,
1006
 
.ues-u-2-3,
1007
 
.ues-u-1-4,
1008
 
.ues-u-3-4,
1009
 
.ues-u-1-5,
1010
 
.ues-u-2-5,
1011
 
.ues-u-3-5,
1012
 
.ues-u-4-5,
1013
 
.ues-u-1-6,
1014
 
.ues-u-5-6,
1015
 
.ues-u-1-8,
1016
 
.ues-u-3-8,
1017
 
.ues-u-5-8,
1018
 
.ues-u-7-8,
1019
 
.ues-u-1-12,
1020
 
.ues-u-5-12,
1021
 
.ues-u-7-12,
1022
 
.ues-u-11-12,
1023
 
.ues-u-1-24,
1024
 
.ues-u-5-24,
1025
 
.ues-u-7-24,
1026
 
.ues-u-11-24,
1027
 
.ues-u-13-24,
1028
 
.ues-u-17-24,
1029
 
.ues-u-19-24,
1030
 
.ues-u-23-24 {
1031
 
    display: inline-block;
1032
 
    *display: inline;
1033
 
    /* IE < 8: fake inline-block */
1034
 
    zoom: 1;
1035
 
    letter-spacing: normal;
1036
 
    word-spacing: normal;
1037
 
    vertical-align: top;
1038
 
    text-rendering: auto;
1039
 
}
1040
 
 
1041
 
.ues-u-1 {
1042
 
    width: 100%;
1043
 
}
1044
 
 
1045
 
.ues-u-1-2 {
1046
 
    width: 50%;
1047
 
    *width: 49.969%;
1048
 
}
1049
 
 
1050
 
.ues-u-1-3 {
1051
 
    width: 33.3333%;
1052
 
    *width: 33.3023%;
1053
 
}
1054
 
 
1055
 
.ues-u-2-3 {
1056
 
    width: 66.6667%;
1057
 
    *width: 66.6357%;
1058
 
}
1059
 
 
1060
 
.ues-u-1-4 {
1061
 
    width: 25%;
1062
 
    *width: 24.969%;
1063
 
}
1064
 
 
1065
 
.ues-u-3-4 {
1066
 
    width: 75%;
1067
 
    *width: 74.969%;
1068
 
}
1069
 
 
1070
 
.ues-u-1-5 {
1071
 
    width: 20%;
1072
 
    *width: 19.969%;
1073
 
}
1074
 
 
1075
 
.ues-u-2-5 {
1076
 
    width: 40%;
1077
 
    *width: 39.969%;
1078
 
}
1079
 
 
1080
 
.ues-u-3-5 {
1081
 
    width: 60%;
1082
 
    *width: 59.969%;
1083
 
}
1084
 
 
1085
 
.ues-u-4-5 {
1086
 
    width: 80%;
1087
 
    *width: 79.969%;
1088
 
}
1089
 
 
1090
 
.ues-u-1-6 {
1091
 
    width: 16.6667%;
1092
 
    *width: 16.6357%;
1093
 
}
1094
 
 
1095
 
.ues-u-5-6 {
1096
 
    width: 83.3333%;
1097
 
    *width: 83.3023%;
1098
 
}
1099
 
 
1100
 
.ues-u-1-8 {
1101
 
    width: 12.5%;
1102
 
    *width: 12.469%;
1103
 
}
1104
 
 
1105
 
.ues-u-3-8 {
1106
 
    width: 37.5%;
1107
 
    *width: 37.469%;
1108
 
}
1109
 
 
1110
 
.ues-u-5-8 {
1111
 
    width: 62.5%;
1112
 
    *width: 62.469%;
1113
 
}
1114
 
 
1115
 
.ues-u-7-8 {
1116
 
    width: 87.5%;
1117
 
    *width: 87.469%;
1118
 
}
1119
 
 
1120
 
.ues-u-1-12 {
1121
 
    width: 8.3333%;
1122
 
    *width: 8.3023%;
1123
 
}
1124
 
 
1125
 
.ues-u-5-12 {
1126
 
    width: 41.6667%;
1127
 
    *width: 41.6357%;
1128
 
}
1129
 
 
1130
 
.ues-u-7-12 {
1131
 
    width: 58.3333%;
1132
 
    *width: 58.3023%;
1133
 
}
1134
 
 
1135
 
.ues-u-11-12 {
1136
 
    width: 91.6667%;
1137
 
    *width: 91.6357%;
1138
 
}
1139
 
 
1140
 
.ues-u-1-24 {
1141
 
    width: 4.1667%;
1142
 
    *width: 4.1357%;
1143
 
}
1144
 
 
1145
 
.ues-u-5-24 {
1146
 
    width: 20.8333%;
1147
 
    *width: 20.8023%;
1148
 
}
1149
 
 
1150
 
.ues-u-7-24 {
1151
 
    width: 29.1667%;
1152
 
    *width: 29.1357%;
1153
 
}
1154
 
 
1155
 
.ues-u-11-24 {
1156
 
    width: 45.8333%;
1157
 
    *width: 45.8023%;
1158
 
}
1159
 
 
1160
 
.ues-u-13-24 {
1161
 
    width: 54.1667%;
1162
 
    *width: 54.1357%;
1163
 
}
1164
 
 
1165
 
.ues-u-17-24 {
1166
 
    width: 70.8333%;
1167
 
    *width: 70.8023%;
1168
 
}
1169
 
 
1170
 
.ues-u-19-24 {
1171
 
    width: 79.1667%;
1172
 
    *width: 79.1357%;
1173
 
}
1174
 
 
1175
 
.ues-u-23-24 {
1176
 
    width: 95.8333%;
1177
 
    *width: 95.8023%;
1178
 
}
1179
 
 
1180
 
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
1181
 
 
1182
 
.ues-g-r {
1183
 
    letter-spacing: -0.31em;
1184
 
    *letter-spacing: normal;
1185
 
    *word-spacing: -0.43em;
1186
 
    /*
1187
 
    Sets the font stack to fonts known to work properly with the above letter
1188
 
    and word spacings. See: https://github.com/yui/pure/issues/41/
1189
 
 
1190
 
    The following font stack makes Pure Grids work on all known environments.
1191
 
 
1192
 
    * FreeSans: Ships with many Linux distros, including Ubuntu
1193
 
 
1194
 
    * Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
1195
 
      Arial to get picked up by the browser, even though neither is available
1196
 
      in Chrome OS.
1197
 
 
1198
 
    * Droid Sans: Ships with all versions of Android.
1199
 
 
1200
 
    * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
1201
 
    */
1202
 
    font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
1203
 
    /*
1204
 
    Use flexbox when possible to avoid `letter-spacing` side-effects.
1205
 
 
1206
 
    NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
1207
 
    `-moz-` prefix version is omitted.
1208
 
    */
1209
 
    display: -webkit-flex;
1210
 
    -webkit-flex-flow: row wrap;
1211
 
    /* IE10 uses display: flexbox */
1212
 
    display: -ms-flexbox;
1213
 
    -ms-flex-flow: row wrap;
1214
 
}
1215
 
 
1216
 
/* Opera as of 12 on Windows needs word-spacing.
1217
 
   The ".opera-only" selector is used to prevent actual prefocus styling
1218
 
   and is not required in markup.
1219
 
*/
1220
 
 
1221
 
.opera-only :-o-prefocus,
1222
 
.ues-g-r {
1223
 
    word-spacing: -0.43em;
1224
 
}
1225
 
 
1226
 
/*
1227
 
Resets the font family back to the OS/browser's default sans-serif font,
1228
 
this the same font stack that Normalize.css sets for the `body`.
1229
 
*/
1230
 
 
1231
 
.ues-g-r [class *= "ues-u"] {
1232
 
    font-family: sans-serif;
1233
 
}
1234
 
 
1235
 
.ues-g-r img {
1236
 
    max-width: 100%;
1237
 
    height: auto;
1238
 
}
1239
 
 
1240
 
@media (min-width: 980px) {
1241
 
    .ues-visible-phone {
1242
 
        display: none;
1243
 
    }
1244
 
 
1245
 
    .ues-visible-tablet {
1246
 
        display: none;
1247
 
    }
1248
 
 
1249
 
    .ues-hidden-desktop {
1250
 
        display: none;
1251
 
    }
1252
 
}
1253
 
 
1254
 
@media (max-width: 480px) {
1255
 
    .ues-g-r > .ues-u,
1256
 
    .ues-g-r > [class *= "ues-u-"] {
1257
 
        width: 100%;
1258
 
    }
1259
 
}
1260
 
 
1261
 
@media (max-width: 767px) {
1262
 
    .ues-g-r > .ues-u,
1263
 
    .ues-g-r > [class *= "ues-u-"] {
1264
 
        width: 100%;
1265
 
    }
1266
 
 
1267
 
    .ues-hidden-phone {
1268
 
        display: none;
1269
 
    }
1270
 
 
1271
 
    .ues-visible-desktop {
1272
 
        display: none;
1273
 
    }
1274
 
}
1275
 
 
1276
 
@media (min-width: 768px) and (max-width: 979px) {
1277
 
    .ues-hidden-tablet {
1278
 
        display: none;
1279
 
    }
1280
 
 
1281
 
    .ues-visible-desktop {
1282
 
        display: none;
1283
 
    }
1284
 
}
1285
 
/**
1286
 
 * Grids.css is an import of YUI Pure framework grids CSS which is prepended
1287
 
 * to this file, therefore anything to add to grids.css goes here.
1288
 
 */
1289
 
.ues-icon-menu {
1290
 
  width: 36px;
1291
 
  height: 34px;
1292
 
  background: transparent url(icons/menu.svg) 0 0 no-repeat;
1293
 
  background-size: 72px 34px;
1294
 
  display: block;
1295
 
}
1296
 
 
1297
 
.ues-icon-menu.orange {
1298
 
  background-position: -36px 0;
1299
 
}
1300
 
 
1301
 
.ues-icon-search {
1302
 
  width: 36px;
1303
 
  height: 36px;
1304
 
  background: transparent url(icons/search.svg) 0 0 no-repeat;
1305
 
  background-size: 72px 36px;
1306
 
  display: block;
1307
 
}
1308
 
 
1309
 
.ues-icon-search.orange {
1310
 
  background-position: -36px 0;
1311
 
}
1312
 
 
1313
 
.ues-icon-search.small {
1314
 
  background-size: 48px 24px;
1315
 
  width: 24px;
1316
 
  height: 24px;
1317
 
}
1318
 
 
1319
 
.ues-icon-search.orange.small {
1320
 
  background-position: -24px 0;
1321
 
}
1322
 
 
1323
 
.ues-icon-search.smaller {
1324
 
  background-size: 32px 16px;
1325
 
  width: 16px;
1326
 
  height: 16px;
1327
 
}
1328
 
 
1329
 
.ues-icon-search.orange.smaller {
1330
 
  background-position: -16px 0;
1331
 
}
1332
 
 
1333
 
.ues-icon-search-bordered {
1334
 
  width: 36px;
1335
 
  height: 34px;
1336
 
  background: transparent url(icons/search-bordered.svg) 0 0 no-repeat;
1337
 
  background-size: 72px 34px;
1338
 
  display: block;
1339
 
}
1340
 
 
1341
 
.ues-icon-search-bordered.orange {
1342
 
  background-position: -36px 0;
1343
 
}
1344
 
 
1345
 
.ues-icon-spinner {
1346
 
  width: 36px;
1347
 
  height: 34px;
1348
 
  background: transparent url(icons/spinner.svg) 0 0 no-repeat;
1349
 
  background-size: 72px 34px;
1350
 
  display: block;
1351
 
  -o-animation: ues-spin 0.75s linear infinite;
1352
 
  -ms-animation: ues-spin 0.75s linear infinite;
1353
 
  -moz-animation: ues-spin 0.75s linear infinite;
1354
 
  -webkit-animation: ues-spin 0.75s linear infinite;
1355
 
  animation: ues-spin 0.75s linear infinite;
1356
 
}
1357
 
 
1358
 
.ues-icon-spinner.smaller {
1359
 
  background-size: 32px 16px;
1360
 
  width: 16px;
1361
 
  height: 16px;
1362
 
  -o-animation: ues-spin 0.5s linear infinite;
1363
 
  -ms-animation: ues-spin 0.5s linear infinite;
1364
 
  -moz-animation: ues-spin 0.5s linear infinite;
1365
 
  -webkit-animation: ues-spin 0.5s linear infinite;
1366
 
  animation: ues-spin 0.5s linear infinite;
1367
 
}
1368
 
 
1369
 
.ues-icon-spinner.orange {
1370
 
  background-position: -36px 0;
1371
 
}
1372
 
 
1373
 
.ues-icon-spinner.smaller.orange {
1374
 
  background-position: -16px 0;
1375
 
}
1376
 
 
1377
 
@keyframes ues-spin {
1378
 
  100% {
1379
 
    -webkit-transform: rotate(360deg);
1380
 
    transform: rotate(360deg);
1381
 
  }
1382
 
}
1383
 
 
1384
 
@-o-keyframes ues-spin {
1385
 
  100% {
1386
 
    -webkit-transform: rotate(360deg);
1387
 
    transform: rotate(360deg);
1388
 
  }
1389
 
}
1390
 
 
1391
 
@-ms-keyframes ues-spin {
1392
 
  100% {
1393
 
    -webkit-transform: rotate(360deg);
1394
 
    transform: rotate(360deg);
1395
 
  }
1396
 
}
1397
 
 
1398
 
@-moz-keyframes ues-spin {
1399
 
  100% {
1400
 
    -webkit-transform: rotate(360deg);
1401
 
    transform: rotate(360deg);
1402
 
  }
1403
 
}
1404
 
 
1405
 
@-webkit-keyframes ues-spin {
1406
 
  100% {
1407
 
    -webkit-transform: rotate(360deg);
1408
 
    transform: rotate(360deg);
1409
 
  }
1410
 
}
1411
 
/**
1412
 
 * FIXME
1413
 
 * add a build option to create two version of final css with border-box
1414
 
 * on the ues- namespace (for backward compat) and:
1415
 
 * *, *::before, *::after { box-sizing: border-box }
1416
 
 */
1417
 
 
1418
 
[class*="ues-"],
1419
 
[class*="ues-"]:before,
1420
 
[class*="ues-"]:after,
1421
 
[class*="ues-"] *,
1422
 
[class*="ues-"] *:before,
1423
 
[class*="ues-"] *:after {
1424
 
  -o-box-sizing: border-box;
1425
 
  -ms-box-sizing: border-box;
1426
 
  -moz-box-sizing: border-box;
1427
 
  -webkit-box-sizing: border-box;
1428
 
  box-sizing: border-box;
1429
 
}
1430
 
 
1431
 
/** TBD
1432
 
 *
1433
 
 * agree on a rwd strategy, provide general rules for use as per .ues-page,
1434
 
 * for specific things leave it up to implementation, influenced by the
1435
 
 * general rwd strategy
1436
 
 * **/
1437
 
 
1438
 
.ues-page {
1439
 
  width: 984px;
1440
 
  margin: 0 auto;
1441
 
}
1442
 
 
1443
 
@media (min-width: 1210px) {
1444
 
  .ues-page {
1445
 
    width: 1200px;
1446
 
    margin: 0 auto;
1447
 
  }
1448
 
}
1449
 
 
1450
 
@media (max-width: 940px) {
1451
 
  .ues-page {
1452
 
    width: 100%;
1453
 
  }
1454
 
}
1455
 
 
1456
 
/** modifiers/globals **/
1457
 
 
1458
 
.pull-left {
1459
 
  float: left;
1460
 
}
1461
 
 
1462
 
.pull-right {
1463
 
  float: right;
1464
 
}
1465
 
 
1466
 
/**
1467
 
 * http://nicolasgallagher.com/micro-clearfix-hack/
1468
 
 */
1469
 
 
1470
 
.clear:before,
1471
 
.clear:after {
1472
 
  content: " ";
1473
 
  display: table;
1474
 
}
1475
 
 
1476
 
.clear:after {
1477
 
  clear: both;
1478
 
}
1479
 
 
1480
 
/**
1481
 
 * Footer
1482
 
 */
1483
 
 
1484
 
.ues-footer > .ues-footer-row {
1485
 
  font-size: 11px;
1486
 
  padding: 2em 1em;
1487
 
  background-color: #f7f6f5;
1488
 
  border-top: 1px solid #d8d8d8;
1489
 
}
1490
 
 
1491
 
.ues-footer > .ues-footer-row + .ues-footer-row {
1492
 
  font-size: 12px;
1493
 
  background-color: #efedec;
1494
 
  border-top: 1px solid #d8d8d8;
1495
 
}
1496
 
 
1497
 
@media screen and (max-width: 320px) {
1498
 
  .ues-footer > .ues-footer-row {
1499
 
    font-size: 14px;
1500
 
  }
1501
 
}
1502
 
 
1503
 
.ues-footer a {
1504
 
  color: #333;
1505
 
}
1506
 
 
1507
 
.ues-footer a:hover {
1508
 
  color: #dd4814;
1509
 
  text-decoration: underline;
1510
 
}
1511
 
 
1512
 
.ues-footer-column {
1513
 
  margin: 0 20px 0 0;
1514
 
}
1515
 
 
1516
 
.ues-footer .yui3-u-1-6:last-child .ues-footer-column {
1517
 
  margin: 0;
1518
 
}
1519
 
 
1520
 
.ues-footer-copyright p {
1521
 
  margin: 0;
1522
 
}
1523
 
 
1524
 
/**
1525
 
 * Boxes
1526
 
 */
1527
 
 
1528
 
.ues-box {
1529
 
  padding: 20px;
1530
 
  margin: 0 0 20px 0;
1531
 
  -o-border-radius: 12px;
1532
 
  -ms-border-radius: 12px;
1533
 
  -moz-border-radius: 12px;
1534
 
  -webkit-border-radius: 12px;
1535
 
  border-radius: 12px;
1536
 
}
1537
 
 
1538
 
.ues-box form {
1539
 
  margin: 0;
1540
 
}
1541
 
 
1542
 
.ues-box label:first-child {
1543
 
  margin-top: 0;
1544
 
}
1545
 
 
1546
 
.ues-box-solid {
1547
 
  background: #f7f6f5;
1548
 
}
1549
 
 
1550
 
.ues-box-bordered {
1551
 
  border: 1px solid #ccc;
1552
 
}
1553
 
 
1554
 
.ues-box-shadowed {
1555
 
  -o-box-shadow: 0px 1px 6px 0px #C2C2C2;
1556
 
  -ms-box-shadow: 0px 1px 6px 0px #C2C2C2;
1557
 
  -moz-box-shadow: 0px 1px 6px 0px #C2C2C2;
1558
 
  -webkit-box-shadow: 0px 1px 6px 0px #C2C2C2;
1559
 
  box-shadow: 0px 1px 6px 0px #C2C2C2;
1560
 
}
1561
 
 
1562
 
.ues-well {
1563
 
  -o-border-radius: 4px;
1564
 
  -ms-border-radius: 4px;
1565
 
  -moz-border-radius: 4px;
1566
 
  -webkit-border-radius: 4px;
1567
 
  border-radius: 4px;
1568
 
  -o-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
1569
 
  -ms-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
1570
 
  -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
1571
 
  -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
1572
 
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) inset;
1573
 
}
1574
 
.ues-message {
1575
 
  padding: 0.5em 0.6em;
1576
 
  background-color: #E6E4E2;
1577
 
  border-color: #AEA79F;
1578
 
  color: #555;
1579
 
  -o-border-radius: 2px;
1580
 
  -ms-border-radius: 2px;
1581
 
  -moz-border-radius: 2px;
1582
 
  -webkit-border-radius: 2px;
1583
 
  border-radius: 2px;
1584
 
}
1585
 
 
1586
 
.ues-message a:link {
1587
 
  color: inherit;
1588
 
  color: rgba(0,0,0,0.75);
1589
 
  text-decoration: underline;
1590
 
}
1591
 
 
1592
 
.ues-message a:hover {
1593
 
  color: #000;
1594
 
}
1595
 
 
1596
 
.ues-message-inline {
1597
 
  display: inline-block;
1598
 
}
1599
 
 
1600
 
.ues-message-bordered {
1601
 
  border-width: 1px;
1602
 
  border-style: solid;
1603
 
  -o-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
1604
 
  -ms-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
1605
 
  -moz-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
1606
 
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
1607
 
  box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.25);
1608
 
}
1609
 
 
1610
 
.ues-message-stack li {
1611
 
  border-top-width: 0;
1612
 
  border-bottom-color: #000;
1613
 
  border-bottom-color: rgba(0,0,0,0.25);
1614
 
  -o-border-radius: 0;
1615
 
  -ms-border-radius: 0;
1616
 
  -moz-border-radius: 0;
1617
 
  -webkit-border-radius: 0;
1618
 
  border-radius: 0;
1619
 
}
1620
 
 
1621
 
.ues-message-stack :first-child {
1622
 
  border-top-width: 1px;
1623
 
  -o-border-radius: 2px 2px 0 0;
1624
 
  -ms-border-radius: 2px 2px 0 0;
1625
 
  -moz-border-radius: 2px 2px 0 0;
1626
 
  -webkit-border-radius: 2px 2px 0 0;
1627
 
  border-radius: 2px 2px 0 0;
1628
 
}
1629
 
 
1630
 
.ues-message-stack :last-child {
1631
 
  border-bottom-width: 1px;
1632
 
  -o-border-radius: 0 0 2px 2px;
1633
 
  -ms-border-radius: 0 0 2px 2px;
1634
 
  -moz-border-radius: 0 0 2px 2px;
1635
 
  -webkit-border-radius: 0 0 2px 2px;
1636
 
  border-radius: 0 0 2px 2px;
1637
 
}
1638
 
 
1639
 
.ues-message-closeable {
1640
 
  position: relative;
1641
 
  cursor: pointer;
1642
 
  overflow: hidden;
1643
 
  max-height: 1000px;
1644
 
  -o-transition: 0.3s ease all;
1645
 
  -ms-transition: 0.3s ease all;
1646
 
  -moz-transition: 0.3s ease all;
1647
 
  -webkit-transition: 0.3s ease all;
1648
 
  transition: 0.3s ease all;
1649
 
}
1650
 
 
1651
 
.ues-message-closeable:after {
1652
 
  content: "✖";
1653
 
  position: absolute;
1654
 
  right: 0.6em;
1655
 
  opacity: 0;
1656
 
}
1657
 
 
1658
 
.ues-message-closeable:hover:after {
1659
 
  opacity: 1;
1660
 
}
1661
 
 
1662
 
.ues-message-closed {
1663
 
  max-height: 0;
1664
 
  padding: 0;
1665
 
  border: none;
1666
 
  margin: 0;
1667
 
  opacity: 0;
1668
 
  -o-box-shadow: none;
1669
 
  -ms-box-shadow: none;
1670
 
  -moz-box-shadow: none;
1671
 
  -webkit-box-shadow: none;
1672
 
  box-shadow: none;
1673
 
}
1674
 
 
1675
 
.ues-disabled {
1676
 
  color: #999;
1677
 
  border-color: #ccc;
1678
 
}
1679
 
 
1680
 
.ues-success {
1681
 
  background-color: #AFE1B6;
1682
 
  border-color: #38B44A;
1683
 
  color: #114918;
1684
 
}
1685
 
 
1686
 
.ues-warning {
1687
 
  background-color: #F8E2B1;
1688
 
  border-color: #EFB73E;
1689
 
  color: #68563F;
1690
 
}
1691
 
 
1692
 
.ues-error {
1693
 
  background-color: #F5C2BF;
1694
 
  border-color: #DF382C;
1695
 
  color: #A11E1A;
1696
 
}
1697
 
 
1698
 
@keyframes ues-error-pulsating {
1699
 
  from {
1700
 
    background: #FFE6E5;
1701
 
  }
1702
 
 
1703
 
  to {
1704
 
    background: #FFA09B;
1705
 
  }
1706
 
}
1707
 
 
1708
 
.ues-error-pulsating {
1709
 
  -o-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
1710
 
  -ms-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
1711
 
  -moz-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
1712
 
  -webkit-animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
1713
 
  animation: ues-error-pulsating 0.7s ease-in-out infinite alternate;
1714
 
}
1715
 
 
1716
 
.ues-information {
1717
 
  background-color: #B9E9FA;
1718
 
  border-color: #19B6EE;
1719
 
  color: #40525C;
1720
 
}
1721
 
 
1722
 
@-o-keyframes ues-error-pulsating {
1723
 
  from {
1724
 
    background: #FFE6E5;
1725
 
  }
1726
 
 
1727
 
  to {
1728
 
    background: #FFA09B;
1729
 
  }
1730
 
}
1731
 
 
1732
 
@-ms-keyframes ues-error-pulsating {
1733
 
  from {
1734
 
    background: #FFE6E5;
1735
 
  }
1736
 
 
1737
 
  to {
1738
 
    background: #FFA09B;
1739
 
  }
1740
 
}
1741
 
 
1742
 
@-moz-keyframes ues-error-pulsating {
1743
 
  from {
1744
 
    background: #FFE6E5;
1745
 
  }
1746
 
 
1747
 
  to {
1748
 
    background: #FFA09B;
1749
 
  }
1750
 
}
1751
 
 
1752
 
@-webkit-keyframes ues-error-pulsating {
1753
 
  from {
1754
 
    background: #FFE6E5;
1755
 
  }
1756
 
 
1757
 
  to {
1758
 
    background: #FFA09B;
1759
 
  }
1760
 
}
1761
 
/** menus **/
1762
 
 
1763
 
.ues-menu {
1764
 
  margin: 0;
1765
 
  padding: 0;
1766
 
}
1767
 
 
1768
 
.ues-menu:before,
1769
 
.ues-menu:after {
1770
 
  content: " ";
1771
 
  display: table;
1772
 
}
1773
 
 
1774
 
.ues-menu:after {
1775
 
  clear: both;
1776
 
}
1777
 
 
1778
 
.ues-menu > li {
1779
 
  display: block;
1780
 
  position: relative;
1781
 
  margin: 0;
1782
 
  padding: 0;
1783
 
  list-style-type: none;
1784
 
  border-bottom: 1px solid #ccc;
1785
 
}
1786
 
 
1787
 
.ues-menu > li > a,
1788
 
.ues-menu > li > span {
1789
 
  display: block;
1790
 
  position: relative;
1791
 
  padding: 10px 15px;
1792
 
  /* don't use em's as we need predictable spacing */
1793
 
}
1794
 
 
1795
 
.ues-menu > li > a:hover,
1796
 
.ues-menu > li > a:focus {
1797
 
  background-color: #f7f6f5;
1798
 
}
1799
 
 
1800
 
.ues-menu-horizontal.ues-menu > li {
1801
 
  border-bottom: none;
1802
 
}
1803
 
 
1804
 
.ues-menu-horizontal > li {
1805
 
  float: left;
1806
 
}
1807
 
 
1808
 
.ues-menu-selected {
1809
 
  background-color: #f7f6f5;
1810
 
}
1811
 
 
1812
 
.ues-menu-selected a:after {
1813
 
  content: '\25B8';
1814
 
  float: right;
1815
 
  color: #333;
1816
 
  font-size: 120%;
1817
 
}
1818
 
 
1819
 
.ues-pagination {
1820
 
  display: inline-block;
1821
 
  font-size: 12px;
1822
 
  font-weight: 400;
1823
 
  margin: 10px 0;
1824
 
  -o-border-radius: 8px;
1825
 
  -ms-border-radius: 8px;
1826
 
  -moz-border-radius: 8px;
1827
 
  -webkit-border-radius: 8px;
1828
 
  border-radius: 8px;
1829
 
}
1830
 
 
1831
 
.ues-pagination li {
1832
 
  padding: 0;
1833
 
  float: left;
1834
 
  list-style: none;
1835
 
}
1836
 
 
1837
 
.ues-pagination a {
1838
 
  padding: 10px;
1839
 
  position: relative;
1840
 
}
1841
 
 
1842
 
.ues-pagination .ues-active a {
1843
 
  text-decoration: underline;
1844
 
}
1845
 
 
1846
 
.ues-pagination .ues-disabled a {
1847
 
  cursor: not-allowed;
1848
 
  color: #999;
1849
 
}
1850
 
 
1851
 
.ues-pagination-break span {
1852
 
  padding: 10px 5px;
1853
 
  color: #999;
1854
 
}
1855
 
 
1856
 
.ues-breadcrumb {
1857
 
  padding: 10px 0px;
1858
 
  margin: 0 0 15px 0;
1859
 
  list-style: none;
1860
 
}
1861
 
 
1862
 
.ues-breadcrumb > li {
1863
 
  display: inline-block;
1864
 
}
1865
 
 
1866
 
.ues-breadcrumb .active {
1867
 
  color: #999;
1868
 
}
1869
 
 
1870
 
.ues-breadcrumb > li + li:before {
1871
 
  padding: 0 5px;
1872
 
  color: #ccc;
1873
 
  content: "\203A";
1874
 
}
1875
 
/**
1876
 
 * See navbar-small.css for small screen navbar css (collapsed), which has been
1877
 
 * split out to allow loading with a user defined media query rather than
1878
 
 * setting it at a value here which is then very hard to adapt.
1879
 
 **/
1880
 
 
1881
 
.ues-navbar {
1882
 
  position: relative;
1883
 
  background-color: #dd4814;
1884
 
  font-size: 13px;
1885
 
  /**
1886
 
     * 34px is height of standard button (20px + (7px x 2) )
1887
 
     * so this allows us to put in buttons and search inputs
1888
 
     */
1889
 
  line-height: 34px;
1890
 
  min-height: 54px;
1891
 
}
1892
 
 
1893
 
.ues-navbar.ues-navbar-invert {
1894
 
  background: white;
1895
 
  font-weight: 400;
1896
 
}
1897
 
 
1898
 
.ues-navbar .ues-container {
1899
 
  position: relative;
1900
 
}
1901
 
 
1902
 
.ues-navbar-secondary-nav {
1903
 
  float: right;
1904
 
}
1905
 
 
1906
 
.ues-navbar-secondary-nav > div,
1907
 
.ues-navbar-secondary-nav > .ues-navbar-menu {
1908
 
  float: left;
1909
 
}
1910
 
 
1911
 
.ues-navbar-brand,
1912
 
.ues-navbar-primary-nav {
1913
 
  float: left;
1914
 
}
1915
 
 
1916
 
.ues-navbar,
1917
 
.ues-navbar > a,
1918
 
.ues-navbar-brand,
1919
 
.ues-navbar-brand > a,
1920
 
.ues-navbar-menu > li,
1921
 
.ues-navbar-menu > li > a {
1922
 
  color: white;
1923
 
}
1924
 
 
1925
 
.ues-navbar-invert,
1926
 
.ues-navbar-invert > a,
1927
 
.ues-navbar-invert .ues-navbar-brand,
1928
 
.ues-navbar-invert .ues-navbar-brand > a,
1929
 
.ues-navbar-invert .ues-navbar-menu > li,
1930
 
.ues-navbar-invert .ues-navbar-menu > li > a {
1931
 
  color: #dd4814;
1932
 
}
1933
 
 
1934
 
/**
1935
 
 * set all navbar items top and bottom padding.
1936
 
 * pretty much all navbar content needs to be in one of
1937
 
 * these to be correctly positioned in the navbar.
1938
 
 *
1939
 
 * **/
1940
 
 
1941
 
.ues-navbar-toggle,
1942
 
.ues-navbar-text,
1943
 
.ues-navbar-brand > a,
1944
 
.ues-navbar-menu > li > a,
1945
 
.ues-navbar-menu > li > span {
1946
 
  display: block;
1947
 
  padding: 10px;
1948
 
}
1949
 
 
1950
 
.ues-navbar-menu {
1951
 
  margin: 0;
1952
 
  padding: 0;
1953
 
  list-style: none;
1954
 
}
1955
 
 
1956
 
.ues-navbar-menu > li {
1957
 
  float: left;
1958
 
}
1959
 
 
1960
 
.ues-navbar-text {
1961
 
  margin: 0;
1962
 
}
1963
 
 
1964
 
.ues-navbar .ues-button-group {
1965
 
  display: block;
1966
 
}
1967
 
 
1968
 
.ues-navbar .ues-button-toolbar > .ues-button-group {
1969
 
  display: inline-block;
1970
 
}
1971
 
 
1972
 
.ues-navbar-menu > li,
1973
 
.ues-navbar-menu > li > a {
1974
 
  position: relative;
1975
 
}
1976
 
 
1977
 
.ues-navbar-menu > li > a:hover {
1978
 
  background-color: #f75216;
1979
 
}
1980
 
 
1981
 
.ues-navbar-invert .ues-navbar-menu > li > a:hover {
1982
 
  background-color: #fcece7;
1983
 
}
1984
 
 
1985
 
.ues-navbar-header > [class^=ues-icon] {
1986
 
  display: none;
1987
 
  margin: 10px;
1988
 
  float: right;
1989
 
}
1990
 
/**
1991
 
 * See searchbar-small.css for small screen searchbar css (collapsed), which has been
1992
 
 * split out to allow loading with a user defined media query rather than
1993
 
 * setting it at a value here which is then very hard to adapt.
1994
 
 **/
1995
 
 
1996
 
.ues-searchbar {
1997
 
  background-color: #eee;
1998
 
  line-height: 44px;
1999
 
  min-height: 64px;
2000
 
  padding: 10px;
2001
 
}
2002
 
 
2003
 
.ues-searchbar-search {
2004
 
  position: relative;
2005
 
}
2006
 
 
2007
 
.ues-searchbar .ues-form-quicksearch {
2008
 
  padding-right: 53px;
2009
 
}
2010
 
 
2011
 
/* quicksearch with indicator */
2012
 
 
2013
 
.ues-icon-search + .ues-form-quicksearch {
2014
 
  padding-left: 40px;
2015
 
  padding-right: 0;
2016
 
}
2017
 
 
2018
 
.ues-searchbar-search > .ues-icon-search {
2019
 
  left: 15px;
2020
 
  position: absolute;
2021
 
  top: 15px;
2022
 
}
2023
 
 
2024
 
.ues-searchbar .ues-button-search {
2025
 
  border-width: 0 0 0 1px;
2026
 
  bottom: 1px;
2027
 
  padding: 0 20px;
2028
 
  position: absolute;
2029
 
  right: 1px;
2030
 
  top: 1px;
2031
 
  -o-border-radius: 0 2px 2px 0;
2032
 
  -ms-border-radius: 0 2px 2px 0;
2033
 
  -moz-border-radius: 0 2px 2px 0;
2034
 
  -webkit-border-radius: 0 2px 2px 0;
2035
 
  border-radius: 0 2px 2px 0;
2036
 
}
2037
 
 
2038
 
.ues-autocomplete .ues-dropdown-menu {
2039
 
  width: 100%;
2040
 
  border: 1px solid #ddd;
2041
 
  border-top: none;
2042
 
  font-size: 100%;
2043
 
  padding: 0;
2044
 
}
2045
 
 
2046
 
.ues-autocomplete .ues-dropdown-menu li {
2047
 
  padding: 0px 13px;
2048
 
}
2049
 
 
2050
 
.ues-autocomplete .ues-dropdown-menu,
2051
 
.ues-autocomplete .ues-dropdown-menu li:last-child {
2052
 
  -o-border-radius: 0 0 2px 2px;
2053
 
  -ms-border-radius: 0 0 2px 2px;
2054
 
  -moz-border-radius: 0 0 2px 2px;
2055
 
  -webkit-border-radius: 0 0 2px 2px;
2056
 
  border-radius: 0 0 2px 2px;
2057
 
}
2058
 
 
2059
 
.ues-autocomplete .ues-dropdown-menu > li:hover {
2060
 
  background-color: #eee;
2061
 
}
2062
 
.ues-table {
2063
 
  border-collapse: collapse;
2064
 
  border-spacing: 0;
2065
 
  empty-cells: show;
2066
 
  border: 1px dotted #AEA79F;
2067
 
}
2068
 
 
2069
 
.ues-table caption {
2070
 
  font-style: italic;
2071
 
  font-size: 13px;
2072
 
  line-height: 1;
2073
 
  padding: 1em 0;
2074
 
  text-align: center;
2075
 
}
2076
 
 
2077
 
.ues-table td,
2078
 
.ues-table th {
2079
 
  background-color: #F0EDEA;
2080
 
  border-left: 1px dotted #AEA79F;
2081
 
  border-width: 0 0 0 1px;
2082
 
  padding: 15px 10px;
2083
 
  overflow: visible;
2084
 
}
2085
 
 
2086
 
.ues-table-small td,
2087
 
.ues-table-small th {
2088
 
  padding: 5px 10px;
2089
 
}
2090
 
 
2091
 
.ues-table td:first-child,
2092
 
.ues-table th:first-child {
2093
 
  border-left-width: 0;
2094
 
}
2095
 
 
2096
 
.ues-table thead {
2097
 
  background-color: #FEE3D2;
2098
 
  color: #333;
2099
 
  text-align: left;
2100
 
  font-weight: normal;
2101
 
  vertical-align: bottom;
2102
 
}
2103
 
 
2104
 
.ues-table thead th {
2105
 
  border-collapse: separate;
2106
 
  border-spacing: 0 10px;
2107
 
  background-color: transparent;
2108
 
}
2109
 
 
2110
 
.ues-table tfoot th,
2111
 
.ues-table tbody th {
2112
 
  font-weight: 300;
2113
 
}
2114
 
 
2115
 
/* bordered */
2116
 
 
2117
 
.ues-table-bordered th,
2118
 
.ues-table-bordered td {
2119
 
  border-bottom: 1px dotted #AEA79F;
2120
 
}
2121
 
 
2122
 
.ues-table-bordered tbody > tr:last-child td,
2123
 
.ues-table-horizontal tbody > tr:last-child td {
2124
 
  border-bottom-width: 0;
2125
 
}
2126
 
 
2127
 
/* horizontally bordered */
2128
 
 
2129
 
.ues-table-horizontal td,
2130
 
.ues-table-horizontal th {
2131
 
  border-width: 0 0 1px 0;
2132
 
  border-bottom: 1px dotted #cbcbcb;
2133
 
}
2134
 
 
2135
 
.ues-table-horizontal tbody > tr:last-child td {
2136
 
  border-bottom-width: 0;
2137
 
}
2138
 
 
2139
 
/* striped */
2140
 
 
2141
 
.ues-table-striped tr:nth-child(2n-1) td {
2142
 
  background-color: #F7F7F7;
2143
 
}
2144
 
html,
2145
 
body {
2146
 
  font-family: "Ubuntu", Arial, "libra sans", sans-serif;
2147
 
  font-weight: 300;
2148
 
  font-style: normal;
2149
 
  font-size: 16px;
2150
 
  line-height: 25px;
2151
 
  color: #333;
2152
 
}
2153
 
 
2154
 
.ues-g [class *= "ues-u"],
2155
 
.ues-g-r [class *= "ues-u"] {
2156
 
  font-family: "Ubuntu", Arial, "libra sans", sans-serif;
2157
 
}
2158
 
 
2159
 
/** headlines **/
2160
 
 
2161
 
h1,
2162
 
h2,
2163
 
h3,
2164
 
h4,
2165
 
h5,
2166
 
h6 {
2167
 
  font-weight: 300;
2168
 
  padding: 0 0 0 0;
2169
 
  margin: 0.5em 0 1em 0;
2170
 
  line-height: 1;
2171
 
}
2172
 
 
2173
 
p + h2,
2174
 
p + h3,
2175
 
p + h4,
2176
 
p + h5,
2177
 
p + h6 {
2178
 
  margin-top: 1em;
2179
 
}
2180
 
 
2181
 
.ues-hdisplay {
2182
 
  font-size: 45px;
2183
 
}
2184
 
 
2185
 
.ues-hmain,
2186
 
h1 {
2187
 
  font-size: 32px;
2188
 
}
2189
 
 
2190
 
.ues-hmedium,
2191
 
h2 {
2192
 
  font-size: 23px;
2193
 
}
2194
 
 
2195
 
.ues-hlight,
2196
 
h3,
2197
 
h4,
2198
 
h5,
2199
 
h6 {
2200
 
  font-size: 18px;
2201
 
}
2202
 
 
2203
 
.ues-hinline {
2204
 
  display: inline;
2205
 
  font-weight: 400;
2206
 
  font-size: 1em;
2207
 
  line-height: inherit;
2208
 
  padding: 0;
2209
 
  margin-left: 0;
2210
 
  margin-right: 0;
2211
 
}
2212
 
 
2213
 
/** paragraph styles **/
2214
 
 
2215
 
p {
2216
 
  margin: 0 0 1em;
2217
 
}
2218
 
 
2219
 
p:last-child {
2220
 
  margin: 0;
2221
 
}
2222
 
 
2223
 
.ues-lead {
2224
 
  font-size: 23px;
2225
 
  line-height: 1.5;
2226
 
  margin: 0 0 0.5em;
2227
 
}
2228
 
 
2229
 
/** links **/
2230
 
 
2231
 
a {
2232
 
  color: #dd4814;
2233
 
  text-decoration: none;
2234
 
}
2235
 
 
2236
 
/** lists **/
2237
 
 
2238
 
ul,
2239
 
ol {
2240
 
  margin: 0.5em 0;
2241
 
  padding: 0;
2242
 
}
2243
 
 
2244
 
ul li {
2245
 
  list-style: none;
2246
 
}
2247
 
 
2248
 
.ues-list {
2249
 
  padding-left: 40px;
2250
 
  margin-bottom: 15px;
2251
 
}
2252
 
 
2253
 
.ues-list li {
2254
 
  list-style: disc;
2255
 
}
2256
 
 
2257
 
ol.ues-list li {
2258
 
  list-style: decimal;
2259
 
}
2260
 
 
2261
 
dl.ues-list {
2262
 
  padding: 0;
2263
 
}
2264
 
 
2265
 
dl.ues-list dd {
2266
 
  list-style: disc;
2267
 
}
2268
 
 
2269
 
.ues-list-bordered {
2270
 
  padding: 0;
2271
 
}
2272
 
 
2273
 
.ues-list-bordered li {
2274
 
  list-style: none;
2275
 
  border-bottom: 1px dotted #ccc;
2276
 
  padding: 0.3em;
2277
 
}
2278
 
 
2279
 
.ues-list-inline {
2280
 
  display: inline;
2281
 
  overflow: hidden;
2282
 
  margin-left: 0.3em;
2283
 
  padding: 0;
2284
 
}
2285
 
 
2286
 
.ues-list-inline li {
2287
 
  list-style: none;
2288
 
  display: inline-block;
2289
 
}
2290
 
 
2291
 
.ues-list-inline li:after {
2292
 
  content: ' |';
2293
 
  margin: 0 0.15em;
2294
 
}
2295
 
 
2296
 
.ues-list-inline li:last-child:after {
2297
 
  content: '';
2298
 
}
2299
 
 
2300
 
/** everything else **/
2301
 
 
2302
 
pre {
2303
 
  margin: 0.5em 0;
2304
 
}
2305
 
 
2306
 
pre,
2307
 
code {
2308
 
  font-family: "Ubuntu Mono", Monaco, Menlo, Consolas, "Courier New", monospace;
2309
 
  font-weight: 300;
2310
 
}
2311
 
 
2312
 
abbr {
2313
 
  border-bottom: 1px solid #333;
2314
 
}
2315
 
 
2316
 
/** logos **/
2317
 
 
2318
 
.ues-u1-logo {
2319
 
  display: inline-block;
2320
 
  width: 143px;
2321
 
  height: 57px;
2322
 
  background-image: url(svg/u1-logo-sprite.svg);
2323
 
  background-color: transparent;
2324
 
  background-repeat: no-repeat;
2325
 
  background-size: 288px 60px;
2326
 
  text-indent: -9000px;
2327
 
  direction: ltr;
2328
 
}
2329
 
 
2330
 
.ues-u1-logo-on-white {
2331
 
  background-position: -145px 0;
2332
 
}
 
 
b'\\ No newline at end of file'
 
12
*/.ues-g{letter-spacing:-.31em;*letter-spacing:normal;*word-spacing:-.43em;text-rendering:optimizespeed;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-flex;-webkit-flex-flow:row wrap;display:-ms-flexbox;-ms-flex-flow:row wrap}.opera-only :-o-prefocus,.ues-g{word-spacing:-.43em}.ues-u{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.ues-g [class*="ues-u"]{font-family:sans-serif}
 
13
.ues-u-1,.ues-u-1-1,.ues-u-1-2,.ues-u-1-3,.ues-u-2-3,.ues-u-1-4,.ues-u-3-4,.ues-u-1-5,.ues-u-2-5,.ues-u-3-5,.ues-u-4-5,.ues-u-5-5,.ues-u-1-6,.ues-u-5-6,.ues-u-1-8,.ues-u-3-8,.ues-u-5-8,.ues-u-7-8,.ues-u-1-12,.ues-u-5-12,.ues-u-7-12,.ues-u-11-12,.ues-u-1-24,.ues-u-2-24,.ues-u-3-24,.ues-u-4-24,.ues-u-5-24,.ues-u-6-24,.ues-u-7-24,.ues-u-8-24,.ues-u-9-24,.ues-u-10-24,.ues-u-11-24,.ues-u-12-24,.ues-u-13-24,.ues-u-14-24,.ues-u-15-24,.ues-u-16-24,.ues-u-17-24,.ues-u-18-24,.ues-u-19-24,.ues-u-20-24,.ues-u-21-24,.ues-u-22-24,.ues-u-23-24,.ues-u-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.ues-u-1-24{width:4.166667%;*width:4.135667%}.ues-u-1-12,.ues-u-2-24{width:8.333333%;*width:8.302333%}.ues-u-1-8,.ues-u-3-24{width:12.5%;*width:12.469%}.ues-u-1-6,.ues-u-4-24{width:16.666667%;*width:16.635667%}.ues-u-1-5{width:20%;*width:19.969%}.ues-u-5-24{width:20.833333%;*width:20.802333%}.ues-u-1-4,.ues-u-6-24{width:25%;*width:24.969%}.ues-u-7-24{width:29.166667%;*width:29.135667%}.ues-u-1-3,.ues-u-8-24{width:33.333333%;*width:33.302333%}.ues-u-3-8,.ues-u-9-24{width:37.5%;*width:37.469%}.ues-u-2-5{width:40%;*width:39.969%}.ues-u-5-12,.ues-u-10-24{width:41.666667%;*width:41.635667%}.ues-u-11-24{width:45.833333%;*width:45.802333%}.ues-u-1-2,.ues-u-12-24{width:50%;*width:49.969%}.ues-u-13-24{width:54.166667%;*width:54.135667%}.ues-u-7-12,.ues-u-14-24{width:58.333333%;*width:58.302333%}.ues-u-3-5{width:60%;*width:59.969%}.ues-u-5-8,.ues-u-15-24{width:62.5%;*width:62.469%}.ues-u-2-3,.ues-u-16-24{width:66.666667%;*width:66.635667%}.ues-u-17-24{width:70.833333%;*width:70.802333%}.ues-u-3-4,.ues-u-18-24{width:75%;*width:74.969%}.ues-u-19-24{width:79.166667%;*width:79.135667%}.ues-u-4-5{width:80%;*width:79.969%}.ues-u-5-6,.ues-u-20-24{width:83.333333%;*width:83.302333%}.ues-u-7-8,.ues-u-21-24{width:87.5%;*width:87.469%}.ues-u-11-12,.ues-u-22-24{width:91.666667%;*width:91.635667%}.ues-u-23-24{width:95.833333%;*width:95.802333%}.ues-u-1,.ues-u-1-1,.ues-u-5-5,.ues-u-24-24{width:100%}@media screen and (min-width:30em){.ues-u-sm-1,.ues-u-sm-1-1,.ues-u-sm-1-2,.ues-u-sm-1-3,.ues-u-sm-2-3,.ues-u-sm-1-4,.ues-u-sm-3-4,.ues-u-sm-1-5,.ues-u-sm-2-5,.ues-u-sm-3-5,.ues-u-sm-4-5,.ues-u-sm-5-5,.ues-u-sm-1-6,.ues-u-sm-5-6,.ues-u-sm-1-8,.ues-u-sm-3-8,.ues-u-sm-5-8,.ues-u-sm-7-8,.ues-u-sm-1-12,.ues-u-sm-5-12,.ues-u-sm-7-12,.ues-u-sm-11-12,.ues-u-sm-1-24,.ues-u-sm-2-24,.ues-u-sm-3-24,.ues-u-sm-4-24,.ues-u-sm-5-24,.ues-u-sm-6-24,.ues-u-sm-7-24,.ues-u-sm-8-24,.ues-u-sm-9-24,.ues-u-sm-10-24,.ues-u-sm-11-24,.ues-u-sm-12-24,.ues-u-sm-13-24,.ues-u-sm-14-24,.ues-u-sm-15-24,.ues-u-sm-16-24,.ues-u-sm-17-24,.ues-u-sm-18-24,.ues-u-sm-19-24,.ues-u-sm-20-24,.ues-u-sm-21-24,.ues-u-sm-22-24,.ues-u-sm-23-24,.ues-u-sm-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.ues-u-sm-1-24{width:4.166667%;*width:4.135667%}.ues-u-sm-1-12,.ues-u-sm-2-24{width:8.333333%;*width:8.302333%}.ues-u-sm-1-8,.ues-u-sm-3-24{width:12.5%;*width:12.469%}.ues-u-sm-1-6,.ues-u-sm-4-24{width:16.666667%;*width:16.635667%}.ues-u-sm-1-5{width:20%;*width:19.969%}.ues-u-sm-5-24{width:20.833333%;*width:20.802333%}.ues-u-sm-1-4,.ues-u-sm-6-24{width:25%;*width:24.969%}.ues-u-sm-7-24{width:29.166667%;*width:29.135667%}.ues-u-sm-1-3,.ues-u-sm-8-24{width:33.333333%;*width:33.302333%}.ues-u-sm-3-8,.ues-u-sm-9-24{width:37.5%;*width:37.469%}.ues-u-sm-2-5{width:40%;*width:39.969%}.ues-u-sm-5-12,.ues-u-sm-10-24{width:41.666667%;*width:41.635667%}.ues-u-sm-11-24{width:45.833333%;*width:45.802333%}.ues-u-sm-1-2,.ues-u-sm-12-24{width:50%;*width:49.969%}.ues-u-sm-13-24{width:54.166667%;*width:54.135667%}.ues-u-sm-7-12,.ues-u-sm-14-24{width:58.333333%;*width:58.302333%}.ues-u-sm-3-5{width:60%;*width:59.969%}.ues-u-sm-5-8,.ues-u-sm-15-24{width:62.5%;*width:62.469%}.ues-u-sm-2-3,.ues-u-sm-16-24{width:66.666667%;*width:66.635667%}.ues-u-sm-17-24{width:70.833333%;*width:70.802333%}.ues-u-sm-3-4,.ues-u-sm-18-24{width:75%;*width:74.969%}.ues-u-sm-19-24{width:79.166667%;*width:79.135667%}.ues-u-sm-4-5{width:80%;*width:79.969%}.ues-u-sm-5-6,.ues-u-sm-20-24{width:83.333333%;*width:83.302333%}.ues-u-sm-7-8,.ues-u-sm-21-24{width:87.5%;*width:87.469%}.ues-u-sm-11-12,.ues-u-sm-22-24{width:91.666667%;*width:91.635667%}.ues-u-sm-23-24{width:95.833333%;*width:95.802333%}.ues-u-sm-1,.ues-u-sm-1-1,.ues-u-sm-5-5,.ues-u-sm-24-24{width:100%}}@media screen and (min-width:48em){.ues-u-med-1,.ues-u-med-1-1,.ues-u-med-1-2,.ues-u-med-1-3,.ues-u-med-2-3,.ues-u-med-1-4,.ues-u-med-3-4,.ues-u-med-1-5,.ues-u-med-2-5,.ues-u-med-3-5,.ues-u-med-4-5,.ues-u-med-5-5,.ues-u-med-1-6,.ues-u-med-5-6,.ues-u-med-1-8,.ues-u-med-3-8,.ues-u-med-5-8,.ues-u-med-7-8,.ues-u-med-1-12,.ues-u-med-5-12,.ues-u-med-7-12,.ues-u-med-11-12,.ues-u-med-1-24,.ues-u-med-2-24,.ues-u-med-3-24,.ues-u-med-4-24,.ues-u-med-5-24,.ues-u-med-6-24,.ues-u-med-7-24,.ues-u-med-8-24,.ues-u-med-9-24,.ues-u-med-10-24,.ues-u-med-11-24,.ues-u-med-12-24,.ues-u-med-13-24,.ues-u-med-14-24,.ues-u-med-15-24,.ues-u-med-16-24,.ues-u-med-17-24,.ues-u-med-18-24,.ues-u-med-19-24,.ues-u-med-20-24,.ues-u-med-21-24,.ues-u-med-22-24,.ues-u-med-23-24,.ues-u-med-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.ues-u-med-1-24{width:4.166667%;*width:4.135667%}.ues-u-med-1-12,.ues-u-med-2-24{width:8.333333%;*width:8.302333%}.ues-u-med-1-8,.ues-u-med-3-24{width:12.5%;*width:12.469%}.ues-u-med-1-6,.ues-u-med-4-24{width:16.666667%;*width:16.635667%}.ues-u-med-1-5{width:20%;*width:19.969%}.ues-u-med-5-24{width:20.833333%;*width:20.802333%}.ues-u-med-1-4,.ues-u-med-6-24{width:25%;*width:24.969%}.ues-u-med-7-24{width:29.166667%;*width:29.135667%}.ues-u-med-1-3,.ues-u-med-8-24{width:33.333333%;*width:33.302333%}.ues-u-med-3-8,.ues-u-med-9-24{width:37.5%;*width:37.469%}.ues-u-med-2-5{width:40%;*width:39.969%}.ues-u-med-5-12,.ues-u-med-10-24{width:41.666667%;*width:41.635667%}.ues-u-med-11-24{width:45.833333%;*width:45.802333%}.ues-u-med-1-2,.ues-u-med-12-24{width:50%;*width:49.969%}.ues-u-med-13-24{width:54.166667%;*width:54.135667%}.ues-u-med-7-12,.ues-u-med-14-24{width:58.333333%;*width:58.302333%}.ues-u-med-3-5{width:60%;*width:59.969%}.ues-u-med-5-8,.ues-u-med-15-24{width:62.5%;*width:62.469%}.ues-u-med-2-3,.ues-u-med-16-24{width:66.666667%;*width:66.635667%}.ues-u-med-17-24{width:70.833333%;*width:70.802333%}.ues-u-med-3-4,.ues-u-med-18-24{width:75%;*width:74.969%}.ues-u-med-19-24{width:79.166667%;*width:79.135667%}.ues-u-med-4-5{width:80%;*width:79.969%}.ues-u-med-5-6,.ues-u-med-20-24{width:83.333333%;*width:83.302333%}.ues-u-med-7-8,.ues-u-med-21-24{width:87.5%;*width:87.469%}.ues-u-med-11-12,.ues-u-med-22-24{width:91.666667%;*width:91.635667%}.ues-u-med-23-24{width:95.833333%;*width:95.802333%}.ues-u-med-1,.ues-u-med-1-1,.ues-u-med-5-5,.ues-u-med-24-24{width:100%}}@media screen and (min-width:64em){.ues-u-lrg-1,.ues-u-lrg-1-1,.ues-u-lrg-1-2,.ues-u-lrg-1-3,.ues-u-lrg-2-3,.ues-u-lrg-1-4,.ues-u-lrg-3-4,.ues-u-lrg-1-5,.ues-u-lrg-2-5,.ues-u-lrg-3-5,.ues-u-lrg-4-5,.ues-u-lrg-5-5,.ues-u-lrg-1-6,.ues-u-lrg-5-6,.ues-u-lrg-1-8,.ues-u-lrg-3-8,.ues-u-lrg-5-8,.ues-u-lrg-7-8,.ues-u-lrg-1-12,.ues-u-lrg-5-12,.ues-u-lrg-7-12,.ues-u-lrg-11-12,.ues-u-lrg-1-24,.ues-u-lrg-2-24,.ues-u-lrg-3-24,.ues-u-lrg-4-24,.ues-u-lrg-5-24,.ues-u-lrg-6-24,.ues-u-lrg-7-24,.ues-u-lrg-8-24,.ues-u-lrg-9-24,.ues-u-lrg-10-24,.ues-u-lrg-11-24,.ues-u-lrg-12-24,.ues-u-lrg-13-24,.ues-u-lrg-14-24,.ues-u-lrg-15-24,.ues-u-lrg-16-24,.ues-u-lrg-17-24,.ues-u-lrg-18-24,.ues-u-lrg-19-24,.ues-u-lrg-20-24,.ues-u-lrg-21-24,.ues-u-lrg-22-24,.ues-u-lrg-23-24,.ues-u-lrg-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.ues-u-lrg-1-24{width:4.166667%;*width:4.135667%}.ues-u-lrg-1-12,.ues-u-lrg-2-24{width:8.333333%;*width:8.302333%}.ues-u-lrg-1-8,.ues-u-lrg-3-24{width:12.5%;*width:12.469%}.ues-u-lrg-1-6,.ues-u-lrg-4-24{width:16.666667%;*width:16.635667%}.ues-u-lrg-1-5{width:20%;*width:19.969%}.ues-u-lrg-5-24{width:20.833333%;*width:20.802333%}.ues-u-lrg-1-4,.ues-u-lrg-6-24{width:25%;*width:24.969%}.ues-u-lrg-7-24{width:29.166667%;*width:29.135667%}.ues-u-lrg-1-3,.ues-u-lrg-8-24{width:33.333333%;*width:33.302333%}.ues-u-lrg-3-8,.ues-u-lrg-9-24{width:37.5%;*width:37.469%}.ues-u-lrg-2-5{width:40%;*width:39.969%}.ues-u-lrg-5-12,.ues-u-lrg-10-24{width:41.666667%;*width:41.635667%}.ues-u-lrg-11-24{width:45.833333%;*width:45.802333%}.ues-u-lrg-1-2,.ues-u-lrg-12-24{width:50%;*width:49.969%}.ues-u-lrg-13-24{width:54.166667%;*width:54.135667%}.ues-u-lrg-7-12,.ues-u-lrg-14-24{width:58.333333%;*width:58.302333%}.ues-u-lrg-3-5{width:60%;*width:59.969%}.ues-u-lrg-5-8,.ues-u-lrg-15-24{width:62.5%;*width:62.469%}.ues-u-lrg-2-3,.ues-u-lrg-16-24{width:66.666667%;*width:66.635667%}.ues-u-lrg-17-24{width:70.833333%;*width:70.802333%}.ues-u-lrg-3-4,.ues-u-lrg-18-24{width:75%;*width:74.969%}.ues-u-lrg-19-24{width:79.166667%;*width:79.135667%}.ues-u-lrg-4-5{width:80%;*width:79.969%}.ues-u-lrg-5-6,.ues-u-lrg-20-24{width:83.333333%;*width:83.302333%}.ues-u-lrg-7-8,.ues-u-lrg-21-24{width:87.5%;*width:87.469%}.ues-u-lrg-11-12,.ues-u-lrg-22-24{width:91.666667%;*width:91.635667%}.ues-u-lrg-23-24{width:95.833333%;*width:95.802333%}.ues-u-lrg-1,.ues-u-lrg-1-1,.ues-u-lrg-5-5,.ues-u-lrg-24-24{width:100%}}@media screen and (min-width:75em){.ues-u-xlrg-1,.ues-u-xlrg-1-1,.ues-u-xlrg-1-2,.ues-u-xlrg-1-3,.ues-u-xlrg-2-3,.ues-u-xlrg-1-4,.ues-u-xlrg-3-4,.ues-u-xlrg-1-5,.ues-u-xlrg-2-5,.ues-u-xlrg-3-5,.ues-u-xlrg-4-5,.ues-u-xlrg-5-5,.ues-u-xlrg-1-6,.ues-u-xlrg-5-6,.ues-u-xlrg-1-8,.ues-u-xlrg-3-8,.ues-u-xlrg-5-8,.ues-u-xlrg-7-8,.ues-u-xlrg-1-12,.ues-u-xlrg-5-12,.ues-u-xlrg-7-12,.ues-u-xlrg-11-12,.ues-u-xlrg-1-24,.ues-u-xlrg-2-24,.ues-u-xlrg-3-24,.ues-u-xlrg-4-24,.ues-u-xlrg-5-24,.ues-u-xlrg-6-24,.ues-u-xlrg-7-24,.ues-u-xlrg-8-24,.ues-u-xlrg-9-24,.ues-u-xlrg-10-24,.ues-u-xlrg-11-24,.ues-u-xlrg-12-24,.ues-u-xlrg-13-24,.ues-u-xlrg-14-24,.ues-u-xlrg-15-24,.ues-u-xlrg-16-24,.ues-u-xlrg-17-24,.ues-u-xlrg-18-24,.ues-u-xlrg-19-24,.ues-u-xlrg-20-24,.ues-u-xlrg-21-24,.ues-u-xlrg-22-24,.ues-u-xlrg-23-24,.ues-u-xlrg-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.ues-u-xlrg-1-24{width:4.166667%;*width:4.135667%}.ues-u-xlrg-1-12,.ues-u-xlrg-2-24{width:8.333333%;*width:8.302333%}.ues-u-xlrg-1-8,.ues-u-xlrg-3-24{width:12.5%;*width:12.469%}.ues-u-xlrg-1-6,.ues-u-xlrg-4-24{width:16.666667%;*width:16.635667%}.ues-u-xlrg-1-5{width:20%;*width:19.969%}.ues-u-xlrg-5-24{width:20.833333%;*width:20.802333%}.ues-u-xlrg-1-4,.ues-u-xlrg-6-24{width:25%;*width:24.969%}.ues-u-xlrg-7-24{width:29.166667%;*width:29.135667%}.ues-u-xlrg-1-3,.ues-u-xlrg-8-24{width:33.333333%;*width:33.302333%}.ues-u-xlrg-3-8,.ues-u-xlrg-9-24{width:37.5%;*width:37.469%}.ues-u-xlrg-2-5{width:40%;*width:39.969%}.ues-u-xlrg-5-12,.ues-u-xlrg-10-24{width:41.666667%;*width:41.635667%}.ues-u-xlrg-11-24{width:45.833333%;*width:45.802333%}.ues-u-xlrg-1-2,.ues-u-xlrg-12-24{width:50%;*width:49.969%}.ues-u-xlrg-13-24{width:54.166667%;*width:54.135667%}.ues-u-xlrg-7-12,.ues-u-xlrg-14-24{width:58.333333%;*width:58.302333%}.ues-u-xlrg-3-5{width:60%;*width:59.969%}.ues-u-xlrg-5-8,.ues-u-xlrg-15-24{width:62.5%;*width:62.469%}.ues-u-xlrg-2-3,.ues-u-xlrg-16-24{width:66.666667%;*width:66.635667%}.ues-u-xlrg-17-24{width:70.833333%;*width:70.802333%}.ues-u-xlrg-3-4,.ues-u-xlrg-18-24{width:75%;*width:74.969%}.ues-u-xlrg-19-24{width:79.166667%;*width:79.135667%}.ues-u-xlrg-4-5{width:80%;*width:79.969%}.ues-u-xlrg-5-6,.ues-u-xlrg-20-24{width:83.333333%;*width:83.302333%}.ues-u-xlrg-7-8,.ues-u-xlrg-21-24{width:87.5%;*width:87.469%}.ues-u-xlrg-11-12,.ues-u-xlrg-22-24{width:91.666667%;*width:91.635667%}.ues-u-xlrg-23-24{width:95.833333%;*width:95.802333%}.ues-u-xlrg-1,.ues-u-xlrg-1-1,.ues-u-xlrg-5-5,.ues-u-xlrg-24-24{width:100%}}
 
14
.ues-icon-navbar-menu,.ues-icon-navbar-search{width:36px;height:34px}.ues-icon-search{width:15px;height:15px}.ues-icon-search.small{width:24px;height:24px}.ues-icon-search.smaller{width:16px;height:16px}.ues-icon-spinner{width:36px;height:34px;-webkit-animation:ues-spin .9s linear infinite;animation:ues-spin .9s linear infinite}.ues-icon-spinner.smaller{width:16px;height:16px;-webkit-animation:ues-spin .5s linear infinite;animation:ues-spin .5s linear infinite}@-webkit-keyframes ues-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes ues-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
 
15
html{-moz-box-sizing:border-box;box-sizing:border-box}*,*:before,*:after{-moz-box-sizing:inherit;box-sizing:inherit}.ues-page{width:984px;margin:0 auto}@media (min-width:1210px){.ues-page{width:1200px;margin:0 auto}}@media (max-width:940px){.ues-page{width:100%}}.pull-left{float:left}.pull-right{float:right}.clear:before,.clear:after{content:" ";display:table}.clear:after{clear:both}.ues-footer>.ues-footer-row{font-size:11px;padding:2em 1em;background-color:#f7f6f5;border-top:1px solid #d8d8d8}.ues-footer>.ues-footer-row+.ues-footer-row{font-size:12px;background-color:#efedec;border-top:1px solid #d8d8d8}@media screen and (max-width:320px){.ues-footer>.ues-footer-row{font-size:14px}}.ues-footer a{color:#333}.ues-footer a:hover{color:#dd4814;text-decoration:underline}.ues-footer-column{margin:0 20px 0 0}.ues-footer .yui3-u-1-6:last-child .ues-footer-column{margin:0}.ues-footer-copyright p{margin:0}.ues-box{padding:20px;margin:0 0 20px;border-radius:12px}.ues-box form{margin:0}.ues-box label:first-child{margin-top:0}.ues-box-solid{background:#f7f6f5}.ues-box-bordered{border:1px solid #ccc}.ues-box-shadowed{box-shadow:0 1px 6px 0 #C2C2C2}.ues-well{border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)inset}
 
16
.ues-navbar{position:relative;background-color:#dd4814;font-size:13px;line-height:34px;min-height:54px}.ues-navbar.ues-navbar-invert{background:#fff;font-weight:400}.ues-navbar .ues-container{position:relative}.ues-navbar-secondary-nav{float:right}.ues-navbar-secondary-nav>div,.ues-navbar-secondary-nav>.ues-navbar-menu,.ues-navbar-brand,.ues-navbar-primary-nav{float:left}.ues-navbar,.ues-navbar>a,.ues-navbar-brand,.ues-navbar-brand>a,.ues-navbar-menu>li,.ues-navbar-menu>li>a{color:#fff}.ues-navbar-invert,.ues-navbar-invert>a,.ues-navbar-invert .ues-navbar-brand,.ues-navbar-invert .ues-navbar-brand>a,.ues-navbar-invert .ues-navbar-menu>li,.ues-navbar-invert .ues-navbar-menu>li>a{color:#dd4814}.ues-navbar-toggle,.ues-navbar-text,.ues-navbar-brand>a,.ues-navbar-menu>li>a,.ues-navbar-menu>li>span{display:block;padding:10px}.ues-navbar-menu{margin:0;padding:0;list-style:none}.ues-navbar-menu>li{float:left}.ues-navbar-text{margin:0}.ues-navbar .ues-button-group{display:block}.ues-navbar .ues-button-toolbar>.ues-button-group{display:inline-block}.ues-navbar-menu>li,.ues-navbar-menu>li>a{position:relative}.ues-navbar-menu>li>a:hover{background-color:#f75216}.ues-navbar-invert .ues-navbar-menu>li>a:hover{background-color:#fcece7}.ues-navbar-header>[class^=ues-icon]{display:none;margin:10px;float:right}
 
17
.ues-menu{margin:0;padding:0}.ues-menu:before,.ues-menu:after{content:" ";display:table}.ues-menu:after{clear:both}.ues-menu>li{display:block;position:relative;margin:0;padding:0;list-style-type:none;border-bottom:1px solid #ccc}.ues-menu>li>a,.ues-menu>li>span{display:block;position:relative;padding:10px 15px}.ues-menu>li>a:hover,.ues-menu>li>a:focus{background-color:#f7f6f5}.ues-menu-horizontal.ues-menu>li{border-bottom:none}.ues-menu-horizontal>li{float:left}.ues-menu-selected{background-color:#f7f6f5}.ues-menu-selected a:after{content:'\25B8';float:right;color:#333;font-size:120%}.ues-pagination{display:inline-block;font-size:12px;font-weight:400;margin:10px 0;border-radius:8px}.ues-pagination li{padding:0;float:left;list-style:none}.ues-pagination a{padding:10px;position:relative}.ues-pagination .ues-active a{text-decoration:underline}.ues-pagination .ues-disabled a{cursor:not-allowed;color:#999}.ues-pagination-break span{padding:10px 5px;color:#999}.ues-breadcrumb{padding:10px 0;margin:0 0 15px;list-style:none}.ues-breadcrumb>li{display:inline-block}.ues-breadcrumb .active{color:#999}.ues-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"\203A"}
 
18
.ues-searchbar{background-color:#eee;line-height:44px;min-height:64px;padding:10px}.ues-searchbar-search{position:relative}.ues-searchbar .ues-form-quicksearch{padding-right:53px}.ues-icon-search+.ues-form-quicksearch{padding-left:40px;padding-right:0}.ues-searchbar-search>.ues-icon-search{left:15px;position:absolute;top:15px}.ues-searchbar .ues-button-search{border-radius:0 2px 2px 0;border-width:0 0 0 1px;bottom:1px;padding:0 20px;position:absolute;right:1px;top:1px}.ues-autocomplete .ues-dropdown-menu{width:100%;border:1px solid #ddd;border-top:none;font-size:100%;padding:0}.ues-autocomplete .ues-dropdown-menu li{padding:0 13px}.ues-autocomplete .ues-dropdown-menu,.ues-autocomplete .ues-dropdown-menu li:last-child{border-radius:0 0 2px 2px}.ues-autocomplete .ues-dropdown-menu>li:hover{background-color:#eee}
 
19
.ues-table{border-collapse:collapse;border-spacing:0;empty-cells:show;border:1px dotted #AEA79F}.ues-table caption{font-style:italic;font-size:13px;line-height:1;padding:1em 0;text-align:center}.ues-table td,.ues-table th{background-color:#F0EDEA;border-left:1px dotted #AEA79F;border-width:0 0 0 1px;padding:15px 10px;overflow:visible}.ues-table-small td,.ues-table-small th{padding:5px 10px}.ues-table td:first-child,.ues-table th:first-child{border-left-width:0}.ues-table thead{background-color:#FEE3D2;color:#333;text-align:left;font-weight:400;vertical-align:bottom}.ues-table thead th{border-collapse:separate;border-spacing:0 10px;background-color:transparent}.ues-table tfoot th,.ues-table tbody th{font-weight:300}.ues-table-bordered th,.ues-table-bordered td{border-bottom:1px dotted #AEA79F}.ues-table-bordered tbody>tr:last-child td,.ues-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.ues-table-horizontal td,.ues-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px dotted #cbcbcb}.ues-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.ues-table-striped tr:nth-child(2n-1) td{background-color:#F7F7F7}
 
20
html,body{font-weight:300;font-style:normal;font-size:16px;line-height:25px;color:#333}html,body,.ues-g [class*="ues-u"],.ues-g-r [class*="ues-u"]{font-family:"Ubuntu",Arial,"libra sans",sans-serif}h1,h2,h3,h4,h5,h6{font-weight:300;padding:0;margin:.5em 0 1em;line-height:1}p+h2,p+h3,p+h4,p+h5,p+h6{margin-top:1em}.ues-hdisplay{font-size:45px}.ues-hmain,h1{font-size:32px}.ues-hmedium,h2{font-size:23px}.ues-hlight,h3,h4,h5,h6{font-size:18px}.ues-hinline{display:inline;font-weight:400;font-size:1em;line-height:inherit;padding:0;margin-left:0;margin-right:0}p{margin:0 0 1em}p:last-child{margin:0}.ues-lead{font-size:23px;line-height:1.5;margin:0 0 .5em}a{color:#dd4814;text-decoration:none}ul,ol{margin:.5em 0;padding:0}ul li{list-style:none}.ues-list{padding-left:40px;margin-bottom:15px}.ues-list li{list-style:disc}ol.ues-list li{list-style:decimal}dl.ues-list{padding:0}dl.ues-list dd{list-style:disc}.ues-list-bordered{padding:0}.ues-list-bordered li{list-style:none;border-bottom:1px dotted #ccc;padding:.3em}.ues-list-inline{display:inline;overflow:hidden;margin-left:.3em;padding:0}.ues-list-inline li{list-style:none;display:inline-block}.ues-list-inline li:after{content:' |';margin:0 .15em}.ues-list-inline li:last-child:after{content:''}pre{margin:.5em 0}pre,code{font-family:"Ubuntu Mono",Monaco,Menlo,Consolas,"Courier New",monospace;font-weight:300}abbr{border-bottom:1px solid #333}.ues-u1-logo{display:inline-block;width:143px;height:57px;background-image:url(svg/u1-logo-sprite.svg);background-color:transparent;background-repeat:no-repeat;background-size:288px 60px;text-indent:-9000px;direction:ltr}.ues-u1-logo-on-white{background-position:-145px 0}
 
 
b'\\ No newline at end of file'