Project

General

Profile

Download (64.8 KB) Statistics
| Branch: | Tag: | Revision:
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/notosans-webfont-2017-2/stylesheet.css");
10
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
11
/* HTML element (SMACSS base) rules */
12
/**
13
 * @file
14
 * Normalize.css is intended to be used as an alternative to CSS resets.
15
 *
16
 * This file is a slight fork of these original sources:
17
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
18
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
19
 *
20
 * It's suggested that you read the normalize.scss file and customise it to meet
21
 * your needs, rather then including the file in your project and overriding the
22
 * defaults later in your CSS.
23
 * @see http://nicolasgallagher.com/about-normalize-css/
24
 *
25
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
26
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
27
 */
28
/**
29
 * HTML5 display definitions
30
 */
31
/* Correct `block` display not defined in IE 8/9. */
32
@import url("../fonts/notosans-webfont-2017-2/stylesheet.css");
33
@import url("../fonts/notomono-webfont-2020/stylesheet.css");
34
/* line 23, ../sass/_normalize.scss */
35
article,
36
aside,
37
details,
38
figcaption,
39
figure,
40
footer,
41
header,
42
main,
43
nav,
44
section,
45
summary {
46
  display: block;
47
}
48

    
49
/* Correct `inline-block` display not defined in IE 8/9. */
50
/* line 38, ../sass/_normalize.scss */
51
audio,
52
canvas,
53
video {
54
  display: inline-block;
55
  *display: inline;
56
  *zoom: 1;
57
}
58

    
59
/**
60
 * Prevent modern browsers from displaying `audio` without controls.
61
 * Remove excess height in iOS 5 devices.
62
 */
63
/* line 52, ../sass/_normalize.scss */
64
audio:not([controls]) {
65
  display: none;
66
  height: 0;
67
}
68

    
69
/* Address styling not present in IE 8/9. */
70
/* line 58, ../sass/_normalize.scss */
71
[hidden] {
72
  display: none;
73
}
74

    
75
/**
76
 * Base
77
 *
78
 * Instead of relying on the fonts that are available on a user's computer, you
79
 * can use web fonts which, like images, are resources downloaded to the user's
80
 * browser. Because of the bandwidth and rendering resources required, web fonts
81
 * should be used with care.
82
 *
83
 * Numerous resources for web fonts can be found on Google. Here are a few
84
 * websites where you can find Open Source fonts to download:
85
 * - http://www.fontsquirrel.com/fontface
86
 * - http://www.theleagueofmoveabletype.com
87
 *
88
 * In order to use these fonts, you will need to convert them into formats
89
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
90
 * Font-Face Generator:
91
 *   http://www.fontsquirrel.com/fontface/generator
92
 *
93
 * The following is an example @font-face declaration. This font can then be
94
 * used in any ruleset using a property like this:  font-family: Example, serif;
95
 *
96
 * Since we're using Sass, you'll need to declare your font faces here, then you
97
 * can add them to the font variables in the _init.scss partial.
98
 */
99
/*
100
@font-face {
101
  font-family: 'Example';
102
  src: url('../fonts/example.eot');
103
  src: url('../fonts/example.eot?iefix') format('eot'),
104
    url('../fonts/example.woff') format('woff'),
105
    url('../fonts/example.ttf') format('truetype'),
106
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
107
  font-weight: normal;
108
  font-style: normal;
109
}
110
*/
111
/**
112
 * 1. Set default font family to sans-serif.
113
 * 2. Prevent iOS text size adjust after orientation change, without disabling
114
 *    user zoom.
115
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
116
 *    `em` units.
117
 */
118
/* line 106, ../sass/_normalize.scss */
119
html {
120
  font-family: "Noto Sans", sans-serif;
121
  /* 1 */
122
  font-size: 87.5%;
123
  /* 3 */
124
  -ms-text-size-adjust: 100%;
125
  /* 2 */
126
  -webkit-text-size-adjust: 100%;
127
  /* 2 */
128
  line-height: 1.6em;
129
}
130

    
131
/* Address `font-family` inconsistency between `textarea` and other form elements. */
132
/* line 117, ../sass/_normalize.scss */
133
button,
134
input,
135
select,
136
textarea {
137
  font-family: "Noto Sans", sans-serif;
138
}
139

    
140
/* Remove default margin. */
141
/* line 126, ../sass/_normalize.scss */
142
body {
143
  margin: 0;
144
  padding: 0;
145
}
146

    
147
/**
148
 * Links
149
 *
150
 * The order of link states are based on Eric Meyer's article:
151
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
152
 */
153
/* Address `outline` inconsistency between Chrome and other browsers. */
154
/* line 148, ../sass/_normalize.scss */
155
a:focus {
156
  outline: thin dotted;
157
}
158

    
159
/* Improve readability when focused and also mouse hovered in all browsers. */
160
/* line 153, ../sass/_normalize.scss */
161
a:active,
162
a:hover {
163
  outline: 0;
164
}
165

    
166
/**
167
 * Typography
168
 *
169
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
170
 * so that the line height of our base font becomes the basic unit of vertical
171
 * measurement. We use multiples of that unit to set the top and bottom margins
172
 * for our block level elements and to set the line heights of any fonts.
173
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
174
 */
175
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
176
/* line 169, ../sass/_normalize.scss */
177
p,
178
pre {
179
  margin: 1.6em 0;
180
}
181

    
182
/* line 173, ../sass/_normalize.scss */
183
blockquote {
184
  /* Also indent the quote on both sides. */
185
  margin: 1.6em 30px;
186
}
187

    
188
/**
189
 * Address variable `h1` font-size and margin within `section` and `article`
190
 * contexts in Firefox 4+, Safari 5, and Chrome.
191
 */
192
/* line 182, ../sass/_normalize.scss */
193
h1 {
194
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
195
  font-size: 2em;
196
  line-height: 1.6em;
197
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
198
  margin-top: 0.8em;
199
  margin-bottom: 0.8em;
200
}
201

    
202
/* line 190, ../sass/_normalize.scss */
203
h2 {
204
  font-size: 1.6em;
205
  line-height: 2em;
206
  margin-top: 1em;
207
  margin-bottom: 1em;
208
}
209

    
210
/* line 195, ../sass/_normalize.scss */
211
h3 {
212
  font-size: 1.5em;
213
  line-height: 2.13333em;
214
  margin-top: 1.06667em;
215
  margin-bottom: 1.06667em;
216
}
217

    
218
/* line 200, ../sass/_normalize.scss */
219
h4 {
220
  font-size: 1em;
221
  line-height: 1.6em;
222
  margin-top: 1.6em;
223
  margin-bottom: 1.6em;
224
}
225

    
226
/* line 205, ../sass/_normalize.scss */
227
h5 {
228
  font-size: 0.83em;
229
  line-height: 1.92771em;
230
  margin-top: 1.92771em;
231
  margin-bottom: 1.92771em;
232
}
233

    
234
/* line 210, ../sass/_normalize.scss */
235
h6 {
236
  font-size: 0.67em;
237
  line-height: 2.38806em;
238
  margin-top: 2.38806em;
239
  margin-bottom: 2.38806em;
240
}
241

    
242
/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
243
/* line 217, ../sass/_normalize.scss */
244
abbr[title] {
245
  border-bottom: 1px dotted;
246
}
247

    
248
/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
249
/* line 222, ../sass/_normalize.scss */
250
b,
251
strong {
252
  font-weight: bold;
253
}
254

    
255
/* Address styling not present in Safari 5 and Chrome. */
256
/* line 228, ../sass/_normalize.scss */
257
dfn {
258
  font-style: italic;
259
}
260

    
261
/* Address differences between Firefox and other browsers. */
262
/* line 233, ../sass/_normalize.scss */
263
hr {
264
  -moz-box-sizing: content-box;
265
  -webkit-box-sizing: content-box;
266
  box-sizing: content-box;
267
  height: 0;
268
  border: 1px solid #666;
269
  padding-bottom: -1px;
270
  margin: 1.6em 0;
271
}
272

    
273
/* Address styling not present in IE 8/9. */
274
/* line 242, ../sass/_normalize.scss */
275
mark {
276
  background: #ff0;
277
  color: #000;
278
}
279

    
280
/* Correct font family set oddly in Safari 5 and Chrome. */
281
/* line 248, ../sass/_normalize.scss */
282
code,
283
kbd,
284
pre,
285
samp,
286
tt,
287
var {
288
  font-family: "Noto Mono", sans-serif;
289
  _font-family: 'courier new', monospace;
290
  font-size: 1em;
291
  line-height: 1.6em;
292
}
293

    
294
/* Improve readability of pre-formatted text in all browsers. */
295
/* line 262, ../sass/_normalize.scss */
296
pre {
297
  white-space: pre;
298
  white-space: pre-wrap;
299
  word-wrap: break-word;
300
}
301

    
302
/* Set consistent quote types. */
303
/* line 274, ../sass/_normalize.scss */
304
q {
305
  quotes: "\201C" "\201D" "\2018" "\2019";
306
}
307

    
308
/* Address inconsistent and variable font size in all browsers. */
309
/* line 279, ../sass/_normalize.scss */
310
small {
311
  font-size: 80%;
312
}
313

    
314
/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
315
/* line 284, ../sass/_normalize.scss */
316
sub,
317
sup {
318
  font-size: 75%;
319
  line-height: 0;
320
  position: relative;
321
  vertical-align: baseline;
322
}
323

    
324
/* line 291, ../sass/_normalize.scss */
325
sup {
326
  top: -0.5em;
327
}
328

    
329
/* line 294, ../sass/_normalize.scss */
330
sub {
331
  bottom: -0.25em;
332
}
333

    
334
/**
335
 * Lists
336
 */
337
/* line 301, ../sass/_normalize.scss */
338
dl,
339
menu,
340
ol,
341
ul,
342
.item-list ul {
343
  /* Address margins set differently in IE 6/7. */
344
  margin: 14px 0;
345
}
346

    
347
/* line 312, ../sass/_normalize.scss */
348
ol ol,
349
ol ul,
350
ul ol,
351
ul ul {
352
  /* Turn off margins on nested lists. */
353
  margin: 0;
354
}
355

    
356
/* line 318, ../sass/_normalize.scss */
357
dd {
358
  margin: 0 0 0 30px;
359
  /* LTR */
360
}
361

    
362
/* Address paddings set differently in IE 6/7. */
363
/* line 323, ../sass/_normalize.scss */
364
menu,
365
ol,
366
ul {
367
  padding: 0 0 0 30px;
368
  /* LTR */
369
}
370

    
371
/* Correct list images handled incorrectly in IE 7. */
372
/* line 331, ../sass/_normalize.scss */
373
nav ul,
374
nav ol {
375
  list-style: none;
376
  list-style-image: none;
377
}
378

    
379
/**
380
 * Embedded content and figures
381
 *
382
 * @todo Look into adding responsive embedded video.
383
 */
