Project

General

Profile

« Previous | Next » 

Revision ddce1a80

Added by jenkins over 6 years ago

release-preparation: production level css

View differences:

themes/zen_dataportal/css/styles.css
1
/**
2
 * @file
3
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
4
 *
5
 * When you turn on CSS aggregation at admin/config/development/performance, all
6
 * of these @include files will be combined into a single file.
7
 */
8
/* Import Sass mixins, variables, Compass modules, etc. */
9
@import url(../fonts/droid-sans-fontfacekit/web fonts/droidsans_regular/stylesheet.css);
10
@import url(../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css);
11
@import url(../fonts/droid-sans-fontfacekit/web fonts/droidsans_regular/stylesheet.css);
12
@import url(../fonts/droid-sans-mono-fontfacekit/web fonts/droidsansmono_regular/stylesheet.css);
13
/* line 30, ../sass/ie-legacy.scss */
14
.pie-element, .lt-ie9 #page, #page {
15
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
16
  position: relative;
17
}
18

  
19
/* line 43, ../sass/ie-legacy.scss */
20
.pie-container {
21
  z-index: 0;
22
  position: relative;
23
}
24

  
25
/* line 47, ../sass/ie-legacy.scss */
26
.z-pie-element, .lt-ie9 #page, #page {
27
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
28
  z-index: 0;
29
}
30

  
31
/* line 63, ../sass/ie-legacy.scss */
32
.lt-ie9 #header {
33
  /* 
34
   * reset right padding to zero and use margin-right instead,
35
   * this avoids the need for background-clip: content-box
36
   * which is not suppoorted in IE < 9
37
   */
38
  padding-right: 0;
39
  margin-right: 20px;
40
}
41

  
42
/* HTML element (SMACSS base) rules */
43
/**
44
 * @file
45
 * Normalize.css is intended to be used as an alternative to CSS resets.
46
 *
47
 * This file is a slight fork of these original sources:
48
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
49
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
50
 *
51
 * It's suggested that you read the normalize.scss file and customise it to meet
52
 * your needs, rather then including the file in your project and overriding the
53
 * defaults later in your CSS.
54
 * @see http://nicolasgallagher.com/about-normalize-css/
55
 *
56
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
57
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
58
 */
59
/**
60
 * HTML5 display definitions
61
 */
62
/* Correct `block` display not defined in IE 8/9. */
63
/* line 33, ../sass/_normalize.scss */
64
article,
65
aside,
66
details,
67
figcaption,
68
figure,
69
footer,
70
header,
71
main,
72
nav,
73
section,
74
summary {
75
  display: block;
76
}
77

  
78
/* Correct `inline-block` display not defined in IE 8/9. */
79
/* line 40, ../sass/_normalize.scss */
80
audio,
81
canvas,
82
video {
83
  display: inline-block;
84
  *display: inline;
85
  *zoom: 1;
86
}
87

  
88
/**
89
 * Prevent modern browsers from displaying `audio` without controls.
90
 * Remove excess height in iOS 5 devices.
91
 */
92
/* line 52, ../sass/_normalize.scss */
93
audio:not([controls]) {
94
  display: none;
95
  height: 0;
96
}
97

  
98
/* Address styling not present in IE 8/9. */
99
/* line 58, ../sass/_normalize.scss */
100
[hidden] {
101
  display: none;
102
}
103

  
104
/**
105
 * Base
106
 *
107
 * Instead of relying on the fonts that are available on a user's computer, you
108
 * can use web fonts which, like images, are resources downloaded to the user's
109
 * browser. Because of the bandwidth and rendering resources required, web fonts
110
 * should be used with care.
111
 *
112
 * Numerous resources for web fonts can be found on Google. Here are a few
113
 * websites where you can find Open Source fonts to download:
114
 * - http://www.fontsquirrel.com/fontface
115
 * - http://www.theleagueofmoveabletype.com
116
 *
117
 * In order to use these fonts, you will need to convert them into formats
118
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
119
 * Font-Face Generator:
120
 *   http://www.fontsquirrel.com/fontface/generator
121
 *
122
 * The following is an example @font-face declaration. This font can then be
123
 * used in any ruleset using a property like this:  font-family: Example, serif;
124
 *
125
 * Since we're using Sass, you'll need to declare your font faces here, then you
126
 * can add them to the font variables in the _init.scss partial.
127
 */
128
/*
129
@font-face {
130
  font-family: 'Example';
131
  src: url('../fonts/example.eot');
132
  src: url('../fonts/example.eot?iefix') format('eot'),
133
    url('../fonts/example.woff') format('woff'),
134
    url('../fonts/example.ttf') format('truetype'),
135
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
136
  font-weight: normal;
137
  font-style: normal;
138
}
139
*/
140
/**
141
 * 1. Set default font family to sans-serif.
142
 * 2. Prevent iOS text size adjust after orientation change, without disabling
143
 *    user zoom.
144
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
145
 *    `em` units.
146
 */
147
/* line 106, ../sass/_normalize.scss */
148
html {
149
  font-family: "droid_sansregular", sans-serif;
150
  /* 1 */
151
  font-size: 75%;
152
  /* 3 */
153
  -ms-text-size-adjust: 100%;
154
  /* 2 */
155
  -webkit-text-size-adjust: 100%;
156
  /* 2 */
157
  line-height: 1.5em;
158
}
159

  
160
/* Address `font-family` inconsistency between `textarea` and other form elements. */
161
/* line 120, ../sass/_normalize.scss */
162
button,
163
input,
164
select,
165
textarea {
166
  font-family: "droid_sansregular", sans-serif;
167
}
168

  
169
/* Remove default margin. */
170
/* line 126, ../sass/_normalize.scss */
171
body {
172
  margin: 0;
173
  padding: 0;
174
}
175

  
176
/**
177
 * Links
178
 *
179
 * The order of link states are based on Eric Meyer's article:
180
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
181
 */
