Project

General

Profile

Download (61 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/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
/**
1491
 * Inline styles.
1492
 */
1493
/* List of links generated by theme_links(). */
1494
/* line 499, ../sass/components/_misc.scss */
1495
.inline {
1496
  display: inline;
1497
  padding: 0;
1498
}
1499
/* line 503, ../sass/components/_misc.scss */
1500
.inline li {
1501
  display: inline;
1502
  list-style-type: none;
1503
  padding: 0 1em 0 0;
1504
  /* LTR */
1505
}
1506

    
1507
/* The inline field label used by the Fences module. */
1508
/* line 511, ../sass/components/_misc.scss */
1509
span.field-label {
1510
  padding: 0 1em 0 0;
1511
  /* LTR */
1512
}
1513

    
1514
/**
1515
 * "More" links.
1516
 */
1517
/* line 518, ../sass/components/_misc.scss */
1518
.more-link {
1519
  text-align: right;
1520
  /* LTR */
1521
}
1522

    
1523
/* line 521, ../sass/components/_misc.scss */
1524
.more-help-link {
1525
  text-align: right;
1526
  /* LTR */
1527
}
1528

    
1529
/* line 524, ../sass/components/_misc.scss */
1530
.more-help-link a {
1531
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
1532
  *background-image: url('../images/help.png?1475577735');
1533
  background-position: 0 50%;
1534
  /* LTR */
1535
  background-repeat: no-repeat;
1536
  padding: 1px 0 1px 20px;
1537
  /* LTR */
1538
}
1539

    
1540
/**
1541
 * Pager.
1542
 */
1543
/* A list of page numbers when more than 1 page of content is available. */
1544
/* line 539, ../sass/components/_misc.scss */
1545
.pager {
1546
  clear: both;
1547
  padding: 0;
1548
  text-align: center;
1549
}
1550

    
1551
/* line 544, ../sass/components/_misc.scss */
1552
.pager-item,
1553
.pager-first,
1554
.pager-previous,
1555
.pager-next,
1556
.pager-last,
1557
.pager-ellipsis, .pager-current {
1558
  display: inline;
1559
  padding: 0 0.5em;
1560
  list-style-type: none;
1561
  background-image: none;
1562
}
1563

    
1564
/* line 556, ../sass/components/_misc.scss */
1565
.pager-item,
1566
.pager-first,
1567
.pager-previous,
1568
.pager-next,
1569
.pager-last,
1570
.pager-ellipsis {
1571
  /* A concatenation of several list items using an ellipsis. */
1572
}
1573

    
1574
/* The current page's list item. */
1575
/* line 561, ../sass/components/_misc.scss */
1576
.pager-current {
1577
  font-weight: bold;
1578
}
1579

    
1580
/* line 566, ../sass/components/_misc.scss */
1581
h1, h2, h3, h4, h5, h6 {
1582
  font-weight: normal;
1583
}
1584

    
1585
/* line 575, ../sass/components/_misc.scss */
1586
h1.title,
1587
h2.node-title,
1588
h2.block-title,
1589
h2.title,
1590
h2.comment-form,
1591
h3.title {
1592
  /* Comment title */
1593
  margin: 0;
1594
}
1595

    
1596
/**
1597
 * Blocks.
1598
 */
1599
/* Block wrapper. */
1600
/* line 584, ../sass/components/_misc.scss */
1601
.block {
1602
  margin-bottom: 1.5em;
1603
}
1604

    
1605
/**
1606
 * Menus.
1607
 */
1608
/* line 591, ../sass/components/_misc.scss */
1609
.menu__item.is-leaf {
1610
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
1611
  *list-style-image: url('../images/menu-leaf.png?1475577735');
1612
  list-style-type: square;
1613
}
1614

    
1615
/* line 598, ../sass/components/_misc.scss */
1616
.menu__item.is-expanded {
1617
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
1618
  *list-style-image: url('../images/menu-expanded.png?1475577735');
1619
  list-style-type: circle;
1620
}
1621

    
1622
/* line 605, ../sass/components/_misc.scss */
1623
.menu__item.is-collapsed {
1624
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
1625
  /* LTR */
1626
  *list-style-image: url('../images/menu-collapsed.png?1475577735');
1627
  /* LTR */
1628
  list-style-type: disc;
1629
}
1630

    
1631
/* The active item in a Drupal menu. */
1632
/* line 614, ../sass/components/_misc.scss */
1633
.menu a.active {
1634
  color: #000;
1635
}
1636

    
1637
/**
1638
 * Marker.
1639
 */
1640
/* The "new" or "updated" marker. */
1641
/* line 624, ../sass/components/_misc.scss */
1642
.new,
1643
.update {
1644
  color: #c00;
1645
  /* Remove background highlighting from <mark> in normalize. */
1646
  background-color: transparent;
1647
}
1648

    
1649
/**
1650
 * Unpublished note.
1651
 */
1652
/* The word "Unpublished" displayed underneath the content. */
1653
/* line 635, ../sass/components/_misc.scss */
1654
.unpublished {
1655
  height: 0;
1656
  overflow: visible;
1657
  /* Remove background highlighting from <mark> in normalize. */
1658
  background-color: transparent;
1659
  color: #d8d8d8;
1660
  font-size: 75px;
1661
  line-height: 1;
1662
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
1663
  font-weight: bold;
1664
  text-transform: uppercase;
1665
  text-align: center;
1666
  /* A very nice CSS3 property. */
1667
  word-wrap: break-word;
1668
}
1669

    
1670
/* line 652, ../sass/components/_misc.scss */
1671
.lt-ie8 .node-unpublished > *,
1672
.lt-ie8 .comment-unpublished > * {
1673
  /* Otherwise these elements will appear below the "Unpublished" text. */
1674
  position: relative;
1675
}
1676

    
1677
/**
1678
 * Comments.
1679
 */
1680
/* Wrapper for the list of comments and its title. */
1681
/* line 663, ../sass/components/_misc.scss */
1682
.comments {
1683
  margin: 1.5em 0;
1684
}
1685

    
1686
/* Preview of the comment before submitting new or updated comment. */
1687
/* line 668, ../sass/components/_misc.scss */
1688
.comment-preview {
1689
  /* Drupal core will use a #ffffea background. See #1110842. */
1690
  background-color: #ffffea;
1691
}
1692

    
1693
/* Wrapper for a single comment. */
1694
/* line 674, ../sass/components/_misc.scss */
1695
.comment {
1696
  /* Comment's permalink wrapper. */
1697
}
1698
/* line 677, ../sass/components/_misc.scss */
1699
.comment .permalink {
1700
  text-transform: uppercase;
1701
  font-size: 75%;
1702
}
1703

    
1704
/* Nested comments are indented. */
1705
/* line 684, ../sass/components/_misc.scss */
1706
.indented {
1707
  /* Drupal core uses a 25px left margin. */
1708
  margin-left: 30px;
1709
  /* LTR */
1710
}
1711

    
1712
/**
1713
 * Forms.
1714
 */
1715
/* Wrapper for a form element (or group of form elements) and its label. */
1716
/* line 694, ../sass/components/_misc.scss */
1717
.form-item {
1718
  margin: 1.5em 0;
1719
  /* Pack groups of checkboxes and radio buttons closer together. */
1720
  /* Form items in a table. */
1721
  /* Highlight the form elements that caused a form submission error. */
1722
  /* The descriptive help text (separate from the label). */
1723
}
1724
/* line 699, ../sass/components/_misc.scss */
1725
.form-checkboxes .form-item, .form-radios .form-item {
1726
  /* Drupal core uses "0.4em 0". */
1727
  margin: 0;
1728
}
1729
/* line 706, ../sass/components/_misc.scss */
1730
tr.odd .form-item, tr.even .form-item {
1731
  margin: 0;
1732
}
1733
/* line 713, ../sass/components/_misc.scss */
1734
.form-item input.error,
1735
.form-item textarea.error,
1736
.form-item select.error {
1737
  border: 1px solid #c00;
1738
}
1739
/* line 718, ../sass/components/_misc.scss */
1740
.form-item .description {
1741
  font-size: 0.85em;
1742
}
1743

    
1744
/* line 725, ../sass/components/_misc.scss */
1745
.form-type-radio .description,
1746
.form-type-checkbox .description {
1747
  margin-left: 2.4em;
1748
}
1749

    
1750
/* The part of the label that indicates a required field. */
1751
/* line 731, ../sass/components/_misc.scss */
1752
.form-required {
1753
  color: #c00;
1754
}
1755

    
1756
/* Labels for radios and checkboxes. */
1757
/* line 736, ../sass/components/_misc.scss */
1758
label.option {
1759
  display: inline;
1760
  font-weight: normal;
1761
}
1762

    
1763
/* Buttons used by contrib modules like Media. */
1764
/* line 742, ../sass/components/_misc.scss */
1765
a.button {
1766
  -webkit-appearance: button;
1767
  -moz-appearance: button;
1768
  appearance: button;
1769
}
1770

    
1771
/* Password confirmation. */
1772
/* line 748, ../sass/components/_misc.scss */
1773
.password-parent,
1774
.confirm-parent {
1775
  margin: 0;
1776
}
1777

    
1778
/* Drupal's default login form block. */
1779
/* line 753, ../sass/components/_misc.scss */
1780
#user-login-form {
1781
  text-align: left;
1782
  /* LTR */
1783
}
1784

    
1785
/**
1786
 * OpenID
1787
 *
1788
 * The default styling for the OpenID login link seems to assume Garland's
1789
 * styling of list items.
1790
 */