384
/* line 343, ../sass/_normalize.scss */
385
img {
386
  /* Remove border when inside `a` element in IE 8/9. */
387
  border: 0;
388
  /* Improve image quality when scaled in IE 7. */
389
  -ms-interpolation-mode: bicubic;
390
  /* Suppress the space beneath the baseline */
391
  /* vertical-align: bottom; */
392
  /* Responsive images */
393
  max-width: 100%;
394
  height: auto;
395
}
396
/* line 358, ../sass/_normalize.scss */
397
img .lt-ie9 {
398
  /* Correct IE 8 not scaling image height when resized. */
399
  width: auto;
400
}
401

    
402
/* Correct overflow displayed oddly in IE 9. */
403
/* line 366, ../sass/_normalize.scss */
404
svg:not(:root) {
405
  overflow: hidden;
406
}
407

    
408
/* Address margin not present in IE 8/9 and Safari 5. */
409
/* line 371, ../sass/_normalize.scss */
410
figure {
411
  margin: 0;
412
}
413

    
414
/**
415
 * Forms
416
 */
417
/* Correct margin displayed oddly in IE 6/7. */
418
/* line 381, ../sass/_normalize.scss */
419
form {
420
  margin: 0;
421
}
422

    
423
/* Define consistent border, margin, and padding. */
424
/* line 387, ../sass/_normalize.scss */
425
fieldset {
426
  margin: 0 2px;
427
  /* Apply borders and padding that keep the vertical rhythm. */
428
  border-color: #c0c0c0;
429
  border-top-width: 0.07143em;
430
  border-top-style: solid;
431
  padding-top: 0.48857em;
432
  border-bottom-width: 0.07143em;
433
  border-bottom-style: solid;
434
  padding-bottom: 0.96857em;
435
  border-left-width: 0.07143em;
436
  border-left-style: solid;
437
  padding-left: 0.96857em;
438
  border-right-width: 0.07143em;
439
  border-right-style: solid;
440
  padding-right: 0.96857em;
441
}
442

    
443
/**
444
 * 1. Correct `color` not being inherited in IE 8/9.
445
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
446
 * 3. Correct alignment displayed oddly in IE 6/7.
447
 */
448
/* line 402, ../sass/_normalize.scss */
449
legend {
450
  border: 0;
451
  /* 1 */
452
  padding: 0;
453
  /* 2 */
454
  *margin-left: -7px;
455
  /* 3 */
456
  /* LTR */
457
}
458

    
459
/**
460
 * 1. Correct font family not being inherited in all browsers.
461
 * 2. Correct font size not being inherited in all browsers.
462
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
463
 * 4. Improve appearance and consistency with IE 6/7.
464
 * 5. Keep form elements constrained in their containers.
465
 */
466
/* line 417, ../sass/_normalize.scss */
467
button,
468
input,
469
select,
470
textarea {
471
  font-family: inherit;
472
  /* 1 */
473
  font-size: 100%;
474
  /* 2 */
475
  margin: 0;
476
  /* 3 */
477
  vertical-align: baseline;
478
  /* 4 */
479
  *vertical-align: middle;
480
  /* 4 */
481
  max-width: 100%;
482
  /* 5 */
483
  -moz-box-sizing: border-box;
484
  -webkit-box-sizing: border-box;
485
  box-sizing: border-box;
486
  /* 5 */
487
}
488

    
489
/**
490
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
491
 * the UA stylesheet.
492
 */
493
/* line 436, ../sass/_normalize.scss */
494
button,
495
input {
496
  line-height: normal;
497
}
498

    
499
/**
500
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
501
 * All other form control elements do not inherit `text-transform` values.
502
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
503
 * Correct `select` style inheritance in Firefox 4+ and Opera.
504
 */
505
/* line 447, ../sass/_normalize.scss */
506
button,
507
select {
508
  text-transform: none;
509
}
510

    
511
/**
512
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
513
 *    and `video` controls.
514
 * 2. Correct inability to style clickable `input` types in iOS.
515
 * 3. Improve usability and consistency of cursor style between image-type
516
 *    `input` and others.
517
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
518
 *    Known issue: inner spacing remains in IE 6.
519
 */
520
/* line 461, ../sass/_normalize.scss */
521
button,
522
html input[type="button"],
523
input[type="reset"],
524
input[type="submit"] {
525
  -webkit-appearance: button;
526
  /* 2 */
527
  cursor: pointer;
528
  /* 3 */
529
  *overflow: visible;
530
  /* 4 */
531
}
532

    
533
/**
534
 * Re-set default cursor for disabled elements.
535
 */
536
/* line 475, ../sass/_normalize.scss */
537
button[disabled],
538
html input[disabled] {
539
  cursor: default;
540
}
541

    
542
/**
543
 * 1. Address box sizing set to `content-box` in IE 8/9.
544
 * 2. Remove excess padding in IE 8/9.
545
 * 3. Remove excess padding in IE 7.
546
 *    Known issue: excess padding remains in IE 6.
547
 */
548
/* line 486, ../sass/_normalize.scss */
549
input[type="checkbox"],
550
input[type="radio"] {
551
  -moz-box-sizing: border-box;
552
  -webkit-box-sizing: border-box;
553
  box-sizing: border-box;
554
  /* 1 */
555
  padding: 0;
556
  /* 2 */
557
  *height: 13px;
558
  /* 3 */
559
  *width: 13px;
560
  /* 3 */
561
}
562

    
563
/**
564
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
565
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
566
 *    (include `-moz` to future-proof).
567
 */
568
/* line 501, ../sass/_normalize.scss */
569
input[type="search"] {
570
  -webkit-appearance: textfield;
571
  /* 1 */
572
  -moz-box-sizing: content-box;
573
  -webkit-box-sizing: content-box;
574
  box-sizing: content-box;
575
  /* 2 */
576
}
577

    
578
/**
579
 * Remove inner padding and search cancel button in Safari 5 and Chrome
580
 * on OS X.
581
 */
582
/* line 510, ../sass/_normalize.scss */
583
input[type="search"]::-webkit-search-cancel-button,
584
input[type="search"]::-webkit-search-decoration {
585
  -webkit-appearance: none;
586
}
587

    
588
/* Remove inner padding and border in Firefox 4+. */
589
/* line 516, ../sass/_normalize.scss */
590
button::-moz-focus-inner,
591
input::-moz-focus-inner {
592
  border: 0;
593
  padding: 0;
594
}
595

    
596
/**
597
 * 1. Remove default vertical scrollbar in IE 8/9.
598
 * 2. Improve readability and alignment in all browsers.
599
 */
600
/* line 526, ../sass/_normalize.scss */
601
textarea {
602
  overflow: auto;
603
  /* 1 */
604
  vertical-align: top;
605
  /* 2 */
606
}
607

    
608
/* Drupal-style form labels. */
609
/* line 532, ../sass/_normalize.scss */
610
label {
611
  display: block;
612
  font-weight: bold;
613
}
614

    
615
/**
616
 * Tables
617
 */
618
/* line 540, ../sass/_normalize.scss */
619
table {
620
  /* Remove most spacing between table cells. */
621
  border-collapse: collapse;
622
  border-spacing: 0;
623
  /* Prevent cramped-looking tables */
624
  /* width: 100%; */
625
  /* Add vertical rhythm margins. */
626
  margin-top: 1.6em;
627
  margin-bottom: 1.6em;
628
}
629

    
630
/* line 551, ../sass/_normalize.scss */
631
td {
632
  vertical-align: top;
633
  text-align: left;
634
}
635

    
636
/* Layout rules */
637
/**
638
 * @file
639
 * Positioning for a responsive layout.
640
 *
641
 * Define CSS classes to create a fluid grid layout with optional sidebars
642
 * depending on whether blocks are placed in the left or right sidebars.
643
 *
644
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
645
 */
646
/**
647
 * Center the page.
648
 *
649
 * For screen sizes larger than 1200px, prevent excessively long lines of text
650
 * by setting a max-width.
651
 */
652
/* line 33, ../sass/layouts/_responsive.scss */
653
#page,
654
.region-bottom {
655
  margin-left: auto;
656
  margin-right: auto;
657
  max-width: 960px;
658
}
659

    
660
/* Apply the shared properties of grid items in a single, efficient ruleset. */
661
/* line 41, ../sass/layouts/_responsive.scss */
662
#header,
663
#content,
664
#navigation,
665
.region-sidebar-first,
666
.region-sidebar-second,
667
#footer {
668
  padding-left: 20px;
669
  padding-right: 20px;
670
  -moz-box-sizing: border-box;
671
  -webkit-box-sizing: border-box;
672
  -ms-box-sizing: border-box;
673
  box-sizing: border-box;
674
  word-wrap: break-word;
675
  *behavior: url("/polyfills/box-sizing-polyfill/boxsizing.htc");
676
  _display: inline;
677
  _overflow: hidden;
678
  _overflow-y: visible;
679
}
680

    
681
/* Containers for grid items and flow items. */
682
/* line 52, ../sass/layouts/_responsive.scss */
683
#header,
684
#main,
685
#footer {
686
  *position: relative;
687
  *zoom: 1;
688
}
689
/* line 45, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
690
#header:before, #header:after,
691
#main:before,
692
#main:after,
693
#footer:before,
694
#footer:after {
695
  content: "";
696
  display: table;
697
}
698
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
699
#header:after,
700
#main:after,
701
#footer:after {
702
  clear: both;
703
}
704

    
705
/* Navigation bar */
706
/* line 60, ../sass/layouts/_responsive.scss */
707
#main {
708
  padding-top: 60px;
709
  /* Move all the children of #main down to make room. */
710
  padding-bottom: 40px;
711
  position: relative;
712
}
713

    
714
/* line 65, ../sass/layouts/_responsive.scss */
715
#navigation {
716
  position: absolute;
717
  top: 0;
718
  /* Move the navbar up inside #main's padding. */
