iasd-bootstrap-sass 1.7.0 → 1.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e68406137a3c940c5c6eaa91dfd216da38eb7ba
4
- data.tar.gz: 7d66637ad707ebbf9d73ef5f0d68aa2b1aea08d3
3
+ metadata.gz: 6a5c8db5e297e8345bddecf79e938faa83200227
4
+ data.tar.gz: 15d8c2d48365ee6b33e247d6e27839b244eb28a3
5
5
  SHA512:
6
- metadata.gz: 4903132d2168fa7ef734d151a7c09b945366bae1f6470092665c4876161ed73ac9303526e59aca36b4872df58d8a46928d79f64e93e3a91cab4d919e4d34be8d
7
- data.tar.gz: 370fead748fad3d6ab2c72c6dd71f3a4fca243b76e0d474e6051bc1a7bb6fa69e6cacd99942e11e421f5fe75eb12f51d8ef18591dfa849820db67f5ba724bed4
6
+ metadata.gz: 662e0cd5921cb3ab7d8d5d2bc03b6963a3d8cc8cd330ecba73b0a7065aa2c723443998a49b5373244a6e5e48204d36414a0daf7d94eb9f2152e84382708a80f4
7
+ data.tar.gz: 3ee5682dd8ab837ee5314c18ce29bb2ab6feb81bcdab58e762d813473de9d53c4b92400d88eb658518809443b65ab2675890c3c908912a924dc366daade305d8
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module IASD
3
- VERSION = "1.7.0"
3
+ VERSION = "1.7.1"
4
4
  end
5
5
  end
@@ -1,4 +1,32 @@
1
- .rpsp-front-page, .rpsp-single, .rpsp-archive-videos {
1
+ body > header .identifier {
2
+
3
+ .brand {
4
+ margin: 0;
5
+ &:after {
6
+ display: none;
7
+ }
8
+ }
9
+
10
+ .title {
11
+ float: left;
12
+ width: 380px;
13
+ margin-left: 150px;
14
+
15
+ hgroup{
16
+ h1{
17
+ margin: 0px !important;
18
+ font-size: 28px !important;
19
+ color: #FFFFFF !important;
20
+ line-height: 38px !important;
21
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6) !important;
22
+ font-family: Lora-Italic !important;
23
+ font-size: 28px !important;
24
+ }
25
+ }
26
+ }
27
+ }
28
+
29
+ .rpsp-front-page, .rpsp-single, .rpsp-single-weekly, .rpsp-archive-videos, .rpsp-archive-cards {
2
30
  h1 {
3
31
  -moz-box-shadow: 0 4px 0 #eee9e3;
4
32
  -webkit-box-shadow: 0 4px 0 #eee9e3;
@@ -19,9 +47,26 @@
19
47
  }
20
48
  }
21
49
 
50
+ .rpsp-see-more {
51
+ font-weight: 700;
52
+ color: $theme-main-color;
53
+ &:hover {
54
+ color: $theme-alt-color;
55
+ }
56
+ }
57
+
58
+ #iasd-page-prevnext {
59
+ .page-prevnext {
60
+ a {
61
+ color: $theme-alt-color;
62
+ &:hover, &:focus {
63
+ color: lighten($theme-alt-color, 5%);
64
+ }
65
+ }
66
+ }
67
+ }
68
+
22
69
  #iasd-chapter-prevnext {
23
- float: left;
24
- width: 100%;
25
70
  h1 {
26
71
  border-bottom: 0;
27
72
  box-shadow: none;
@@ -44,13 +89,13 @@
44
89
  @include text-overflow;
45
90
  border: 0;
46
91
  font-weight: bold;
47
- color: $theme-main-color;
92
+ color: $theme-alt-color;
48
93
  display: block;
49
94
  float: left;
50
95
  font-weight: bold;
51
96
  max-width: 85%;
52
97
  &:hover, &:focus {
53
- color: lighten($theme-main-color, 5%);
98
+ color: lighten($theme-alt-color, 5%);
54
99
  }
55
100
  }