1791
/* OpenID creates a new ul above the login form's links. */
1792
/* line 765, ../sass/components/_misc.scss */
1793
.openid-links {
1794
  /* Position OpenID's ul next to the rest of the links. */
1795
  margin-bottom: 0;
1796
}
1797

    
1798
/* The "Log in using OpenID" and "Cancel OpenID login" links. */
1799
/* line 772, ../sass/components/_misc.scss */
1800
.openid-link,
1801
.user-link {
1802
  margin-top: 1.5em;
1803
}
1804

    
1805
/* line 776, ../sass/components/_misc.scss */
1806
html.js #user-login-form li.openid-link,
1807
#user-login-form li.openid-link {
1808
  /* Un-do some of the padding on the ul list. */
1809
  margin-left: -20px;
1810
  /* LTR */
1811
}
1812

    
1813
/* line 780, ../sass/components/_misc.scss */
1814
#user-login ul {
1815
  margin: 1.5em 0;
1816
}
1817

    
1818
/**
1819
 * Drupal admin tables.
1820
 */
1821
/* line 788, ../sass/components/_misc.scss */
1822
form th {
1823
  text-align: left;
1824
  /* LTR */
1825
  padding-right: 1em;
1826
  /* LTR */
1827
  border-bottom: 3px solid #ccc;
1828
}
1829
/* line 793, ../sass/components/_misc.scss */
1830
form tbody {
1831
  border-top: 1px solid #ccc;
1832
}
1833
/* line 796, ../sass/components/_misc.scss */
1834
form table ul {
1835
  margin: 0;
1836
}
1837

    
1838
/* line 801, ../sass/components/_misc.scss */
1839
tr.even,
1840
tr.odd {
1841
  background-color: #eee;
1842
  border-bottom: 1px solid #ccc;
1843
  padding: 0.1em 0.6em;
1844
}
1845

    
1846
/* line 806, ../sass/components/_misc.scss */
1847
tr.even {
1848
  background-color: #fff;
1849
}
1850

    
1851
/* line 813, ../sass/components/_misc.scss */
1852
.lt-ie8 tr.even th,
1853
.lt-ie8 tr.even td,
1854
.lt-ie8 tr.odd th,
1855
.lt-ie8 tr.odd td {
1856
  /* IE doesn't display borders on table rows. */
1857
  border-bottom: 1px solid #ccc;
1858
}
1859

    
1860
/* Markup generated by theme_tablesort_indicator(). */
1861
/* line 821, ../sass/components/_misc.scss */
1862
td.active {
1863
  background-color: #ddd;
1864
}
1865

    
1866
/* Center checkboxes inside table cell. */
1867
/* line 827, ../sass/components/_misc.scss */
1868
td.checkbox,
1869
th.checkbox {
1870
  text-align: center;
1871
}
1872

    
1873
/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
1874
/* line 832, ../sass/components/_misc.scss */
1875
td.menu-disabled {
1876
  background: #ccc;
1877
}
1878

    
1879
/**
1880
 * Autocomplete.
1881
 *
1882
 * @see autocomplete.js
1883
 */