719
  height: 40px;
720
  width: 100%;
721
}
722

    
723
/**
724
 * Use 3 grid columns for smaller screens.
725

    
726
 * FIXME ?: see sass-old/layouts/responsive-sidebars.scss line 99
727
 */
728
@media all and (min-width: 480px) and (max-width: 959px) {
729
  /**
730
   * The layout when there is only one sidebar, the left one.
731
   */
732
  /* line 87, ../sass/layouts/_responsive.scss */
733
  .sidebar-first {
734
    /* Span 2 columns, starting in 2nd column from left. */
735
    /* Span 1 column, starting in 1st column from left. */
736
  }
737
  /* line 89, ../sass/layouts/_responsive.scss */
738
  .sidebar-first #content {
739
    float: left;
740
    width: 40%;
741
    margin-left: 20%;
742
    margin-right: -60%;
743
  }
744
  /* line 94, ../sass/layouts/_responsive.scss */
745
  .sidebar-first .region-sidebar-first {
746
    float: left;
747
    width: 20%;
748
    margin-left: 0%;
749
    margin-right: -20%;
750
  }
751

    
752
  /**
753
   * The layout when there is only one sidebar, the right one.
754
   */
755
  /* line 102, ../sass/layouts/_responsive.scss */
756
  .sidebar-second {
757
    /* Span 2 columns, starting in 1st column from left. */
758
    /* Span 1 column, starting in 3rd column from left. */
759
  }
760
  /* line 104, ../sass/layouts/_responsive.scss */
761
  .sidebar-second #content {
762
    float: left;
763
    width: 40%;
764
    margin-left: 0%;
765
    margin-right: -40%;
766
  }
767
  /* line 109, ../sass/layouts/_responsive.scss */
768
  .sidebar-second .region-sidebar-second {
769
    float: left;
770
    width: 20%;
771
    margin-left: 40%;
772
    margin-right: -60%;
773
  }
774

    
775
  /**
776
   * The layout when there are two sidebars.
777
   */
778
  /* line 117, ../sass/layouts/_responsive.scss */
779
  .two-sidebars {
780
    /* Span 2 columns, starting in 2nd column from left. */
781
    /* Span 1 column, starting in 1st column from left. */
782
    /* Start a new row and span all 3 columns. */
783
  }
784
  /* line 119, ../sass/layouts/_responsive.scss */
785
  .two-sidebars #content {
786
    float: left;
787
    width: 40%;
788
    margin-left: 20%;
789
    margin-right: -60%;
790
  }
791
  /* line 124, ../sass/layouts/_responsive.scss */
792
  .two-sidebars .region-sidebar-first {
793
    float: left;
794
    width: 20%;
795
    margin-left: 0%;
796
    margin-right: -20%;
797
  }
798
  /* line 129, ../sass/layouts/_responsive.scss */
799
  .two-sidebars .region-sidebar-second {
800
    float: left;
801
    width: 60%;
802
    margin-left: 0%;
803
    margin-right: -60%;
804
    padding-left: 0;
805
    padding-right: 0;
806
    clear: left;
807
    /* Apply the shared properties of grid items in a single, efficient ruleset. */
808
    /* Span 1 column, starting in the 1st column from left. */
809
    /* Span 1 column, starting in the 2nd column from left. */
810
    /* Span 1 column, starting in the 3rd column from left. */
811
  }
812
  /* line 135, ../sass/layouts/_responsive.scss */
813
  .two-sidebars .region-sidebar-second .block {
814
    padding-left: 20px;
815
    padding-right: 20px;
816
    -moz-box-sizing: border-box;
817
    -webkit-box-sizing: border-box;
818
    -ms-box-sizing: border-box;
819
    box-sizing: border-box;
820
    word-wrap: break-word;
821
    *behavior: url("/polyfills/box-sizing-polyfill/boxsizing.htc");
822
    _display: inline;
823
    _overflow: hidden;
824
    _overflow-y: visible;
825
  }
826
  /* line 139, ../sass/layouts/_responsive.scss */
827
  .two-sidebars .region-sidebar-second .block:nth-child(3n+1) {
828
    float: left;
829
    width: 20%;
830
    margin-left: 0%;
831
    margin-right: -20%;
832
    clear: left;
833
  }
834
  /* line 144, ../sass/layouts/_responsive.scss */
835
  .two-sidebars .region-sidebar-second .block:nth-child(3n+2) {
836
    float: left;
837
    width: 20%;
838
    margin-left: 20%;
839
    margin-right: -40%;
840
  }
841
  /* line 148, ../sass/layouts/_responsive.scss */
842
  .two-sidebars .region-sidebar-second .block:nth-child(3n) {
843
    float: left;
844
    width: 20%;
845
    margin-left: 40%;
846
    margin-right: -60%;
847
  }
848
}
849
/**
850
 * Use 5 grid columns for larger screens.
851
 */
852
@media all and (min-width: 960px) {
853
  /**
854
   * The layout when there is only one sidebar, the left one.
855
   */
856
  /* line 166, ../sass/layouts/_responsive.scss */
857
  .sidebar-first {
858
    /* Span 4 columns, starting in 2nd column from left. */
859
    /* Span 1 column, starting in 1st column from left. */
860
  }
861
  /* line 168, ../sass/layouts/_responsive.scss */
862
  .sidebar-first #content {
863
    float: left;
864
    width: 60%;
865
    margin-left: 20%;
866
    margin-right: -80%;
867
  }
868
  /* line 173, ../sass/layouts/_responsive.scss */
869
  .sidebar-first .region-sidebar-first {
870
    float: left;
871
    width: 20%;
872
    margin-left: 0%;
873
    margin-right: -20%;
874
  }
875

    
876
  /**
877
   * The layout when there is only one sidebar, the right one.
878
   */
879
  /* line 181, ../sass/layouts/_responsive.scss */
880
  .sidebar-second {
881
    /* Span 4 columns, starting in 1st column from left. */
882
    /* Span 1 column, starting in 5th column from left. */
883
  }
884
  /* line 183, ../sass/layouts/_responsive.scss */
885
  .sidebar-second #content {
886
    float: left;
887
    width: 60%;
888
    margin-left: 0%;
889
    margin-right: -60%;
890
  }
891
  /* line 188, ../sass/layouts/_responsive.scss */
892
  .sidebar-second .region-sidebar-second {
893
    float: left;
894
    width: 20%;
895
    margin-left: 60%;
896
    margin-right: -80%;
897
  }
898

    
899
  /**
900
   * The layout when there are two sidebars.
901
   */
902
  /* line 196, ../sass/layouts/_responsive.scss */
903
  .two-sidebars {
904
    /* Span 3 columns, starting in 2nd column from left. */
905
    /* Span 1 column, starting in 1st column from left. */
906
    /* Span 1 column, starting in 5th column from left. */
907
  }
908
  /* line 198, ../sass/layouts/_responsive.scss */
909
  .two-sidebars #content {
910
    float: left;
911
    width: 40%;
912
    margin-left: 20%;
913
    margin-right: -60%;
914
  }
915
  /* line 203, ../sass/layouts/_responsive.scss */
916
  .two-sidebars .region-sidebar-first {
917
    float: left;
918
    width: 20%;
919
    margin-left: 0%;
920
    margin-right: -20%;
921
  }
922
  /* line 208, ../sass/layouts/_responsive.scss */
923
  .two-sidebars .region-sidebar-second {
924
    float: left;
925
    width: 20%;
926
    margin-left: 60%;
927
    margin-right: -80%;
928
  }
929
}
930
/* Component (SMACSS module) rules */
931
/**
932
 * @file
933
 * SMACSS Modules
934
 *
935
 * Adds modular sets of styles.
936
 *
937
 * Additional useful selectors can be found in Zen's online documentation.
938
 * https://drupal.org/node/1707736
939
 */
940
/**
941
 * Wireframes.
942
 */
943
/* line 15, ../sass/components/_misc.scss */
944
.with-wireframes #header,
945
.with-wireframes #main,
946
.with-wireframes #content,
947
.with-wireframes #navigation,
948
.with-wireframes .region-sidebar-first,
949
.with-wireframes .region-sidebar-second,
950
.with-wireframes #footer,
951
.with-wireframes .region-bottom {
952
  outline: 1px solid #ccc;
953
}
954
/* line 26, ../sass/components/_misc.scss */
955
.lt-ie8 .with-wireframes #header, .lt-ie8
956
.with-wireframes #main, .lt-ie8
957
.with-wireframes #content, .lt-ie8
958
.with-wireframes #navigation, .lt-ie8
959
.with-wireframes .region-sidebar-first, .lt-ie8
960
.with-wireframes .region-sidebar-second, .lt-ie8
961
.with-wireframes #footer, .lt-ie8
962
.with-wireframes .region-bottom {
963
  /* IE6/7 do not support the outline property. */
964
  border: 1px solid #ccc;
965
}
966

    
967
/**
968
 * Accessibility features.
969
 */
970
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
971
/* line 39, ../sass/components/_misc.scss */
972
.element-invisible,
973
.element-focusable,
974
#navigation .block-menu .block__title,
975
#navigation .block-menu-block .block__title {
976
  position: absolute !important;
977
  height: 1px;
978
  width: 1px;
979
  overflow: hidden;
980
  clip: rect(1px 1px 1px 1px);
981
  clip: rect(1px, 1px, 1px, 1px);
982
}
983

    
984
/* Turns off the element-invisible effect. */
985
/* line 45, ../sass/components/_misc.scss */
986
.element-focusable:active, .element-focusable:focus {
987
  position: static !important;
988
  clip: auto;
989
  height: auto;
990
  width: auto;
991
  overflow: auto;
992
}
993

    
994
/*
995
 * The skip-link link will be completely hidden until a user tabs to the link.
996
 */
997
/* line 62, ../sass/components/_misc.scss */
998
#skip-link {
999
  margin: 0;
1000
}
1001
/* line 65, ../sass/components/_misc.scss */
1002
#skip-link a,
1003
#skip-link a:visited {
1004
  display: block;
1005
  width: 100%;
1006
  padding: 2px 0 3px 0;
1007
  text-align: center;
1008
  background-color: #666;
1009
  color: #fff;
1010
}
1011

    
1012
/**
1013
 * Branding header.
1014
 */