182
/* Address `outline` inconsistency between Chrome and other browsers. */
183
/* line 148, ../sass/_normalize.scss */
184
a:focus {
185
  outline: thin dotted;
186
}
187

  
188
/* Improve readability when focused and also mouse hovered in all browsers. */
189
/* line 154, ../sass/_normalize.scss */
190
a:active,
191
a:hover {
192
  outline: 0;
193
}
194

  
195
/**
196
 * Typography
197
 *
198
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
199
 * so that the line height of our base font becomes the basic unit of vertical
200
 * measurement. We use multiples of that unit to set the top and bottom margins
201
 * for our block level elements and to set the line heights of any fonts.
202
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
203
 */
204
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
205
/* line 170, ../sass/_normalize.scss */
206
p,
207
pre {
208
  margin: 1.5em 0;
209
}
210

  
211
/* line 173, ../sass/_normalize.scss */
212
blockquote {
213
  /* Also indent the quote on both sides. */
214
  margin: 1.5em 30px;
215
}
216

  
217
/**
218
 * Address variable `h1` font-size and margin within `section` and `article`
219
 * contexts in Firefox 4+, Safari 5, and Chrome.
220
 */
221
/* line 182, ../sass/_normalize.scss */
222
h1 {
223
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
224
  font-size: 2em;
225
  line-height: 1.5em;
226
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
227
  margin-top: 0.75em;
228
  margin-bottom: 0.75em;
229
}
230

  
231
/* line 190, ../sass/_normalize.scss */
232
h2 {
233
  font-size: 1.6em;
234
  line-height: 1.875em;
235
  margin-top: 0.9375em;
236
  margin-bottom: 0.9375em;
237
}
238

  
239
/* line 195, ../sass/_normalize.scss */
240
h3 {
241
  font-size: 1.5em;
242
  line-height: 2em;
243
  margin-top: 1em;
244
  margin-bottom: 1em;
245
}
246

  
247
/* line 200, ../sass/_normalize.scss */
248
h4 {
249
  font-size: 1em;
250
  line-height: 1.5em;
251
  margin-top: 1.5em;
252
  margin-bottom: 1.5em;
253
}
254

  
255
/* line 205, ../sass/_normalize.scss */
256
h5 {
257
  font-size: 0.83em;
258
  line-height: 1.80723em;
259
  margin-top: 1.80723em;
260
  margin-bottom: 1.80723em;
261
}
262

  
263
/* line 210, ../sass/_normalize.scss */
264
h6 {
265
  font-size: 0.67em;
266
  line-height: 2.23881em;
267
  margin-top: 2.23881em;
268
  margin-bottom: 2.23881em;
269
}
270

  
271
/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
272
/* line 217, ../sass/_normalize.scss */
273
abbr[title] {
274
  border-bottom: 1px dotted;
275
}
276

  
277
/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
278
/* line 223, ../sass/_normalize.scss */
279
b,
280
strong {
281
  font-weight: bold;
282
}
283

  
284
/* Address styling not present in Safari 5 and Chrome. */
285
/* line 228, ../sass/_normalize.scss */
286
dfn {
287
  font-style: italic;
288
}
289

  
290
/* Address differences between Firefox and other browsers. */
291
/* line 233, ../sass/_normalize.scss */
292
hr {
293
  -webkit-box-sizing: content-box;
294
  -moz-box-sizing: content-box;
295
  box-sizing: content-box;
296
  height: 0;
297
  border: 1px solid #666;
298
  padding-bottom: -1px;
299
  margin: 1.5em 0;
300
}
301

  
302
/* Address styling not present in IE 8/9. */
303
/* line 242, ../sass/_normalize.scss */
304
mark {
305
  background: #ff0;
306
  color: #000;
307
}
308

  
309
/* Correct font family set oddly in Safari 5 and Chrome. */
310
/* line 253, ../sass/_normalize.scss */
311
code,
312
kbd,
313
pre,
314
samp,
315
tt,
316
var {
317
  font-family: "droid_sans_monoregular", monospace, sans-serif;
318
  _font-family: 'courier new', monospace;
319
  font-size: 1em;
320
  line-height: 1.5em;
321
}
322

  
323
/* Improve readability of pre-formatted text in all browsers. */
324
/* line 262, ../sass/_normalize.scss */
325
pre {
326
  white-space: pre;
327
  white-space: pre-wrap;
328
  word-wrap: break-word;
329
}
330

  
331
/* Set consistent quote types. */
332
/* line 274, ../sass/_normalize.scss */
333
q {
334
  quotes: "\201C" "\201D" "\2018" "\2019";
335
}
336

  
337
/* Address inconsistent and variable font size in all browsers. */
338
/* line 279, ../sass/_normalize.scss */
339
small {
340
  font-size: 80%;
341
}
342

  
343
/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
344
/* line 285, ../sass/_normalize.scss */
345
sub,
346
sup {
347
  font-size: 75%;
348
  line-height: 0;
349
  position: relative;
350
  vertical-align: baseline;
351
}
352

  
353
/* line 291, ../sass/_normalize.scss */
354
sup {
355
  top: -0.5em;
356
}
357

  
358
/* line 294, ../sass/_normalize.scss */
359
sub {
360
  bottom: -0.25em;
361
}
362

  
363
/**
364
 * Lists
365
 */
366
/* line 305, ../sass/_normalize.scss */
367
dl,
368
menu,
369
ol,
370
ul,
371
.item-list ul {
372
  /* Address margins set differently in IE 6/7. */
373
  margin: 12px 0;
374
}
375

  
376
/* line 313, ../sass/_normalize.scss */
377
ol ol,
378
ol ul,
379
ul ol,
380
ul ul {
381
  /* Turn off margins on nested lists. */
382
  margin: 0;
383
}
384

  
385
/* line 318, ../sass/_normalize.scss */
386
dd {
387
  margin: 0 0 0 30px;
388
  /* LTR */
389
}
390

  
391
/* Address paddings set differently in IE 6/7. */
392
/* line 325, ../sass/_normalize.scss */
393
menu,
394
ol,
395
ul {
396
  padding: 0 0 0 30px;
397
  /* LTR */
398
}
399

  
400
/* Correct list images handled incorrectly in IE 7. */
401
/* line 332, ../sass/_normalize.scss */
402
nav ul,
403
nav ol {
404
  list-style: none;
405
  list-style-image: none;
406
}
407

  
408
/**
409
 * Embedded content and figures
410
 *
411
 * @todo Look into adding responsive embedded video.
412
 */