1884
/* Suggestion list. */
1885
/* line 843, ../sass/components/_misc.scss */
1886
#autocomplete .selected {
1887
  background: #0072b9;
1888
  color: #fff;
1889
}
1890

    
1891
/**
1892
 * Collapsible fieldsets.
1893
 *
1894
 * @see collapse.js
1895
 */
1896
/* line 854, ../sass/components/_misc.scss */
1897
html.js .collapsible .fieldset-legend {
1898
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
1899
  *background-image: url('../images/menu-expanded.png?1475577735');
1900
  background-position: 5px 65%;
1901
  /* LTR */
1902
  background-repeat: no-repeat;
1903
  padding-left: 15px;
1904
  /* LTR */
1905
}
1906
/* line 863, ../sass/components/_misc.scss */
1907
html.js .collapsed .fieldset-legend {
1908
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
1909
  /* LTR */
1910
  *background-image: url('../images/menu-collapsed.png?1475577735');
1911
  /* LTR */
1912
  background-position: 5px 50%;
1913
  /* LTR */
1914
}
1915
/* line 870, ../sass/components/_misc.scss */
1916
.fieldset-legend .summary {
1917
  color: #999;
1918
  font-size: 0.9em;
1919
  margin-left: 0.5em;
1920
}
1921

    
1922
/**
1923
 * TableDrag behavior.
1924
 *
1925
 * @see tabledrag.js
1926
 */
