-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.local.css
executable file
·1841 lines (1625 loc) · 34.8 KB
/
style.local.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Theme Name: Thinking Christian, New Home Page
URI: http://www.perpetuallycreative.com/web
Theme URI: http://www.perpetuallycreative.com/web
Description:
Version:2
Author: Jonathan
Author URI: http://www.perpetuallycreative.com/web
Tags: black, white, left-sidebar
license: GPL
license URI: http://www.gnu.org/licenses/gpl.html
*/
/* @group tags & resets */
/* reset tags*/
/* line 52, sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
span,
nav,
section,
summary {
display: block;
}
/* line 60, sass/_normalize.scss */
audio,
canvas,
video {
display: inline-block;
}
/* line 71, sass/_normalize.scss */
audio:not([controls]) {
display: none;
height: 0;
}
/* line 94, sass/_normalize.scss */
html {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
/* line 111, sass/_normalize.scss */
html,
button,
input,
select,
textarea {
font-family: "Droid Serif", Georgia, serif;
}
/* line 118, sass/_normalize.scss */
body {
margin: 0;
background: #242424 url(images/background3.jpg);
color: #222222;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/* line 61, ../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */
* html {
font-size: 81.25%;
}
/* line 64, ../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */
html {
font-size: 13px;
line-height: 1.7em;
}
/* line 146, sass/_normalize.scss */
a:focus {
outline: thin dotted;
}
/* line 151, sass/_normalize.scss */
a:hover, a:active {
outline: 0;
}
/* line 164, sass/_normalize.scss */
h1, .home .top a {
font-size: 2em;
margin: 0.67em 0;
font-family: Calibri, Helvetica, sans-serif;
letter-spacing: 1px;
}
/* line 170, sass/_normalize.scss */
h2 {
font-size: 1.5em;
font-family: Calibri, Helvetica, sans-serif;
margin: 0.83em 0;
letter-spacing: 1px;
}
/* line 176, sass/_normalize.scss */
h3 {
font-size: 1.17em;
margin: 1em 0;
font-family: Calibri, Helvetica, sans-serif;
letter-spacing: 1px;
}
/* line 182, sass/_normalize.scss */
h4 {
font-size: 1em;
margin: 1.33em 0;
font-family: Calibri, Helvetica, sans-serif;
letter-spacing: 1px;
}
/* line 188, sass/_normalize.scss */
h5 {
font-size: 0.83em;
margin: 1.67em 0;
font-family: Calibri, Helvetica, sans-serif;
letter-spacing: 1px;
}
/* line 194, sass/_normalize.scss */
h6 {
font-size: 0.75em;
margin: 2.33em 0;
font-family: Calibri, Helvetica, sans-serif;
letter-spacing: 1px;
}
/* line 204, sass/_normalize.scss */
abbr[title] {
border-bottom: 1px dotted;
}
/* line 211, sass/_normalize.scss */
b,
strong {
font-weight: bold;
}
/* line 220, sass/_normalize.scss */
blockquote {
margin: 10px 1em;
padding-left: 1em;
border-left: 3px solid #c1c1c1;
}
/* line 225, sass/_normalize.scss */
blockquote blockquote {
border-left: 3px solid rgba(193, 193, 193, 0.75);
margin: 10px 1em;
padding-left: 1em;
}
/* line 230, sass/_normalize.scss */
blockquote blockquote blockquote {
border-left: 3px solid rgba(193, 193, 193, 0.5);
margin: 10px 1em;
padding-left: 1em;
}
/* line 237, sass/_normalize.scss */
dfn {
font-style: italic;
}
/* line 243, sass/_normalize.scss */
mark {
background: #ff0;
color: #000;
}
/* line 262, sass/_normalize.scss */
pre,
code,
kbd,
samp {
font-family: monospace, serif;
font-size: 1em;
}
/* line 272, sass/_normalize.scss */
pre {
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word;
}
/* line 291, sass/_normalize.scss */
q:before,
q:after {
content: '';
content: none;
}
/* line 296, sass/_normalize.scss */
small {
font-size: 75%;
}
/* line 304, sass/_normalize.scss */
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
/* line 311, sass/_normalize.scss */
sup {
top: -0.5em;
}
/* line 315, sass/_normalize.scss */
sub {
bottom: -0.25em;
}
/* line 352, sass/_normalize.scss */
nav ul,
nav ol {
list-style: none;
}
/* line 368, sass/_normalize.scss */
img {
border: 0;
-ms-interpolation-mode: bicubic;
max-width: 100%;
}
/* line 378, sass/_normalize.scss */
svg:not(:root) {
overflow: hidden;
}
/* line 388, sass/_normalize.scss */
figure {
margin: 0;
}
/* line 405, sass/_normalize.scss */
fieldset {
border: 1px solid silver;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/* line 415, sass/_normalize.scss */
legend {
border: 0;
padding: 0;
white-space: normal;
}
/* line 434, sass/_normalize.scss */
button,
input,
select,
textarea {
font-size: 100%;
margin: 0;
vertical-align: baseline;
}
/* line 450, sass/_normalize.scss */
button,
input {
line-height: normal;
}
/* line 466, sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
/* line 480, sass/_normalize.scss */
button[disabled],
input[disabled] {
cursor: default;
}
/* line 490, sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
/* line 507, sass/_normalize.scss */
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
/* line 514, sass/_normalize.scss */
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
/* line 524, sass/_normalize.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 533, sass/_normalize.scss */
textarea {
overflow: auto;
vertical-align: top;
border: 1px solid #999;
display: block;
}
/* line 549, sass/_normalize.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* @group global classes */
/* line 3, sass/_grid.scss */
.container, .home footer {
overflow: hidden;
margin: auto;
color: #222222;
position: relative;
}
/* line 10, sass/_grid.scss */
.row {
clear: both;
position: relative;
width: 100%;
}
/* line 4, sass/_mixins.scss */
.row:after {
content: "";
display: table;
clear: both;
}
/* line 18, sass/_grid.scss */
.col {
float: left;
position: relative;
/* use box sizing because it makes the boxes not expand when padding is added, which is the behavior I would like to be default, but it's not. */
-mox-box-sizing: border-box;
box-sizing: border-box;
}
/* @end */
/* @group default grid*/
/* line 31, sass/_grid.scss */
.span1 {
width: 4.33333%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span2 {
width: 12.66667%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span3 {
width: 21%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span4, .home .top li {
width: 29.33333%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span5 {
width: 37.66667%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span6 {
width: 46%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span7 {
width: 54.33333%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span8 {
width: 62.66667%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span9 {
width: 71%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span10 {
width: 79.33333%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span11 {
width: 87.66667%;
margin-left: 4%;
}
/* line 31, sass/_grid.scss */
.span12 {
width: 96%;
margin-left: 4%;
}
/* remove margins from every first child */
/* line 41, sass/_grid.scss */
.span1:first-child, .span2:first-child, .span3:first-child, .span4:first-child, .home .top li:first-child, .span5:first-child, .span6:first-child, .span7:first-child, .span8:first-child, .span9:first-child, .span10:first-child, .span11:first-child, .span12:first-child {
margin-left: 0;
}
/* @end */
/* @group no margin */
/* line 56, sass/_grid.scss */
.span1-no-margin {
width: 8.33333%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span2-no-margin {
width: 16.66667%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span3-no-margin {
width: 25%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span4-no-margin {
width: 33.33333%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span5-no-margin {
width: 41.66667%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span6-no-margin {
width: 50%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span7-no-margin {
width: 58.33333%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span8-no-margin {
width: 66.66667%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span9-no-margin {
width: 75%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span10-no-margin {
width: 83.33333%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span11-no-margin {
width: 91.66667%;
margin-left: 0;
}
/* line 56, sass/_grid.scss */
.span12-no-margin {
width: 100%;
margin-left: 0;
}
/* @end */
/* @group with a border */
/* line 65, sass/_grid.scss */
.add-border {
border-style: solid;
border-width: 0.07692em;
padding: 0.77308em;
margin-top: 0.85em;
border-color: #333333;
}
/* line 29, sass/_mixins.scss */
.add-border h2, .add-border p {
margin-top: 0;
}
/* line 69, sass/_grid.scss */
.no-top-border {
border-top: none;
}
/* line 72, sass/_grid.scss */
.no-bottom-border {
border-bottom: none;
}
/* @end */
/* @group pull and push*/
/* @group offset*/
/* the final offset is unnecessary as it puts the content off the page */
/* @end */
/* @group WP WISYWIG */
/* =WordPress Core
-------------------------------------------------------------- */
/* line 5, sass/_required.scss */
.alignnone {
margin: 5px 20px 20px 0;
}
/* line 10, sass/_required.scss */
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
/* line 15, sass/_required.scss */
.alignright {
float: right;
margin: 5px 0 20px 20px;
}
/* line 20, sass/_required.scss */
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
/* line 25, sass/_required.scss */
.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
/* line 30, sass/_required.scss */
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%;
/* Image does not overflow the content area */
padding: 5px 3px 10px;
text-align: center;
}
/* line 38, sass/_required.scss */
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
/* line 42, sass/_required.scss */
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
/* line 46, sass/_required.scss */
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
/* line 50, sass/_required.scss */
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
/* line 59, sass/_required.scss */
.wp-caption .wp-caption-text {
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}
/* line 65, sass/_required.scss */
.entry-content img {
margin: 1.5em;
}
/* line 68, sass/_required.scss */
.col3 {
width: 32%;
}
/* line 71, sass/_required.scss */
.tagcloud {
overflow: hidden;
padding: 0 10px;
}
/* line 76, sass/_required.scss */
.tagcloud a {
float: left;
margin-right: .3em;
}
/* line 81, sass/_required.scss */
.navigation {
width: 100%;
clear: both;
display: block;
overflow: hidden;
background: #f5f5f5;
border-radius: 10px;
-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.77) inset;
-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.77) inset;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.77) inset;
margin: 3em auto 3em -0.5em;
height: 35px;
}
/* line 95, sass/_required.scss */
.archive .navigation {
margin: 1em auto;
}
/* line 99, sass/_required.scss */
.navigation a {
/* background: #f5f5f5;*/
padding: 5px 10px;
border-radius: 10px;
border: 1px solid transparent;
text-decoration: none;
display: block;
overflow: hidden;
margin: -5px 0 0;
}
/* line 110, sass/_required.scss */
.navigation a:hover {
border: 1px solid black;
background-color: #ffffff;
}
/* line 119, sass/_required.scss */
.sticky, .gallery-caption, .bypostauthor {
color: inherit;
}
/* @end */
/* line 5, sass/_forms.scss */
input, button, textarea, select[size] {
border: 1px solid #b3b3b3;
background: white;
padding: 5px;
margin: 2px 0;
}
/* line 12, sass/_forms.scss */
select {
margin: 5px;
}
/* line 17, sass/_forms.scss */
input[type=date], input[type=time], input[type=color], input[type=datetime] {
background: #fff;
}
/* line 23, sass/_forms.scss */
input[type=range] {
background: none;
border: none;
box-shadow: none;
}
/* line 28, sass/_forms.scss */
input[type=submit], input[type=button] {
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
-ms-border-radius: 7px;
-o-border-radius: 7px;
border-radius: 7px;
background: #FFFFFFFF;
background: white;
background: -moz-linear-gradient(top, white 0, #cccccc 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #cccccc));
background: -webkit-linear-gradient(top, white 0, #cccccc 100%);
background: -o-linear-gradient(top, white 0, #cccccc 100%);
background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);
box-shadow: none;
}
/* line 34, sass/_forms.scss */
.FeedburnerEmailWidget {
margin-left: -2em;
}
/* line 37, sass/_forms.scss */
textarea {
width: 90%;
height: 15em;
}
/* line 42, sass/_forms.scss */
input:focus, textarea:focus {
background-color: #fff;
background-image: none;
outline: none;
box-shadow: none;
}
/* line 5, sass/_utility_classes.scss */
.action {
background: #FF5973D9;
background: #5973d9;
background: -moz-linear-gradient(top, #5973d9 0, #2640a6 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5973d9), color-stop(100%, #2640a6));
background: -webkit-linear-gradient(top, #5973d9 0, #2640a6 100%);
background: -o-linear-gradient(top, #5973d9 0, #2640a6 100%);
background: linear-gradient(to bottom, #5973d9 0%, #2640a6 100%);
text-shadow: 0 1px 1px black;
padding: 5px 10px;
margin-left: 2px;
border: 1px solid #b3b3b3;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
text-decoration: none;
color: white;
}
/* line 14, sass/_utility_classes.scss */
.action:link, .action:visited {
color: white;
}
/* line 17, sass/_utility_classes.scss */
.action:hover {
text-shadow: 0 -1px 1px black;
}
/* line 21, sass/_utility_classes.scss */
.action:active {
background: #FF2640A6;
background: #2640a6;
background: -moz-linear-gradient(top, #2640a6 0, #5973d9 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2640a6), color-stop(100%, #5973d9));
background: -webkit-linear-gradient(top, #2640a6 0, #5973d9 100%);
background: -o-linear-gradient(top, #2640a6 0, #5973d9 100%);
background: linear-gradient(to bottom, #2640a6 0%, #5973d9 100%);
}
/* line 26, sass/_utility_classes.scss */
.button {
text-shadow: 0 1px 1px white;
padding: 5px 10px;
border: 1px solid #b3b3b3;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
text-decoration: none;
background: #FFCCCCCC;
background: #cccccc;
background: -moz-linear-gradient(top, #cccccc 0, white 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cccccc), color-stop(100%, white));
background: -webkit-linear-gradient(top, #cccccc 0, white 100%);
background: -o-linear-gradient(top, #cccccc 0, white 100%);
background: linear-gradient(to bottom, #cccccc 0%, #ffffff 100%);
}
/* line 34, sass/_utility_classes.scss */
.button:link, .button:visited {
color: black;
}
/* line 37, sass/_utility_classes.scss */
.button:hover {
text-shadow: 0 -1px 1px white;
}
/* line 40, sass/_utility_classes.scss */
.button:active {
background: #FFFFFFFF;
background: white;
background: -moz-linear-gradient(top, white 0, #cccccc 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #cccccc));
background: -webkit-linear-gradient(top, white 0, #cccccc 100%);
background: -o-linear-gradient(top, white 0, #cccccc 100%);
background: linear-gradient(to bottom, #ffffff 0%, #cccccc 100%);
}
/* line 45, sass/_utility_classes.scss */
.zero-margin {
margin: 0;
}
/* line 49, sass/_utility_classes.scss */
.zero-padding {
padding: 0;
}
/* line 53, sass/_utility_classes.scss */
.hidden {
display: none !important;
visibility: hidden;
}
/* line 58, sass/_utility_classes.scss */
.visuallyHidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* line 70, sass/_utility_classes.scss */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
/* line 79, sass/_utility_classes.scss */
.invisible {
visibility: hidden;
}
/* line 4, sass/_mixins.scss */
.cf:after {
content: "";
display: table;
clear: both;
}
/* line 87, sass/_utility_classes.scss */
.chromeframe {
clear: both;
background-color: #ff724a;
padding: 10px 0 20px;
text-align: center;
font-weight: bold;
}
/* line 94, sass/_utility_classes.scss */
.chromeframe a {
color: #fff;
}
/* line 27, sass/style.scss */
.topMeta {
margin-top: -1em;
}
/* line 31, sass/style.scss */
.catntag {
clear: both;
}
/* line 35, sass/style.scss */
td {
padding: 1px;
}
/* line 39, sass/style.scss */
body > .container, .home body > footer {
height: auto;
min-height: 100%;
}
/* define major tags*/
/* line 45, sass/style.scss */
fieldset {
border: none;
}
/* line 50, sass/style.scss */
a:link {
color: #2e5997;
}
/* line 53, sass/style.scss */
a:visited {
color: #8c1e1e;
}
/* line 56, sass/style.scss */
a:hover {
color: #0a1422;
}
/* line 62, sass/style.scss */
h2 a:link, h2 a:visited, h3 a:link, h3 a:visited {
color: #000;
text-decoration: none;
}
/* line 68, sass/style.scss */
a:hover {
text-decoration: none;
}
/* line 72, sass/style.scss */
h1, .home .top a {
font-family: Calibri, Helvetica, sans-serif;
color: #73735d;
margin: 0.3em 0 0.2em;
}
/* line 79, sass/style.scss */
h3:first-child {
margin-top: 0;
}
/* line 83, sass/style.scss */
.body li, .body dt {
margin-left: 1.7em;
}
/* line 87, sass/style.scss */
dd {
margin-left: 3.7em;
}
/* @end */
/* @group body */
/* line 93, sass/style.scss */
.container, .home footer {
position: relative;
overflow: hidden;
width: 1020px;
margin: -20px auto 0;
}
/* line 100, sass/style.scss */
.content {
position: relative;
font-family: "Droid Serif", Georgia, serif;
color: #222222;
overflow: hidden;
margin: auto auto 40px;
width: 98%;
background: url(images/contentBackground.jpg) repeat-y 0 top white;
top: 20px;
border: 1px solid black;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.92);
}
/* line 113, sass/style.scss */
.content .home {
/* position: relative;*/
/* top: -250px;*/
}
/* line 118, sass/style.scss */
.sidebar, .body, #barContent .content {
float: left;
}
/* line 122, sass/style.scss */
.sidebar {