413
/* line 343, ../sass/_normalize.scss */
414
img {
415
  /* Remove border when inside `a` element in IE 8/9. */
416
  border: 0;
417
  /* Improve image quality when scaled in IE 7. */
418
  -ms-interpolation-mode: bicubic;
419
  /* Suppress the space beneath the baseline */
420
  /* vertical-align: bottom; */
421
  /* Responsive images */
422
  max-width: 100%;
423
  height: auto;
424
}
425
/* line 358, ../sass/_normalize.scss */
426
img .lt-ie9 {
427
  /* Correct IE 8 not scaling image height when resized. */
428
  width: auto;
429
}
430

  
431
/* Correct overflow displayed oddly in IE 9. */
432
/* line 366, ../sass/_normalize.scss */
433
svg:not(:root) {
434
  overflow: hidden;
435
}
436

  
437
/* Address margin not present in IE 8/9 and Safari 5. */
438
/* line 371, ../sass/_normalize.scss */
439
figure {
440
  margin: 0;
441
}
442

  
443
/**
444
 * Forms
445
 */
446
/* Correct margin displayed oddly in IE 6/7. */
447
/* line 381, ../sass/_normalize.scss */
448
form {
449
  margin: 0;
450
}
451

  
452
/* Define consistent border, margin, and padding. */
453
/* line 387, ../sass/_normalize.scss */
454
fieldset {
455
  margin: 0 2px;
456
  /* Apply borders and padding that keep the vertical rhythm. */
457
  border-color: #c0c0c0;
458
  border-top-style: solid;
459
  border-top-width: 0.08333em;
460
  padding-top: 0.44167em;
461
  border-bottom-style: solid;
462
  border-bottom-width: 0.08333em;
463
  padding-bottom: 0.89167em;
464
  border-left-style: solid;
465
  border-left-width: 0.08333em;
466
  padding-left: 0.89167em;
467
  border-right-style: solid;
468
  border-right-width: 0.08333em;
469
  padding-right: 0.89167em;
470
}
471

  
472
/**
473
 * 1. Correct `color` not being inherited in IE 8/9.
474
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
475
 * 3. Correct alignment displayed oddly in IE 6/7.
476
 */
477
/* line 402, ../sass/_normalize.scss */
478
legend {
479
  border: 0;
480
  /* 1 */
481
  padding: 0;
482
  /* 2 */
483
  *margin-left: -7px;
484
  /* 3 */
485
  /* LTR */
486
}
487

  
488
/**
489
 * 1. Correct font family not being inherited in all browsers.
490
 * 2. Correct font size not being inherited in all browsers.
491
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
492
 * 4. Improve appearance and consistency with IE 6/7.
493
 * 5. Keep form elements constrained in their containers.
494
 */
495
/* line 420, ../sass/_normalize.scss */
496
button,
497
input,
498
select,
499
textarea {
500
  font-family: inherit;
501
  /* 1 */
502
  font-size: 100%;
503
  /* 2 */
504
  margin: 0;
505
  /* 3 */
506
  vertical-align: baseline;
507
  /* 4 */
508
  *vertical-align: middle;
509
  /* 4 */
510
  max-width: 100%;
511
  /* 5 */
512
  -webkit-box-sizing: border-box;
513
  -moz-box-sizing: border-box;
514
  box-sizing: border-box;
515
  /* 5 */
516
}
517

  
518
/**
519
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
520
 * the UA stylesheet.
521
 */
522
/* line 437, ../sass/_normalize.scss */
523
button,
524
input {
525
  line-height: normal;
526
}
527

  
528
/**
529
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
530
 * All other form control elements do not inherit `text-transform` values.
531
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
532
 * Correct `select` style inheritance in Firefox 4+ and Opera.
533
 */
534
/* line 448, ../sass/_normalize.scss */
535
button,
536
select {
537
  text-transform: none;
538
}
539

  
540
/**
541
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
542
 *    and `video` controls.
543
 * 2. Correct inability to style clickable `input` types in iOS.
544
 * 3. Improve usability and consistency of cursor style between image-type
545
 *    `input` and others.
546
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
547
 *    Known issue: inner spacing remains in IE 6.
548
 */
549
/* line 464, ../sass/_normalize.scss */
550
button,
551
html input[type="button"],
552
input[type="reset"],
553
input[type="submit"] {
554
  -webkit-appearance: button;
555
  /* 2 */
556
  cursor: pointer;
557
  /* 3 */
558
  *overflow: visible;
559
  /* 4 */
560
}
561

  
562
/**
563
 * Re-set default cursor for disabled elements.
564
 */
565
/* line 476, ../sass/_normalize.scss */
566
button[disabled],
567
html input[disabled] {
568
  cursor: default;
569
}
570

  
571
/**
572
 * 1. Address box sizing set to `content-box` in IE 8/9.
573
 * 2. Remove excess padding in IE 8/9.
574
 * 3. Remove excess padding in IE 7.
575
 *    Known issue: excess padding remains in IE 6.
576
 */
577
/* line 487, ../sass/_normalize.scss */
578
input[type="checkbox"],
579
input[type="radio"] {
580
  -webkit-box-sizing: border-box;
581
  -moz-box-sizing: border-box;
582
  box-sizing: border-box;
583
  /* 1 */
584
  padding: 0;
585
  /* 2 */
586
  *height: 13px;
587
  /* 3 */
588
  *width: 13px;
589
  /* 3 */
590
}
591

  
592
/**
593
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
594
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
595
 *    (include `-moz` to future-proof).
596
 */