1927
/* line 882, ../sass/components/_misc.scss */
1928
tr.drag {
1929
  background-color: #fffff0;
1930
}
1931

    
1932
/* line 885, ../sass/components/_misc.scss */
1933
tr.drag-previous {
1934
  background-color: #ffd;
1935
}
1936

    
1937
/* line 888, ../sass/components/_misc.scss */
1938
.tabledrag-toggle-weight {
1939
  font-size: 0.9em;
1940
}
1941

    
1942
/**
1943
 * TableSelect behavior.
1944
 *
1945
 * @see tableselect.js
1946
 */
1947
/* line 897, ../sass/components/_misc.scss */
1948
tr.selected td {
1949
  background: #ffc;
1950
}
1951

    
1952
/**
1953
 * Progress bar.
1954
 *
1955
 * @see progress.js
1956
 */
1957
/* line 906, ../sass/components/_misc.scss */
1958
.progress {
1959
  font-weight: bold;
1960
}
1961
/* line 909, ../sass/components/_misc.scss */
1962
.progress .bar {
1963
  background: #ccc;
1964
  border-color: #666;
1965
  margin: 0 0.2em;
1966
  -webkit-border-radius: 3px;
1967
  -moz-border-radius: 3px;
1968
  -ms-border-radius: 3px;
1969
  -o-border-radius: 3px;
1970
  border-radius: 3px;
1971
}
1972
/* line 915, ../sass/components/_misc.scss */
1973
.progress .filled {
1974
  background-color: #0072b9;
1975
  background-image: url('../images/progress.gif?1475577735');
1976
}
1977

    
1978
/**
1979
 * @file
1980
 * Print styling
1981
 *
1982
 * We provide some sane print styling for Drupal using Zen's layout method.
1983
 */