1015
/* Wrapping link for logo. */
1016
/* line 81, ../sass/components/_misc.scss */
1017
.header__logo {
1018
  float: left;
1019
  /* LTR */
1020
  margin: 0;
1021
  padding: 0;
1022
}
1023

    
1024
/* Logo image. */
1025
/* line 88, ../sass/components/_misc.scss */
1026
.header__logo-image {
1027
  vertical-align: bottom;
1028
}
1029

    
1030
/* Wrapper for website name and slogan. */
1031
/* line 93, ../sass/components/_misc.scss */
1032
.header__name-and-slogan {
1033
  float: left;
1034
}
1035

    
1036
/* The name of the website. */
1037
/* line 98, ../sass/components/_misc.scss */
1038
.header__site-name {
1039
  margin: 0;
1040
  font-size: 2em;
1041
  line-height: 1.6em;
1042
}
1043

    
1044
/* The link around the name of the website. */
1045
/* line 105, ../sass/components/_misc.scss */
1046
.header__site-link:link, .header__site-link:visited {
1047
  color: #000;
1048
  text-decoration: none;
1049
}
1050
/* line 111, ../sass/components/_misc.scss */
1051
.header__site-link:hover, .header__site-link:focus {
1052
  text-decoration: underline;
1053
}
1054

    
1055
/* The slogan (or tagline) of a website. */
1056
/* line 118, ../sass/components/_misc.scss */
1057
.header__site-slogan {
1058
  margin: 0;
1059
}
1060

    
1061
/* The secondary menu (login, etc.) */
1062
/* line 123, ../sass/components/_misc.scss */
1063
.header__secondary-menu {
1064
  float: right;
1065
  /* LTR */
1066
}
1067

    
1068
/* Wrapper for any blocks placed in the header region. */
1069
/* line 128, ../sass/components/_misc.scss */
1070
.header__region {
1071
  /* Clear the logo. */
1072
  clear: both;
1073
}
1074

    
1075
/**
1076
 * Navigation bar.
1077
 */
1078
/* line 136, ../sass/components/_misc.scss */
1079
#navigation {
1080
  /* Sometimes you want to prevent overlapping with main div. */
1081
  /* overflow: hidden; */
1082
  /* Main menu and secondary menu links and menu block links. */
1083
}
1084
/* line 140, ../sass/components/_misc.scss */
1085
#navigation .block {
1086
  margin-bottom: 0;
1087
}
1088
/* line 150, ../sass/components/_misc.scss */
1089
#navigation .links,
1090
#navigation .menu {
1091
  margin: 0;
1092
  padding: 0;
1093
  margin-left: -20px;
1094
  text-align: left;
1095
  /* LTR */
1096
  display: block;
1097
}
1098
/* line 158, ../sass/components/_misc.scss */
1099
#navigation .links li,
1100
#navigation .menu li {
1101
  /* A simple method to get navigation links to appear in one line. */
1102
  float: left;
1103
  /* LTR */
1104
  line-height: 20px;
1105
  padding: 0 20px;
1106
  list-style-type: none;
1107
  list-style-image: none;
1108
  border-left: 1px solid #000;
1109
  border-right: 1px solid #000;
1110
  margin-left: -1px;
1111
  /* collapse borders */
1112
}
1113
/* line 169, ../sass/components/_misc.scss */
1114
#navigation .links li.first,
1115
#navigation .menu li.first {
1116
  border-left: 0;
1117
}
1118
/* line 173, ../sass/components/_misc.scss */
1119
#navigation .links li.last,
1120
#navigation .menu li.last {
1121
  border-right: 0;
1122
}
1123

    
1124
/* line 180, ../sass/components/_misc.scss */
1125
#page {
1126
  -moz-box-shadow: 0px 5px 20px black;
1127
  -webkit-box-shadow: 0px 5px 20px black;
1128
  box-shadow: 0px 5px 20px black;
1129
  padding-top: 20px;
1130
  background-color: #fff;
1131
}
1132

    
1133
/* line 189, ../sass/components/_misc.scss */
1134
#sub-header {
1135
  clear: both;
1136
  min-height: 20px;
1137
}
1138
/* line 192, ../sass/components/_misc.scss */
1139
#sub-header #site-name {
1140
  /* in this position the site-name needs different styles */
1141
  font-weight: lighter;
1142
}
1143

    
1144
/* line 199, ../sass/components/_misc.scss */
1145
#logo {
1146
  /* Wrapping link for logo */
1147
  float: left;
1148
  /* LTR */
1149
  margin: 0;
1150
  margin-right: 20px;
1151
  padding: 0;
1152
}
1153
/* line 205, ../sass/components/_misc.scss */
1154
#logo img {
1155
  vertical-align: bottom;
1156
}
1157

    
1158
/* fixes oversized icons */
1159
/* line 211, ../sass/components/_misc.scss */
1160
#admin-menu .dropdown .admin-menu-icon img {
1161
  height: 22.4px;
1162
}
1163

    
1164
/* line 215, ../sass/components/_misc.scss */
1165
#name-and-slogan {
1166
  /* Wrapper for website name and slogan */
1167
  float: left;
1168
  margin-right: 20px;
1169
}
1170

    
1171
/* line 221, ../sass/components/_misc.scss */
1172
#site-name {
1173
  /* The name of the website */
1174
  font-size: 2.5em;
1175
  font-weight: bold;
1176
  line-height: 1.5em;
1177
  margin: 0;
1178
}
1179
/* line 227, ../sass/components/_misc.scss */
1180
#site-name a:link,
1181
#site-name a:visited {
1182
  color: #fff;
1183
  text-decoration: none;
1184
}
1185
/* line 233, ../sass/components/_misc.scss */
1186
#site-name a:hover,
1187
#site-name a:focus {
1188
  color: #fff;
1189
  text-decoration: none;
1190
}
1191

    
1192
/* line 242, ../sass/components/_misc.scss */
1193
#main-menu {
1194
  padding: 5px 0;
1195
  padding-left: 53px;
1196
  background-color: #DEDEDE;
1197
  display: block;
1198
  font-size: 16.8px;
1199
}
1200
/* line 248, ../sass/components/_misc.scss */
1201
#main-menu a:link,
1202
#main-menu a:visited {
1203
  color: #000;
1204
  text-decoration: none;
1205
}
1206
/* line 254, ../sass/components/_misc.scss */
1207
#main-menu a:hover,
1208
#main-menu a:focus {
1209
  text-decoration: underline;
1210
}
1211

    
1212
/**
1213
 * Breadcrumb navigation.
1214
 */
1215
/* line 265, ../sass/components/_misc.scss */
1216
.breadcrumb ol {
1217
  margin: 0;
1218
  padding: 0;
1219
}
1220
/* line 269, ../sass/components/_misc.scss */
1221
.breadcrumb li {
1222
  display: inline;
1223
  list-style-type: none;
1224
  margin: 0;
1225
  padding: 0;
1226
}
1227

    
1228
/**
1229
 * Titles.
1230
 */
1231
/* line 280, ../sass/components/_misc.scss */
1232
.page__title,
1233
.node__title,
1234
.block__title,
1235
.comments__title,
1236
.comments__form-title,
1237
.comment__title {
1238
  /* Comment title. */
1239
  margin: 0;
1240
}
1241

    
1242
/* line 289, ../sass/components/_misc.scss */
1243
.node__title {
1244
  display: none;
1245
}
1246

    
1247
/**
1248
 * Messages.
1249
 */
1250
/* line 296, ../sass/components/_misc.scss */
1251
.messages, .messages--status, .messages--warning, .messages--error {
1252
  margin: 1.6em 0;
1253
  padding: 10px 10px 10px 50px;
1254
  /* LTR */
1255
  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=');
1256
  *background-image: url('../images/message-24-ok.png?1475577735');
1257
  background-position: 8px 8px;
1258
  /* LTR */
1259
  background-repeat: no-repeat;
1260
  border: 1px solid #be7;
1261
}
1262

    
1263
/* line 311, ../sass/components/_misc.scss */
1264
.messages--warning {
1265
  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');
1266
  *background-image: url('../images/message-24-warning.png?1475577735');
1267
  border-color: #ed5;
1268
}
1269

    
1270
/* line 320, ../sass/components/_misc.scss */
1271
.messages--error {
1272
  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==');
1273
  *background-image: url('../images/message-24-error.png?1475577735');
1274
  border-color: #ed541d;
1275
}
1276

    
1277
/* line 330, ../sass/components/_misc.scss */
1278
.messages__list {
1279
  margin: 0;
1280
}
1281

    
1282
/* line 333, ../sass/components/_misc.scss */
1283
.messages__item {
1284
  list-style-image: none;
1285
}
1286

    
1287
/* Core/module installation error messages. */
1288
/* line 338, ../sass/components/_misc.scss */
1289
.messages--error p.error {
1290
  color: #333;
1291
}
1292

    
1293
/* System status report. */
1294
/* line 343, ../sass/components/_misc.scss */
1295
.ok,
1296
.messages--status {
1297
  background-color: #f8fff0;
1298
  color: #234600;
1299
}
1300

    
1301
/* line 348, ../sass/components/_misc.scss */
1302
.warning,
1303
.messages--warning {
1304
  background-color: #fffce5;
1305
  color: #840;
1306
}
1307

    
1308
/* line 353, ../sass/components/_misc.scss */
1309
.error,
1310
.messages--error {
1311
  background-color: #fef5f1;
1312
  color: #8c2e0b;
1313
}
1314

    
1315
/**
1316
 * Tabs.
1317
 */
1318
/* Basic positioning styles shared by primary and secondary tabs. */
1319
/* line 364, ../sass/components/_misc.scss */
1320
.tabs-primary, .tabs-secondary {
1321
  overflow: hidden;
1322
  *zoom: 1;
1323
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYmJiYmJiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
1324
  background: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, rgba(0, 0, 0, 0)));
1325
  background: -moz-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