597
/* line 501, ../sass/_normalize.scss */
598
input[type="search"] {
599
  -webkit-appearance: textfield;
600
  /* 1 */
601
  -webkit-box-sizing: content-box;
602
  -moz-box-sizing: content-box;
603
  box-sizing: content-box;
604
  /* 2 */
605
}
606

  
607
/**
608
 * Remove inner padding and search cancel button in Safari 5 and Chrome
609
 * on OS X.
610
 */
611
/* line 511, ../sass/_normalize.scss */
612
input[type="search"]::-webkit-search-cancel-button,
613
input[type="search"]::-webkit-search-decoration {
614
  -webkit-appearance: none;
615
}
616

  
617
/* Remove inner padding and border in Firefox 4+. */
618
/* line 517, ../sass/_normalize.scss */
619
button::-moz-focus-inner,
620
input::-moz-focus-inner {
621
  border: 0;
622
  padding: 0;
623
}
624

  
625
/**
626
 * 1. Remove default vertical scrollbar in IE 8/9.
627
 * 2. Improve readability and alignment in all browsers.
628
 */
629
/* line 526, ../sass/_normalize.scss */
630
textarea {
631
  overflow: auto;
632
  /* 1 */
633
  vertical-align: top;
634
  /* 2 */
635
}
636

  
637
/* Drupal-style form labels. */
638
/* line 532, ../sass/_normalize.scss */
639
label {
640
  display: block;
641
  font-weight: bold;
642
}
643

  
644
/**
645
 * Tables
646
 */
647
/* line 540, ../sass/_normalize.scss */
648
table {
649
  /* Remove most spacing between table cells. */
650
  border-collapse: collapse;
651
  border-spacing: 0;
652
  /* Prevent cramped-looking tables */
653
  /* width: 100%; */
654
  /* Add vertical rhythm margins. */
655
  margin-top: 1.5em;
656
  margin-bottom: 1.5em;
657
}
658

  
659
/* line 551, ../sass/_normalize.scss */
660
td {
661
  vertical-align: top;
662
  text-align: left;
663
}
664

  
665
/* Layout rules */
666
/**
667
 * @file
668
 * Positioning for a responsive layout.
669
 *
670
 * Define CSS classes to create a fluid grid layout with optional sidebars
671
 * depending on whether blocks are placed in the left or right sidebars.
672
 *
673
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
674
 */
675
/**
676
 * Center the page.
677
 *
678
 * For screen sizes larger than 1200px, prevent excessively long lines of text
679
 * by setting a max-width.
680
 */
681
/* line 34, ../sass/layouts/_responsive.scss */
682
#page,
683
.region-bottom {
684
  margin-left: auto;
685
  margin-right: auto;
686
  max-width: 960px;
687
}
688

  
689
/* Apply the shared properties of grid items in a single, efficient ruleset. */
690
/* line 46, ../sass/layouts/_responsive.scss */
691
#header,
692
#content,
693
#navigation,
694
.region-sidebar-first,
695
.region-sidebar-second,
696
#footer {
697
  padding-left: 20px;
698
  padding-right: 20px;
699
  -moz-box-sizing: border-box;
700
  -webkit-box-sizing: border-box;
701
  -ms-box-sizing: border-box;
702
  box-sizing: border-box;
703
  word-wrap: break-word;
704
  *behavior: url("/polyfills/box-sizing-polyfill/boxsizing.htc");
705
  _display: inline;
706
  _overflow: hidden;
707
  _overflow-y: visible;
708
}
709

  
710
/* Containers for grid items and flow items. */
711
/* line 54, ../sass/layouts/_responsive.scss */
712
#header,
713
#main,
714
#footer {
715
  *position: relative;
716
  *zoom: 1;
717
}
718
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
719
#header:before, #header:after,
720
#main:before,
721
#main:after,
722
#footer:before,
723
#footer:after {
724
  content: "";
725
  display: table;
726
}
727
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
728
#header:after,
729
#main:after,
730
#footer:after {
731
  clear: both;
732
}
733

  
734
/* Navigation bar */
735
/* line 60, ../sass/layouts/_responsive.scss */
736
#main {
737
  padding-top: 60px;
738
  /* Move all the children of #main down to make room. */
739
  padding-bottom: 40px;
740
  position: relative;
741
}
742

  
743
/* line 65, ../sass/layouts/_responsive.scss */
744
#navigation {
745
  position: absolute;
746
  top: 0;
747
  /* Move the navbar up inside #main's padding. */
748
  height: 40px;
749
  width: 100%;
750
}
751

  
752
/**
753
 * Use 3 grid columns for smaller screens.
754

  
755
 * FIXME ?: see sass-old/layouts/responsive-sidebars.scss line 99
756
 */
757
@media all and (min-width: 480px) and (max-width: 959px) {
758
  /**
759
   * The layout when there is only one sidebar, the left one.
760
   */
761
  /* line 87, ../sass/layouts/_responsive.scss */
762
  .sidebar-first {
763
    /* Span 2 columns, starting in 2nd column from left. */
764
    /* Span 1 column, starting in 1st column from left. */
765
  }
766
  /* line 89, ../sass/layouts/_responsive.scss */
767
  .sidebar-first #content {
768
    float: left;
769
    width: 66.66667%;
770
    margin-left: 33.33333%;
771
    margin-right: -100%;
772
  }
773
  /* line 94, ../sass/layouts/_responsive.scss */
774
  .sidebar-first .region-sidebar-first {
775
    float: left;
776
    width: 33.33333%;
777
    margin-left: 0%;
778
    margin-right: -33.33333%;
779
  }
780

  
781
  /**
782
   * The layout when there is only one sidebar, the right one.
783
   */
784
  /* line 102, ../sass/layouts/_responsive.scss */