1984
/**
1985
 * By importing this CSS file as media "all", we allow this print file to be
1986
 * aggregated with other stylesheets, for improved front-end performance.
1987
 */
1988
@media print {
1989
  /* Underline all links. */
1990
  /* line 16, ../sass/_print.scss */
1991
  a:link,
1992
  a:visited {
1993
    text-decoration: underline !important;
1994
    /* Don't underline header. */
1995
  }
1996
  /* line 20, ../sass/_print.scss */
1997
  a:link.header__site-link,
1998
  a:visited.header__site-link {
1999
    text-decoration: none !important;
2000
  }
2001

    
2002
  /* line 25, ../sass/_print.scss */
2003
  #content {
2004
    /* Add visible URL after links. */
2005
    /* Only display useful links. */
2006
    /* Add visible title after abbreviations. */
2007
  }
2008
  /* line 27, ../sass/_print.scss */
2009
  #content a[href]:after {
2010
    content: " (" attr(href) ")";
2011
    font-weight: normal;
2012
    font-size: 12px;
2013
  }
2014
  /* line 35, ../sass/_print.scss */
2015
  #content a[href^="javascript:"]:after,
2016
  #content a[href^="#"]:after {
2017
    content: "";
2018
  }
2019
  /* line 40, ../sass/_print.scss */
2020
  #content abbr[title]:after {
2021
    content: " (" attr(title) ")";
2022
  }
2023

    
2024
  /* Un-float the content. */
2025
  /* line 46, ../sass/_print.scss */
2026
  #content {
2027
    float: none !important;
2028
    width: 100% !important;
2029
    margin: 0 !important;
2030
    padding: 0 !important;
2031
  }
2032

    
2033
  /* Turn off any background colors or images. */
2034
  /* line 57, ../sass/_print.scss */
2035
  body,
2036
  #page,
2037
  #main,
2038
  #content {
2039
    color: #000;
2040
    background-color: transparent !important;
2041
    background-image: none !important;
2042
  }
2043

    
2044
  /* Hide sidebars and nav elements. */
2045
  /* line 77, ../sass/_print.scss */
2046
  #skip-link,
2047
  #toolbar,
2048
  #navigation,
2049
  .region-sidebar-first,
2050
  .region-sidebar-second,
2051
  #footer,
2052
  .breadcrumb,
2053
  .tabs,
2054
  .action-links,
2055
  .links,
2056
  .book-navigation,
2057
  .forum-topic-navigation,
2058
  .pager,
2059
  .feed-icons {
2060
    visibility: hidden;
2061
    display: none;
2062
  }
2063
}
2064
/**
2065
 * @file
2066
 * cdm_dataportal specific styling
2067
 *
2068
 * Style the markup found in the cdm_dataportal module.
2069
 */
2070
/* line 30, ../sass/ie-legacy.scss */
2071
.pie-element, .lt-ie9 #page, #page {
2072
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
2073
  position: relative;
2074
}
2075

    
2076
/* line 43, ../sass/ie-legacy.scss */
2077
.pie-container {
2078
  z-index: 0;
2079
  position: relative;
2080
}
2081

    
2082
/* line 47, ../sass/ie-legacy.scss */
2083
.z-pie-element, .lt-ie9 #page, #page {
2084
  behavior: url("/polyfills/css3pie/PIE-1.0.0.htc");
2085
  z-index: 0;
2086
}
2087

    
2088
/* line 63, ../sass/ie-legacy.scss */
2089
.lt-ie9 #header {
2090
  /* 
2091
   * reset right padding to zero and use margin-right instead,
2092
   * this avoids the need for background-clip: content-box
2093
   * which is not suppoorted in IE < 9
2094
   */
2095
  padding-right: 0;
2096
  margin-right: 20px;