1326
  background: -webkit-linear-gradient(bottom, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
1327
  background: linear-gradient(to top, #bbbbbb 1px, rgba(0, 0, 0, 0) 1px);
1328
  /* IE 9 and earlier don't understand gradients. */
1329
  list-style: none;
1330
  border-bottom: 1px solid #bbb \0/ie;
1331
  margin: 1.6em 0;
1332
  padding: 0 2px;
1333
  white-space: nowrap;
1334
}
1335

    
1336
/* line 374, ../sass/components/_misc.scss */
1337
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
1338
.tabs-secondary__tab.is-active {
1339
  float: left;
1340
  /* LTR */
1341
  margin: 0 3px;
1342
}
1343

    
1344
/* line 378, ../sass/components/_misc.scss */
1345
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
1346
  border: 1px solid #e9e9e9;
1347
  border-right: 0;
1348
  border-bottom: 0;
1349
  display: block;
1350
  line-height: 1.6em;
1351
  text-decoration: none;
1352
}
1353

    
1354
/* Primary tabs. */
1355
/* line 391, ../sass/components/_misc.scss */
1356
.tabs-primary__tab, .tabs-primary__tab.is-active {
1357
  -moz-border-radius-topleft: 4px;
1358
  -webkit-border-top-left-radius: 4px;
1359
  border-top-left-radius: 4px;
1360
  -moz-border-radius-topright: 4px;
1361
  -webkit-border-top-right-radius: 4px;
1362
  border-top-right-radius: 4px;
1363
  text-shadow: 1px 1px 0 #fff;
1364
  border: 1px solid #bbb;
1365
  border-bottom-color: transparent;
1366
  /* IE 9 and earlier don't understand gradients. */
1367
  border-bottom: 0 \0/ie;
1368
}
1369

    
1370
/* line 400, ../sass/components/_misc.scss */
1371
.tabs-primary__tab.is-active {
1372
  border-bottom-color: #fff;
1373
}
1374

    
1375
/* line 406, ../sass/components/_misc.scss */
1376
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
1377
  -moz-border-radius-topleft: 4px;
1378
  -webkit-border-top-left-radius: 4px;
1379
  border-top-left-radius: 4px;
1380
  -moz-border-radius-topright: 4px;
1381
  -webkit-border-top-right-radius: 4px;
1382
  border-top-right-radius: 4px;
1383
  -moz-transition: background-color 0.3s;
1384
  -o-transition: background-color 0.3s;
1385
  -webkit-transition: background-color 0.3s;
1386
  transition: background-color 0.3s;
1387
  color: #333;
1388
  background-color: #dedede;
1389
  letter-spacing: 1px;
1390
  padding: 0 1em;
1391
  text-align: center;
1392
}
1393

    
1394
/* line 416, ../sass/components/_misc.scss */
1395
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
1396
  background-color: #e9e9e9;
1397
  border-color: #f2f2f2;
1398
}
1399

    
1400
/* line 420, ../sass/components/_misc.scss */
1401
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
1402
  background-color: transparent;
1403
  *zoom: 1;
1404
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
1405
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U5ZTllOSIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
1406
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
1407
  background: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1408
  background: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1409
  background: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
1410
  border-color: #fff;
1411
}
1412

    
1413
/* Secondary tabs. */
1414
/* line 444, ../sass/components/_misc.scss */
1415
.tabs-secondary {
1416
  font-size: .9em;
1417
  /* Collapse bottom margin of ul.primary. */
1418
  margin-top: -1.6em;
1419
}
1420

    
1421
/* line 450, ../sass/components/_misc.scss */
1422
.tabs-secondary__tab,
1423
.tabs-secondary__tab.is-active {
1424
  margin: 0.8em 3px;
1425
}
1426

    
1427
/* line 457, ../sass/components/_misc.scss */
1428
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
1429
  -moz-border-radius: 0.75em;
1430
  -webkit-border-radius: 0.75em;
1431
  border-radius: 0.75em;
1432
  -moz-transition: background-color 0.3s;
1433
  -o-transition: background-color 0.3s;
1434
  -webkit-transition: background-color 0.3s;
1435
  transition: background-color 0.3s;
1436
  text-shadow: 1px 1px 0 #fff;
1437
  background-color: #f2f2f2;
1438
  color: #666;
1439
  padding: 0 .5em;
1440
}
1441

    
1442
/* line 466, ../sass/components/_misc.scss */
1443
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
1444
  background-color: #dedede;
1445
  border-color: #999;
1446
  color: #333;
1447
}
1448

    
1449
/* line 471, ../sass/components/_misc.scss */
1450
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
1451
  text-shadow: 1px 1px 0 #333;
1452
  background-color: #666;
1453
  border-color: #000;
1454
  color: #fff;
1455
}
1456

    
1457
/**
1458
 * Inline styles.
1459
 */
1460
/* List of links generated by theme_links(). */
1461
/* line 499, ../sass/components/_misc.scss */
1462
.inline {
1463
  display: inline;
1464
  padding: 0;
1465
}
1466
/* line 503, ../sass/components/_misc.scss */
1467
.inline li {
1468
  display: inline;
1469
  list-style-type: none;
1470
  padding: 0 1em 0 0;
1471
  /* LTR */
1472
}
1473

    
1474
/* The inline field label used by the Fences module. */
1475
/* line 511, ../sass/components/_misc.scss */
1476
span.field-label {
1477
  padding: 0 1em 0 0;
1478
  /* LTR */
1479
}
1480

    
1481
/**
1482
 * "More" links.
1483
 */
1484
/* line 518, ../sass/components/_misc.scss */
1485
.more-link {
1486
  text-align: right;
1487
  /* LTR */
1488
}
1489

    
1490
/* line 521, ../sass/components/_misc.scss */
1491
.more-help-link {
1492
  text-align: right;
1493
  /* LTR */
1494
}
1495

    
1496
/* line 524, ../sass/components/_misc.scss */
1497
.more-help-link a {
1498
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
1499
  *background-image: url('../images/help.png?1475577735');
1500
  background-position: 0 50%;
1501
  /* LTR */
1502
  background-repeat: no-repeat;
1503
  padding: 1px 0 1px 20px;
1504
  /* LTR */
1505
}
1506

    
1507
/**
1508
 * Pager.
1509
 */
1510
/* A list of page numbers when more than 1 page of content is available. */
1511
/* line 539, ../sass/components/_misc.scss */
1512
.pager {
1513
  clear: both;
1514
  padding: 0;
1515
  text-align: center;
1516
}
1517

    
1518
/* line 544, ../sass/components/_misc.scss */
1519
.pager-item,
1520
.pager-first,
1521
.pager-previous,
1522
.pager-next,
1523
.pager-last,
1524
.pager-ellipsis, .pager-current {
1525
  display: inline;
1526
  padding: 0 0.5em;
1527
  list-style-type: none;
1528
  background-image: none;
1529
}
1530

    
1531
/* line 551, ../sass/components/_misc.scss */
1532
.pager-item,
1533
.pager-first,
1534
.pager-previous,
1535
.pager-next,
1536
.pager-last,
1537
.pager-ellipsis {
1538
  /* A concatenation of several list items using an ellipsis. */
1539
}
1540

    
1541
/* The current page's list item. */
1542
/* line 561, ../sass/components/_misc.scss */
1543
.pager-current {
1544
  font-weight: bold;
1545
}
1546

    
1547
/* line 566, ../sass/components/_misc.scss */
1548
h1, h2, h3, h4, h5, h6 {
1549
  font-weight: normal;
1550
}
1551

    
1552
/* line 570, ../sass/components/_misc.scss */
1553
h1.title,
1554
h2.node-title,
1555
h2.block-title,
1556
h2.title,
1557
h2.comment-form,
1558
h3.title {
1559
  /* Comment title */
1560
  margin: 0;
1561
}
1562

    
1563
/**
1564
 * Blocks.
1565
 */
1566
/* Block wrapper. */
1567
/* line 584, ../sass/components/_misc.scss */
1568
.block {
1569
  margin-bottom: 1.6em;
1570
}
1571

    
1572
/**
1573
 * Menus.
1574
 */
1575
/* line 591, ../sass/components/_misc.scss */
1576
.menu__item.is-leaf {
1577
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
1578
  *list-style-image: url('../images/menu-leaf.png?1475577735');
1579
  list-style-type: square;
1580
}
1581

    
1582
/* line 598, ../sass/components/_misc.scss */
1583
.menu__item.is-expanded {
1584
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
1585
  *list-style-image: url('../images/menu-expanded.png?1475577735');
1586
  list-style-type: circle;
1587
}
1588

    
1589
/* line 605, ../sass/components/_misc.scss */
1590
.menu__item.is-collapsed {
1591
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
1592
  /* LTR */
1593
  *list-style-image: url('../images/menu-collapsed.png?1475577735');
1594
  /* LTR */
1595
  list-style-type: disc;
1596
}
1597

    
1598
/* The active item in a Drupal menu. */
1599
/* line 614, ../sass/components/_misc.scss */
1600
.menu a.active {
1601
  color: #000;
1602
}
1603

    
1604
/**
1605
 * Marker.
1606
 */
1607
/* The "new" or "updated" marker. */
1608
/* line 623, ../sass/components/_misc.scss */
1609
.new,
1610
.update {
1611
  color: #c00;
1612
  /* Remove background highlighting from <mark> in normalize. */
1613
  background-color: transparent;
1614
}
1615

    
1616
/**
1617
 * Unpublished note.
1618
 */
1619
/* The word "Unpublished" displayed underneath the content. */
1620
/* line 635, ../sass/components/_misc.scss */
1621
.unpublished {
1622
  height: 0;
1623
  overflow: visible;
1624
  /* Remove background highlighting from <mark> in normalize. */
1625
  background-color: transparent;
1626
  color: #d8d8d8;
1627
  font-size: 75px;
1628
  line-height: 1;
1629
  font-family: "Noto Sans", sans-serif;
1630
  font-weight: bold;
1631
  text-transform: uppercase;
1632
  text-align: center;
1633
  /* A very nice CSS3 property. */
1634
  word-wrap: break-word;
1635
}
1636

    
1637
/* line 651, ../sass/components/_misc.scss */
1638
.lt-ie8 .node-unpublished > *,
1639
.lt-ie8 .comment-unpublished > * {
1640
  /* Otherwise these elements will appear below the "Unpublished" text. */
1641
  position: relative;
1642
}
1643

    
1644
/**
1645
 * Comments.
1646
 */