785
  .sidebar-second {
786
    /* Span 2 columns, starting in 1st column from left. */
787
    /* Span 1 column, starting in 3rd column from left. */
788
  }
789
  /* line 104, ../sass/layouts/_responsive.scss */
790
  .sidebar-second #content {
791
    float: left;
792
    width: 66.66667%;
793
    margin-left: 0%;
794
    margin-right: -66.66667%;
795
  }
796
  /* line 109, ../sass/layouts/_responsive.scss */
797
  .sidebar-second .region-sidebar-second {
798
    float: left;
799
    width: 33.33333%;
800
    margin-left: 66.66667%;
801
    margin-right: -100%;
802
  }
803

  
804
  /**
805
   * The layout when there are two sidebars.
806
   */
807
  /* line 117, ../sass/layouts/_responsive.scss */
808
  .two-sidebars {
809
    /* Span 2 columns, starting in 2nd column from left. */
810
    /* Span 1 column, starting in 1st column from left. */
811
    /* Start a new row and span all 3 columns. */
812
  }
813
  /* line 119, ../sass/layouts/_responsive.scss */
814
  .two-sidebars #content {
815
    float: left;
816
    width: 66.66667%;
817
    margin-left: 33.33333%;
818
    margin-right: -100%;
819
  }
820
  /* line 124, ../sass/layouts/_responsive.scss */
821
  .two-sidebars .region-sidebar-first {
822
    float: left;
823
    width: 33.33333%;
824
    margin-left: 0%;
825
    margin-right: -33.33333%;
826
  }
827
  /* line 129, ../sass/layouts/_responsive.scss */
828
  .two-sidebars .region-sidebar-second {
829
    float: left;
830
    width: 100%;
831
    margin-left: 0%;
832
    margin-right: -100%;
833
    padding-left: 0;
834
    padding-right: 0;
835
    clear: left;
836
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
837
    /* Span 1 column, starting in the 1st column from left. */
838
    /* Span 1 column, starting in the 2nd column from left. */
839
    /* Span 1 column, starting in the 3rd column from left. */
840
  }
841
  /* line 135, ../sass/layouts/_responsive.scss */
842
  .two-sidebars .region-sidebar-second .block {
843
    padding-left: 20px;
844
    padding-right: 20px;
845
    -moz-box-sizing: border-box;
846
    -webkit-box-sizing: border-box;
847
    -ms-box-sizing: border-box;
848
    box-sizing: border-box;
849
    word-wrap: break-word;
850
    *behavior: url("/polyfills/box-sizing-polyfill/boxsizing.htc");
851
    _display: inline;
852
    _overflow: hidden;
853
    _overflow-y: visible;
854
  }
855
  /* line 139, ../sass/layouts/_responsive.scss */
856
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
857
    float: left;
858
    width: 33.33333%;
859
    margin-left: 0%;
860
    margin-right: -33.33333%;
861
    clear: left;
862
  }
863
  /* line 144, ../sass/layouts/_responsive.scss */
864
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
865
    float: left;
866
    width: 33.33333%;
867
    margin-left: 33.33333%;
868
    margin-right: -66.66667%;
869
  }
870
  /* line 148, ../sass/layouts/_responsive.scss */
871
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
872
    float: left;
873
    width: 33.33333%;
874
    margin-left: 66.66667%;
875
    margin-right: -100%;
876
  }
877
}
878
/**
879
 * Use 5 grid columns for larger screens.
880
 */
881
@media all and (min-width: 960px) {
882
  /**
883
   * The layout when there is only one sidebar, the left one.
884
   */
885
  /* line 166, ../sass/layouts/_responsive.scss */
886
  .sidebar-first {
887
    /* Span 4 columns, starting in 2nd column from left. */
888
    /* Span 1 column, starting in 1st column from left. */
889
  }
890
  /* line 168, ../sass/layouts/_responsive.scss */
891
  .sidebar-first #content {
892
    float: left;
893
    width: 75%;
894
    margin-left: 25%;
895
    margin-right: -100%;
896
  }
897
  /* line 173, ../sass/layouts/_responsive.scss */
898
  .sidebar-first .region-sidebar-first {
899
    float: left;
900
    width: 25%;
901
    margin-left: 0%;
902
    margin-right: -25%;
903
  }
904

  
905
  /**
906
   * The layout when there is only one sidebar, the right one.
907
   */
908
  /* line 181, ../sass/layouts/_responsive.scss */
909
  .sidebar-second {
910
    /* Span 4 columns, starting in 1st column from left. */
911
    /* Span 1 column, starting in 5th column from left. */
912
  }
913
  /* line 183, ../sass/layouts/_responsive.scss */
914
  .sidebar-second #content {
915
    float: left;
916
    width: 75%;
917
    margin-left: 0%;
918
    margin-right: -75%;
919
  }
920
  /* line 188, ../sass/layouts/_responsive.scss */
921
  .sidebar-second .region-sidebar-second {
922
    float: left;
923
    width: 25%;
924
    margin-left: 75%;
925
    margin-right: -100%;
926
  }
927

  
928
  /**
929
   * The layout when there are two sidebars.
930
   */
931
  /* line 196, ../sass/layouts/_responsive.scss */
932
  .two-sidebars {
933
    /* Span 3 columns, starting in 2nd column from left. */
934
    /* Span 1 column, starting in 1st column from left. */
935
    /* Span 1 column, starting in 5th column from left. */
936
  }
937
  /* line 198, ../sass/layouts/_responsive.scss */
938
  .two-sidebars #content {
939
    float: left;
940
    width: 50%;
941
    margin-left: 25%;
942
    margin-right: -75%;
943
  }
944
  /* line 203, ../sass/layouts/_responsive.scss */
945
  .two-sidebars .region-sidebar-first {
946
    float: left;
947
    width: 25%;
948
    margin-left: 0%;
949
    margin-right: -25%;
950
  }
951
  /* line 208, ../sass/layouts/_responsive.scss */