2097
}
2098

    
2099
/* line 43, ../sass/_mixins.scss */
2100
.block a:link,
2101
.block a:visited, .node a:link,
2102
.node a:visited, #identificationKey a:link,
2103
#identificationKey a:visited, #content a:link,
2104
#content a:visited {
2105
  color: #115e92;
2106
  text-decoration: none;
2107
}
2108
/* line 49, ../sass/_mixins.scss */
2109
.block a:hover,
2110
.block a:focus, .node a:hover,
2111
.node a:focus, #identificationKey a:hover,
2112
#identificationKey a:focus, #content a:hover,
2113
#content a:focus {
2114
  text-decoration: underline;
2115
}
2116
/* line 58, ../sass/_mixins.scss */
2117
.block .Synonym a:link,
2118
.block .Synonym a:visited, .block .misapplied-name a:link,
2119
.block .misapplied-name a:visited, .node .Synonym a:link,
2120
.node .Synonym a:visited, .node .misapplied-name a:link,
2121
.node .misapplied-name a:visited, #identificationKey .Synonym a:link,
2122
#identificationKey .Synonym a:visited, #identificationKey .misapplied-name a:link,
2123
#identificationKey .misapplied-name a:visited, #content .Synonym a:link,
2124
#content .Synonym a:visited, #content .misapplied-name a:link,
2125
#content .misapplied-name a:visited {
2126
  color: #7c7c7c;
2127
}
2128
/* line 64, ../sass/_mixins.scss */
2129
.block .Taxon a:link,
2130
.block .Taxon a:visited, .node .Taxon a:link,
2131
.node .Taxon a:visited, #identificationKey .Taxon a:link,
2132
#identificationKey .Taxon a:visited, #content .Taxon a:link,
2133
#content .Taxon a:visited {
2134
  color: #115e92;
2135
}
2136

    
2137
/* line 21, ../sass/cdm.scss */
2138
.node-cdm-name .name-page-name {
2139
  margin-top: 20px;
2140
  margin-bottom: 20px;
2141
}
2142
/* line 25, ../sass/cdm.scss */
2143
.node-cdm-name .registered_name {
2144
  font-weight: bold;
2145
}
2146
/* line 28, ../sass/cdm.scss */
2147
.node-cdm-name .type-status {
2148
  font-weight: bold;
2149
}
2150

    
2151
/* line 34, ../sass/cdm.scss */
2152
#content a.tabs-primary__tab-link {
2153
  color: #333;
2154
}
2155
/* line 38, ../sass/cdm.scss */
2156
#content table {
2157
  caption-side: bottom;
2158
}
2159
/* line 40, ../sass/cdm.scss */
2160
#content table caption {
2161
  text-align: right;
2162
}
2163

    
2164
/* line 46, ../sass/cdm.scss */
2165
#page-toc {
2166
  float: right;
2167
  background-color: white;
2168
}
2169
/* line 49, ../sass/cdm.scss */
2170
#page-toc h3 {
2171
  margin-top: 0;
2172
  line-height: 18px;
2173
}
2174

    
2175
/* line 55, ../sass/cdm.scss */
2176
#taxonProfileImage {
2177
  float: left;
2178
}
2179

    
2180
/* line 59, ../sass/cdm.scss */
2181
.block-cdm-dataportal-feature, .media-caption, .specimens {
2182
  clear: both;
2183
  margin-bottom: 18px;
2184
}
2185
/* line 62, ../sass/cdm.scss */
2186
.block-cdm-dataportal-feature dt, .media-caption dt, .specimens dt {
2187
  float: left;
2188
  font-weight: bold;
2189
  margin-right: 0.3em;
2190
}
2191
/* line 67, ../sass/cdm.scss */
2192
.block-cdm-dataportal-feature dd, .media-caption dd, .specimens dd {
2193
  margin: 0;
2194
  margin-left: 40px;
2195
}
2196
/* line 71, ../sass/cdm.scss */
2197
.block-cdm-dataportal-feature dl dl, .media-caption dl dl, .specimens dl dl {
2198
  margin: 0;
2199
  /* reset default from cdm_dataportal.css */
2200
}
2201

    
2202
/* line 76, ../sass/cdm.scss */
2203
.breadcrumbs li {
2204
  padding: 0 0 0 0;
2205
}
2206

    
2207
/*
2208
 * Search results
2209
 */