1647
/* Wrapper for the list of comments and its title. */
1648
/* line 663, ../sass/components/_misc.scss */
1649
.comments {
1650
  margin: 1.6em 0;
1651
}
1652

    
1653
/* Preview of the comment before submitting new or updated comment. */
1654
/* line 668, ../sass/components/_misc.scss */
1655
.comment-preview {
1656
  /* Drupal core will use a #ffffea background. See #1110842. */
1657
  background-color: #ffffea;
1658
}
1659

    
1660
/* Wrapper for a single comment. */
1661
/* line 674, ../sass/components/_misc.scss */
1662
.comment {
1663
  /* Comment's permalink wrapper. */
1664
}
1665
/* line 677, ../sass/components/_misc.scss */
1666
.comment .permalink {
1667
  text-transform: uppercase;
1668
  font-size: 75%;
1669
}
1670

    
1671
/* Nested comments are indented. */
1672
/* line 684, ../sass/components/_misc.scss */
1673
.indented {
1674
  /* Drupal core uses a 25px left margin. */
1675
  margin-left: 30px;
1676
  /* LTR */
1677
}
1678

    
1679
/**
1680
 * Forms.
1681
 */
1682
/* Wrapper for a form element (or group of form elements) and its label. */
1683
/* line 694, ../sass/components/_misc.scss */
1684
.form-item {
1685
  margin: 1.6em 0;
1686
  /* Pack groups of checkboxes and radio buttons closer together. */
1687
  /* Form items in a table. */
1688
  /* Highlight the form elements that caused a form submission error. */
1689
  /* The descriptive help text (separate from the label). */
1690
}
1691
/* line 698, ../sass/components/_misc.scss */
1692
.form-checkboxes .form-item, .form-radios .form-item {
1693
  /* Drupal core uses "0.4em 0". */
1694
  margin: 0;
1695
}
1696
/* line 705, ../sass/components/_misc.scss */
1697
tr.odd .form-item, tr.even .form-item {
1698
  margin: 0;
1699
}
1700
/* line 711, ../sass/components/_misc.scss */
1701
.form-item input.error,
1702
.form-item textarea.error,
1703
.form-item select.error {
1704
  border: 1px solid #c00;
1705
}
1706
/* line 718, ../sass/components/_misc.scss */
1707
.form-item .description {
1708
  font-size: 0.85em;
1709
}
1710

    
1711
/* line 725, ../sass/components/_misc.scss */
1712
.form-type-radio .description,
1713
.form-type-checkbox .description {
1714
  margin-left: 2.4em;
1715
}
1716

    
1717
/* The part of the label that indicates a required field. */
1718
/* line 731, ../sass/components/_misc.scss */
1719
.form-required {
1720
  color: #c00;
1721
}
1722

    
1723
/* Labels for radios and checkboxes. */
1724
/* line 736, ../sass/components/_misc.scss */
1725
label.option {
1726
  display: inline;
1727
  font-weight: normal;
1728
}
1729

    
1730
/* Buttons used by contrib modules like Media. */
1731
/* line 742, ../sass/components/_misc.scss */
1732
a.button {
1733
  -moz-appearance: button;
1734
  -webkit-appearance: button;
1735
}
1736

    
1737
/* Password confirmation. */
1738
/* line 747, ../sass/components/_misc.scss */
1739
.password-parent,
1740
.confirm-parent {
1741
  margin: 0;
1742
}
1743

    
1744
/* Drupal's default login form block. */
1745
/* line 753, ../sass/components/_misc.scss */
1746
#user-login-form {
1747
  text-align: left;
1748
  /* LTR */
1749
}
1750

    
1751
/**
1752
 * OpenID
1753
 *
1754
 * The default styling for the OpenID login link seems to assume Garland's
1755
 * styling of list items.
1756
 */
1757
/* OpenID creates a new ul above the login form's links. */
1758
/* line 765, ../sass/components/_misc.scss */
1759
.openid-links {
1760
  /* Position OpenID's ul next to the rest of the links. */
1761
  margin-bottom: 0;
1762
}
1763

    
1764
/* The "Log in using OpenID" and "Cancel OpenID login" links. */
1765
/* line 771, ../sass/components/_misc.scss */
1766
.openid-link,
1767
.user-link {
1768
  margin-top: 1.6em;
1769
}
1770

    
1771
/* line 775, ../sass/components/_misc.scss */
1772
html.js #user-login-form li.openid-link,
1773
#user-login-form li.openid-link {
1774
  /* Un-do some of the padding on the ul list. */
1775
  margin-left: -20px;
1776
  /* LTR */
1777
}
1778

    
1779
/* line 780, ../sass/components/_misc.scss */
1780
#user-login ul {
1781
  margin: 1.6em 0;
1782
}
1783

    
1784
/**
1785
 * Drupal admin tables.
1786
 */
1787
/* line 788, ../sass/components/_misc.scss */
1788
form th {
1789
  text-align: left;
1790
  /* LTR */
1791
  padding-right: 1em;
1792
  /* LTR */
1793
  border-bottom: 3px solid #ccc;
1794
}
1795
/* line 793, ../sass/components/_misc.scss */
1796
form tbody {
1797
  border-top: 1px solid #ccc;
1798
}
1799
/* line 796, ../sass/components/_misc.scss */
1800
form table ul {
1801
  margin: 0;
1802
}
1803

    
1804
/* line 800, ../sass/components/_misc.scss */
1805
tr.even,
1806
tr.odd {
1807
  background-color: #eee;
1808
  border-bottom: 1px solid #ccc;
1809
  padding: 0.1em 0.6em;
1810
}
1811

    
1812
/* line 806, ../sass/components/_misc.scss */
1813
tr.even {
1814
  background-color: #fff;
1815
}
1816

    
1817
/* line 812, ../sass/components/_misc.scss */
1818
.lt-ie8 tr.even th,
1819
.lt-ie8 tr.even td,
1820
.lt-ie8 tr.odd th,
1821
.lt-ie8 tr.odd td {
1822
  /* IE doesn't display borders on table rows. */
1823
  border-bottom: 1px solid #ccc;
1824
}
1825

    
1826
/* Markup generated by theme_tablesort_indicator(). */
1827
/* line 821, ../sass/components/_misc.scss */
1828
td.active {
1829
  background-color: #ddd;
1830
}
1831

    
1832
/* Center checkboxes inside table cell. */
1833
/* line 826, ../sass/components/_misc.scss */
1834
td.checkbox,
1835
th.checkbox {
1836
  text-align: center;
1837
}
1838

    
1839
/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
1840
/* line 832, ../sass/components/_misc.scss */
1841
td.menu-disabled {
1842
  background: #ccc;
1843
}
1844

    
1845
/**
1846
 * Autocomplete.
1847
 *
1848
 * @see autocomplete.js
1849
 */
1850
/* Suggestion list. */
1851
/* line 843, ../sass/components/_misc.scss */
1852
#autocomplete .selected {
1853
  background: #0072b9;
1854
  color: #fff;
1855
}
1856

    
1857
/**
1858
 * Collapsible fieldsets.
1859
 *
1860
 * @see collapse.js
1861
 */
1862
/* line 854, ../sass/components/_misc.scss */
1863
html.js .collapsible .fieldset-legend {
1864
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
1865
  *background-image: url('../images/menu-expanded.png?1475577735');
1866
  background-position: 5px 65%;
1867
  /* LTR */
1868
  background-repeat: no-repeat;
1869
  padding-left: 15px;
1870
  /* LTR */
1871
}
1872
/* line 863, ../sass/components/_misc.scss */
1873
html.js .collapsed .fieldset-legend {
1874
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
1875
  /* LTR */
1876
  *background-image: url('../images/menu-collapsed.png?1475577735');
1877
  /* LTR */
1878
  background-position: 5px 50%;
1879
  /* LTR */
1880
}
1881
/* line 870, ../sass/components/_misc.scss */
1882
.fieldset-legend .summary {
1883
  color: #999;
1884
  font-size: 0.9em;
1885
  margin-left: 0.5em;
1886
}
1887

    
1888
/**
1889
 * TableDrag behavior.
1890
 *
1891
 * @see tabledrag.js
1892
 */
1893
/* line 882, ../sass/components/_misc.scss */
1894
tr.drag {
1895
  background-color: #fffff0;
1896
}
1897

    
1898
/* line 885, ../sass/components/_misc.scss */
1899
tr.drag-previous {
1900
  background-color: #ffd;
1901
}
1902

    
1903
/* line 888, ../sass/components/_misc.scss */
1904
.tabledrag-toggle-weight {
1905
  font-size: 0.9em;
1906
}
1907

    
1908
/**
1909
 * TableSelect behavior.
1910
 *
1911
 * @see tableselect.js
1912
 */
1913
/* line 897, ../sass/components/_misc.scss */
1914
tr.selected td {
1915
  background: #ffc;
1916
}
1917

    
1918
/**
1919
 * Progress bar.
1920
 *
1921
 * @see progress.js
1922
 */
1923
/* line 906, ../sass/components/_misc.scss */
1924
.progress {
1925
  font-weight: bold;
1926
}
1927
/* line 909, ../sass/components/_misc.scss */
1928
.progress .bar {
1929
  background: #ccc;
1930
  border-color: #666;
1931
  margin: 0 0.2em;
1932
  -moz-border-radius: 3px;
1933
  -webkit-border-radius: 3px;
1934
  border-radius: 3px;
1935
}
1936
/* line 915, ../sass/components/_misc.scss */
1937
.progress .filled {
1938
  background-color: #0072b9;
1939
  background-image: url('../images/progress.gif?1475577735');
1940
}
1941

    
1942
/**
1943
 * @file
1944
 * Print styling
1945
 *
1946
 * We provide some sane print styling for Drupal using Zen's layout method.
1947
 */
1948
/**
1949
 * By importing this CSS file as media "all", we allow this print file to be
1950
 * aggregated with other stylesheets, for improved front-end performance.
1951
 */
1952
@media print {
1953
  /* Underline all links. */
1954
  /* line 15, ../sass/_print.scss */
1955
  a:link,
1956
  a:visited {
1957
    text-decoration: underline !important;
1958
    /* Don't underline header. */
1959
  }
1960
  /* line 20, ../sass/_print.scss */
1961
  a:link.header__site-link,
1962
  a:visited.header__site-link {
1963
    text-decoration: none !important;
1964
  }
1965

    
1966
  /* line 25, ../sass/_print.scss */
1967
  #content {
1968
    /* Add visible URL after links. */
1969
    /* Only display useful links. */
1970
    /* Add visible title after abbreviations. */
1971
  }
1972
  /* line 27, ../sass/_print.scss */
1973
  #content a[href]:after {
1974
    content: " (" attr(href) ")";
1975
    font-weight: normal;
1976
    font-size: 14px;
1977
  }
1978
  /* line 34, ../sass/_print.scss */
1979
  #content a[href^="javascript:"]:after,
1980
  #content a[href^="#"]:after {