952
  .two-sidebars .region-sidebar-second {
953
    float: left;
954
    width: 25%;
955
    margin-left: 75%;
956
    margin-right: -100%;
957
  }
958
}
959
/* Component (SMACSS module) rules */
960
/**
961
 * @file
962
 * SMACSS Modules
963
 *
964
 * Adds modular sets of styles.
965
 *
966
 * Additional useful selectors can be found in Zen's online documentation.
967
 * https://drupal.org/node/1707736
968
 */
969
/**
970
 * Wireframes.
971
 */
972
/* line 22, ../sass/components/_misc.scss */
973
.with-wireframes #header,
974
.with-wireframes #main,
975
.with-wireframes #content,
976
.with-wireframes #navigation,
977
.with-wireframes .region-sidebar-first,
978
.with-wireframes .region-sidebar-second,
979
.with-wireframes #footer,
980
.with-wireframes .region-bottom {
981
  outline: 1px solid #ccc;
982
}
983
/* line 26, ../sass/components/_misc.scss */
984
.lt-ie8 .with-wireframes #header, .lt-ie8
985
.with-wireframes #main, .lt-ie8
986
.with-wireframes #content, .lt-ie8
987
.with-wireframes #navigation, .lt-ie8
988
.with-wireframes .region-sidebar-first, .lt-ie8
989
.with-wireframes .region-sidebar-second, .lt-ie8
990
.with-wireframes #footer, .lt-ie8
991
.with-wireframes .region-bottom {
992
  /* IE6/7 do not support the outline property. */
993
  border: 1px solid #ccc;
994
}
995

  
996
/**
997
 * Accessibility features.
998
 */
999
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
1000
/* line 40, ../sass/components/_misc.scss */
1001
.element-invisible,
1002
.element-focusable,
1003
#navigation .block-menu .block__title,
1004
#navigation .block-menu-block .block__title {
1005
  position: absolute !important;
1006
  height: 1px;
1007
  width: 1px;
1008
  overflow: hidden;
1009
  clip: rect(1px 1px 1px 1px);
1010
  clip: rect(1px, 1px, 1px, 1px);
1011
}
1012

  
1013
/* Turns off the element-invisible effect. */
1014
/* line 45, ../sass/components/_misc.scss */
1015
.element-focusable:active, .element-focusable:focus {
1016
  position: static !important;
1017
  clip: auto;
1018
  height: auto;
1019
  width: auto;
1020
  overflow: auto;
1021
}
1022

  
1023
/*
1024
 * The skip-link link will be completely hidden until a user tabs to the link.
1025
 */
1026
/* line 62, ../sass/components/_misc.scss */
1027
#skip-link {
1028
  margin: 0;
1029
}
1030
/* line 66, ../sass/components/_misc.scss */
1031
#skip-link a,
1032
#skip-link a:visited {
1033
  display: block;
1034
  width: 100%;
1035
  padding: 2px 0 3px 0;
1036
  text-align: center;
1037
  background-color: #666;
1038
  color: white;
1039
}
1040

  
1041
/**
1042
 * Branding header.
1043
 */
1044
/* Wrapping link for logo. */
1045
/* line 81, ../sass/components/_misc.scss */
1046
.header__logo {
1047
  float: left;
1048
  /* LTR */
1049
  margin: 0;
1050
  padding: 0;
1051
}
1052

  
1053
/* Logo image. */
1054
/* line 88, ../sass/components/_misc.scss */
1055
.header__logo-image {
1056
  vertical-align: bottom;
1057
}
1058

  
1059
/* Wrapper for website name and slogan. */
1060
/* line 93, ../sass/components/_misc.scss */
1061
.header__name-and-slogan {
1062
  float: left;
1063
}
1064

  
1065
/* The name of the website. */
1066
/* line 98, ../sass/components/_misc.scss */
1067
.header__site-name {
1068
  margin: 0;
1069
  font-size: 2em;
1070
  line-height: 1.5em;
1071
}
1072

  
1073
/* The link around the name of the website. */
1074
/* line 106, ../sass/components/_misc.scss */
1075
.header__site-link:link, .header__site-link:visited {
1076
  color: #000;
1077
  text-decoration: none;
1078
}
1079
/* line 112, ../sass/components/_misc.scss */
1080
.header__site-link:hover, .header__site-link:focus {
1081
  text-decoration: underline;
1082
}
1083

  
1084
/* The slogan (or tagline) of a website. */
1085
/* line 118, ../sass/components/_misc.scss */
1086
.header__site-slogan {
1087
  margin: 0;
1088
}
1089

  
1090
/* The secondary menu (login, etc.) */
1091
/* line 123, ../sass/components/_misc.scss */
1092
.header__secondary-menu {
1093
  float: right;
1094
  /* LTR */
1095
}
1096

  
1097
/* Wrapper for any blocks placed in the header region. */
1098
/* line 128, ../sass/components/_misc.scss */
1099
.header__region {
1100
  /* Clear the logo. */
1101
  clear: both;
1102
}
1103

  
1104
/**
1105
 * Navigation bar.
1106
 */
1107
/* line 136, ../sass/components/_misc.scss */
1108
#navigation {
1109
  /* Sometimes you want to prevent overlapping with main div. */
1110
  /* overflow: hidden; */
1111
  /* Main menu and secondary menu links and menu block links. */
1112
}
1113
/* line 140, ../sass/components/_misc.scss */
1114
#navigation .block {
1115
  margin-bottom: 0;
1116
}
1117
/* line 151, ../sass/components/_misc.scss */
1118
#navigation .links,
1119
#navigation .menu {
1120
  margin: 0;
1121
  padding: 0;
1122
  margin-left: -20px;
1123
  text-align: left;
1124
  /* LTR */
1125
  display: block;
1126
}
1127
/* line 158, ../sass/components/_misc.scss */
1128
#navigation .links li,
1129
#navigation .menu li {
1130
  /* A simple method to get navigation links to appear in one line. */