2210
/* line 43, ../sass/_mixins.scss */
2211
#search_results a:link,
2212
#search_results a:visited {
2213
  color: #115e92;
2214
  text-decoration: none;
2215
}
2216
/* line 49, ../sass/_mixins.scss */
2217
#search_results a:hover,
2218
#search_results a:focus {
2219
  text-decoration: underline;
2220
}
2221
/* line 58, ../sass/_mixins.scss */
2222
#search_results .Synonym a:link,
2223
#search_results .Synonym a:visited, #search_results .misapplied-name a:link,
2224
#search_results .misapplied-name a:visited {
2225
  color: #7c7c7c;
2226
}
2227
/* line 64, ../sass/_mixins.scss */
2228
#search_results .Taxon a:link,
2229
#search_results .Taxon a:visited {
2230
  color: #115e92;
2231
}
2232
/* line 88, ../sass/cdm.scss */
2233
#search_results table {
2234
  margin: 1em 0;
2235
}
2236

    
2237
/* line 93, ../sass/cdm.scss */
2238
div.cdm-item-list div.item {
2239
  margin: 9px 0;
2240
}
2241

    
2242
/*
2243
 * Taxon page and parts
2244
 */
2245
/* line 101, ../sass/cdm.scss */
2246
.page-part {
2247
  margin-bottom: 18px;
2248
  clear: none;
2249
}
2250

    
2251
/*
2252
 * definition list container rendered by the
2253
 * drupal theme function theme_description_list()
2254
 */
2255
/* line 111, ../sass/cdm.scss */
2256
.description_list h3 {
2257
  font-size: 12px;
2258
  line-height: 18px;
2259
  font-weight: bold;
2260
}
2261

    
2262
/*
2263
 * Synonymy
2264
 */
2265
/* line 125, ../sass/cdm.scss */
2266
#synonymy div.accepted-name {
2267
  margin-bottom: -1em;
2268
  margin-top: 1em;
2269
}
2270
/* line 130, ../sass/cdm.scss */
2271
#synonymy .homotypic-synonymy-group, #synonymy .heterotypic-synonymy-group, #synonymy .taxon-relationships {
2272
  border-bottom: 1px solid #DEDEDE;
2273
  /* replace padding by margin */
2274
  margin: 1em 0px;
2275
  padding: 0;
2276
}
2277

    
2278
/*
2279
 * Media
2280
 */
2281
/* line 141, ../sass/cdm.scss */
2282
dl.media-caption {
2283
  margin: 0;
2284
}
2285

    
2286
/* line 145, ../sass/cdm.scss */
2287
.media-caption dd {
2288
  margin-left: 0;
2289
}
2290
/* line 147, ../sass/cdm.scss */
2291
.media-caption dd .title {
2292
  font-size: 100%;
2293
}
2294

    
2295
/* line 152, ../sass/cdm.scss */
2296
.image-gallerie td.caption {
2297
  padding-bottom: 1em;
2298
}
2299

    
2300
/*
2301
 * specimens and type designations
2302
 */
2303
/* line 160, ../sass/cdm.scss */
2304
#specimens table.media_gallery {
2305
  margin-top: 0.2em;
2306
}
2307
/* line 163, ../sass/cdm.scss */
2308
#specimens .description_list {
2309
  clear: both;
2310
}
2311
/* line 165, ../sass/cdm.scss */
2312
#specimens .description_list h3 {
2313
  margin-top: 0;
2314
  background-color: #ddd;
2315
}
2316
/* line 169, ../sass/cdm.scss */
2317
#specimens .description_list h4 {
2318
  clear: left;
2319
  margin-bottom: 0;
2320
  font-style: italic;
2321
}
2322
/* line 175, ../sass/cdm.scss */
2323
#specimens .dynabox_content {
2324
  margin-left: 20px;
2325
  margin-right: 20px;
2326
}
2327
/* line 179, ../sass/cdm.scss */
2328
#specimens .block-cdm-dataportal-feature {
2329
  margin-left: 40px;
2330
  margin-bottom: 0;
2331
}
2332
/* line 182, ../sass/cdm.scss */
2333
#specimens .block-cdm-dataportal-feature h2 {
2334
  font-size: 12px;
2335
  line-height: 18px;
2336
  font-weight: bold;
2337
}
2338
/* line 188, ../sass/cdm.scss */
2339
#specimens ul.typeDesignations {
2340
  clear: both;
2341
}
2342
/* line 191, ../sass/cdm.scss */
2343
#specimens .dna-sequence div {
2344
  font-size: 12px;
2345
  font-family: monospace;
2346
  clear: left;
2347
  padding-left: 40px;
2348
}
2349
/* line 197, ../sass/cdm.scss */
2350
#specimens .derived_from {
2351
  clear: both;
2352
}
2353

    
2354
/*
2355
 * Map
2356
 */
2357
/* line 205, ../sass/cdm.scss */
2358
.openlayers-container {
2359
  margin-top: 10px;
2360
  margin-bottom: 10px;
2361
}
2362

    
2363
/*
2364
 * Registration page & items
2365
 */
2366
/* line 215, ../sass/cdm.scss */
2367
.registration .type-status {
2368
  font-weight: bold;
2369
}
2370
/* line 219, ../sass/cdm.scss */
2371
.registration .registration-date-and-institute {
2372
  color: #999;
2373
}
2374
/* line 225, ../sass/cdm.scss */
2375
.registration .published-name .TaxonName .name {
2376
  font-weight: bold;
2377
}
2378
/* line 229, ../sass/cdm.scss */
2379
.registration .typified-name .cdm\:TaxonName {
2380
  color: #999;
2381
}
2382
/* line 231, ../sass/cdm.scss */
2383
.registration .typified-name .cdm\:TaxonName a {
2384
  color: #999;
2385
}
2386
/* line 234, ../sass/cdm.scss */
2387
.registration .typified-name .cdm\:TaxonName .TaxonName .name {
2388
  font-weight: bold;
2389
}
2390
/* line 240, ../sass/cdm.scss */
2391
.registration .registration-summary .registered_name .name {
2392
  font-weight: bold;
2393
}
2394
/* line 243, ../sass/cdm.scss */
2395
.registration .registration-summary .referenced_typified_name {
2396
  color: #999;
2397
}
2398
/* line 246, ../sass/cdm.scss */
2399
.registration .registration-summary .label {
2400
  font-weight: bold;
2401
}
2402

    
2403
/*
2404
 * Theme settings page
2405
 */
2406
/* line 257, ../sass/cdm.scss */
2407
#system-theme-settings .image-preview {
2408
  width: 600px;
2409
  max-height: 150px;
2410
  overflow: auto;
2411
}
2412
/* line 261, ../sass/cdm.scss */
2413
#system-theme-settings .image-preview img {
2414
  max-width: none;
2415
  /* reset style in mormalize.scss */
2416
}
2417

    
2418
/*****************************************************************************************
2419
 * RESPONSIVE
2420
 *
2421
 * using the same media queries here as in layout/_responsive.scss
2422
 *****************************************************************************************/
2423
/* line 274, ../sass/cdm.scss */
2424
#classification-breadcrumbs {
2425
  font-size: 1.5em;
2426
  line-height: 1.5em;
2427
}
2428

    
2429
@media all and (min-width: 960px) {
2430
  /* line 285, ../sass/cdm.scss */
2431
  #classification-breadcrumbs {
2432
    font-size: 1em;
2433
  }
2434
}
2435
/* SMACSS theme rules */
2436
/* @import "theme-A"; */
2437
/* @import "theme-B"; */
(5-5/5)