1981
    content: "";
1982
  }
1983
  /* line 40, ../sass/_print.scss */
1984
  #content abbr[title]:after {
1985
    content: " (" attr(title) ")";
1986
  }
1987

    
1988
  /* Un-float the content. */
1989
  /* line 46, ../sass/_print.scss */
1990
  #content {
1991
    float: none !important;
1992
    width: 100% !important;
1993
    margin: 0 !important;
1994
    padding: 0 !important;
1995
  }
1996

    
1997
  /* Turn off any background colors or images. */
1998
  /* line 54, ../sass/_print.scss */
1999
  body,
2000
  #page,
2001
  #main,
2002
  #content {
2003
    color: #000;
2004
    background-color: transparent !important;
2005
    background-image: none !important;
2006
  }
2007

    
2008
  /* Hide sidebars and nav elements. */
2009
  /* line 64, ../sass/_print.scss */
2010
  #skip-link,
2011
  #toolbar,
2012
  #navigation,
2013
  .region-sidebar-first,
2014
  .region-sidebar-second,
2015
  #footer,
2016
  .breadcrumb,
2017
  .tabs,
2018
  .action-links,
2019
  .links,
2020
  .book-navigation,
2021
  .forum-topic-navigation,
2022
  .pager,
2023
  .feed-icons {
2024
    visibility: hidden;
2025
    display: none;
2026
  }
2027
}
2028
/**
2029
 * @file
2030
 * cdm_dataportal specific styling
2031
 *
2032
 * Style the markup found in the cdm_dataportal module.
2033
 */
2034
/* line 42, ../sass/_mixins.scss */
2035
.block a:link,
2036
.block a:visited, .node a:link,
2037
.node a:visited, #identificationKey a:link,
2038
#identificationKey a:visited, #content a:link,
2039
#content a:visited {
2040
  color: #115E92;
2041
  text-decoration: none;
2042
}
2043
/* line 48, ../sass/_mixins.scss */
2044
.block a:hover,
2045
.block a:focus, .node a:hover,
2046
.node a:focus, #identificationKey a:hover,
2047
#identificationKey a:focus, #content a:hover,
2048
#content a:focus {
2049
  text-decoration: underline;
2050
}
2051
/* line 57, ../sass/_mixins.scss */
2052
.block .Synonym a:link,
2053
.block .Synonym a:visited, .block .misapplied-name a:link,
2054
.block .misapplied-name a:visited, .node .Synonym a:link,
2055
.node .Synonym a:visited, .node .misapplied-name a:link,
2056
.node .misapplied-name a:visited, #identificationKey .Synonym a:link,
2057
#identificationKey .Synonym a:visited, #identificationKey .misapplied-name a:link,
2058
#identificationKey .misapplied-name a:visited, #content .Synonym a:link,
2059
#content .Synonym a:visited, #content .misapplied-name a:link,
2060
#content .misapplied-name a:visited {
2061
  color: #7C7C7C;
2062
}
2063
/* line 63, ../sass/_mixins.scss */
2064
.block .Taxon a:link,
2065
.block .Taxon a:visited, .node .Taxon a:link,
2066
.node .Taxon a:visited, #identificationKey .Taxon a:link,
2067
#identificationKey .Taxon a:visited, #content .Taxon a:link,
2068
#content .Taxon a:visited {
2069
  color: #115E92;
2070
}
2071

    
2072
/* line 20, ../sass/cdm.scss */
2073
.footnotes .footnote {
2074
  font-size: smaller;
2075
}
2076

    
2077
/* line 25, ../sass/cdm.scss */
2078
.node-cdm-name .name-page-name {
2079
  margin-top: 20px;
2080
  margin-bottom: 20px;
2081
}
2082
/* line 29, ../sass/cdm.scss */
2083
.node-cdm-name .registered_name {
2084
  font-weight: bold;
2085
}
2086
/* line 32, ../sass/cdm.scss */
2087
.node-cdm-name .type-status {
2088
  font-weight: bold;
2089
}
2090

    
2091
/* line 38, ../sass/cdm.scss */
2092
#content a.tabs-primary__tab-link {
2093
  color: #333;
2094
}
2095
/* line 42, ../sass/cdm.scss */
2096
#content table {
2097
  caption-side: top;
2098
}
2099
/* line 43, ../sass/cdm.scss */
2100
#content table th {
2101
  text-align: left;
2102
}
2103
/* line 47, ../sass/cdm.scss */
2104
#content table caption {
2105
  text-align: right;
2106
  font-size: smaller;
2107
}
2108

    
2109
/* line 54, ../sass/cdm.scss */
2110
#page-toc {
2111
  float: right;
2112
  background-color: #fff;
2113
}
2114
/* line 57, ../sass/cdm.scss */
2115
#page-toc h3 {
2116
  margin-top: 0;
2117
  line-height: 22.4px;
2118
}
2119

    
2120
/* line 63, ../sass/cdm.scss */
2121
#taxonProfileImage {
2122
  float: left;
2123
}
2124

    
2125
/* line 68, ../sass/cdm.scss */
2126
.block-cdm-dataportal-feature .content-caption {
2127
  text-align: right;
2128
}
2129
/* line 71, ../sass/cdm.scss */
2130
.block-cdm-dataportal-feature .label {
2131
  font-style: italic;
2132
}
2133

    
2134
/* line 76, ../sass/cdm.scss */
2135
.block-cdm-dataportal-feature, .media-caption, .specimens {
2136
  clear: both;
2137
  margin-bottom: 22.4px;
2138
}
2139
/* line 79, ../sass/cdm.scss */
2140
.block-cdm-dataportal-feature dt, .media-caption dt, .specimens dt {
2141
  float: left;
2142
  font-weight: bold;
2143
  margin-right: 0.3em;
2144
}
2145
/* line 84, ../sass/cdm.scss */
2146
.block-cdm-dataportal-feature dd, .media-caption dd, .specimens dd {
2147
  margin: 0;
2148
  margin-left: 40px;
2149
}
2150
/* line 88, ../sass/cdm.scss */
2151
.block-cdm-dataportal-feature dl dl, .media-caption dl dl, .specimens dl dl {
2152
  margin: 0;
2153
  /* reset default from cdm_dataportal.css */
2154
}
2155

    
2156
/* line 93, ../sass/cdm.scss */
2157
.breadcrumbs li {
2158
  padding: 0 0 0 0;
2159
}
2160

    
2161
/* line 98, ../sass/cdm.scss */
2162
.description-table .described-entities .label {
2163
  font-weight: bold;
2164
}
2165

    
2166
/*
2167
 * Search results
2168
 */
2169
/* line 42, ../sass/_mixins.scss */
2170
#search_results a:link,
2171
#search_results a:visited {
2172
  color: #115E92;
2173
  text-decoration: none;
2174
}
2175
/* line 48, ../sass/_mixins.scss */
2176
#search_results a:hover,
2177
#search_results a:focus {
2178
  text-decoration: underline;
2179
}
2180
/* line 57, ../sass/_mixins.scss */
2181
#search_results .Synonym a:link,
2182
#search_results .Synonym a:visited, #search_results .misapplied-name a:link,
2183
#search_results .misapplied-name a:visited {
2184
  color: #7C7C7C;
2185
}
2186
/* line 63, ../sass/_mixins.scss */
2187
#search_results .Taxon a:link,
2188
#search_results .Taxon a:visited {
2189
  color: #115E92;
2190
}
2191
/* line 112, ../sass/cdm.scss */
2192
#search_results table {
2193
  margin: 1em 0;
2194
}
2195

    
2196
/* line 121, ../sass/cdm.scss */
2197
div.cdm-item-list div.item {
2198
  margin: 11.2px 0;
2199
}
2200

    
2201
/*
2202
 * Taxon page and parts
2203
 */
2204
/* line 130, ../sass/cdm.scss */
2205
.page-part {
2206
  margin-bottom: 22.4px;
2207
  clear: none;
2208
}
2209

    
2210
/*
2211
 * definition list container rendered by the
2212
 * drupal theme function theme_description_list()
2213
 */
2214
/* line 140, ../sass/cdm.scss */
2215
.description_list h3 {
2216
  font-size: 14px;
2217
  line-height: 22.4px;
2218
  font-weight: bold;
2219
}
2220

    
2221
/*
2222
 * Synonymy
2223
 */
2224
/* line 154, ../sass/cdm.scss */
2225
#synonymy div.accepted-name {
2226
  margin-bottom: -1em;
2227
  margin-top: 1em;
2228
}
2229
/* line 159, ../sass/cdm.scss */
2230
#synonymy .homotypic-synonymy-group, #synonymy .heterotypic-synonymy-group, #synonymy .taxon-relationships {
2231
  border-bottom: 1px solid #DEDEDE;
2232
  /* replace padding by margin */
2233
  margin: 1em 0px;
2234
  padding: 0;
2235
}
2236

    
2237
/*
2238
 * Media
2239
 */
2240
/* line 170, ../sass/cdm.scss */
2241
dl.media-caption {
2242
  margin: 0;
2243
}
2244

    
2245
/* line 174, ../sass/cdm.scss */
2246
.media-caption dd {
2247
  margin-left: 0;
2248
}
2249
/* line 176, ../sass/cdm.scss */
2250
.media-caption dd .title {
2251
  font-size: 100%;
2252
}
2253

    
2254
/* line 181, ../sass/cdm.scss */
2255
.image-gallerie td.caption {
2256
  padding-bottom: 1em;
2257
}
2258

    
2259
/*
2260
 * specimens and type designations
2261
 */
2262
/* line 189, ../sass/cdm.scss */
2263
#specimens table.media_gallery {
2264
  margin-top: 0.2em;
2265
}
2266
/* line 192, ../sass/cdm.scss */
2267
#specimens .description_list {
2268
  clear: both;
2269
}
2270
/* line 194, ../sass/cdm.scss */
2271
#specimens .description_list h3 {
2272
  margin-top: 0;
2273
  background-color: #ddd;
2274
}
2275
/* line 198, ../sass/cdm.scss */
2276
#specimens .description_list h4 {
2277
  clear: left;
2278
  margin-bottom: 0;
2279
  font-style: italic;
2280
}
2281
/* line 204, ../sass/cdm.scss */
2282
#specimens .dynabox_content {
2283
  margin-left: 20px;
2284
  margin-right: 20px;