1131
  float: left;
1132
  /* LTR */
1133
  line-height: 20px;
1134
  padding: 0 20px;
1135
  list-style-type: none;
1136
  list-style-image: none;
1137
  border-left: 1px solid black;
1138
  border-right: 1px solid black;
1139
  margin-left: -1px;
1140
  /* collapse borders */
1141
}
1142
/* line 169, ../sass/components/_misc.scss */
1143
#navigation .links li.first,
1144
#navigation .menu li.first {
1145
  border-left: 0;
1146
}
1147
/* line 173, ../sass/components/_misc.scss */
1148
#navigation .links li.last,
1149
#navigation .menu li.last {
1150
  border-right: 0;
1151
}
1152

  
1153
/* line 180, ../sass/components/_misc.scss */
1154
#page {
1155
  -webkit-box-shadow: 0px 5px 20px black;
1156
  -moz-box-shadow: 0px 5px 20px black;
1157
  box-shadow: 0px 5px 20px black;
1158
  padding-top: 20px;
1159
  background-color: white;
1160
}
1161

  
1162
/* line 189, ../sass/components/_misc.scss */
1163
#sub-header {
1164
  clear: both;
1165
  min-height: 20px;
1166
}
1167
/* line 192, ../sass/components/_misc.scss */
1168
#sub-header #site-name {
1169
  /* in this position the site-name needs different styles */
1170
  font-weight: lighter;
1171
}
1172

  
1173
/* line 199, ../sass/components/_misc.scss */
1174
#logo {
1175
  /* Wrapping link for logo */
1176
  float: left;
1177
  /* LTR */
1178
  margin: 0;
1179
  margin-right: 20px;
1180
  padding: 0;
1181
}
1182
/* line 205, ../sass/components/_misc.scss */
1183
#logo img {
1184
  vertical-align: bottom;
1185
}
1186

  
1187
/* fixes oversized icons */
1188
/* line 211, ../sass/components/_misc.scss */
1189
#admin-menu .dropdown .admin-menu-icon img {
1190
  height: 18px;
1191
}
1192

  
1193
/* line 215, ../sass/components/_misc.scss */
1194
#name-and-slogan {
1195
  /* Wrapper for website name and slogan */
1196
  float: left;
1197
  margin-right: 20px;
1198
}
1199

  
1200
/* line 221, ../sass/components/_misc.scss */
1201
#site-name {
1202
  /* The name of the website */
1203
  font-size: 2.5em;
1204
  font-weight: bold;
1205
  line-height: 1.5em;
1206
  margin: 0;
1207
}
1208
/* line 228, ../sass/components/_misc.scss */
1209
#site-name a:link,
1210
#site-name a:visited {
1211
  color: #fff;
1212
  text-decoration: none;
1213
}
1214
/* line 234, ../sass/components/_misc.scss */
1215
#site-name a:hover,
1216
#site-name a:focus {
1217
  color: #fff;
1218
  text-decoration: none;
1219
}
1220

  
1221
/* line 242, ../sass/components/_misc.scss */
1222
#main-menu {
1223
  padding: 5px 0;
1224
  padding-left: 53px;
1225
  background-color: #dedede;
1226
  display: block;
1227
  font-size: 14.4px;
1228
}
1229
/* line 249, ../sass/components/_misc.scss */
1230
#main-menu a:link,
1231
#main-menu a:visited {
1232
  color: black;
1233
  text-decoration: none;
1234
}
1235
/* line 255, ../sass/components/_misc.scss */
1236
#main-menu a:hover,
1237
#main-menu a:focus {
1238
  text-decoration: underline;
1239
}
1240

  
1241
/**
1242
 * Breadcrumb navigation.
1243
 */
1244
/* line 265, ../sass/components/_misc.scss */
1245
.breadcrumb ol {
1246
  margin: 0;
1247
  padding: 0;
1248
}
1249
/* line 269, ../sass/components/_misc.scss */
1250
.breadcrumb li {
1251
  display: inline;
1252
  list-style-type: none;
1253
  margin: 0;
1254
  padding: 0;
1255
}
1256

  
1257
/**
1258
 * Titles.
1259
 */
1260
/* line 285, ../sass/components/_misc.scss */
1261
.page__title,
1262
.node__title,
1263
.block__title,
1264
.comments__title,
1265
.comments__form-title,
1266
.comment__title {
1267
  /* Comment title. */
1268
  margin: 0;
1269
}
1270

  
1271
/* line 289, ../sass/components/_misc.scss */
1272
.node__title {
1273
  display: none;
1274
}
1275

  
1276
/**
1277
 * Messages.
1278
 */
1279
/* line 296, ../sass/components/_misc.scss */
1280
.messages, .messages--status, .messages--warning, .messages--error {
1281
  margin: 1.5em 0;
1282
  padding: 10px 10px 10px 50px;
1283
  /* LTR */
1284
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
1285
  *background-image: url('../images/message-24-ok.png?1475577735');
1286
  background-position: 8px 8px;
1287
  /* LTR */
1288
  background-repeat: no-repeat;
1289
  border: 1px solid #be7;
1290
}
1291

  
1292
/* line 311, ../sass/components/_misc.scss */
1293
.messages--warning {
1294
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
1295
  *background-image: url('../images/message-24-warning.png?1475577735');
1296
  border-color: #ed5;
1297
}
1298

  
1299
/* line 320, ../sass/components/_misc.scss */
1300
.messages--error {
1301
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
1302
  *background-image: url('../images/message-24-error.png?1475577735');
1303
  border-color: #ed541d;
1304
}
1305

  
1306
/* line 330, ../sass/components/_misc.scss */
1307
.messages__list {
1308
  margin: 0;
1309
}
1310

  
1311
/* line 333, ../sass/components/_misc.scss */
1312
.messages__item {
1313
  list-style-image: none;
1314
}
1315

  
1316
/* Core/module installation error messages. */
1317
/* line 338, ../sass/components/_misc.scss */
1318
.messages--error p.error {
1319
  color: #333;
1320
}
1321

  
1322
/* System status report. */
1323
/* line 344, ../sass/components/_misc.scss */
1324
.ok,
1325
.messages--status {
1326
  background-color: #f8fff0;
1327
  color: #234600;
1328
}
1329

  
1330
/* line 349, ../sass/components/_misc.scss */
1331
.warning,
1332
.messages--warning {
1333
  background-color: #fffce5;
1334
  color: #840;
1335
}
1336

  
1337
/* line 354, ../sass/components/_misc.scss */
1338
.error,
1339
.messages--error {
1340
  background-color: #fef5f1;
1341
  color: #8c2e0b;
1342
}
1343

  
1344
/**
1345
 * Tabs.
1346
 */