56
101
  em {
@@ -79,6 +124,12 @@
79
124
 
80
125
  .rpsp-social-header {
81
126
  position: relative;
127
+ h1 {
128
+ font-size: 28px;
129
+ line-height: 34px;
130
+ font-weight: 400;
131
+ color: $theme-alt-color;
132
+ }
82
133
  ul {
83
134
  position: absolute;
84
135
  top: 0;
@@ -148,6 +199,20 @@
148
199
 
149
200
  .chapter-header {
150
201
  text-align: center;
202
+ time {
203
+ font-family: $font-family-sans-serif;
204
+ font-weight: 300;
205
+ font-size: 18px;
206
+ color: $theme-alt-color;
207
+ line-height: 22px;
208
+ }
209
+ h1 {
210
+ font-family: $font-family-sans-serif;
211
+ font-weight: 400 !important;
212
+ font-size: 24px !important;
213
+ color: $theme-alt-color;
214
+ line-height: 29px !important;
215
+ }
151
216
  }
152
217
 
153
218
  .chapter-content {
@@ -157,11 +222,27 @@
157
222
  padding-left: 35px;
158
223
  border: solid 1px $border-base;
159
224
  background: #ffffff;
225
+ h2 {
226
+ font-family: Lora-Std;
227
+ font-size: 18px;
228
+ line-height: 34px;
229
+ color: $theme-alt-color;
230
+ }
160
231
  ol {
161
232
  padding-top: 0;
162
233
  padding-right: 0;
163
234
  padding-bottom: 0;
164
235
  padding-left: 25px;
236
+ li {
237
+ font-family: Lora-Std;
238
+ font-size: 15px;
239
+ line-height: 25px;
240
+ }
241
+ }
242
+ p {
243
+ font-family: Lora-Std;
244
+ font-size: 15px;
245
+ line-height: 25px;
165
246
  }
166
247
  .chapter-content-header {
167
248
  position: relative;
@@ -248,6 +329,14 @@
248
329
  margin-bottom: 65px;
249
330
  border: solid 1px $border-base;
250
331
  background: #ffffff;
332
+ a {
333
+ font-size: 14px;
334
+ font-weight: 700;
335
+ color: $text-color;
336
+ &:hover {
337
+ color: $theme-main-color;
338
+ }
339
+ }
251
340
  }
252
341
 
253
342
  .weekly-reading-img {
@@ -310,10 +399,21 @@
310
399
  }
311
400
  }
312
401
 
402
+ .rpsp-video-home {
403
+ h2 {
404
+ font-size: 20px;
405
+ line-height: 24px;
406
+ font-weight: 700;
407
+ }
408
+ }
409
+
313
410
  .widget-projeto-rpsp {
314
411
  figure {
315
412
  margin-bottom: 20px;
316
413
  }
414
+ p {
415
+ line-height: 22px !important;
416
+ }
317
417
  .get-app {
318
418
  color: #ffffff !important;
319
419
  span {
@@ -383,9 +483,19 @@
383
483
  }
384
484
  }
385
485
 
486
+ .rpsp-front-page, .rpsp-single {
487
+ .biblical-commentary {
488
+ p {
489
+ font-family: Lora-Italic;
490
+ font-size: 15px;
491
+ line-height: 25px;
492
+ }
493
+ }
494
+ }
495
+
386
496
  // SINGLES
387
497
 
388
- .rpsp-single {
498
+ .rpsp-single, .rpsp-single-weekly, .rpsp-single-card {
389
499
  .entry-content {
390
500
  ul {
391
501
  li + li {
@@ -406,6 +516,13 @@
406
516
  img {
407
517
  margin-bottom: 0;
408
518
  }
519
+ #iasd-page-prevnext {
520
+ .page-prevnext {
521
+ em {
522
+ margin-bottom: 0;
523
+ }
524
+ }
525
+ }
409
526
  }
410
527
 
411
528
  // ARCHIVES
@@ -417,13 +534,235 @@
417
534
  img {
418
535
  border: solid 1px #979797;
419
536
  }
420
- h2 {
421
- display: inline-block;
537
+ a {
538
+ h2 {
539
+ display: inline-block;
540
+ font-size: 20px;
541
+ font-weight: 900;
542
+ line-height: 24px;
543
+ color: $text-color;
544
+ }
545
+ &:hover, &:focus, &:active {
546
+ border-bottom: 0;
547
+ h2 {
548
+ color: $theme-main-color;
549
+ }
550
+ }
551
+ }
552
+ }
553
+
554
+ // PROGRAMA DE LEITURA MENSAL
555
+
556
+ .rpsp-monthly-program {
557
+ .btn-outline {
558
+ font-weight: 400;
559
+ border-color: $btn-default-border;
560
+ color: $btn-default-border;
422
561
  }
423
- select {
562
+ .periodic-controls {
563
+ display: inline-block;
424
564
  width: 100%;
565
+ position: relative;
566
+ text-align: center;
567
+ h2 {
568
+ display: inline-block;
569
+ margin: 0;
570
+ font-size: 24px;
571
+ font-weight: 700;
572
+ line-height: 29px;
573
+ color: $theme-alt-color;
574
+ }
575
+ a {
576
+ position: absolute;
577
+ top: 50%;
578
+ margin-top: -7px;
579
+ font-size: 22px;
580
+ line-height: 14px;
581
+ font-weight: 700;
582
+ color: $theme-alt-color;
583
+ &.periodic-control-prev {
584
+ left: 0;
585
+ }
586
+ &.periodic-control-next {
587
+ right: 0;
588
+ }
589
+ }
590
+ }
591
+ .btn {
592
+ + .btn {
593
+ margin-left: 10px;
594
+ }
595
+ }
596
+ table, tbody, tr {
597
+ border: 0;
598
+ }
599
+ table {
600
+ margin-top: 40px;
601
+ }
602
+ th {
603
+ padding-bottom: 10px;
604
+ width: 12.5%;
605
+ border-color: transparent;
606
+ font-size: 12px;
607
+ line-height: 15px;
608
+ font-weight: 400;
609
+ color: $alt-link-color;
610
+ text-transform: uppercase;
611
+ }
612
+ td {
613
+ padding: 0 !important;
614
+ border-top: solid 1px $border-base;
425
615
  border-color: $border-base;
616
+ width: 12.5%;
426
617
  background: #ffffff;
618
+ a {
619
+ display: block;
620
+ position: relative;
621
+ padding: 30px 0;
622
+ text-align: center;
623
+ font-size: 20px;
624
+ font-weight: 300;
625
+ color: $alt-link-color;
626
+ span {
627
+ position: absolute;
628
+ bottom: 5px;
629
+ left: 5px;
630
+ display: block;
631
+ height: 18px;
632
+ width: 18px;
633
+ border-radius: 50%;
634
+ font-size: 12px;
635
+ line-height: 18px;
636
+ font-weight: 300;
637
+ }
638
+ }
639
+ &.current-month {
640
+ a {
641
+ color: $text-color;
642
+ span {
643
+ color: $text-color;
644
+ }
645
+ }
646
+ }
647
+ &:hover {
648
+ border: solid 1px $text-color;
649
+ a {
650
+ span {
651
+ background: $theme-main-color;
652
+ color: #ffffff;
653
+ }
654
+ }
655
+ }
656
+ }
657
+
658
+ .readings {
659
+ a {
660
+ padding: 30px 5px;
661
+ font-size: 13px;
662
+ font-weight: 400;
663
+ line-height: 20px;
664
+ text-align: left;
665
+ color: $theme-main-color;
666
+ }
667
+ }
668
+ }
669
+
670
+ // PROGRAMA DE LEITURA SEMANAL
671
+
672
+ .rpsp-weekly-program {
673
+ .btn-outline {
674
+ font-weight: 400;
675
+ border-color: $btn-default-border;
676
+ color: $btn-default-border;
677
+ }
678
+ .periodic-controls {
679
+ display: inline-block;
680
+ width: 100%;
681
+ margin-bottom: 40px;
682
+ position: relative;
683
+ text-align: center;
684
+ h2 {
685
+ display: inline-block;
686
+ margin: 0;
687
+ font-size: 24px;
688
+ font-weight: 700;
689
+ line-height: 29px;
690
+ color: $theme-alt-color;
691
+ }
692
+ a {
693
+ position: absolute;
694
+ top: 50%;
695
+ margin-top: -7px;
696
+ font-size: 22px;
697
+ line-height: 14px;
698
+ font-weight: 700;
699
+ color: $theme-alt-color;
700
+ &.periodic-control-prev {
701
+ left: 0;
702
+ }
703
+ &.periodic-control-next {
704
+ right: 0;
705
+ }
706
+ }
707
+ }
708
+ .btn {
709
+ + .btn {
710
+ margin-left: 10px;
711
+ }
712
+ }
713
+ .lala {
714
+ padding-left: 1px;
715
+ }
716
+ .weekly-program-day {
717
+ position: relative;
718
+ margin-left: -1px;
719
+ padding: 0;
720
+ border: solid 1px $border-base;
721
+ background: #ffffff;
722
+ a {
723
+ display: block;
724
+ position: relative;
725
+ width: 100%;
726
+ padding: 30px 5px;
727
+ text-align: left;
728
+ font-size: 20px;
729
+ font-weight: 300;
730
+ white-space: nowrap;
731
+ overflow: hidden;
732
+ text-overflow: ellipsis;
733
+ color: $text-color;
734
+ span {
735
+ position: absolute;
736
+ top: 5px;
737
+ left: 5px;
738
+ display: block;
739
+ height: 18px;
740
+ width: 100%;
741
+ border-radius: 50%;
742
+ font-size: 12px;
743
+ line-height: 18px;
744
+ font-weight: 400;
745
+ text-transform: uppercase;
746
+ color: $btn-default-border;
747
+ }
748
+ }
749
+ &:hover {
750
+ border: solid 1px $text-color;
751
+ z-index: 2;
752
+ }
753
+ &.readings {
754
+ a {
755
+ padding: 30px 5px;
756
+ font-size: 13px;
757
+ font-weight: 400;
758
+ line-height: 20px;
759
+ text-align: left;
760
+ color: $theme-main-color;
761
+ }
762
+ }
763
+ &:nth-child(n+5) {
764
+ margin-top: -1px;
765
+ }
427
766
  }
428
767
  }
429
768
 
@@ -461,7 +800,7 @@
461
800
  .share-reading-img {
462
801
  margin-bottom: 65px;
463
802
  }
464
- .rpsp-archive-videos {
803
+ .rpsp-archive-videos, .rpsp-archive-cards {
465
804
  a {
466
805
  h2 {
467
806
  display: inline-block;
@@ -483,6 +822,13 @@
483
822
  width: auto;
484
823
  margin-bottom: 30px;
485
824
  }
825
+ .entry-content {
826
+ .rpsp-social-header {
827
+ ul {
828
+ padding-left: 0 !important;
829
+ }
830
+ }
831
+ }
486
832
  .rpsp-social-header {
487
833
  position: relative;
488
834
  ul {
@@ -515,4 +861,59 @@
515
861
  }
516
862
  }
517
863
  }
864
+
865
+ .rpsp-monthly-program {
866
+ .periodic-controls {
867
+ text-align: left;
868
+ .dropdown {
869
+ display: inline-block;
870
+ }
871
+ select {
872
+ border: solid 1px $border-base;
873
+ font-weight: 300;
874
+ background: #ffffff;
875
+ }
876
+ }
877
+ table {
878
+ margin-top: 30px;
879
+ }
880
+ td, th {
881
+ width: 14.28%;
882
+ }
883
+ th {
884
+ font-size: 10px;
885
+ }
886
+ td {
887
+ background: transparent;
888
+ a {
889
+ padding: 13px 0;
890
+ font-size: 13px;
891
+ span {
892
+ bottom: -3px;
893
+ left: 0;
894
+ font-size: 10px;
895
+ line-height: 12px;
896
+ }
897
+ }
898
+ }
899
+
900
+ .readings {
901
+ padding: 30px 5px;
902
+ a {
903
+ font-size: 13px;
904
+ font-weight: 400;
905
+ line-height: 20px;
906
+ text-align: left;
907
+ color: $theme-main-color;
908
+ }
909
+ }
910
+ }
911
+
912
+ .rpsp-weekly-program {
913
+ .weekly-program-day {
914
+ &:nth-child(n+3){
915
+ margin-top: -1px;
916
+ }
917
+ }
918
+ }
518
919
  }
@@ -22,4 +22,30 @@
22
22
  "futurastd-light-webfont.woff",
23
23
  "futurastd-light-webfont.ttf",
24
24
  "futurastd-light-webfont.svg#futura_std_light"
25
- ), "futurastd-light-webfont.eot", 300, normal);
25
+ ), "futurastd-light-webfont.eot", 300, normal);
26
+
27
+
28
+ @include font-face(
29
+ "Lora Std",
30
+ font-files(
31
+ "Lora-Regular.ttf"
32
+ ));
33
+
34
+ @include font-face(
35
+ "Lora Bold",
36
+ font-files(
37
+ "Lora-Bold.ttf"
38
+ ));
39
+
40
+ @include font-face(
41
+ "Lora Italic",
42
+ font-files(
43
+ "Lora-Italic.ttf"
44
+ ));
45
+
46
+
47
+ @include font-face(
48
+ "Lora Bold Italic",
49
+ font-files(
50
+ "Lora-BoldItalic.ttf"
51
+ ));
@@ -1139,6 +1139,20 @@ aside {
1139
1139
 
1140
1140
  }
1141
1141
 
1142
+ @media (max-width: $screen-xs ){
1143
+ .col-sm-8,.col-md-8,.col-sm-12,.col-md-12{
1144
+ .iasd-widget-slider{
1145
+ &.col-sm-12, &.col-md-12{
1146
+ .owl-carousel {
1147
+ .slider-item{
1148
+ min-height: 245px !important;
1149
+ }
1150
+ }
1151
+ }
1152
+ }
1153
+ }
1154
+ }
1155
+
1142
1156
  /* ***************** */
1143
1157
  /* Posts Box Widget */
1144
1158
  /* ***************** */
@@ -2512,7 +2526,7 @@ aside {
2512
2526
  bottom: 0;
2513
2527
  background: none;
2514
2528
  padding: 0;
2515
- margin: 20px 30px 0 30px;
2529
+ margin: 5px 30px 0 30px;
2516
2530
  height: 17px;
2517
2531
  width: 10px;
2518
2532
  z-index: 10;
@@ -2685,7 +2699,7 @@ aside {
2685
2699
  position: relative;
2686
2700
  background: none;
2687
2701
  padding: 0;
2688
- margin: 20px 30px 0 30px;
2702
+ margin: 0px 30px 0 30px;
2689
2703
  height: 17px;
2690
2704
  width: 10px;
2691
2705
  z-index: 10;
@@ -2890,7 +2904,7 @@ a.see-all-apps {
2890
2904
 
2891
2905
  .iasd-apps-portal {
2892
2906
  .iasd-widget{
2893
- margin-bottom: 40px; // Alterado de 50px para 40px WD
2907
+ margin-bottom: 25px; // Alterado de 50px para 40px WD
2894
2908
  a{
2895
2909
  color: white !important;
2896
2910
  font-size: 12px;
@@ -3019,6 +3033,7 @@ a.see-all-apps {
3019
3033
 
3020
3034
  .col-md-12-highlight{
3021
3035
  margin-bottom: 40px;
3036
+ background-size: cover;
3022
3037
  }
3023
3038
  }
3024
3039
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * IASD Bootstrap v1.7.0 (http://styleguide.adventistas.org)
3
- * Copyright 2014-2015 Igreja Adventista do Sétimo Dia
2
+ * IASD Bootstrap v1.7.1 (http://styleguide.adventistas.org)
3
+ * Copyright 2014-2016 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * IASD Bootstrap v1.7.0 (http://styleguide.adventistas.org)
3
- * Copyright 2014-2015 Igreja Adventista do Sétimo Dia
2
+ * IASD Bootstrap v1.7.1 (http://styleguide.adventistas.org)
3
+ * Copyright 2014-2016 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
6
6
  if(window.Modernizr=function(a,b,c){function d(a){o.cssText=a}function e(a,b){return typeof a===b}var f,g,h,i="2.6.2",j={},k=!0,l=b.documentElement,m="modernizr",n=b.createElement(m),o=n.style,p=({}.toString," -webkit- -moz- -o- -ms- ".split(" ")),q={},r=[],s=r.slice,t=function(a,c,d,e){var f,g,h,i,j=b.createElement("div"),k=b.body,n=k||b.createElement("body");if(parseInt(d,10))for(;d--;)h=b.createElement("div"),h.id=e?e[d]:m+(d+1),j.appendChild(h);return f=["&#173;",'<style id="s',m,'">',a,"</style>"].join(""),j.id=m,(k?j:n).innerHTML+=f,n.appendChild(j),k||(n.style.background="",n.style.overflow="hidden",i=l.style.overflow,l.style.overflow="hidden",l.appendChild(n)),g=c(j,a),k?j.parentNode.removeChild(j):(n.parentNode.removeChild(n),l.style.overflow=i),!!g},u=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return t("@media "+b+" { #"+m+" { position: absolute; } }",function(b){d="absolute"==(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle).position}),d},v={}.hasOwnProperty;h=e(v,"undefined")||e(v.call,"undefined")?function(a,b){return b in a&&e(a.constructor.prototype[b],"undefined")}:function(a,b){return v.call(a,b)},Function.prototype.bind||(Function.prototype.bind=function(a){var b=this;if("function"!=typeof b)throw new TypeError;var c=s.call(arguments,1),d=function(){if(this instanceof d){var e=function(){};e.prototype=b.prototype;var f=new e,g=b.apply(f,c.concat(s.call(arguments)));return Object(g)===g?g:f}return b.apply(a,c.concat(s.call(arguments)))};return d}),q.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:t(["@media (",p.join("touch-enabled),("),m,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=9===a.offsetTop}),c};for(var w in q)h(q,w)&&(g=w.toLowerCase(),j[g]=q[w](),r.push((j[g]?"":"no-")+g));return j.addTest=function(a,b){if("object"==typeof a)for(var d in a)h(a,d)&&j.addTest(d,a[d]);else{if(a=a.toLowerCase(),j[a]!==c)return j;b="function"==typeof b?b():b,"undefined"!=typeof k&&k&&(l.className+=" "+(b?"":"no-")+a),j[a]=b}return j},d(""),n=f=null,j._version=i,j._prefixes=p,j.mq=u,j.testStyles=t,l.className=l.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(k?" js "+r.join(" "):""),j}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==q.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=r.shift();s=1,a?a.t?o(function(){("c"==a.t?m.injectCss:m.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):s=0}function i(a,c,d,e,f,i,j){function k(b){if(!n&&g(l.readyState)&&(t.r=n=1,!s&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&o(function(){v.removeChild(l)},50);for(var d in A[c])A[c].hasOwnProperty(d)&&A[c][d].onload()}}var j=j||m.errorTimeout,l=b.createElement(a),n=0,q=0,t={t:d,s:c,e:f,a:i,x:j};1===A[c]&&(q=1,A[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,q)},r.splice(e,0,t),"img"!=a&&(q||2===A[c]?(v.insertBefore(l,u?null:p),o(k,j)):A[c].push(l))}function j(a,b,c,d,f){return s=0,b=b||"j",e(a)?i("c"==b?x:w,a,b,this.i++,c,d,f):(r.splice(this.i++,0,a),1==r.length&&h()),this}function k(){var a=m;return a.loader={load:j,i:0},a}var l,m,n=b.documentElement,o=a.setTimeout,p=b.getElementsByTagName("script")[0],q={}.toString,r=[],s=0,t="MozAppearance"in n.style,u=t&&!!b.createRange().compareNode,v=u?n:p.parentNode,n=a.opera&&"[object Opera]"==q.call(a.opera),n=!!b.attachEvent&&!n,w=t?"object":n?"script":"img",x=n?"script":w,y=Array.isArray||function(a){return"[object Array]"==q.call(a)},z=[],A={},B={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}};m=function(a){function b(a){var b,c,d,a=a.split("!"),e=z.length,f=a.pop(),g=a.length,f={url:f,origUrl:f,prefixes:a};for(c=0;g>c;c++)d=a[c].split("="),(b=B[d.shift()])&&(f=b(f,d));for(c=0;e>c;c++)f=z[c](f);return f}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(A[i.url]?i.noexec=!0:A[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),A[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(l=function(){var a=[].slice.call(arguments);m.apply(this,a),n()}),g(a,l,b,0,j);else if(Object(a)===a)for(i in h=function(){var b,c=0;for(b in a)a.hasOwnProperty(b)&&c++;return c}(),a)a.hasOwnProperty(i)&&(!c&&!--h&&(d(l)?l=function(){var a=[].slice.call(arguments);m.apply(this,a),n()}:l[i]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),n()}}(m[i])),g(a[i],l,b,i,j))}else!c&&n()}var h,i,j=!!a.test,k=a.load||a.both,l=a.callback||f,m=l,n=a.complete||f;c(j?a.yep:a.nope,!!k),k&&c(k)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(y(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):y(j)?m(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},m.addPrefix=function(a,b){B[a]=b},m.addFilter=function(a){z.push(a)},m.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",l=function(){b.removeEventListener("DOMContentLoaded",l,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k,l,n=b.createElement("script"),e=e||m.errorTimeout;n.src=a;for(l in d)n.setAttribute(l,d[l]);c=j?h:c||f,n.onreadystatechange=n.onload=function(){!k&&g(n.readyState)&&(k=1,c(),n.onload=n.onreadystatechange=null)},o(function(){k||(k=1,c(1))},e),i?n.onload():p.parentNode.insertBefore(n,p)},a.yepnope.injectCss=function(a,c,d,e,g,i){var j,e=b.createElement("link"),c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(p.parentNode.insertBefore(e,p),o(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))},!jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]}}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(window.jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d)};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.is("input")?"val":"html",e=c.data();a+="Text",e.resetText||c.data("resetText",c[d]()),c[d](e[a]||this.options[a]),setTimeout(function(){"loadingText"==a?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons"]');if(a.length){var b=this.$element.find("input").prop("checked",!this.$element.hasClass("active")).trigger("change");"radio"===b.prop("type")&&a.find(".active").removeClass("active")}this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(window.jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(window.jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b),f.trigger(d=a.Event("show.bs.dropdown")),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown"),e.focus()}return!1}},f.prototype.keydown=function(b){if(/(38|40|27)/.test(b.keyCode)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var f=c(d),g=f.hasClass("open");if(!g||g&&27==b.keyCode)return 27==b.which&&f.find(e).focus(),d.click();var h=a("[role=menu] li:not(.divider):visible a",f);if(h.length){var i=h.index(h.filter(":focus"));38==b.keyCode&&i>0&&i--,40==b.keyCode&&i<h.length-1&&i++,~i||(i=0),h.eq(i).focus()}}}};var g=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var c=a(this),d=c.data("dropdown");d||c.data("dropdown",d=new f(this)),"string"==typeof b&&d[b].call(c)})},a.fn.dropdown.Constructor=f,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=g,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",e,f.prototype.toggle).on("keydown.bs.dropdown.data-api",e+", [role=menu]",f.prototype.keydown)}(window.jQuery),+function(a){"use strict";var b=function(b,c){this.options=c,this.$element=a(b),this.$backdrop=this.isShown=null,this.options.remote&&this.$element.load(this.options.remote)};b.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},b.prototype.toggle=function(a){return this[this.isShown?"hide":"show"](a)},b.prototype.show=function(b){var c=this,d=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(d),this.isShown||d.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.$element.on("click.dismiss.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.backdrop(function(){var d=a.support.transition&&c.$element.hasClass("fade");c.$element.parent().length||c.$element.appendTo(document.body),c.$element.show(),d&&c.$element[0].offsetWidth,c.$element.addClass("in").attr("aria-hidden",!1),c.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:b});d?c.$element.find(".modal-dialog").one(a.support.transition.end,function(){c.$element.focus().trigger(e)}).emulateTransitionEnd(300):c.$element.focus().trigger(e)}))},b.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one(a.support.transition.end,a.proxy(this.hideModal,this)).emulateTransitionEnd(300):this.hideModal())},b.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.focus()},this))},b.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keyup.dismiss.bs.modal")},b.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.removeBackdrop(),a.$element.trigger("hidden.bs.modal")})},b.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},b.prototype.backdrop=function(b){var c=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var d=a.support.transition&&c;if(this.$backdrop=a('<div class="modal-backdrop '+c+'" />').appendTo(document.body),this.$element.on("click.dismiss.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),d&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;d?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()):b&&b()};var c=a.fn.modal;a.fn.modal=function(c,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},b.DEFAULTS,e.data(),"object"==typeof c&&c);f||e.data("bs.modal",f=new b(this,g)),"string"==typeof c?f[c](d):g.show&&f.show(d)})},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());b.preventDefault(),e.modal(f,this).one("hide",function(){c.is(":visible")&&c.focus()})}),a(document).on("show.bs.modal",".modal",function(){a(document.body).addClass("modal-open")}).on("hidden.bs.modal",".modal",function(){a(document.body).removeClass("modal-open")})}(window.jQuery),+function(a){"use strict";var b=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};b.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},b.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focus",i="hover"==g?"mouseleave":"blur";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},b.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},b.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show()},b.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},b.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){if(this.$element.trigger(b),b.isDefaultPrevented())return;var c=this.tip();this.setContent(),this.options.animation&&c.addClass("fade");var d="function"==typeof this.options.placement?this.options.placement.call(this,c[0],this.$element[0]):this.options.placement,e=/\s?auto?\s?/i,f=e.test(d);f&&(d=d.replace(e,"")||"top"),c.detach().css({top:0,left:0,display:"block"}).addClass(d),this.options.container?c.appendTo(this.options.container):c.insertAfter(this.$element);var g=this.getPosition(),h=c[0].offsetWidth,i=c[0].offsetHeight;if(f){var j=this.$element.parent(),k=d,l=document.documentElement.scrollTop||document.body.scrollTop,m="body"==this.options.container?window.innerWidth:j.outerWidth(),n="body"==this.options.container?window.innerHeight:j.outerHeight(),o="body"==this.options.container?0:j.offset().left;d="bottom"==d&&g.top+g.height+i-l>n?"top":"top"==d&&g.top-l-i<0?"bottom":"right"==d&&g.right+h>m?"left":"left"==d&&g.left-h<o?"right":d,c.removeClass(k).addClass(d)}var p=this.getCalculatedOffset(d,g,h,i);this.applyPlacement(p,d),this.$element.trigger("shown.bs."+this.type)}},b.prototype.applyPlacement=function(a,b){var c,d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),a.top=a.top+g,a.left=a.left+h,d.offset(a).addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;if("top"==b&&j!=f&&(c=!0,a.top=a.top+f-j),/bottom|top/.test(b)){var k=0;a.left<0&&(k=-2*a.left,a.left=0,d.offset(a),i=d[0].offsetWidth,j=d[0].offsetHeight),this.replaceArrow(k-e+i,i,"left")}else this.replaceArrow(j-f,j,"top");c&&d.offset(a)},b.prototype.replaceArrow=function(a,b,c){this.arrow().css(c,a?50*(1-a/b)+"%":"")},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},b.prototype.hide=function(){function b(){"in"!=c.hoverState&&d.detach()}var c=this,d=this.tip(),e=a.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:(d.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,b).emulateTransitionEnd(150):b(),this.$element.trigger("hidden.bs."+this.type),this)},b.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},b.prototype.hasContent=function(){return this.getTitle()},b.prototype.getPosition=function(){var b=this.$element[0];return a.extend({},"function"==typeof b.getBoundingClientRect?b.getBoundingClientRect():{width:b.offsetWidth,height:b.offsetHeight},this.$element.offset())},b.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},b.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},b.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},b.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},b.prototype.enable=function(){this.enabled=!0},b.prototype.disable=function(){this.enabled=!1},b.prototype.toggleEnabled=function(){this.enabled=!this.enabled},b.prototype.toggle=function(b){var c=b?a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type):this;c.tip().hasClass("in")?c.leave(c):c.enter(c)},b.prototype.destroy=function(){this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof c&&c;e||d.data("bs.tooltip",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.tooltip.Constructor=b,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(window.jQuery),+function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");b.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(a(c).is("body")?window:c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),+function(a){
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * IASD Bootstrap v1.7.0 (http://styleguide.adventistas.org)
3
- * Copyright 2014-2015 Igreja Adventista do Sétimo Dia
2
+ * IASD Bootstrap v1.7.1 (http://styleguide.adventistas.org)
3
+ * Copyright 2014-2016 Igreja Adventista do Sétimo Dia
4
4
  * Licensed under MIT (https://github.com/igrejaadventista/styleguide/blob/master/LICENSE)
5
5
  */
6
6
 
@@ -30,6 +30,7 @@ image 'img/global_nav/map/region_17.png', :to => 'global_nav/map/region_17.png'
30
30
 
31
31
  image 'img/headers/institutional.png', :to => 'headers/institutional.png'
32
32
  image 'img/headers/destaque-pedidos-de-oracao.png', :to => 'headers/destaque-pedidos-de-oracao.png'
33
+ image 'img/headers/rpsp_header.png', :to => 'headers/rpsp_header.png'
33
34
 
34
35
  image 'img/institutional/download-badge.png', :to => 'institutional/download-badge.png'
35
36
  image 'img/institutional/div.png', :to => 'institutional/div.png'
@@ -72,6 +73,10 @@ image 'img/logos_pt_BR/iasd_header_symbol_small@2x.png', :to => 'logos_pt_BR/ias
72
73
  image 'img/logos_pt_BR/iasd_header_symbol_small.png', :to => 'logos_pt_BR/iasd_header_symbol_small.png'
73
74
  image 'img/logos_pt_BR/iasd_apps_logo.png', :to => 'logos_pt_BR/iasd_apps_logo.png'
74
75
 
76
+ image 'img/logos_pt_BR/rpsp_header_logo.png', :to => 'logos_pt_BR/rpsp_header_logo.png'
77
+ image 'img/logos_pt_BR/rpsp_header_logo@2x.png', :to => 'logos_pt_BR/rpsp_header_logo@2x.png'
78
+
79
+
75
80
  image 'img/logos_es_ES/iasd_header.png', :to => 'logos_es_ES/iasd_header.png'
76
81
  image 'img/logos_es_ES/iasd_header@2x.png', :to => 'logos_es_ES/iasd_header@2x.png'
77
82
  image 'img/logos_es_ES/iasd_dsa_home.png', :to => 'logos_es_ES/iasd_dsa_home.png'
@@ -165,6 +170,10 @@ font 'fonts/futurastd-medium-webfont.svg', :to => 'futurastd-medium-webfont.svg'
165
170
  font 'fonts/futurastd-medium-webfont.ttf', :to => 'futurastd-medium-webfont.ttf'
166
171
  font 'fonts/futurastd-medium-webfont.woff', :to => 'futurastd-medium-webfont.woff'
167
172
 
173
+ font 'fonts/futurastd-medium-webfont.eot', :to => 'Lora-Bold.ttf'
174
+ font 'fonts/futurastd-medium-webfont.svg', :to => 'Lora-BoldItalic.ttf'
175
+ font 'fonts/futurastd-medium-webfont.ttf', :to => 'Lora-Italic.ttf'
176
+ font 'fonts/futurastd-medium-webfont.woff', :to => 'Lora-Regular.ttf'
168
177
  # javascript 'lib/bootstrap.min.js', :to => 'bootstrap.min.js'
169
178
  # javascript 'lib/respond.min.js', :to => 'respond.min.js'
170
179
  # javascript 'lib/html5shiv.js', :to => 'html5shiv.js'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iasd-bootstrap-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Filipi Zimermann
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-10 00:00:00.000000000 Z
11
+ date: 2016-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: compass
@@ -142,6 +142,10 @@ files:
142
142
  - stylesheets/_progression-player.scss
143
143
  - stylesheets/iasd-bootstrap.scss
144
144
  - stylesheets/iasd-print.scss
145
+ - templates/project/fonts/Lora-Bold.ttf
146
+ - templates/project/fonts/Lora-BoldItalic.ttf
147
+ - templates/project/fonts/Lora-Italic.ttf
148
+ - templates/project/fonts/Lora-Regular.ttf
145
149
  - templates/project/fonts/futurastd-book-webfont.eot
146
150
  - templates/project/fonts/futurastd-book-webfont.svg
147
151
  - templates/project/fonts/futurastd-book-webfont.ttf
@@ -214,6 +218,7 @@ files:
214
218
  - templates/project/img/global_nav/tutorial_arrow@2x.png
215
219
  - templates/project/img/headers/destaque-pedidos-de-oracao.png
216
220
  - templates/project/img/headers/institutional.png
221
+ - templates/project/img/headers/rpsp_header.png
217
222
  - templates/project/img/institutional/div.png
218
223
  - templates/project/img/institutional/download-badge.png
219
224
  - templates/project/img/institutional/sprite_bandeiras.svg
@@ -248,6 +253,8 @@ files:
248
253
  - templates/project/img/logos_pt_BR/iasd_header_symbol_small@2x.png
249
254
  - templates/project/img/logos_pt_BR/iasd_header_vertical.png
250
255
  - templates/project/img/logos_pt_BR/iasd_header_vertical@2x.png
256
+ - templates/project/img/logos_pt_BR/rpsp_header_logo.png
257
+ - templates/project/img/logos_pt_BR/rpsp_header_logo@2x.png
251
258
  - templates/project/img/player_nt/radio-novo-tempo_esp.jpg
252
259
  - templates/project/img/player_nt/radio-novo-tempo_pt.jpg
253
260
  - templates/project/img/player_nt/tv-novo-tempo_esp.jpg