2285
}
2286
/* line 208, ../sass/cdm.scss */
2287
#specimens .block-cdm-dataportal-feature {
2288
  margin-left: 40px;
2289
  margin-bottom: 0;
2290
}
2291
/* line 211, ../sass/cdm.scss */
2292
#specimens .block-cdm-dataportal-feature h2 {
2293
  font-size: 14px;
2294
  line-height: 22.4px;
2295
  font-weight: bold;
2296
}
2297
/* line 218, ../sass/cdm.scss */
2298
#specimens ul.typeDesignations {
2299
  clear: both;
2300
}
2301
/* line 221, ../sass/cdm.scss */
2302
#specimens .dna-sequence div {
2303
  font-size: 14px;
2304
  font-family: monospace;
2305
  clear: left;
2306
  padding-left: 40px;
2307
}
2308
/* line 227, ../sass/cdm.scss */
2309
#specimens .derived_from {
2310
  clear: both;
2311
}
2312

    
2313
/*
2314
 * derivatives tree view (see also derivation-tree.js)
2315
 */
2316
/* line 246, ../sass/cdm.scss */
2317
.item-tree ul {
2318
  list-style: none;
2319
  margin: 0;
2320
  padding-left: 0;
2321
}
2322
/* line 251, ../sass/cdm.scss */
2323
.item-tree ul.collapsed {
2324
  display: none;
2325
}
2326
/* line 254, ../sass/cdm.scss */
2327
.item-tree ul li {
2328
  padding: 7px 0px 0px 28px;
2329
  margin-top: 3.5px;
2330
  position: relative;
2331
}
2332
/* line 259, ../sass/cdm.scss */
2333
.item-tree ul li::before {
2334
  content: "";
2335
  position: absolute;
2336
  top: 18.2px;
2337
  left: -14px;
2338
  border-left: 3.5px dotted #DEDEDE;
2339
  border-bottom: 3.5px dotted #DEDEDE;
2340
  width: 28px;
2341
  height: 100%;
2342
}
2343
/* line 270, ../sass/cdm.scss */
2344
.item-tree ul li:last-child:before {
2345
  content: none;
2346
}
2347
/* line 274, ../sass/cdm.scss */
2348
.item-tree ul li .item-wrapper-with-sub-items {
2349
  position: relative;
2350
}
2351
/* line 276, ../sass/cdm.scss */
2352
.item-tree ul li .item-wrapper-with-sub-items::after {
2353
  content: "";
2354
  position: absolute;
2355
  top: 18.2px;
2356
  left: -14px;
2357
  border-left: 3.5px dotted #DEDEDE;
2358
  border-bottom: 3.5px dotted #DEDEDE;
2359
  width: 28px;
2360
  height: 100%;
2361
}
2362
/* line 290, ../sass/cdm.scss */
2363
.item-tree ul li.collapsed .item-wrapper-with-sub-items::after {
2364
  content: none;
2365
}
2366
/* line 296, ../sass/cdm.scss */
2367
.item-tree > .item-list > ul {
2368
  margin-left: -14px;
2369
}
2370
/* line 299, ../sass/cdm.scss */
2371
.item-tree > .item-list > ul > li:last-child:before {
2372
  content: unset;
2373
}
2374
/* line 302, ../sass/cdm.scss */
2375
.item-tree > .item-list > ul > li::before {
2376
  content: unset;
2377
}
2378
/* line 306, ../sass/cdm.scss */
2379
.item-tree > .item-list > ul > li:not(:last-child) > ul > li:before {
2380
  content: unset;
2381
}
2382
/* line 316, ../sass/cdm.scss */
2383
.item-tree .tree-node-symbol {
2384
  display: inline-block;
2385
  width: 22.4px;
2386
  height: 22.4px;
2387
  color: #DEDEDE;
2388
  background-color: #fff;
2389
  margin-left: -23.45px;
2390
  text-align: center;
2391
  font-size: larger;
2392
}
2393
/* line 329, ../sass/cdm.scss */
2394
.item-tree .tree-node-symbol-collapsible:hover {
2395
  color: #000;
2396
}
2397

    
2398
/* line 339, ../sass/cdm.scss */
2399
.item-tree .unit-header-wrapper .unit-label {
2400
  background-color: #DEDEDE;
2401
}
2402
/* line 341, ../sass/cdm.scss */
2403
.item-tree .unit-header-wrapper .unit-label .symbol {
2404
  padding-left: 5px;
2405
  padding-right: 5px;
2406
}
2407
/* line 345, ../sass/cdm.scss */
2408
.item-tree .unit-header-wrapper .unit-label .page-link {
2409
  float: right;
2410
  padding-right: 5.6px;
2411
}
2412
/* line 350, ../sass/cdm.scss */
2413
.item-tree .unit-header-wrapper .unit-label-hover-effect:hover {
2414
  cursor: pointer;
2415
  background-color: #f8f8f8;
2416
}
2417
/* line 355, ../sass/cdm.scss */
2418
.item-tree .unit-content {
2419
  padding: 11.2px;
2420
  background-color: #ebebeb;
2421
}
2422
/* line 359, ../sass/cdm.scss */
2423
.item-tree .derivation-event {
2424
  font-size: smaller;
2425
  margin-top: -11.2px;
2426
  color: #7C7C7C;
2427
}
2428
/* line 364, ../sass/cdm.scss */
2429
.item-tree .focused_item {
2430
  font-weight: bold;
2431
}
2432

    
2433
/* line 371, ../sass/cdm.scss */
2434
.derived-unit-details-grid table.details-table {
2435
  margin: 0;
2436
  width: 100%;
2437
  vertical-align: top;
2438
  background-color: #fff;
2439
}
2440
/* line 376, ../sass/cdm.scss */
2441
.derived-unit-details-grid table.details-table thead {
2442
  border-bottom: thin solid #DEDEDE;
2443
}
2444
/* line 379, ../sass/cdm.scss */
2445
.derived-unit-details-grid table.details-table tbody {
2446
  background-color: #fff;
2447
}
2448
/* line 381, ../sass/cdm.scss */
2449
.derived-unit-details-grid table.details-table tbody .label {
2450
  text-align: right;
2451
  white-space: nowrap;
2452
  border-right: thin solid #DEDEDE;
2453
  width: 50%;
2454
}
2455
/* line 388, ../sass/cdm.scss */
2456
.derived-unit-details-grid table.details-table td, .derived-unit-details-grid table.details-table th {
2457
  padding-right: 11.2px;
2458
  padding-left: 11.2px;
2459
}
2460

    
2461
/* line 394, ../sass/cdm.scss */
2462
.derived-unit-details-grid {
2463
  display: grid;
2464
  grid-column-gap: 11.2px;
2465
  grid-row-gap: 11.2px;
2466
}
2467
@media all and (max-width: 659px) {
2468
  /* line 394, ../sass/cdm.scss */
2469
  .derived-unit-details-grid {
2470
    grid-template-columns: repeat(1, 1fr);
2471
  }
2472
}
2473
@media all and (min-width: 660px) {
2474
  /* line 394, ../sass/cdm.scss */
2475
  .derived-unit-details-grid {
2476
    grid-template-columns: repeat(2, 1fr);
2477
  }
2478
}
2479
/* line 404, ../sass/cdm.scss */
2480
.derived-unit-details-grid dl {
2481
  margin: 0;
2482
}
2483

    
2484
/*
2485
 * Map
2486
 */
2487
/* line 413, ../sass/cdm.scss */
2488
.openlayers-container {
2489
  margin-top: 10px;
2490
  margin-bottom: 10px;
2491
}
2492

    
2493
/*
2494
 * Registration page & items
2495
 */
2496
/* line 423, ../sass/cdm.scss */
2497
.registration .type-status {
2498
  font-weight: bold;
2499
}
2500
/* line 427, ../sass/cdm.scss */
2501
.registration .registration-date-and-institute {
2502
  color: #999;
2503
}
2504
/* line 433, ../sass/cdm.scss */
2505
.registration .published-name .TaxonName .name {
2506
  font-weight: bold;
2507
}
2508
/* line 437, ../sass/cdm.scss */
2509
.registration .typified-name .cdm\:TaxonName {
2510
  color: #999;
2511
}
2512
/* line 439, ../sass/cdm.scss */
2513
.registration .typified-name .cdm\:TaxonName a {
2514
  color: #999;
2515
}
2516
/* line 442, ../sass/cdm.scss */
2517
.registration .typified-name .cdm\:TaxonName .TaxonName .name {
2518
  font-weight: bold;
2519
}
2520
/* line 448, ../sass/cdm.scss */
2521
.registration .registration-summary .registered_name .name {
2522
  font-weight: bold;
2523
}
2524
/* line 451, ../sass/cdm.scss */
2525
.registration .registration-summary .referenced_typified_name {
2526
  color: #999;
2527
}
2528
/* line 454, ../sass/cdm.scss */
2529
.registration .registration-summary .label {
2530
  font-weight: bold;
2531
}
2532

    
2533
/*
2534
 * Theme settings page
2535
 */
2536
/* line 465, ../sass/cdm.scss */
2537
#system-theme-settings .image-preview {
2538
  width: 600px;
2539
  max-height: 150px;
2540
  overflow: auto;
2541
}
2542
/* line 469, ../sass/cdm.scss */
2543
#system-theme-settings .image-preview img {
2544
  max-width: none;
2545
  /* reset style in mormalize.scss */
2546
}
2547

    
2548
/*****************************************************************************************
2549
 * RESPONSIVE
2550
 *
2551
 * using the same media queries here as in layout/_responsive.scss
2552
 *****************************************************************************************/
2553
/* line 482, ../sass/cdm.scss */
2554
#classification-breadcrumbs {
2555
  font-size: 1.5em;
2556
  line-height: 1.5em;
2557
}
2558

    
2559
@media all and (min-width: 960px) {
2560
  /* line 493, ../sass/cdm.scss */
2561
  #classification-breadcrumbs {
2562
    font-size: 1em;
2563
  }
2564
}
2565
/***************************
2566
 * TESTING ONLY 2020-02-20
2567
 */
2568
/* line 501, ../sass/cdm.scss */
2569
.font-noto {
2570
  font-family: "Noto Sans", sans-serif !important;
2571
}
2572

    
2573
/* SMACSS theme rules */
2574
/* @import "theme-A"; */
2575
/* @import "theme-B"; */
2576

    
2577
/*# sourceMappingURL=styles.css.map */
(5-5/6)