bookreader 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.gitmodules +3 -0
  4. data/.travis.yml +7 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +43 -0
  9. data/Rakefile +10 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/bookreader.gemspec +42 -0
  13. data/lib/bookreader/engine.rb +6 -0
  14. data/lib/bookreader/version.rb +3 -0
  15. data/lib/bookreader.rb +8 -0
  16. data/vendor/assets/images/BRicons.png +0 -0
  17. data/vendor/assets/images/BRicons.svg +94 -0
  18. data/vendor/assets/images/BRicons_ia.png +0 -0
  19. data/vendor/assets/images/back_pages.png +0 -0
  20. data/vendor/assets/images/book_bottom_icon.png +0 -0
  21. data/vendor/assets/images/book_down_icon.png +0 -0
  22. data/vendor/assets/images/book_left_icon.png +0 -0
  23. data/vendor/assets/images/book_leftmost_icon.png +0 -0
  24. data/vendor/assets/images/book_right_icon.png +0 -0
  25. data/vendor/assets/images/book_rightmost_icon.png +0 -0
  26. data/vendor/assets/images/book_top_icon.png +0 -0
  27. data/vendor/assets/images/book_up_icon.png +0 -0
  28. data/vendor/assets/images/books_graphic.svg +177 -0
  29. data/vendor/assets/images/booksplit.png +0 -0
  30. data/vendor/assets/images/control_pause_icon.png +0 -0
  31. data/vendor/assets/images/control_play_icon.png +0 -0
  32. data/vendor/assets/images/embed_icon.png +0 -0
  33. data/vendor/assets/images/icon-home-ia.png +0 -0
  34. data/vendor/assets/images/icon_OL-logo-xs.png +0 -0
  35. data/vendor/assets/images/icon_alert-xs.png +0 -0
  36. data/vendor/assets/images/icon_book.svg +12 -0
  37. data/vendor/assets/images/icon_bookmark.svg +12 -0
  38. data/vendor/assets/images/icon_close-pop.png +0 -0
  39. data/vendor/assets/images/icon_download.png +0 -0
  40. data/vendor/assets/images/icon_gear.svg +17 -0
  41. data/vendor/assets/images/icon_hamburger.svg +20 -0
  42. data/vendor/assets/images/icon_home.png +0 -0
  43. data/vendor/assets/images/icon_home.svg +21 -0
  44. data/vendor/assets/images/icon_home_ia.png +0 -0
  45. data/vendor/assets/images/icon_indicator.png +0 -0
  46. data/vendor/assets/images/icon_info.svg +12 -0
  47. data/vendor/assets/images/icon_one_page.svg +16 -0
  48. data/vendor/assets/images/icon_return.png +0 -0
  49. data/vendor/assets/images/icon_search_button.svg +14 -0
  50. data/vendor/assets/images/icon_search_button_blue.svg +18 -0
  51. data/vendor/assets/images/icon_share.svg +17 -0
  52. data/vendor/assets/images/icon_speaker.svg +18 -0
  53. data/vendor/assets/images/icon_speaker_open.svg +26 -0
  54. data/vendor/assets/images/icon_thumbnails.svg +19 -0
  55. data/vendor/assets/images/icon_two_pages.svg +17 -0
  56. data/vendor/assets/images/icon_zoomer.png +0 -0
  57. data/vendor/assets/images/left_edges.png +0 -0
  58. data/vendor/assets/images/loading.gif +0 -0
  59. data/vendor/assets/images/logo_icon.png +0 -0
  60. data/vendor/assets/images/marker_chap-off.png +0 -0
  61. data/vendor/assets/images/marker_chap-off.svg +11 -0
  62. data/vendor/assets/images/marker_chap-off_ia.png +0 -0
  63. data/vendor/assets/images/marker_chap-on.png +0 -0
  64. data/vendor/assets/images/marker_chap-on.svg +11 -0
  65. data/vendor/assets/images/marker_srch-off.png +0 -0
  66. data/vendor/assets/images/marker_srch-off.svg +11 -0
  67. data/vendor/assets/images/marker_srch-on.png +0 -0
  68. data/vendor/assets/images/marker_srch-on.svg +11 -0
  69. data/vendor/assets/images/marker_srchchap-off.png +0 -0
  70. data/vendor/assets/images/marker_srchchap-on.png +0 -0
  71. data/vendor/assets/images/nav_control-dn.png +0 -0
  72. data/vendor/assets/images/nav_control-dn_ia.png +0 -0
  73. data/vendor/assets/images/nav_control-up.png +0 -0
  74. data/vendor/assets/images/nav_control-up_ia.png +0 -0
  75. data/vendor/assets/images/nav_control.png +0 -0
  76. data/vendor/assets/images/one_page_mode_icon.png +0 -0
  77. data/vendor/assets/images/paper-badge.png +0 -0
  78. data/vendor/assets/images/print_icon.png +0 -0
  79. data/vendor/assets/images/progressbar.gif +0 -0
  80. data/vendor/assets/images/right_edges.png +0 -0
  81. data/vendor/assets/images/slider.png +0 -0
  82. data/vendor/assets/images/slider_ia.png +0 -0
  83. data/vendor/assets/images/thumbnail_mode_icon.png +0 -0
  84. data/vendor/assets/images/transparent.png +0 -0
  85. data/vendor/assets/images/two_page_mode_icon.png +0 -0
  86. data/vendor/assets/images/zoom_in_icon.png +0 -0
  87. data/vendor/assets/images/zoom_out_icon.png +0 -0
  88. data/vendor/assets/javascripts/BookReader.js +4849 -0
  89. data/vendor/assets/javascripts/BookReaderJSAdvanced.js +115 -0
  90. data/vendor/assets/javascripts/BookReaderJSSimple.js +56 -0
  91. data/vendor/assets/javascripts/IIIFBookReader.js +207 -0
  92. data/vendor/assets/javascripts/demo-iiif.js +26 -0
  93. data/vendor/assets/javascripts/dragscrollable-br.js +261 -0
  94. data/vendor/assets/javascripts/excanvas.compiled.js +35 -0
  95. data/vendor/assets/javascripts/jquery-1.10.1.js +9807 -0
  96. data/vendor/assets/javascripts/jquery-ui-1.12.0.min.js +18686 -0
  97. data/vendor/assets/javascripts/jquery.browser.min.js +14 -0
  98. data/vendor/assets/javascripts/jquery.bt.min.js +8 -0
  99. data/vendor/assets/javascripts/jquery.colorbox-min.js +6 -0
  100. data/vendor/assets/javascripts/jquery.ui.touch-punch.min.js +11 -0
  101. data/vendor/assets/javascripts/mmenu/dist/addons/navbars/jquery.mmenu.navbars.min.js +43 -0
  102. data/vendor/assets/javascripts/mmenu/dist/addons/offcanvas/jquery.mmenu.offcanvas.min.js +7 -0
  103. data/vendor/assets/javascripts/mmenu/dist/addons/screenreader/jquery.mmenu.screenreader.min.js +7 -0
  104. data/vendor/assets/javascripts/mmenu/dist/addons/searchfield/jquery.mmenu.searchfield.min.js +7 -0
  105. data/vendor/assets/javascripts/mmenu/dist/js/jquery.mmenu.all.min.js +151 -0
  106. data/vendor/assets/javascripts/mmenu/dist/js/jquery.mmenu.all.min.umd.js +162 -0
  107. data/vendor/assets/javascripts/mmenu/dist/js/jquery.mmenu.min.js +25 -0
  108. data/vendor/assets/javascripts/mmenu/dist/js/jquery.mmenu.min.umd.js +36 -0
  109. data/vendor/assets/javascripts/mmenu/dist/js/jquery.mmenu.oncanvas.min.js +13 -0
  110. data/vendor/assets/javascripts/mmenu/jquery.mmenu.searchfield.js +510 -0
  111. data/vendor/assets/javascripts/plugins/plugin.archive_analytics.js +67 -0
  112. data/vendor/assets/javascripts/plugins/plugin.chapters.js +197 -0
  113. data/vendor/assets/javascripts/plugins/plugin.iframe.js +73 -0
  114. data/vendor/assets/javascripts/plugins/plugin.mobile_nav.js +197 -0
  115. data/vendor/assets/javascripts/plugins/plugin.print.js +70 -0
  116. data/vendor/assets/javascripts/plugins/plugin.resume.js +73 -0
  117. data/vendor/assets/javascripts/plugins/plugin.search.js +523 -0
  118. data/vendor/assets/javascripts/plugins/plugin.themes.js +49 -0
  119. data/vendor/assets/javascripts/plugins/plugin.tts.js +523 -0
  120. data/vendor/assets/javascripts/plugins/plugin.url.js +168 -0
  121. data/vendor/assets/javascripts/soundmanager/license.txt +29 -0
  122. data/vendor/assets/javascripts/soundmanager/script/soundmanager2-jsmin.js +113 -0
  123. data/vendor/assets/javascripts/soundmanager/script/soundmanager2-nodebug-jsmin.js +83 -0
  124. data/vendor/assets/javascripts/soundmanager/script/soundmanager2-nodebug.js +2765 -0
  125. data/vendor/assets/javascripts/soundmanager/script/soundmanager2.js +6325 -0
  126. data/vendor/assets/javascripts/soundmanager/swf/soundmanager2.swf +0 -0
  127. data/vendor/assets/javascripts/soundmanager/swf/soundmanager2_debug.swf +0 -0
  128. data/vendor/assets/javascripts/soundmanager/swf/soundmanager2_flash9.swf +0 -0
  129. data/vendor/assets/javascripts/soundmanager/swf/soundmanager2_flash9_debug.swf +0 -0
  130. data/vendor/assets/javascripts/soundmanager/swf/soundmanager2_flash_xdomain.zip +0 -0
  131. data/vendor/assets/stylesheets/BookReader.css +1887 -0
  132. data/vendor/assets/stylesheets/BookReaderDemo.css +18 -0
  133. data/vendor/assets/stylesheets/BookReaderEmbed.css +0 -0
  134. data/vendor/assets/stylesheets/demo.css +0 -0
  135. data/vendor/assets/stylesheets/dist/addons/navbars/jquery.mmenu.navbars.css +29 -0
  136. data/vendor/assets/stylesheets/dist/addons/offcanvas/jquery.mmenu.offcanvas.css +14 -0
  137. data/vendor/assets/stylesheets/dist/addons/screenreader/jquery.mmenu.screenreader.css +1 -0
  138. data/vendor/assets/stylesheets/dist/addons/searchfield/jquery.mmenu.searchfield.css +16 -0
  139. data/vendor/assets/stylesheets/dist/css/jquery.mmenu.all.css +413 -0
  140. data/vendor/assets/stylesheets/dist/css/jquery.mmenu.css +80 -0
  141. data/vendor/assets/stylesheets/dist/css/jquery.mmenu.oncanvas.css +66 -0
  142. metadata +226 -0
@@ -0,0 +1,1887 @@
1
+ /* Variables */
2
+ /* COLORBOX POP-UP */
3
+ #colorbox, #cboxOverlay, #cboxWrapper {
4
+ position: absolute;
5
+ top: 0;
6
+ left: 0;
7
+ z-index: 3000;
8
+ }
9
+
10
+ #cboxOverlay {
11
+ position: fixed;
12
+ width: 100%;
13
+ height: 100%;
14
+ background: #000;
15
+ opacity: 0.75;
16
+ filter: Alpha(Opacity=75);
17
+ }
18
+
19
+ #cboxMiddleLeft, #cboxBottomLeft {
20
+ clear: left;
21
+ }
22
+
23
+ #cboxContent {
24
+ position: relative;
25
+ }
26
+
27
+ #cboxLoadedContent {
28
+ overflow: hidden !important;
29
+ }
30
+
31
+ #cboxLoadedContent iframe {
32
+ display: block;
33
+ border: 0;
34
+ }
35
+
36
+ #cboxTitle {
37
+ margin: 0;
38
+ display: none !important;
39
+ }
40
+
41
+ #cboxLoadingOverlay, #cboxLoadingGraphic {
42
+ position: absolute;
43
+ top: 25px;
44
+ left: 25px;
45
+ width: 100%;
46
+ }
47
+
48
+ #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
49
+ cursor: pointer;
50
+ }
51
+
52
+ #cboxClose {
53
+ display: none !important;
54
+ }
55
+
56
+ #colorbox {
57
+ background: white;
58
+ border: 2px solid #ccc;
59
+ -webkit-border-radius: 12px;
60
+ -moz-border-radius: 12px;
61
+ border-radius: 12px;
62
+ -webkit-box-shadow: 0px 0px 27px 6px rgba(66, 66, 66, 0.8);
63
+ -moz-box-shadow: 0px 0px 27px 6px rgba(66, 66, 66, 0.8);
64
+ box-shadow: 0px 0px 27px 6px rgba(66, 66, 66, 0.8);
65
+ }
66
+
67
+ #cboxContent {
68
+ padding: 0;
69
+ }
70
+
71
+ #cboxLoadedContent {
72
+ margin: 0;
73
+ }
74
+
75
+ #cboxLoadingOverlay {
76
+ background: transparent;
77
+ }
78
+
79
+ .shift {
80
+ position: absolute !important;
81
+ left: -10000px !important;
82
+ }
83
+
84
+ .BookReader, .BRmobileMenu, .BRfloat {
85
+ /* Shared root element rules */
86
+ font-family: "Helvetica Neue", Arial, Verdana, sans-serif;
87
+ font-size: 14px;
88
+ line-height: 1.2;
89
+ -webkit-text-size-adjust: none;
90
+ /* Some helper functional css utilities */
91
+ /* Desktop-only */
92
+ /* Element-level rules */
93
+ }
94
+ .BookReader .tl, .BRmobileMenu .tl, .BRfloat .tl {
95
+ text-align: left;
96
+ }
97
+ .BookReader .tc, .BookReader .BRtc, .BRmobileMenu .tc, .BRmobileMenu .BRtc, .BRfloat .tc, .BRfloat .BRtc {
98
+ text-align: center;
99
+ }
100
+ .BookReader .tr, .BRmobileMenu .tr, .BRfloat .tr {
101
+ text-align: right;
102
+ }
103
+ .BookReader .ph10, .BRmobileMenu .ph10, .BRfloat .ph10 {
104
+ padding-left: 10px;
105
+ padding-right: 10px;
106
+ }
107
+ .BookReader .mv20, .BRmobileMenu .mv20, .BRfloat .mv20 {
108
+ margin-top: 20px;
109
+ margin-bottom: 20px;
110
+ }
111
+ .BookReader .mt20, .BRmobileMenu .mt20, .BRfloat .mt20 {
112
+ margin-top: 20px;
113
+ }
114
+ .BookReader .b, .BRmobileMenu .b, .BRfloat .b {
115
+ font-weight: bold;
116
+ }
117
+ .BookReader .i, .BRmobileMenu .i, .BRfloat .i {
118
+ font-style: italic;
119
+ }
120
+ .BookReader .smaller, .BRmobileMenu .smaller, .BRfloat .smaller {
121
+ font-size: 0.8em;
122
+ }
123
+ .BookReader .larger, .BRmobileMenu .larger, .BRfloat .larger {
124
+ font-size: 1.2em;
125
+ }
126
+ .BookReader .loader, .BRmobileMenu .loader, .BRfloat .loader {
127
+ background: url(assets/loading.gif) no-repeat 50%;
128
+ height: 16px;
129
+ min-width: 16px;
130
+ }
131
+ @media (min-width: 801px) {
132
+ .BookReader .mobile-only, .BRmobileMenu .mobile-only, .BRfloat .mobile-only {
133
+ display: none;
134
+ }
135
+ .BookReader .pv20-lg, .BRmobileMenu .pv20-lg, .BRfloat .pv20-lg {
136
+ padding-top: 20px;
137
+ padding-bottom: 20px;
138
+ }
139
+ .BookReader .pv50-lg, .BRmobileMenu .pv50-lg, .BRfloat .pv50-lg {
140
+ padding-top: 50px;
141
+ padding-bottom: 50px;
142
+ }
143
+ .BookReader .mv20-lg, .BRmobileMenu .mv20-lg, .BRfloat .mv20-lg {
144
+ margin-top: 20px;
145
+ margin-bottom: 20px;
146
+ }
147
+ }
148
+ @media (max-width: 800px) {
149
+ .BookReader .desktop-only, .BRmobileMenu .desktop-only, .BRfloat .desktop-only {
150
+ display: none;
151
+ }
152
+ }
153
+ @media (min-width: 800px) and (max-width: 1050px) {
154
+ .BookReader .hide-md, .BRmobileMenu .hide-md, .BRfloat .hide-md {
155
+ display: none;
156
+ }
157
+ }
158
+ .BookReader h3, .BRmobileMenu h3, .BRfloat h3 {
159
+ font-size: 20px;
160
+ font-weight: 700;
161
+ color: #dedede;
162
+ }
163
+ .BookReader a, .BRmobileMenu a, .BRfloat a {
164
+ outline: none;
165
+ }
166
+ .BookReader button, .BRmobileMenu button, .BRfloat button {
167
+ cursor: pointer;
168
+ }
169
+ .BookReader a.logo, .BRmobileMenu a.logo, .BRfloat a.logo {
170
+ display: inline-block;
171
+ width: auto;
172
+ height: 100%;
173
+ margin: 0 10px;
174
+ background: transparent url(assets/icon_home.svg) no-repeat center center;
175
+ background-size: contain;
176
+ }
177
+
178
+ .BookReader {
179
+ margin: 0;
180
+ padding: 0;
181
+ position: relative;
182
+ overflow: hidden;
183
+ background-color: black;
184
+ }
185
+
186
+ .BRcontainer {
187
+ top: 0;
188
+ bottom: 0;
189
+ width: 100%;
190
+ overflow-x: auto;
191
+ overflow-y: scroll;
192
+ position: absolute;
193
+ -webkit-overflow-scrolling: touch;
194
+ }
195
+
196
+ .BRprogresspopup {
197
+ position: absolute;
198
+ background-color: white;
199
+ font-size: 1.5em;
200
+ padding: 20px;
201
+ border: 2px solid #999;
202
+ min-width: 300px;
203
+ z-index: 3000;
204
+ }
205
+
206
+ .BRprogressbar {
207
+ background-image: url("assets/progressbar.gif");
208
+ background-repeat: no-repeat;
209
+ background-position: center top;
210
+ }
211
+
212
+ /* Share dialog */
213
+ .BRshare.BRfloat {
214
+ width: 600px;
215
+ }
216
+ .BRshare .share-title {
217
+ margin: 15px 15px 0;
218
+ font-weight: bold;
219
+ font-size: 18px;
220
+ line-height: 22px;
221
+ }
222
+ .BRshare .share-social {
223
+ margin: 15px 15px 0;
224
+ }
225
+ .BRshare .share-social button {
226
+ padding: 0 5px;
227
+ height: 40px;
228
+ text-align: left;
229
+ color: white;
230
+ }
231
+ .BRshare .share-social button > i {
232
+ margin-right: 5px;
233
+ }
234
+ .BRshare .share-social > div {
235
+ display: inline;
236
+ }
237
+ .BRshare .share-embed {
238
+ margin-top: 20px;
239
+ }
240
+ .BRshare label.sub.open-to-this-page {
241
+ display: block;
242
+ }
243
+ .BRshare button[type=button].share-finished {
244
+ background-color: #4a90e2;
245
+ border: 0;
246
+ color: white;
247
+ border-radius: 3px;
248
+ padding: 10px 25px;
249
+ font-size: 15px;
250
+ }
251
+
252
+ /* Info dialog */
253
+ .BRinfoValueWrapper {
254
+ margin-bottom: 10px;
255
+ }
256
+
257
+ .BRinfoValue {
258
+ font-size: 16px;
259
+ }
260
+
261
+ .BRinfoLabel {
262
+ font-size: 12px;
263
+ color: #999;
264
+ }
265
+
266
+ .BRinfoMoreInfoWrapper {
267
+ background-color: #4a90e2;
268
+ border-radius: 2px;
269
+ padding: 8px;
270
+ text-align: center;
271
+ }
272
+ .BRinfoMoreInfoWrapper:active {
273
+ background-color: #509bf2;
274
+ }
275
+
276
+ .BRinfoOtherFormats {
277
+ margin-bottom: 40px;
278
+ }
279
+
280
+ .BRinfoRightCol > div {
281
+ margin-bottom: 15px;
282
+ }
283
+
284
+ .BRinfoFooter {
285
+ text-align: right;
286
+ }
287
+
288
+ /* Fullscreen rules */
289
+ .BookReader.fullscreenActive {
290
+ position: fixed;
291
+ width: 100%;
292
+ height: 100%;
293
+ max-height: 100%;
294
+ background-color: black;
295
+ top: 0;
296
+ left: 0;
297
+ margin: 0;
298
+ z-index: 2000;
299
+ }
300
+ .BookReader.fullscreenActive .BRmobileHamburgerWrapper {
301
+ z-index: 2002;
302
+ }
303
+
304
+ body.BRfullscreenActive {
305
+ overflow: hidden;
306
+ }
307
+ body.BRfullscreenActive .mm-menu {
308
+ z-index: 1999;
309
+ }
310
+
311
+ /* Tooltip styles */
312
+ .bt-wrapper {
313
+ padding: 0;
314
+ border: none !important;
315
+ color: white;
316
+ font-weight: bold;
317
+ }
318
+ .bt-wrapper .bt-content {
319
+ background: #333;
320
+ border-radius: 3px;
321
+ padding: 5px 10px !important;
322
+ }
323
+
324
+ /* High contrast mode */
325
+ .high-contrast .BRpagediv1up {
326
+ background-color: white;
327
+ }
328
+ .high-contrast .BRpagedivthumb {
329
+ background-color: white;
330
+ }
331
+ .high-contrast .BRpageview img,
332
+ .high-contrast .BRtwopageview img {
333
+ -webkit-filter: grayscale(100%) brightness(120%);
334
+ filter: grayscale(100%) brightness(120%);
335
+ }
336
+
337
+ /* Disable selection on Firefox and WebKit */
338
+ .BRnoselect {
339
+ -moz-user-select: none;
340
+ -webkit-user-select: none;
341
+ -webkit-user-drag: none;
342
+ }
343
+
344
+ .BRaction {
345
+ margin-left: 5px;
346
+ margin-right: 5px;
347
+ padding: 8px 30px;
348
+ font-size: 14px;
349
+ border: none;
350
+ border-radius: 3px;
351
+ cursor: pointer;
352
+ min-width: 150px;
353
+ text-align: center;
354
+ line-height: 1;
355
+ }
356
+ .BRaction:active {
357
+ background-color: #ababab;
358
+ }
359
+ .BRaction.default {
360
+ background-color: #c1c1c1;
361
+ color: white;
362
+ }
363
+ .BRaction.primary {
364
+ background-color: #4990E2;
365
+ }
366
+ .BRaction.primary:active {
367
+ background-color: #2a76cd;
368
+ }
369
+ .BRaction.orangeButton {
370
+ background-color: transparent;
371
+ border: 2px solid orange;
372
+ color: orange;
373
+ }
374
+ .BRaction.orangeButton:active {
375
+ border-color: #f9c613;
376
+ }
377
+ .BRaction.skinny {
378
+ min-width: 50px;
379
+ }
380
+ .BRaction.facebook-share-button {
381
+ background-color: #3a5998;
382
+ }
383
+ .BRaction.twitter-share-button {
384
+ background-color: #429aff;
385
+ }
386
+ .BRaction.email-share-button {
387
+ background-color: #c1c1c1;
388
+ }
389
+
390
+ /* Mobile Only */
391
+ @media (max-width: 800px) {
392
+ .BRinfoLeftCol {
393
+ font-size: 14px;
394
+ }
395
+
396
+ .BRimageW {
397
+ text-align: center;
398
+ margin-bottom: 10px;
399
+ }
400
+
401
+ .BRimageW img {
402
+ height: 200px;
403
+ width: auto;
404
+ }
405
+
406
+ .BRinfoValue.larger {
407
+ font-size: 16px;
408
+ }
409
+
410
+ .BRinfoMoreInfoWrapper a {
411
+ font-size: inherit;
412
+ color: white;
413
+ text-decoration: none;
414
+ }
415
+
416
+ .BRinfoOtherFormatsFormat {
417
+ margin-bottom: 6px;
418
+ }
419
+
420
+ .BRinfoFooter {
421
+ margin-bottom: 10px;
422
+ text-align: left;
423
+ }
424
+
425
+ .BRinfoFooter a {
426
+ display: block;
427
+ }
428
+
429
+ .BRfloatFoot.BRinfoFooter {
430
+ margin: initial;
431
+ padding: initial;
432
+ border: initial;
433
+ font-size: inherit;
434
+ }
435
+
436
+ .BRprogresspopup {
437
+ max-width: 80%;
438
+ min-width: inherit;
439
+ }
440
+
441
+ .BookReader .fieldset-embed, .BRmobileMenu .fieldset-embed, .BRfloat .fieldset-embed {
442
+ display: none;
443
+ }
444
+ .BookReader .BRaction, .BRmobileMenu .BRaction, .BRfloat .BRaction {
445
+ padding: 8px 10px;
446
+ margin-left: 0;
447
+ margin-bottom: 10px;
448
+ }
449
+ }
450
+ /* Desktop Only */
451
+ @media (min-width: 801px) {
452
+ .BRinfoW {
453
+ font-size: 14px;
454
+ position: relative;
455
+ padding: 15px;
456
+ }
457
+
458
+ .BRinfoLeftCol {
459
+ float: left;
460
+ width: 40%;
461
+ min-height: 1px;
462
+ }
463
+
464
+ .BRinfoRightCol {
465
+ float: left;
466
+ width: 58%;
467
+ }
468
+
469
+ .BRimageW {
470
+ text-align: center;
471
+ margin-bottom: 10px;
472
+ margin-right: 26px;
473
+ }
474
+
475
+ .BRimageW img {
476
+ height: auto;
477
+ width: 100%;
478
+ }
479
+
480
+ .BRinfoValue.larger {
481
+ font-size: 20px;
482
+ line-height: 1.2;
483
+ }
484
+
485
+ .BRinfoMoreInfoWrapper a {
486
+ font-size: 14px;
487
+ color: white;
488
+ text-decoration: none;
489
+ font-weight: bold;
490
+ }
491
+
492
+ .BRinfoOtherFormatsFormat {
493
+ display: inline;
494
+ margin-right: 10px;
495
+ }
496
+
497
+ .BRinfoFooter {
498
+ font-size: 1em;
499
+ clear: both;
500
+ }
501
+
502
+ .BRinfoFooter a {
503
+ display: inline;
504
+ margin-right: 10px;
505
+ }
506
+
507
+ .BookReader .BRaction, .BRmobileMenu .BRaction, .BRfloat .BRaction {
508
+ padding: 8px 16px;
509
+ }
510
+ }
511
+ .BRpageview {
512
+ position: relative;
513
+ }
514
+
515
+ .BRpagediv1up {
516
+ overflow: hidden;
517
+ cursor: move;
518
+ background-color: #FEFDEB;
519
+ box-shadow: 1px 1px 2px #333;
520
+ }
521
+
522
+ .BRpagedivthumb {
523
+ background-color: #FEFDEB;
524
+ overflow: hidden;
525
+ box-shadow: 1px 1px 2px #333;
526
+ cursor: pointer;
527
+ }
528
+
529
+ .BRpagedivthumb a {
530
+ border: 0;
531
+ }
532
+
533
+ .BRpagedivthumb img {
534
+ border: 0;
535
+ }
536
+
537
+ .BRpagediv2up {
538
+ background-color: #eae2cd;
539
+ overflow: hidden;
540
+ }
541
+
542
+ .BRbookcover {
543
+ position: absolute;
544
+ background-image: none;
545
+ box-shadow: 1px 0 10px #111;
546
+ }
547
+
548
+ .BRpageimage {
549
+ background-color: #FEFDEB;
550
+ cursor: pointer;
551
+ }
552
+
553
+ .BRPreview .BRpageimage {
554
+ background-color: #eee;
555
+ -webkit-filter: grayscale(100%);
556
+ filter: grayscale(100%);
557
+ }
558
+
559
+ .BRemptypage {
560
+ background-color: #3a3b3b;
561
+ background-color: transparent;
562
+ }
563
+
564
+ .BRonePageImage {
565
+ background: url(assets/loading.gif) 50% no-repeat;
566
+ }
567
+
568
+ .BRleafEdgeR {
569
+ border-style: solid solid solid none;
570
+ border-color: #333322;
571
+ border-width: 1px 1px 1px 0px;
572
+ background: transparent url(assets/back_pages.png) repeat scroll 0% 0%;
573
+ position: absolute;
574
+ cursor: pointer;
575
+ }
576
+
577
+ .BRleafEdgeL {
578
+ /* border-style: solid none solid solid;
579
+ border-color: rgb(51, 51, 34);
580
+ border-width: 1px 0px 1px 1px; */
581
+ /* background: transparent url(assets/left_edges.png) repeat scroll 0% 0%; */
582
+ background: transparent url(assets/back_pages.png) repeat scroll 0% 0%;
583
+ /* XXXmang replace file */
584
+ position: absolute;
585
+ cursor: pointer;
586
+ }
587
+
588
+ .BRleafEdgeTmp {
589
+ /* border-style: solid none solid solid;
590
+ border-color: rgb(51, 51, 34);
591
+ border-width: 1px 0px 1px 1px; */
592
+ /* background: transparent url(assets/left_edges.png) repeat scroll 0% 0%; */
593
+ background: transparent url(assets/back_pages.png) repeat scroll 0% 0%;
594
+ /* XXXmang replace file */
595
+ position: absolute;
596
+ }
597
+
598
+ .BRgutter {
599
+ /* border: 1px solid rgb(68, 25, 17); */
600
+ position: absolute;
601
+ background: transparent url(assets/booksplit.png) repeat scroll 0% 0%;
602
+ }
603
+
604
+ .BRtwoPagePopUp {
605
+ padding: 6px;
606
+ position: absolute;
607
+ font-size: 12px;
608
+ color: white;
609
+ background-color: #9A9B9D;
610
+ opacity: 0.85;
611
+ border-radius: 4px;
612
+ white-space: nowrap;
613
+ }
614
+
615
+ .BRicon {
616
+ padding: 0;
617
+ margin: 0;
618
+ vertical-align: middle;
619
+ border: none;
620
+ cursor: pointer;
621
+ background-color: transparent;
622
+ background-image: url(assets/BRicons.svg);
623
+ background-repeat: no-repeat;
624
+ }
625
+ .BRicon:hover {
626
+ background-color: rgba(50, 50, 50, 0.2);
627
+ }
628
+ .BRicon:active {
629
+ background-color: rgba(255, 255, 255, 0.2);
630
+ background-color: rgba(50, 50, 50, 0.4);
631
+ }
632
+
633
+ i.BRicon {
634
+ display: inline-block;
635
+ }
636
+
637
+ .BRicon.logo {
638
+ width: 34px;
639
+ height: 34px;
640
+ background-position: -3px center;
641
+ }
642
+ @media (max-width: 800px) {
643
+ .BRicon.logo {
644
+ width: 40px;
645
+ height: 40px;
646
+ background-position: 0px center;
647
+ }
648
+ }
649
+
650
+ .BRicon.info {
651
+ width: 34px;
652
+ height: 34px;
653
+ background-position: -43px center;
654
+ }
655
+ @media (max-width: 800px) {
656
+ .BRicon.info {
657
+ width: 40px;
658
+ height: 40px;
659
+ background-position: -40px center;
660
+ }
661
+ }
662
+
663
+ .BRicon.share {
664
+ width: 34px;
665
+ height: 34px;
666
+ background-position: -123px center;
667
+ }
668
+ @media (max-width: 800px) {
669
+ .BRicon.share {
670
+ width: 40px;
671
+ height: 40px;
672
+ background-position: -120px center;
673
+ }
674
+ }
675
+
676
+ .BRicon.read {
677
+ width: 34px;
678
+ height: 34px;
679
+ background-position: -203px center;
680
+ }
681
+ @media (max-width: 800px) {
682
+ .BRicon.read {
683
+ width: 40px;
684
+ height: 40px;
685
+ background-position: -200px center;
686
+ }
687
+ }
688
+
689
+ .BRicon.unread {
690
+ width: 34px;
691
+ height: 34px;
692
+ background-position: -283px center;
693
+ }
694
+ @media (max-width: 800px) {
695
+ .BRicon.unread {
696
+ width: 40px;
697
+ height: 40px;
698
+ background-position: -280px center;
699
+ }
700
+ }
701
+
702
+ .BRicon.full {
703
+ width: 34px;
704
+ height: 34px;
705
+ background-position: -363px center;
706
+ }
707
+ @media (max-width: 800px) {
708
+ .BRicon.full {
709
+ width: 40px;
710
+ height: 40px;
711
+ background-position: -360px center;
712
+ }
713
+ }
714
+ .BRfullscreenActive .BRicon.full {
715
+ width: 34px;
716
+ height: 34px;
717
+ background-position: -1403px center;
718
+ }
719
+ @media (max-width: 800px) {
720
+ .BRfullscreenActive .BRicon.full {
721
+ width: 40px;
722
+ height: 40px;
723
+ background-position: -1400px center;
724
+ }
725
+ }
726
+
727
+ .BRicon.book_left {
728
+ width: 34px;
729
+ height: 34px;
730
+ background-position: -443px center;
731
+ }
732
+ @media (max-width: 800px) {
733
+ .BRicon.book_left {
734
+ width: 40px;
735
+ height: 40px;
736
+ background-position: -440px center;
737
+ }
738
+ }
739
+
740
+ .BRicon.book_right {
741
+ width: 34px;
742
+ height: 34px;
743
+ background-position: -523px center;
744
+ }
745
+ @media (max-width: 800px) {
746
+ .BRicon.book_right {
747
+ width: 40px;
748
+ height: 40px;
749
+ background-position: -520px center;
750
+ }
751
+ }
752
+
753
+ .BRicon.zoom_out {
754
+ width: 34px;
755
+ height: 34px;
756
+ background-position: -603px center;
757
+ }
758
+ @media (max-width: 800px) {
759
+ .BRicon.zoom_out {
760
+ width: 40px;
761
+ height: 40px;
762
+ background-position: -600px center;
763
+ }
764
+ }
765
+
766
+ .BRicon.zoom_in {
767
+ width: 34px;
768
+ height: 34px;
769
+ background-position: -683px center;
770
+ }
771
+ @media (max-width: 800px) {
772
+ .BRicon.zoom_in {
773
+ width: 40px;
774
+ height: 40px;
775
+ background-position: -680px center;
776
+ }
777
+ }
778
+
779
+ .BRicon.play {
780
+ width: 34px;
781
+ height: 34px;
782
+ background-position: -403px center;
783
+ }
784
+ @media (max-width: 800px) {
785
+ .BRicon.play {
786
+ width: 40px;
787
+ height: 40px;
788
+ background-position: -400px center;
789
+ }
790
+ }
791
+
792
+ .BRicon.pause {
793
+ width: 34px;
794
+ height: 34px;
795
+ background-position: -443px center;
796
+ }
797
+ @media (max-width: 800px) {
798
+ .BRicon.pause {
799
+ width: 40px;
800
+ height: 40px;
801
+ background-position: -440px center;
802
+ }
803
+ }
804
+
805
+ .BRicon.onepg {
806
+ width: 34px;
807
+ height: 34px;
808
+ background-position: -1003px center;
809
+ }
810
+ @media (max-width: 800px) {
811
+ .BRicon.onepg {
812
+ width: 40px;
813
+ height: 40px;
814
+ background-position: -1000px center;
815
+ }
816
+ }
817
+
818
+ .BRicon.twopg {
819
+ width: 34px;
820
+ height: 34px;
821
+ background-position: -923px center;
822
+ }
823
+ @media (max-width: 800px) {
824
+ .BRicon.twopg {
825
+ width: 40px;
826
+ height: 40px;
827
+ background-position: -920px center;
828
+ }
829
+ }
830
+
831
+ .BRicon.thumb {
832
+ width: 34px;
833
+ height: 34px;
834
+ background-position: -1083px center;
835
+ }
836
+ @media (max-width: 800px) {
837
+ .BRicon.thumb {
838
+ width: 40px;
839
+ height: 40px;
840
+ background-position: -1080px center;
841
+ }
842
+ }
843
+
844
+ .BRicon.fit {
845
+ width: 34px;
846
+ height: 34px;
847
+ background-position: -363px center;
848
+ }
849
+ @media (max-width: 800px) {
850
+ .BRicon.fit {
851
+ width: 40px;
852
+ height: 40px;
853
+ background-position: -360px center;
854
+ }
855
+ }
856
+
857
+ .BRicon.download {
858
+ width: 34px;
859
+ height: 34px;
860
+ background-position: -1523px center;
861
+ }
862
+ @media (max-width: 800px) {
863
+ .BRicon.download {
864
+ width: 40px;
865
+ height: 40px;
866
+ background-position: -1520px center;
867
+ }
868
+ }
869
+
870
+ .BRicon.return {
871
+ width: 34px;
872
+ height: 34px;
873
+ background-position: -1043px center;
874
+ }
875
+ @media (max-width: 800px) {
876
+ .BRicon.return {
877
+ width: 40px;
878
+ height: 40px;
879
+ background-position: -1040px center;
880
+ }
881
+ }
882
+
883
+ .BRicon.fb {
884
+ width: 34px;
885
+ height: 34px;
886
+ background-position: -1603px center;
887
+ }
888
+ @media (max-width: 800px) {
889
+ .BRicon.fb {
890
+ width: 40px;
891
+ height: 40px;
892
+ background-position: -1600px center;
893
+ }
894
+ }
895
+
896
+ .BRicon.twitter {
897
+ width: 34px;
898
+ height: 34px;
899
+ background-position: -1643px center;
900
+ }
901
+ @media (max-width: 800px) {
902
+ .BRicon.twitter {
903
+ width: 40px;
904
+ height: 40px;
905
+ background-position: -1640px center;
906
+ }
907
+ }
908
+
909
+ .BRicon.email {
910
+ width: 34px;
911
+ height: 34px;
912
+ background-position: -1683px center;
913
+ }
914
+ @media (max-width: 800px) {
915
+ .BRicon.email {
916
+ width: 40px;
917
+ height: 40px;
918
+ background-position: -1680px center;
919
+ }
920
+ }
921
+
922
+ /**
923
+ * BRfloat is the modal popup used in bookreader
924
+ */
925
+ .BRfloat {
926
+ color: #343434;
927
+ }
928
+
929
+ .BRfloat a.title {
930
+ text-decoration: none;
931
+ }
932
+
933
+ .BRfloat .floatShut {
934
+ position: absolute;
935
+ top: 4px;
936
+ right: 8px;
937
+ display: block;
938
+ width: 32px;
939
+ height: 32px;
940
+ border: none;
941
+ background-color: transparent;
942
+ background-image: url("assets/icon_close-pop.png");
943
+ background-position: 0 0;
944
+ background-repeat: no-repeat;
945
+ }
946
+
947
+ .BRfloat .floatShut:hover {
948
+ background-position: 0 -32px;
949
+ }
950
+
951
+ .BRfloat fieldset {
952
+ padding: 10px 15px;
953
+ border: none;
954
+ }
955
+
956
+ .BRfloat fieldset.sub {
957
+ margin-top: 0px;
958
+ padding: 10px;
959
+ }
960
+
961
+ .BRfloat fieldset.center {
962
+ text-align: center;
963
+ padding: 10px 20px 30px;
964
+ }
965
+
966
+ .BRfloat label {
967
+ display: block;
968
+ font-weight: 700;
969
+ font-size: 1em;
970
+ margin: 5px 0;
971
+ }
972
+
973
+ .BRfloat label.sub {
974
+ display: inline;
975
+ padding: 10px 30px 10px 0;
976
+ font-weight: normal;
977
+ font-size: 1em;
978
+ color: #666;
979
+ }
980
+
981
+ .BRfloat input[type=text],
982
+ .BRfloat textarea {
983
+ display: block;
984
+ margin-top: 10px;
985
+ width: 100%;
986
+ padding: 3px;
987
+ border: 2px inset;
988
+ font-family: "Lucida Grande", "Verdana", "Arial", sans-serif;
989
+ font-size: 0.8em;
990
+ line-height: 1.25;
991
+ font-weight: normal;
992
+ }
993
+
994
+ .BRfloat textarea {
995
+ height: 55px;
996
+ }
997
+
998
+ .BRfloat p {
999
+ margin: 15px 15px 0;
1000
+ }
1001
+
1002
+ .BRfloat p.meta {
1003
+ font-size: 1.1em;
1004
+ color: #748d36;
1005
+ margin: 10px 0 0;
1006
+ }
1007
+
1008
+ .BRfloatCover {
1009
+ float: left;
1010
+ padding: 0 20px 30px 0;
1011
+ }
1012
+
1013
+ .BRfloatHead {
1014
+ font-size: 1.2em;
1015
+ }
1016
+
1017
+ .BRfloatHead h2 {
1018
+ display: inline;
1019
+ font-size: 1.3em;
1020
+ }
1021
+
1022
+ .BRfloatMeta p {
1023
+ margin: 0;
1024
+ padding: 0;
1025
+ font-size: 1.1em;
1026
+ line-height: 1.5em;
1027
+ }
1028
+
1029
+ .BRfloatMeta p.moreInfo {
1030
+ line-height: 15px;
1031
+ margin-top: 30px;
1032
+ }
1033
+
1034
+ .BRfloatMeta p.moreInfo span {
1035
+ background: url("assets/icon_OL-logo-xs.png") no-repeat;
1036
+ display: block;
1037
+ float: left;
1038
+ width: 26px;
1039
+ height: 15px;
1040
+ }
1041
+
1042
+ .BRfloatMeta h3 {
1043
+ font-size: 1.1em;
1044
+ font-weight: 700;
1045
+ line-height: 1.5em;
1046
+ margin-top: 30px;
1047
+ color: #333;
1048
+ }
1049
+
1050
+ .BRfloatMeta ul.links {
1051
+ float: left;
1052
+ clear: right;
1053
+ }
1054
+
1055
+ .BRfloatMeta ul.links li {
1056
+ list-style-type: none;
1057
+ display: block;
1058
+ float: left;
1059
+ font-size: 1.1em;
1060
+ line-height: 1.5em;
1061
+ }
1062
+
1063
+ .BRfloatMeta ul.links li span {
1064
+ padding: 0 10px;
1065
+ }
1066
+
1067
+ .BRfloatFoot a.problem, a.problem-icon {
1068
+ background: url("assets/icon_alert-xs.png") no-repeat;
1069
+ padding-left: 20px;
1070
+ }
1071
+
1072
+ .BRfloatHead,
1073
+ .BRfloatBody {
1074
+ width: 100%;
1075
+ box-sizing: border-box;
1076
+ text-align: center;
1077
+ }
1078
+
1079
+ /* Desktop Only */
1080
+ @media (min-width: 801px) {
1081
+ .BRfloat .message,
1082
+ .BRfloatBody {
1083
+ padding: 10px 15px 10px 15px;
1084
+ font-size: 16px;
1085
+ line-height: normal;
1086
+ margin-top: 0;
1087
+ margin-bottom: 0px;
1088
+ }
1089
+
1090
+ .BRfloatHead {
1091
+ box-sizing: border-box;
1092
+ line-height: normal;
1093
+ padding: 10px;
1094
+ font-size: 16px;
1095
+ font-weight: 700;
1096
+ text-align: center;
1097
+ border-bottom: 1px solid #d8d8d8;
1098
+ }
1099
+
1100
+ .BRfloatFoot {
1101
+ padding: 10px;
1102
+ margin-bottom: 10px;
1103
+ }
1104
+ }
1105
+ /* Mobile Only (with some responsiveness) */
1106
+ @media (max-width: 800px) {
1107
+ .BRfloatBody {
1108
+ padding: 10px 10px;
1109
+ }
1110
+
1111
+ .BRfloat .message,
1112
+ .BRfloatBody,
1113
+ .BRfloatHead {
1114
+ box-sizing: border-box;
1115
+ line-height: normal;
1116
+ border-bottom: 1px solid #d8d8d8;
1117
+ padding: 10px;
1118
+ min-height: initial;
1119
+ font-size: 14px;
1120
+ font-weight: 700;
1121
+ text-align: center;
1122
+ }
1123
+
1124
+ .BRfloatFoot {
1125
+ padding: 10px 10px 0 10px;
1126
+ border-top: 1px solid #ccc;
1127
+ }
1128
+
1129
+ .BRfloatFoot .BRaction {
1130
+ margin-bottom: 10px;
1131
+ }
1132
+ }
1133
+ @media (min-width: 801px) {
1134
+ .BRfloat {
1135
+ max-width: initial;
1136
+ width: 455px;
1137
+ }
1138
+
1139
+ .BRfloat.wide {
1140
+ max-width: initial;
1141
+ width: 555px;
1142
+ }
1143
+ }
1144
+ @media (max-width: 800px) and (min-width: 341px) {
1145
+ .BRfloat {
1146
+ max-width: initial;
1147
+ width: 340px;
1148
+ }
1149
+ }
1150
+ @media (max-width: 340px) {
1151
+ .BRfloat {
1152
+ max-width: 95%;
1153
+ width: 95%;
1154
+ }
1155
+ }
1156
+ /**
1157
+ * BRnav is the bottom control bar (eg footer)
1158
+ */
1159
+ .BRnav {
1160
+ box-sizing: border-box;
1161
+ position: absolute;
1162
+ bottom: 0;
1163
+ left: 0;
1164
+ width: 100%;
1165
+ height: 34px;
1166
+ padding-top: 0;
1167
+ overflow: visible;
1168
+ display: block;
1169
+ display: flex;
1170
+ flex-direction: row;
1171
+ /* Theming */
1172
+ background-color: #818181;
1173
+ color: white;
1174
+ /* Full mobile styles */
1175
+ }
1176
+ .BRnav.BRnavEmbed {
1177
+ padding-top: 0;
1178
+ height: auto;
1179
+ align-items: center;
1180
+ }
1181
+ .BRnav.BRnavEmbed .BRembedreturn {
1182
+ flex: 1 auto;
1183
+ overflow-x: hidden;
1184
+ }
1185
+ .BRnav.BRnavEmbed .logo {
1186
+ display: inline-block;
1187
+ width: 25px;
1188
+ height: 25px;
1189
+ margin: 0 10px;
1190
+ background: transparent url(assets/icon_home.svg) no-repeat center center;
1191
+ background-size: contain;
1192
+ }
1193
+ .BRnav a {
1194
+ color: white;
1195
+ }
1196
+ .BRnav .BRpager {
1197
+ background-color: #4D4D4D;
1198
+ }
1199
+ .BRnav .BRpager .ui-slider-handle {
1200
+ background-color: white;
1201
+ }
1202
+ .BRnav .BRpager .ui-slider-range {
1203
+ background-color: rgba(255, 255, 255, 0.59);
1204
+ }
1205
+ .BRnav .BRpage .BRicon {
1206
+ border-left: 1px solid #4D4D4D;
1207
+ }
1208
+ .BRnav .BRnavCntl {
1209
+ z-index: 6;
1210
+ background-color: #4D4D4D;
1211
+ }
1212
+ .BRnav .BRnavCntlBtm:hover {
1213
+ background-color: #0074D1;
1214
+ }
1215
+ .BRnav.BRnavEmbed {
1216
+ background-color: white;
1217
+ color: black;
1218
+ }
1219
+ .BRnav.BRnavEmbed a {
1220
+ color: black;
1221
+ }
1222
+ .BRnav.BRnavEmbed .BRpager {
1223
+ background-color: #B7B7B7;
1224
+ }
1225
+ .BRnav.BRnavEmbed .BRpager .ui-slider-handle {
1226
+ background-color: #0074D1;
1227
+ }
1228
+ .BRnav.BRnavEmbed .BRpager .ui-slider-range {
1229
+ background-color: rgba(0, 116, 209, 0.25);
1230
+ }
1231
+ .BRnav.BRnavEmbed .BRpage .BRicon {
1232
+ border-left: 1px solid #979797;
1233
+ }
1234
+ .BRnav.BRnavEmbed .BRnavCntl {
1235
+ background-color: #979797;
1236
+ }
1237
+ .BRnav.BRnavEmbed .BRnavCntlBtm:hover {
1238
+ background-color: #0074D1;
1239
+ }
1240
+ @media (max-width: 800px) {
1241
+ .BRnav {
1242
+ height: 40px;
1243
+ box-shadow: 0px -1px 3px 0px rgba(102, 102, 102, 0.25);
1244
+ }
1245
+ .BRbodyMobileNavEnabled .BRnav, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav {
1246
+ background-color: white;
1247
+ color: black;
1248
+ }
1249
+ .BRbodyMobileNavEnabled .BRnav a, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav a {
1250
+ color: black;
1251
+ }
1252
+ .BRbodyMobileNavEnabled .BRnav .BRpager, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav .BRpager {
1253
+ background-color: #B7B7B7;
1254
+ }
1255
+ .BRbodyMobileNavEnabled .BRnav .BRpager .ui-slider-handle, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav .BRpager .ui-slider-handle {
1256
+ background-color: #0074D1;
1257
+ }
1258
+ .BRbodyMobileNavEnabled .BRnav .BRpager .ui-slider-range, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav .BRpager .ui-slider-range {
1259
+ background-color: rgba(0, 116, 209, 0.25);
1260
+ }
1261
+ .BRbodyMobileNavEnabled .BRnav .BRpage .BRicon, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav .BRpage .BRicon {
1262
+ border-left: 1px solid #979797;
1263
+ }
1264
+ .BRbodyMobileNavEnabled .BRnav .BRnavCntl, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav .BRnavCntl {
1265
+ background-color: #979797;
1266
+ }
1267
+ .BRbodyMobileNavEnabled .BRnav .BRnavCntlBtm:hover, .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRnav .BRnavCntlBtm:hover {
1268
+ background-color: #0074D1;
1269
+ }
1270
+ }
1271
+
1272
+ .BRnavpos {
1273
+ position: relative;
1274
+ margin-right: 10px;
1275
+ margin-left: 10px;
1276
+ float: left;
1277
+ flex: 1 auto;
1278
+ }
1279
+
1280
+ .BRpager {
1281
+ position: relative;
1282
+ height: 8px;
1283
+ top: 13px;
1284
+ box-sizing: content-box;
1285
+ border-radius: 10px;
1286
+ cursor: pointer;
1287
+ /* handle active state for touch */
1288
+ }
1289
+ .BRpager .ui-slider-handle {
1290
+ position: absolute;
1291
+ width: 20px;
1292
+ height: 20px;
1293
+ border-radius: 50%;
1294
+ top: -5px;
1295
+ margin-left: -9px;
1296
+ /* Center icon */
1297
+ z-index: 6;
1298
+ }
1299
+ .BRpager .ui-slider-range {
1300
+ height: 100%;
1301
+ border-radius: 10px;
1302
+ }
1303
+ .touch .BRpager .ui-slider-handle.ui-state-active {
1304
+ width: 24px;
1305
+ height: 24px;
1306
+ top: -4px;
1307
+ margin-left: -11px;
1308
+ }
1309
+
1310
+ /* BRnavlin is where chapters/search are appended */
1311
+ .BRnavline {
1312
+ position: relative;
1313
+ height: 1px;
1314
+ width: auto;
1315
+ top: -1px;
1316
+ margin: 0 10px;
1317
+ width: 100%;
1318
+ }
1319
+
1320
+ .BRcurrentpage {
1321
+ display: inline-block;
1322
+ text-align: center;
1323
+ padding: 0 0 0 0;
1324
+ font-size: 12px;
1325
+ margin-right: 10px;
1326
+ margin-left: 5px;
1327
+ line-height: 1;
1328
+ }
1329
+
1330
+ .BRpage {
1331
+ height: 100%;
1332
+ overflow: hidden;
1333
+ padding-left: 0;
1334
+ text-align: right;
1335
+ white-space: nowrap;
1336
+ float: left;
1337
+ flex: none;
1338
+ }
1339
+
1340
+ .BRnavCntl {
1341
+ position: absolute;
1342
+ right: 20px;
1343
+ width: 40px;
1344
+ height: 30px;
1345
+ cursor: pointer;
1346
+ }
1347
+
1348
+ .BRnavCntlBtm {
1349
+ bottom: 34px;
1350
+ -moz-border-radius-topright: 8px;
1351
+ -webkit-border-top-right-radius: 8px;
1352
+ -moz-border-radius-topleft: 8px;
1353
+ -webkit-border-top-left-radius: 8px;
1354
+ }
1355
+
1356
+ .BRup {
1357
+ background-image: url("assets/nav_control-up.png");
1358
+ background-repeat: no-repeat;
1359
+ }
1360
+
1361
+ .BRdn {
1362
+ background-image: url("assets/nav_control-dn.png");
1363
+ background-repeat: no-repeat;
1364
+ }
1365
+
1366
+ .BRnavCntlBtm.BRup, .BRnavCntlBtm.BRdn {
1367
+ background-position: 8px 4px;
1368
+ }
1369
+
1370
+ .BRnavCntlTop.BRup, .BRnavCntlTop.BRdn {
1371
+ background-position: 8px 4px;
1372
+ }
1373
+
1374
+ /* Mobile Only */
1375
+ @media (max-width: 800px) {
1376
+ /* hide navline chapters and search in mobile */
1377
+ .BRnavline .BRchapter {
1378
+ display: none;
1379
+ }
1380
+
1381
+ .BRnavline .BRsearch {
1382
+ display: none;
1383
+ }
1384
+
1385
+ .BRnavCntlBtm {
1386
+ bottom: 40px;
1387
+ }
1388
+
1389
+ .BRpager {
1390
+ height: 10px;
1391
+ top: 15px;
1392
+ }
1393
+ }
1394
+ /**
1395
+ * BRtoolbar is the top control bar (eg header)
1396
+ */
1397
+ .BRtoolbar {
1398
+ position: relative;
1399
+ top: 0;
1400
+ left: 0;
1401
+ padding: 10px 10px 4px 10px;
1402
+ width: 100%;
1403
+ background-color: transparent;
1404
+ box-sizing: border-box;
1405
+ width: 100%;
1406
+ color: white;
1407
+ font-size: 14px;
1408
+ }
1409
+
1410
+ .BRtoolbar .label {
1411
+ font-size: 12px;
1412
+ color: #ccc;
1413
+ }
1414
+
1415
+ .BRtoolbar a {
1416
+ text-decoration: none;
1417
+ color: white;
1418
+ }
1419
+ .BRtoolbar a:hover {
1420
+ color: white;
1421
+ text-decoration: underline;
1422
+ }
1423
+
1424
+ /* desktop header */
1425
+ .BRtoolbarSection > * {
1426
+ margin-left: 6px;
1427
+ }
1428
+
1429
+ .BRtoolbarbuttons {
1430
+ white-space: nowrap;
1431
+ text-align: right;
1432
+ border-spacing: 0;
1433
+ box-sizing: border-box;
1434
+ display: flex;
1435
+ flex-direction: row;
1436
+ }
1437
+
1438
+ .BRtoolbarbuttons .BRpill {
1439
+ border: 1px solid white;
1440
+ background: transparent;
1441
+ padding: 5px 10px;
1442
+ height: 30px;
1443
+ border-radius: 20px;
1444
+ color: white;
1445
+ line-height: 0;
1446
+ vertical-align: middle;
1447
+ font-size: 12px;
1448
+ cursor: pointer;
1449
+ }
1450
+ .BRtoolbarbuttons .BRpill.BRtoolbarHamburger {
1451
+ border: none;
1452
+ border-radius: none;
1453
+ }
1454
+
1455
+ .BRtoolbarSection {
1456
+ white-space: nowrap;
1457
+ }
1458
+
1459
+ .BRtoolbarSectionLogo {
1460
+ text-align: center;
1461
+ display: none;
1462
+ }
1463
+
1464
+ .BRtoolbarLeft {
1465
+ text-align: left;
1466
+ flex: 1 auto;
1467
+ overflow-y: hidden;
1468
+ }
1469
+
1470
+ .BRtoolbarRight {
1471
+ text-align: right;
1472
+ flex: none;
1473
+ }
1474
+
1475
+ @media (max-width: 800px) {
1476
+ .BRtoolbar {
1477
+ height: 40px;
1478
+ padding: 0;
1479
+ box-shadow: 0px 1px 3px 0px rgba(102, 102, 102, 0.25);
1480
+ }
1481
+ }
1482
+ .BookReader .BookReaderSearchHilite, .BRmobileMenu .BookReaderSearchHilite, .BRfloat .BookReaderSearchHilite {
1483
+ opacity: 0.2;
1484
+ filter: alpha(opacity=20);
1485
+ background-color: #0000ff;
1486
+ position: absolute;
1487
+ /* z-index is important */
1488
+ z-index: 4;
1489
+ }
1490
+ .BookReader .BRchapter, .BookReader .BRsearch, .BRmobileMenu .BRchapter, .BRmobileMenu .BRsearch, .BRfloat .BRchapter, .BRfloat .BRsearch {
1491
+ position: absolute;
1492
+ bottom: 0;
1493
+ /* Relative to nav line */
1494
+ cursor: pointer;
1495
+ z-index: 3;
1496
+ background-color: transparent;
1497
+ background-repeat: no-repeat;
1498
+ font-weight: normal;
1499
+ }
1500
+ .BookReader .BRchapter, .BRmobileMenu .BRchapter, .BRfloat .BRchapter {
1501
+ background-color: white;
1502
+ color: #666;
1503
+ height: 8px;
1504
+ width: 4px;
1505
+ bottom: -13px;
1506
+ margin-left: -12px;
1507
+ /* Center icon */
1508
+ }
1509
+ .BookReader .BRchapter > div, .BRmobileMenu .BRchapter > div, .BRfloat .BRchapter > div {
1510
+ display: none;
1511
+ }
1512
+ .BookReader .BRchapter.front, .BRmobileMenu .BRchapter.front, .BRfloat .BRchapter.front {
1513
+ background-color: blue;
1514
+ }
1515
+ .BookReader .BRsearch, .BRmobileMenu .BRsearch, .BRfloat .BRsearch {
1516
+ background-image: url(assets/marker_srch-off.svg);
1517
+ width: 20px;
1518
+ height: 25px;
1519
+ margin-left: -20px;
1520
+ /* Center icon */
1521
+ }
1522
+ .BookReader .BRsearch.front, .BRmobileMenu .BRsearch.front, .BRfloat .BRsearch.front {
1523
+ background-image: url(assets/marker_srch-on.svg);
1524
+ }
1525
+ .BookReader .BRsearch .BRquery, .BRmobileMenu .BRsearch .BRquery, .BRfloat .BRsearch .BRquery {
1526
+ display: none;
1527
+ }
1528
+ .BookReader .BRquery, .BRmobileMenu .BRquery, .BRfloat .BRquery {
1529
+ position: relative;
1530
+ color: #666;
1531
+ }
1532
+ .BookReader .BRquery b, .BRmobileMenu .BRquery b, .BRfloat .BRquery b {
1533
+ color: #000;
1534
+ font-weight: bold;
1535
+ background-color: rgba(0, 0, 255, 0.2);
1536
+ }
1537
+ .BookReader .BRsearch .pointer, .BRmobileMenu .BRsearch .pointer, .BRfloat .BRsearch .pointer {
1538
+ position: absolute;
1539
+ left: 121px;
1540
+ bottom: -14px;
1541
+ width: 18px;
1542
+ height: 27px;
1543
+ background: transparent url(assets/marker_srch-on.png) no-repeat;
1544
+ }
1545
+ .BookReader .BRmobileSearchResultWrapper, .BRmobileMenu .BRmobileSearchResultWrapper, .BRfloat .BRmobileSearchResultWrapper {
1546
+ margin-top: 20px;
1547
+ }
1548
+ .BookReader .BRmobileNumResults, .BRmobileMenu .BRmobileNumResults, .BRfloat .BRmobileNumResults {
1549
+ margin-bottom: 10px;
1550
+ }
1551
+ .BookReader .BRmobileSearchResult, .BRmobileMenu .BRmobileSearchResult, .BRfloat .BRmobileSearchResult {
1552
+ display: block;
1553
+ font-size: 14px;
1554
+ margin-bottom: 15px;
1555
+ text-decoration: none;
1556
+ color: black;
1557
+ }
1558
+ .BookReader .BRmobileSearchResult:active, .BRmobileMenu .BRmobileSearchResult:active, .BRfloat .BRmobileSearchResult:active {
1559
+ color: #0074D1;
1560
+ }
1561
+ .BookReader .BRmobileSearchResult .pageDisplay, .BRmobileMenu .BRmobileSearchResult .pageDisplay, .BRfloat .BRmobileSearchResult .pageDisplay {
1562
+ text-decoration: underline;
1563
+ color: #0074D1;
1564
+ display: block;
1565
+ margin-bottom: 3px;
1566
+ }
1567
+ .BookReader .BRmobileSearchResult .searchImgPreview, .BRmobileMenu .BRmobileSearchResult .searchImgPreview, .BRfloat .BRmobileSearchResult .searchImgPreview {
1568
+ width: 50px;
1569
+ height: auto;
1570
+ margin-right: 5px;
1571
+ }
1572
+ .BookReader .BRmobileSearchResult table td, .BRmobileMenu .BRmobileSearchResult table td, .BRfloat .BRmobileSearchResult table td {
1573
+ vertical-align: top;
1574
+ }
1575
+ .BookReader .BRbooksearch, .BRmobileMenu .BRbooksearch, .BRfloat .BRbooksearch {
1576
+ position: relative;
1577
+ box-sizing: border-box;
1578
+ }
1579
+ .BookReader .BRbooksearch.desktop, .BRmobileMenu .BRbooksearch.desktop, .BRfloat .BRbooksearch.desktop {
1580
+ position: relative;
1581
+ height: 30px;
1582
+ border: 1px solid white;
1583
+ border-radius: 20px;
1584
+ display: inline-block;
1585
+ line-height: 0;
1586
+ vertical-align: top;
1587
+ margin-top: 0;
1588
+ margin-bottom: 0;
1589
+ }
1590
+ .BookReader .BRbooksearch.desktop .BRsearchInput, .BRmobileMenu .BRbooksearch.desktop .BRsearchInput, .BRfloat .BRbooksearch.desktop .BRsearchInput {
1591
+ -webkit-appearance: none;
1592
+ position: relative;
1593
+ width: 130px;
1594
+ max-width: 160px;
1595
+ height: 100%;
1596
+ color: white;
1597
+ outline: none;
1598
+ border: none;
1599
+ padding: 3px 0px 3px 10px;
1600
+ margin: 0;
1601
+ box-sizing: border-box;
1602
+ background: transparent;
1603
+ display: block;
1604
+ float: left;
1605
+ font-size: 14px;
1606
+ line-height: 1.2;
1607
+ }
1608
+ .BookReader .BRbooksearch.desktop .BRsearchSubmit, .BRmobileMenu .BRbooksearch.desktop .BRsearchSubmit, .BRfloat .BRbooksearch.desktop .BRsearchSubmit {
1609
+ width: auto;
1610
+ height: 100%;
1611
+ border: none;
1612
+ text-align: center;
1613
+ color: #fff;
1614
+ overflow: hidden;
1615
+ box-sizing: boder-box;
1616
+ display: block;
1617
+ background: transparent;
1618
+ float: left;
1619
+ cursor: pointer;
1620
+ }
1621
+ .BookReader .BRbooksearch.mobile, .BRmobileMenu .BRbooksearch.mobile, .BRfloat .BRbooksearch.mobile {
1622
+ position: relative;
1623
+ top: 0;
1624
+ display: flex;
1625
+ flex-direction: row;
1626
+ }
1627
+ .BookReader .BRbooksearch.mobile .BRsearchInput, .BRmobileMenu .BRbooksearch.mobile .BRsearchInput, .BRfloat .BRbooksearch.mobile .BRsearchInput {
1628
+ -webkit-appearance: none;
1629
+ position: relative;
1630
+ min-width: 100px;
1631
+ float: left;
1632
+ font-size: 14px;
1633
+ width: 150px;
1634
+ height: 30px;
1635
+ border: 1px solid #979797;
1636
+ flex: 1;
1637
+ border-radius: 0;
1638
+ }
1639
+ .BookReader .BRbooksearch.mobile .BRsearchSubmit, .BRmobileMenu .BRbooksearch.mobile .BRsearchSubmit, .BRfloat .BRbooksearch.mobile .BRsearchSubmit {
1640
+ width: 30px;
1641
+ height: 30px;
1642
+ border: none;
1643
+ background-color: #0074D1;
1644
+ background-image: url("assets/icon_search_button.svg");
1645
+ background-repeat: no-repeat;
1646
+ background-position: center center;
1647
+ text-align: center;
1648
+ color: white;
1649
+ overflow: hidden;
1650
+ box-sizing: border-box;
1651
+ display: inline-block;
1652
+ }
1653
+
1654
+ /* Mid size breakpoint */
1655
+ @media (max-width: 1050px) {
1656
+ .BookReader .BRbooksearch .BRsearchInput, .BRmobileMenu .BRbooksearch .BRsearchInput, .BRfloat .BRbooksearch .BRsearchInput {
1657
+ padding: 0 0 0 8px;
1658
+ width: 110px;
1659
+ min-width: 110px;
1660
+ }
1661
+ .BookReader .BRbooksearch .BRsearchSubmit, .BRmobileMenu .BRbooksearch .BRsearchSubmit, .BRfloat .BRbooksearch .BRsearchSubmit {
1662
+ float: left;
1663
+ }
1664
+ }
1665
+ .mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
1666
+ color: black;
1667
+ font-size: 14px;
1668
+ }
1669
+
1670
+ .mm-menu {
1671
+ background: white;
1672
+ }
1673
+
1674
+ .mm-panel {
1675
+ font-size: 12px;
1676
+ }
1677
+
1678
+ #mm-blocker {
1679
+ z-index: 2002;
1680
+ }
1681
+
1682
+ .mm-panel h1 {
1683
+ margin-top: 0;
1684
+ color: #245e83;
1685
+ font-size: 14px;
1686
+ }
1687
+
1688
+ /* Needed to override mmenu style */
1689
+ html.mm-background .BookReader {
1690
+ background-color: black;
1691
+ }
1692
+
1693
+ .BRmobileMenu button {
1694
+ -webkit-appearance: initial;
1695
+ }
1696
+ .BRmobileMenu .BRaction {
1697
+ display: block;
1698
+ width: 100%;
1699
+ }
1700
+ .BRmobileMenu div.share-social button {
1701
+ padding: 0 5px;
1702
+ height: 40px;
1703
+ text-align: left;
1704
+ }
1705
+
1706
+ .BRtoolbarMobileTitle {
1707
+ overflow: hidden;
1708
+ width: 100%;
1709
+ white-space: nowrap;
1710
+ text-align: center;
1711
+ font-size: 14px;
1712
+ color: black;
1713
+ line-height: 40px;
1714
+ display: block;
1715
+ margin-right: 10px;
1716
+ }
1717
+
1718
+ .BRmobileHamburgerWrapper {
1719
+ display: block;
1720
+ padding: 0 30px 0 50px;
1721
+ }
1722
+
1723
+ .BRmobileHamburger {
1724
+ background: center center no-repeat transparent;
1725
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAATCAYAAABhh3Y4AAAAAXNSR0IArs4c6QAAAFZJREFUSA1jrKmpafv//38xELMx0AgwMjL+AuJeFqAlubS0COR+qPm5TED2FJDNNPIU2FiozybT0o5Rs4dBCDCO5jNKYnE0n1ESeiNI72g+oyiyYfkMAKCpRQemMsj0AAAAAElFTkSuQmCC");
1726
+ background: url('data:image/svg+xml;utf8,<svg width="15px" height="12px" viewBox="0 0 15 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g id="hamburger-svg" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"> <path d="M0,1 L14,1" id="Line" stroke="#000000"></path> <path d="M2.39808173e-14,6 L14,6" id="Line-Copy" stroke="#000000"></path> <path d="M1.15463195e-14,11 L14,11" id="Line-Copy-2" stroke="#000000"></path> </g></svg>') center/50% 50% no-repeat;
1727
+ display: block;
1728
+ width: 40px;
1729
+ height: 40px;
1730
+ position: absolute;
1731
+ top: 0;
1732
+ left: 10px;
1733
+ border: none;
1734
+ outline: none;
1735
+ }
1736
+
1737
+ .DrawerIconWrapper {
1738
+ display: block;
1739
+ float: left;
1740
+ width: 20px;
1741
+ height: 20px;
1742
+ margin-right: 10px;
1743
+ text-align: center;
1744
+ position: relative;
1745
+ }
1746
+
1747
+ .DrawerIcon {
1748
+ height: 18px;
1749
+ width: auto;
1750
+ position: absolute;
1751
+ left: 0;
1752
+ top: 1px;
1753
+ }
1754
+
1755
+ .DrawerSettingsTitle {
1756
+ color: #4990E2;
1757
+ font-size: 14px;
1758
+ font-weight: bold;
1759
+ margin-bottom: 10px;
1760
+ }
1761
+
1762
+ .DrawerSettingsLayoutWrapper {
1763
+ text-align: center;
1764
+ padding: 0;
1765
+ margin-bottom: 20px;
1766
+ }
1767
+
1768
+ .DrawerLayoutButton {
1769
+ border: none;
1770
+ background: none;
1771
+ color: #4990E2;
1772
+ line-height: 18px;
1773
+ }
1774
+
1775
+ .DrawerLayoutButton:active {
1776
+ color: grey;
1777
+ }
1778
+
1779
+ .BRmobileShare div.share-title {
1780
+ font-weight: bold;
1781
+ font-size: 16px;
1782
+ line-height: 1.5;
1783
+ }
1784
+ .BRmobileShare div.share-social {
1785
+ margin: 10px 0 20px 0;
1786
+ }
1787
+ .BRmobileShare p {
1788
+ font-weight: bold;
1789
+ }
1790
+ .BRmobileShare fieldset {
1791
+ padding: 0;
1792
+ border: 0;
1793
+ margin-bottom: 30px;
1794
+ }
1795
+ .BRmobileShare fieldset label {
1796
+ display: block;
1797
+ }
1798
+ .BRmobileShare fieldset input[type=text] {
1799
+ width: 95%;
1800
+ }
1801
+ .BRmobileShare button.share-finished {
1802
+ display: none;
1803
+ }
1804
+ .BRmobileShare div.share-embed {
1805
+ border: 1px solid #ccc;
1806
+ padding: 0 10px;
1807
+ }
1808
+ .BRmobileShare .open-to-this-page {
1809
+ display: block;
1810
+ margin: 10px 0;
1811
+ }
1812
+
1813
+ .BRmobileHamburgerWrapper {
1814
+ display: none;
1815
+ }
1816
+
1817
+ .BRmobileMenu {
1818
+ display: none;
1819
+ }
1820
+
1821
+ .BRtoolbar.responsive {
1822
+ display: none;
1823
+ }
1824
+
1825
+ /* Mobile Only */
1826
+ @media (max-width: 800px) {
1827
+ .BRbodyMobileNavEnabled .BRtoolbar.responsive,
1828
+ .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRtoolbar.responsive {
1829
+ display: block;
1830
+ height: 40px;
1831
+ box-sizing: border-box;
1832
+ width: 100%;
1833
+ background-color: white;
1834
+ color: black;
1835
+ }
1836
+ .BRbodyMobileNavEnabled .BRtoolbar.responsive a,
1837
+ .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRtoolbar.responsive a {
1838
+ color: black;
1839
+ }
1840
+ .BRbodyMobileNavEnabled .BRtoolbar.responsive .BRtoolbarbuttons,
1841
+ .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRtoolbar.responsive .BRtoolbarbuttons {
1842
+ display: none;
1843
+ }
1844
+ .BRbodyMobileNavEnabled .BRtoolbar.responsive .BRmobileHamburgerWrapper,
1845
+ .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRtoolbar.responsive .BRmobileHamburgerWrapper {
1846
+ display: block;
1847
+ }
1848
+ .BRbodyMobileNavEnabled .BRtoolbar.responsive .BRmobileMenu,
1849
+ .BRbodyMobileNavEnabledFullscreen.BRfullscreenActive .BRtoolbar.responsive .BRmobileMenu {
1850
+ display: block;
1851
+ }
1852
+ }
1853
+ /* Desktop Only */
1854
+ @media (min-width: 801px) {
1855
+ .BRtoolbar.responsive {
1856
+ display: block;
1857
+ }
1858
+ }
1859
+ /****************** Excerpt from jquery-ui *********************/
1860
+ .ui-helper-hidden {
1861
+ display: none;
1862
+ }
1863
+
1864
+ .ui-helper-hidden-accessible {
1865
+ position: absolute !important;
1866
+ clip: rect(1px 1px 1px 1px);
1867
+ clip: rect(1px, 1px, 1px, 1px);
1868
+ }
1869
+
1870
+ .ui-helper-reset {
1871
+ margin: 0;
1872
+ padding: 0;
1873
+ border: 0;
1874
+ outline: 0;
1875
+ line-height: 1.3;
1876
+ text-decoration: none;
1877
+ font-size: 100%;
1878
+ list-style: none;
1879
+ }
1880
+
1881
+ .ui-helper-clearfix:after {
1882
+ content: ".";
1883
+ display: block;
1884
+ height: 0;
1885
+ clear: both;
1886
+ visibility: hidden;
1887
+ }