1347
/* Basic positioning styles shared by primary and secondary tabs. */
1348
/* line 364, ../sass/components/_misc.scss */
1349
.tabs-primary, .tabs-secondary {
1350
  overflow: hidden;
1351
  *zoom: 1;
1352
  background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
1353
  background: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
1354
  background: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
1355
  background: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
1356
  -pie-background: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
1357
  background: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
1358
  /* IE 9 and earlier don't understand gradients. */
1359
  list-style: none;
1360
  border-bottom: 1px solid #bbbbbb \0/ie;
1361
  margin: 1.5em 0;
1362
  padding: 0 2px;
1363
  white-space: nowrap;
1364
}
1365

  
1366
/* line 374, ../sass/components/_misc.scss */
1367
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
1368
.tabs-secondary__tab.is-active {
1369
  float: left;
1370
  /* LTR */
1371
  margin: 0 3px;
1372
}
1373

  
1374
/* line 378, ../sass/components/_misc.scss */
1375
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
1376
  border: 1px solid #e9e9e9;
1377
  border-right: 0;
1378
  border-bottom: 0;
1379
  display: block;
1380
  line-height: 1.5em;
1381
  text-decoration: none;
1382
}
1383

  
1384
/* Primary tabs. */
1385
/* line 391, ../sass/components/_misc.scss */
1386
.tabs-primary__tab, .tabs-primary__tab.is-active {
1387
  -moz-border-radius-topleft: 4px;
1388
  -webkit-border-top-left-radius: 4px;
1389
  border-top-left-radius: 4px;
1390
  -moz-border-radius-topright: 4px;
1391
  -webkit-border-top-right-radius: 4px;
1392
  border-top-right-radius: 4px;
1393
  text-shadow: 1px 1px 0 white;
1394
  border: 1px solid #bbbbbb;
1395
  border-bottom-color: transparent;
1396
  /* IE 9 and earlier don't understand gradients. */
1397
  border-bottom: 0 \0/ie;
1398
}
1399

  
1400
/* line 400, ../sass/components/_misc.scss */
1401
.is-active.tabs-primary__tab {
1402
  border-bottom-color: white;
1403
}
1404

  
1405
/* line 406, ../sass/components/_misc.scss */
1406
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
1407
  -moz-border-radius-topleft: 4px;
1408
  -webkit-border-top-left-radius: 4px;
1409
  border-top-left-radius: 4px;
1410
  -moz-border-radius-topright: 4px;
1411
  -webkit-border-top-right-radius: 4px;
1412
  border-top-right-radius: 4px;
1413
  -webkit-transition: background-color 0.3s;
1414
  -moz-transition: background-color 0.3s;
1415
  -o-transition: background-color 0.3s;
1416
  transition: background-color 0.3s;
1417
  color: #333;
1418
  background-color: #dedede;
1419
  letter-spacing: 1px;
1420
  padding: 0 1em;
1421
  text-align: center;
1422
}
1423

  
1424
/* line 416, ../sass/components/_misc.scss */
1425
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
1426
  background-color: #e9e9e9;
1427
  border-color: #f2f2f2;
1428
}
1429

  
1430
/* line 420, ../sass/components/_misc.scss */
1431
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
1432
  background-color: transparent;
1433
  *zoom: 1;
1434
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
1435
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
1436
  background: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1437
  background: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1438
  background: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1439
  -pie-background: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1440
  background: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1441
  border-color: #fff;
1442
}
1443

  
1444
/* Secondary tabs. */
1445
/* line 444, ../sass/components/_misc.scss */
1446
.tabs-secondary {
1447
  font-size: .9em;
1448
  /* Collapse bottom margin of ul.primary. */
1449
  margin-top: -1.5em;
1450
}
1451

  
1452
/* line 451, ../sass/components/_misc.scss */
1453
.tabs-secondary__tab,
1454
.tabs-secondary__tab.is-active {
1455
  margin: 0.75em 3px;
1456
}
1457

  
1458
/* line 457, ../sass/components/_misc.scss */
1459
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
1460
  -webkit-border-radius: 0.75em;
1461
  -moz-border-radius: 0.75em;
1462
  -ms-border-radius: 0.75em;
1463
  -o-border-radius: 0.75em;
1464
  border-radius: 0.75em;
1465
  -webkit-transition: background-color 0.3s;
1466
  -moz-transition: background-color 0.3s;
1467
  -o-transition: background-color 0.3s;
1468
  transition: background-color 0.3s;
1469
  text-shadow: 1px 1px 0 white;
1470
  background-color: #f2f2f2;
1471
  color: #666;
1472
  padding: 0 .5em;
1473
}
1474

  
1475
/* line 466, ../sass/components/_misc.scss */
1476
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
1477
  background-color: #dedede;
1478
  border-color: #999;
1479
  color: #333;
1480
}
1481

  
1482
/* line 471, ../sass/components/_misc.scss */
1483
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
1484
  text-shadow: 1px 1px 0 #333333;
1485
  background-color: #666;
1486
  border-color: #000;
1487
  color: #fff;
1488
}
1489

  
1490
/**
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff