]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/css/style.css.tt2
LP#1681943: Tweak for RTL handling for responsive my lists
[working/Evergreen.git] / Open-ILS / src / templates / opac / css / style.css.tt2
1 [%-
2     PROCESS "opac/parts/css/colors.tt2";
3     PROCESS "opac/parts/css/fonts.tt2";
4     rtl = ctx.get_i18n_l(ctx.eg_locale).rtl;
5 %]
6
7 body {
8     margin:0;
9     font-family: Arial, Helvetica, sans-serif;
10     font-size: [% css_fonts.size_base %];
11     background: [% css_colors.primary %];
12     [% IF rtl == 't' -%]
13     direction: rtl;
14     [%- END %]
15 }
16
17 button, input {
18     font-family: Arial, Helvetica, sans-serif;
19     font-size: [% css_fonts.size_base %];
20 }
21
22 img {
23     border: none;
24 }
25
26 #topnav_logo {
27     margin: 2em 0;
28 }
29
30 #homesearch_main_logo {
31     padding-top: 60px;
32     margin: auto;
33     width: 50%;
34 }
35
36 a {
37     color: [% css_colors.primary %];
38 }
39
40 #search-wrapper input[type=text] {
41     margin:0;
42     padding:0;
43 }
44
45 #search-wrapper select, .results_header_lbl select {
46     border:1px solid [% css_colors.border_standard %];
47     margin:0;
48     padding:0;
49     width: 12em;
50 }
51
52 .searchbar {
53     font-weight: bold;
54     padding-top: 10px;
55     [% IF rtl == 't' -%]
56     margin-right: 1em;
57     [%- ELSE %]
58     margin-left: 1em;
59     [%- END %]
60 }
61
62 .refine_search {
63     padding-bottom: 7px;
64     margin-left: 1em;
65 }
66
67 /*
68 #search-wrapper select {
69     border:0px solid [% css_colors.border_dark %];
70     filter:alpha(opacity=0);
71     -moz-opacity:0;
72     -khtml-opacity:0;
73     opacity:0;
74     padding:0;
75     margin:0;
76     height:18px;
77 }
78 */
79 h1 {
80     margin:0;
81     margin-bottom: 5px;
82     font-size: [% css_fonts.size_biggest %];
83     font-weight:normal;
84 }
85
86 h2 {
87     font-size: [% css_fonts.size_bigger %];
88     font-weight:bold;
89 }
90
91 h2.graphic880 {
92     font-size: [% css_fonts.size_bigger %];
93     font-weight:normal;
94 }
95
96 .hide_me, .hidden {
97     display: none;
98     visibility: hidden;
99 }
100
101 div.select-box-wrapper {
102     position:absolute;
103     padding-top:2px;
104     overflow:hidden;
105     [% IF rtl == 't' -%]
106     padding-right: 3px;
107     text-align:right;
108     [%- ELSE %]
109     padding-left:3px;
110     text-align:left;
111     [%- END %]
112 }
113
114 #dash_wrapper {
115     [% IF rtl == 't' -%]
116     margin-right: 0.5em;
117     [%- ELSE %]
118     margin-left: 0.5em;
119     [%- END %]
120 }
121
122 #dash_wrapper div {
123     background: [% css_colors.primary %];
124     border-radius: 5px;
125     padding: 0em 1em;
126 }
127
128 .dash_divider {
129     margin: 1em;
130     color: [% css_colors.primary_fade %];
131     display:inline-block;
132 }
133
134 #dashboard, #dashboard_e {
135     margin-top: 1em;
136     height: 3em;
137 }
138
139 #dashboard span.dash-align a, #dashboard_e span.dash-align a {
140     font-weight: bold;
141     text-decoration: none;
142 }
143
144 #dash_user {
145     font-weight: bold;
146 }
147
148 #logout_link {
149     [% IF rtl == 't' -%]
150     right: 1px;
151     [%- ELSE %]
152     left: 1px;
153     [%- END %]
154 }
155
156 #dash_checked, #dash_e_checked { color: [% css_colors.text_attention %]; }
157 #dash_holds, #dash_e_holds { color: [% css_colors.text_attention %]; }
158 #dash_pickup, #dash_e_pickup { color: [% css_colors.text_goodnews %]; }
159
160 /*  
161 #dash_fines { color: [% css_colors.text_badnews %]; }
162 the color contrast between "text_badnews" and "primary"
163 is too low for WCAG compliance.  Use "text_attention" 
164 for now until a better color is picked - if needed.
165 */
166 #dash_fines { color: [% css_colors.text_attention %]; }
167
168 #dash_wrapper #dash_user_message_button_container {
169     display: inline;
170     padding: 0;
171 }
172 #dash_wrapper #unread_message_count_floater {
173     position: absolute;
174     background-color: [% css_colors.text_alert %];
175     padding-left: 0.2em;
176     padding-right: 0.2em;
177     display: inline-block;
178     font-size: 95%;
179     border-radius: 0;
180     z-index: 2;
181     margin-top: 0.2em;
182     [% IF rtl == 't' -%]
183     margin-right: -1.5em;
184     [%- ELSE %]
185     margin-left: -1.5em;
186     [%- END %]
187 }
188
189 #header-wrap {
190     background: linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
191     background: -moz-linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
192     background: -o-linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
193     background: -webkit-linear-gradient([% css_colors.primary %], [% css_colors.primary_fade %]);
194     background-color: [% css_colors.primary_fade %];
195 }
196 #header {
197     color: [% css_colors.background %];
198     margin-left: 1em;
199     margin-right: 1em;
200     font-size: [% css_fonts.size_small %];
201 }
202
203 #header a {
204     color: [% css_colors.background %];
205 }
206
207 #header a:hover {
208     color: [% css_colors.text_invert %];
209     text-decoration: none;
210 }
211
212 #header-links {
213     color: [% css_colors.text_invert %];
214     font-size: [% css_fonts.size_small %];
215     font-weight: bold;
216     position: relative;
217     top:4px;
218     
219 }
220
221 #header-links a {
222     color: [% css_colors.text_invert %];
223     display: block;
224     text-decoration: none;
225     [% IF rtl == 't' -%]
226     float: right;
227     margin-left: 22px;
228     [%- ELSE %]
229     float:left;
230     margin-right:22px;
231     [%- END %]
232 }
233
234 #header-links a:hover {
235     color: [% css_colors.text_invert %];
236     text-shadow: 0 0 0.2em [% css_colors.primary %], 0 0 0.2em [% css_colors.primary %];
237     text-decoration: none;
238 }
239
240 #header #header-links2 {
241     position:relative;
242     top:-8px;
243     color: [% css_colors.text_invert %];
244     padding-bottom: 15px;
245 }
246
247 #header #header-links2 a {
248     color: [% css_colors.text_invert %];
249 }
250
251 #header #header-links2 a:hover {
252     text-decoration: underline;
253 }
254
255 #your-acct-login {
256     padding-top:2em;
257 }
258
259 #gold-links {
260     [% IF rtl == 't' -%]
261     margin-right: 1em;
262     padding-right: 0px;
263     [%- ELSE %]
264     margin-left: 1em;
265     padding-left:0px;
266     [%- END %]
267 }
268
269 #gold-links-home {
270     margin:auto;
271     [% IF rtl == 't' -%]
272     padding-right: 0px;
273     [%- ELSE %]
274     padding-left:0px;
275     [%- END %]
276 }
277
278 #gold-links-holder {
279     height: 24px;
280     background: [% css_colors.background_invert %];
281 }
282
283 #util-bar {
284     [% IF rtl == 't' -%]
285     margin-right: 1em;
286     padding-right: 0px;
287     [%- ELSE %]
288     margin-left: 1em;
289     padding-left:0px;
290     [%- END %]
291     height:0px;
292 }
293
294 #search-wrapper {
295     border-bottom: 1px solid [% css_colors.border_standard %];
296     padding-bottom: 5px;
297     background: [% css_colors.background %];
298 }
299
300 #search-wrapper #breadcrumb {
301     margin-top:0px;
302     font-size: [% css_fonts.size_smaller %];
303     [% IF rtl == 't' -%]
304     float: right;
305     [%- ELSE %]
306     float:left;
307     [%- END %]
308 }
309
310 #search-wrapper #search-within {
311     margin-top:10px;
312     position:relative;
313     [% IF rtl == 't' -%]
314     float: left;
315     right: -173px;
316     [%- ELSE %]
317     float:right;
318     left:-173px;
319     [%- END %]
320 }
321
322 #search-wrapper #breadcrumb a {
323     color: [% css_colors.text %];
324 }
325
326 #search-wrapper #search_frm label {
327     font-size: [% css_fonts.size_smaller %];
328 }
329
330 #search-wrapper #search-box {
331     [% IF rtl == 't' -%]
332     margin-right: 1em;
333     padding-right: 0px;
334     [%- ELSE %]
335     margin-left: 1em;
336     padding-left: 0px;
337     [%- END %]
338     padding-top: 10px;
339     padding-bottom: 10px;
340 }
341
342 #adv_search_tabs, #acct_tabs, #acct_fines_tabs, #acct_checked_tabs, #acct_holds_tabs, #acct_prefs_tabs, #results_header_inner{
343     [% IF rtl == 't' -%]
344     margin-right:2px;
345     [%- ELSE %]
346     margin-left: 2px;
347     [%- END %]
348     overflow: auto;
349 }
350
351 #adv_search_tabs a, #acct_tabs a, #acct_fines_tabs a, #acct_checked_tabs a, #acct_holds_tabs a, #acct_prefs_tabs a {
352     [% IF rtl == 't' -%]
353     float: right;
354     margin: 10px 0px 0px 7px;
355     -moz-border-radius: 10px 10px 0px 0px;
356     border-radius: 10px 10px 0px 0px;
357     [%- ELSE %]
358     float: left;
359     margin: 10px 7px 0px 0px;
360     -moz-border-radius: 10px 10px 0px 0px; 
361     border-radius: 10px 10px 0px 0px;
362     [%- END %]
363     text-align: center;
364     vertical-align: middle;
365     display: block;
366     padding: 10px 0px 10px 0px;
367     font-weight: bold;
368     color: [% css_colors.text_invert %];
369     background: [% css_colors.control %];
370     font-weight: bold;
371     text-decoration: none;
372 }
373
374 #adv_search_tabs a, #acct_tabs a, #acct_fines_tabs a {
375     padding: 1em 1em 0.5em;
376 }
377
378 #adv_search_tabs a:hover, #acct_tabs a:hover, #acct_fines_tabs a:hover, #acct_checked_tabs a:hover, #acct_holds_tabs a:hover, #acct_prefs_tabs a:hover {
379     background: [% css_colors.primary %]; 
380     color: [% css_colors.text_invert %];
381     text-decoration: none;
382 }
383
384 #adv_search_filters {
385     position: relative;
386 }
387 #adv_search_rows {
388     border-bottom: none;
389 }
390 .adv_filter_block {
391     [% IF rtl == 't' -%]
392     float: right;
393     [%- ELSE %]
394     float: left;
395     [%- END %]
396     padding: 15px;
397     clear: both;
398 }
399 .adv_filter_block_item {
400     [% IF rtl == 't' -%]
401     float: right;
402     [%- ELSE %]
403     float: left;
404     [%- END %]
405     padding: 5px;
406 }
407
408 #adv_special_block {
409     [% IF rtl == 't' -%]
410     float: right;
411     [%- ELSE %]
412     float: left;
413     [%- END %]
414     padding: 5px;
415     margin-top: 5px;
416 }
417
418 #adv_search_submit {
419     [% IF rtl == 't' -%]
420     margin-right: 10px;
421     [%- ELSE %]
422     margin-left: 10px;
423     [%- END %]
424     position: relative;
425 }
426
427 .checkbox_col {
428     width: 1%;
429     [% IF rtl == 't' -%]
430     padding-right: 10px !important;
431     [%- ELSE %]
432     padding-left: 10px !important;
433     [%- END %]
434 }
435
436 #adv_search.on, #num_search.on, #expert_search.on {
437     color: [% css_colors.accent_darker %];
438     background: [% css_colors.background %];
439     text-decoration: none;
440 }
441
442 #adv_search_tabs a.acct-tab-on, #acct_tabs a.acct-tab-on, #acct_fines_tabs a.acct-tab-on {
443     color: [% css_colors.accent_darker %];
444     background: [% css_colors.background %];
445     text-decoration: none;
446 }
447
448 .acct-tab-off {
449     background: [% css_colors.control %];
450 }
451
452 #acct_checked_tabs a, #acct_holds_tabs a, #acct_prefs_tabs a {
453     margin-top: 0px;
454     font-size: [% css_fonts.size_smaller %];
455     color: [% css_colors.accent_darker %];
456     padding: 10px 10px 10px 10px;
457 }
458
459 #acct_checked_tabs div.selected a, #acct_holds_tabs div.selected a, #acct_prefs_tabs div.selected a {
460     background: [% css_colors.accent_lightest %];
461     color: [% css_colors.accent_darker %];
462 }
463
464 #acct_checked_tabs, #acct_holds_tabs, #acct_prefs_tabs {
465     padding-bottom: 12px;
466     color: [% css_colors.accent_medium %];
467 }
468
469 #acct_select, #acct_prefs_select {
470      display: none;
471 }
472
473 #mobile_acct_search_links {
474       background: [% css_colors.primary_fade %];
475 }
476
477 .rdetail_header {
478     [% IF rtl == 't' -%]
479     padding: 5px 0px 6px 7px;
480     margin-right: 1em;
481     [%- ELSE %]
482     padding: 5px 7px 6px 0px;
483     margin-left: 1em;
484     [%- END %]
485     border-bottom: 1px dotted [% css_colors.accent_light %];
486 }
487
488 .rdetail_results a {
489     color:[% css_colors.primary_fade %];
490     font-weight:bold;
491     font-size: [% css_fonts.size_bigger %];
492 }
493
494 .rdetail_result_count {
495     color: [% css_colors.text %];
496     font-weight: normal;
497     display: inline-block;
498     [% IF rtl == 't' -%]
499     padding-right: 1em;
500     [%- ELSE %]
501     padding-left: 1em;
502     [%- END %]
503 }
504
505 .rdetail_result_nav {
506     font-weight:normal;
507     display: inline-block;
508     [% IF rtl == 't' -%]
509     padding-right: 1em;
510     [%- ELSE %]
511     padding-left: 1em;
512     [%- END %]
513 }
514
515 #rdetail_details_table {
516     margin-top: 15px;
517 }
518
519 #rdetail_image { border: none; }
520 #rdetail_image_cell {
521     padding-top: 3px;
522     [% IF rtl == 't' -%]
523     padding-left: 10px;
524     [%- ELSE %]
525     padding-right: 10px;
526     [%- END %]
527 }
528
529 h2.rdetail_uris {
530     margin-top: 1em;
531 }
532 div.rdetail_uris {
533     padding: 0.5em 1em 0.5em 1em;
534     background-color: [% css_colors.accent_lighter2 %];
535 }
536 div.rdetail_uris ul li {
537     position: relative;
538     [% IF rtl == 't' -%]
539     right: 1em;
540     [%- ELSE %]
541     left: 1em;
542     [%- END %]
543 }
544
545 div.rdetail_show_copies {
546     margin-top: 1em;
547 }
548
549 div#rdetail_actions_div {
550     background: [% css_colors.background %];
551     [% IF rtl == 't' -%]
552     float: left;
553     [%- ELSE %]
554     float: right;
555     [%- END %]
556 }
557
558 span#rdetail_copy_counts {
559     display: inline-block;
560     vertical-align: top;
561     [% IF rtl == 't' -%]
562     border-left: thin;
563     margin-left: 1em;
564     padding-left: 1em;
565     [%- ELSE %]
566     border-right: thin;
567     margin-right: 1em;
568     padding-right: 1em;
569     [%- END %]
570 }
571
572 span#rdetail_hold_counts {
573     display: inline-block;
574     vertical-align: top;
575 }
576 span#rdetail_hold_counts p {
577     [% IF rtl == 't' -%]
578     padding-right: 2em;
579     [%- ELSE %]
580     padding-left: 2em;
581     [%- END %]
582 }
583
584 #rdetail_image_div {
585     [% IF rtl == 't' -%]
586     float: right;
587     margin-left: 1em;
588     [%- ELSE %]
589     float: left;
590     margin-right: 1em;
591     [%- END %]
592 }
593
594 .rdetail_aux_utils {
595     padding-bottom: 6px;
596     [% IF rtl == 't' -%]
597     border-right: 1px dotted [% css_colors.accent_light %];
598     padding-right:17px;
599     padding-left:70px;
600     [%- ELSE %]
601     border-left:1px dotted [% css_colors.accent_light %];
602     padding-left: 17px;
603     padding-right: 70px;
604     [%- END %]
605 }
606
607 div.place_hold {
608     border-bottom: 1px dotted [% css_colors.accent_light %];
609     padding-top: 10px;
610 }
611
612 div.toggle_list { padding-top: 6px; }
613
614 div.share_record {
615     padding-top: 6px;
616     border-top: 1px dotted [% css_colors.accent_light %];
617 }
618
619 div.format_icon {
620     [% IF rtl == 't' -%]
621     float: left;
622     margin-left: 17px;
623     [%- ELSE %]
624     float: right;
625     margin-right: 17px;
626     [%- END %]
627 }
628
629 #metarecord_population {
630     overflow: hidden;
631     width: 40%;
632     padding-bottom: 10px;
633 }
634
635 .metarecord_population_span_link {
636     line-height: 20px;
637 }
638
639 .metarecord_population_format {
640     border-right: thin;
641     display: inline-block;
642     margin-right: 1em;
643     padding-right: 1em;
644     vertical-align: top;
645 }
646
647 .metarecord_population_item_lang {
648     display: inline-block;
649     vertical-align: top;
650 }
651
652 .metarecord_population_all {
653     padding-top:10px;
654 }
655
656 .results_aux_utils {
657     display: table-cell;
658 }
659
660 .result_util {
661     border-bottom: 1px dotted [% css_colors.accent_light %];
662     padding-top: 6px;
663     [% IF rtl == 't' -%]
664     padding-right: 1em;
665     [%- ELSE %]
666     padding-left: 1em;
667     [%- END %]
668 }
669
670 .results_reviews {
671     top: -5px;
672 }
673
674 #rdetail_copies {
675     padding-top: 1.5em;
676 }
677
678 #rdetails_status td {
679     [% IF rtl == 't' -%]
680     padding: 7px 13px 3px 0px;
681     [%- ELSE %]
682     padding: 7px 0px 3px 13px;
683     [%- END %]
684     white-space: nowrap;
685 }
686
687 #rdetails_status td[headers=copy_header_library], 
688 #rdetails_status td[headers=copy_header_shelfloc] {
689     white-space: normal;
690 }
691
692 #rdetails_status thead th {
693     [% IF rtl == 't' -%]
694     padding: 13px 13px 13px 0px;
695     text-align: right;
696     [%- ELSE %]
697     padding: 13px 0px 13px 13px;
698     text-align: left;
699     [%- END %]
700     background-color: [% css_colors.accent_lighter2 %];
701     font-size: [% css_fonts.size_smaller %];
702     font-weight: bold;
703 }
704
705 #rdetails_status tbody td {
706     [% IF rtl == 't' -%]
707     padding-right: 13px;
708     text-align: right;
709     [%- ELSE %]
710     padding-left: 13px;
711     text-align: left;
712     [%- END %]
713 }
714 #rdetails_status tbody td.copy_note {
715     color: [% css_colors.primary %];
716     text-wrap:normal;
717     white-space:pre-wrap !important;
718     word-wrap:normal;
719 }
720
721 .rdetail_extras {
722     background: [% css_colors.primary_fade %];
723     border: 1px solid [% css_colors.primary %];
724     padding-top:1px;
725     clear:both;
726 }
727
728 #rdetail_extras_div {
729     margin: 1em 0;
730 }
731
732 .rdetail_extras_hr {
733     [% IF rtl == 't' -%]
734     margin-right: 1px;
735     margin-left: 1px;
736     [%- ELSE %]
737     margin-left: 1px;
738     margin-right: 1px;
739     [%- END %]
740     height: 1px;
741     background: [% css_colors.accent_light %];
742 }
743
744 .rdetail_extras_link {
745     padding: 6px 12px;
746     font-size: [% css_fonts.size_smaller %];
747     font-weight: bold;
748 }
749
750 .rdetail_extras_lbl {
751     color: [% css_colors.text_invert %];
752     text-decoration: none;
753 }
754
755 ##rdetail_extras_expand, #rdetail_extras_collapse, #rdetail_locs_collapse {
756     [% IF rtl == 't' -%]
757     margin-right: 13px;
758     [%- ELSE %]
759     margin-left: 13px;
760     [%- END %]
761 }
762
763 #rdetail_locs_expand, #rdetail_locs_collapse {
764     [% IF rtl == 't' -%]
765     margin-right: 13px;
766     [%- ELSE %]
767     margin-left:13px;
768     [%- END %]
769     padding-bottom:3px;
770     margin-top:15px;
771 }
772
773 #rdetail_anotes_div .biography {
774     margin:0;
775 }
776
777 #gbp_extra, #gbp_arrow_down_link {
778     display: none;
779 }
780
781 .almost-content-wrapper {
782     background: [% css_colors.background %];
783 }
784
785 #content-wrapper {
786     background: [% css_colors.background %];
787     min-height: 260px;
788     border-bottom: 1px solid [% css_colors.border_dark %];
789 }
790
791 .content-wrapper-record-page { top: -15px; position: relative; }
792
793 #main-content-home {
794     [% IF rtl == 't' -%]
795     padding-right: 17px;
796     margin-right: 1em;
797     [%- ELSE %]
798     padding-left: 17px;
799     margin-left: 1em;
800     [%- END %]
801 }
802 #main-content {
803     [% IF rtl == 't' -%]
804     padding-right: 0px;
805     [%- ELSE %]
806     padding-left: 0px;
807     [%- END %]
808     margin: 0 1em;
809     clear: both;
810 }
811
812 #main-content-after-bar {
813     [% IF rtl == 't' -%]
814     margin-right: 1em;
815     padding-right: 4px;
816     [%- ELSE %]
817     margin-left: 1em;
818     padding-left: 4px;
819     [%- END %]
820 }
821
822 #results-side-bar {
823     [% IF rtl == 't' -%]
824     float: right; 
825     margin-left: 5px;
826     [%- ELSE %]
827     float: left;
828     margin-right: 5px; 
829     [%- END %]
830     width: 174px;
831     background: [% css_colors.background %];
832 }
833
834 #main-content .login_boxes {
835     border: 1px solid [% css_colors.accent_lighter %];
836     background: linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
837     background: -moz-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
838     background: -ms-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
839     background: -o-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
840     background: -webkit-linear-gradient(bottom, [% css_colors.accent_ultralight %] 15%, [% css_colors.accent_lightest %] 55%, [% css_colors.accent_ultralight %] 85%);
841
842     color: [% css_colors.accent_darker %];
843 }
844
845 #main-content .login_boxes h1 {
846     font-weight: normal;
847     font-size: [% css_fonts.size_biggest %];
848     margin:0;
849 }
850
851 #main-content .left_brain {
852     [% IF rtl == 't' -%]
853     padding-right: 28px;
854     [% ELSE -%]
855     padding-left:28px;
856     [% END -%]
857     padding-top:25px;
858 }
859
860 #main-content .left_brain input[type=text], #main-content .left_brain input[type=password] {
861     width:167px;
862     margin:0;
863     padding:0;
864     background: [% css_colors.background %];
865     font-size: [% css_fonts.size_bigger %];
866     color: [% css_colors.text %];
867 }
868
869 #main-content .left_brain .input_bg {
870     [% IF rtl == 't' -%]
871     padding: 10px 13px 0px 10px;
872     [% ELSE -%]
873     padding:10px 10px 0px 13px;
874     [% END -%]
875     width:167px;
876     height:29px;
877 }
878
879 .login-help-box {
880     [% IF rtl == 't' -%]
881     float: right;
882     margin-right: 2em;
883     [% ELSE -%]
884     float: left;
885     margin-left: 2em;
886     [% END -%]
887     width: 200px;
888     text-align: center;
889 }
890
891 .login-help-button {
892     font-size: [% css_fonts.size_biggest %];
893     padding: 1.5em;
894 }
895
896 #login-failed-message {
897     font-size: [% css_fonts.size_bigger %];
898     font-weight: bold;
899     color: [% css_colors.text_alert %];
900     padding-top: 1em;
901 }
902
903 #holds_temp_parent td {
904     border-bottom:1px solid [% css_colors.border_standard %];
905 }
906
907 #holds_temp_parent input, #holds_temp_parent select {
908     margin:0;
909 }
910
911 #holds_temp_parent tr td div {
912     margin-top: 10px;
913     margin-bottom: 10px;
914 }
915
916 #holds_temp_parent tr td div.format_icon {
917     margin-top: 6px;
918     margin-bottom: 6px;
919     float: none;
920 }
921
922 #results_header_bar {
923     background: [% css_colors.accent_medium %];
924     border-top:1px solid [% css_colors.accent_mediumdark %];
925     border-bottom:1px solid [% css_colors.accent_mediumdark %];
926 }
927
928 .results_header_lbl {
929     [% IF rtl == 't' -%]
930     float: right;
931     [% ELSE -%]
932     float: left;
933     [% END -%]
934     font-weight: bold;
935     color: [% css_colors.text %];
936     /* this border is not visible, but it keeps these labels the same size
937     as the buttons */
938     border: 1px solid [% css_colors.accent_medium %];
939     background: [% css_colors.accent_medium %];
940     margin: 0.5em 0.3em;
941     padding: 0.3em;
942 }
943 /* we need a negative margin on the select to allow the containing <label>
944 to determine the actual size of the element.  By doing this, we can increase
945 the odds that the buttons and the select will be the same size, and therefore
946 collapse correctly when the window width decreases */
947 .results_header_lbl select {
948     margin: -0.5em 0;
949 }
950
951 #limit_to_available {
952     vertical-align: middle;
953 }
954
955 .results_header_sel {
956     [% IF rtl == 't' -%]
957     float: right;
958     [% ELSE -%]
959     float:left;
960     [% END -%]
961     margin:0;
962 }
963
964 .results_header_nav1 {
965     [% IF rtl == 't' -%]
966     padding: 5px 0px 6px 7px;
967     [% ELSE -%]
968     padding: 5px 7px 6px 0px;
969     [% END -%]
970     border-bottom: 1px dotted [% css_colors.accent_light %];
971 }
972
973 .results_header_nav1 .h1 {
974     font-size: [% css_fonts.size_bigger %];
975     font-weight:bold;
976     color:[% css_colors.primary_fade %];
977 }
978
979 .table_no_border_space {
980   border-spacing: 0px;
981 }
982 .table_no_cell_pad td {
983   padding: 0px;
984 }
985 .table_no_border {
986   border-collapse: collapse;
987 }
988
989 #result_table_table {
990   margin-top:10px;
991 }
992
993 #result_table_div {
994     margin-top: 1em;
995 }
996
997 tr.result_table_row > td.results_row_count,
998 tr.result_table_row > td.result_table_pic_header,
999 tr.result_table_row > td.result_table_title_cell {
1000     vertical-align: top;
1001 }
1002
1003 .result_metadata {
1004     [% IF rtl == 't' -%]
1005     float: right;
1006     padding-left: 2em;
1007     [% ELSE -%]
1008     float: left;
1009     padding-right: 2em;
1010     [% END -%]
1011     width: 30em;
1012 }
1013
1014 tr.result_table_row:nth-child(n+2) > td {
1015     border-top: 1px solid [% css_colors.accent_lighter2 %];
1016 }
1017
1018 tr.result_table_row > td.result_table_pic_header {
1019     [% IF rtl == 't' -%]
1020     padding-right: 1em;
1021     [% ELSE -%]
1022     padding-left: 1em;
1023     [% END -%]
1024     white-space: nowrap;
1025     width: 78px;
1026 }
1027
1028 .result_number {
1029     [% IF rtl == 't' -%]
1030     padding-right: 1em;
1031     [% ELSE -%]
1032     padding-left: 1em;
1033     [% END -%]
1034     white-space: nowrap;
1035 }
1036
1037 .result_count_number {
1038    font-weight: bold;
1039 }
1040
1041 .result_table_subtable {
1042     width: 100%;
1043     padding-top: 1em;
1044 }
1045
1046 div.result_table_utils_cont {
1047     [% IF rtl == 't' -%]
1048     text-align: right;
1049     float: right;
1050     [% ELSE -%]
1051     text-align:left;
1052     float: left;
1053     [% END -%]
1054 }
1055
1056 #myopac_summary_div p {
1057     margin:0;
1058     margin-bottom: 10px;
1059 }
1060
1061 #acct_sum_checked_table td {
1062     padding-bottom:5px;
1063 }
1064
1065 .zero_search_hits_main {
1066     [% IF rtl == 't' -%]
1067     float: right;
1068     [% ELSE -%]
1069     float:left;
1070     [% END -%]
1071     width:300px;
1072     margin-top: 2ex;
1073 }
1074 .zero_search_hits_saved {
1075     [% IF rtl == 't' -%]
1076     float: right;
1077     margin-left: 2em;
1078     [% ELSE -%]
1079     float:left;
1080     margin-right: 2em;
1081     [% END -%]
1082     width:200px;
1083     margin-top: 2ex;
1084 }
1085
1086 #zero_search_hits p {
1087     margin-top:0;
1088 }
1089
1090 #zero_hits_term {
1091     font-weight: bold;
1092 }
1093
1094 #zero_search_hits #spell_check_link {
1095 }
1096
1097 #zero_search_hits #zero_hits_suggestions {
1098 }
1099
1100 #lowhits_help {
1101     [% IF rtl == 't' -%]
1102     float: left;
1103     [% ELSE -%]
1104     float: right;
1105     [% END-%]
1106     width: 353px;
1107     background: [% css_colors.accent_light %];
1108     padding: 10px;
1109     margin-top: 7px;
1110 }
1111
1112 .results_info_table td {
1113     [% IF rtl == 't' -%]
1114     padding-left: 10px;
1115     [% ELSE -%]
1116     padding-right: 10px;
1117     [% END-%]
1118 }
1119
1120 #myopac_holds_main_table {
1121     border-collapse: collapse;
1122 }
1123
1124 #myopac_holds_main_table td {
1125     border: 1px solid [% css_colors.border_dark %];
1126     
1127 }
1128
1129 .myopac-hold-available {
1130     color: [% css_colors.text_greatnews %];
1131     font-weight: bold;
1132 }
1133
1134 .myopac-hold-suspended {
1135     color: [% css_colors.text_badnews %];
1136     font-weight: bold;
1137 }
1138
1139 #myopac_prefs_div .data_grid {
1140     border-collapse:collapse;
1141 }
1142
1143 #myopac_prefs_div .data_grid td {
1144     [% IF rtl == 't' -%]
1145     padding: 6px 17px 7px 0px;
1146     [% ELSE -%]
1147     padding:6px 0px 7px 17px;
1148     [% END -%]
1149     background:[% css_colors.accent_ultralight %];
1150     border-bottom:3px solid [% css_colors.background %];
1151 }
1152
1153 .header_middle {
1154     [% IF rtl == 't' -%]
1155     padding: 0px 0px 0px 7px;
1156     [% ELSE -%]
1157     padding: 0px 7px 0px 0px;
1158     [% END -%]
1159     height:22px;
1160     font-size: [% css_fonts.size_bigger %];
1161     font-weight:bold;
1162     color:[% css_colors.primary_fade %];
1163     border-bottom: 1px dotted [% css_colors.accent_light %];
1164     clear: both;
1165 }
1166
1167 .header_middle a {
1168     font-weight: normal;
1169 }
1170
1171 #acct_sum_block {
1172     [% IF rtl == 't' -%]
1173     float: right;
1174     clear: right;
1175     [% ELSE -%]
1176     float: left;
1177     clear: left;
1178     [% END -%]
1179 }
1180
1181 .acct_sum_table {
1182     border-collapse: collapse;
1183     background: [% css_colors.accent_ultralight %];
1184 }
1185
1186 .acct_sum_table tr {
1187     border-bottom: 2px solid white;
1188 }
1189
1190 .acct_sum_table td {
1191     padding: 1em;
1192 }
1193
1194 .acct_sum_table a {
1195     text-transform: none;
1196     position:relative;
1197     top:-1px;
1198 }
1199
1200 .acct_sum_table .view_link {
1201     font-weight: normal;
1202 }
1203
1204 #myopac_sum_fines {
1205     [% IF rtl == 't' -%]
1206     float: left;
1207     padding: 15px 23px 0px 0px;
1208     [% ELSE -%]
1209     float:right;
1210     padding: 15px 0px 0px 23px;
1211     [% END -%]
1212     background: [% css_colors.accent_ultralight %];
1213     width: 177px;
1214     height: 166px;
1215 }
1216
1217 #myopac_sum_fines_placehold {
1218     [% IF rtl == 't' -%]
1219     float: left;
1220     [% ELSE -%]
1221     float: right;
1222     [% END -%]
1223     width: 177px;
1224     height: 166px;
1225 }
1226
1227 .acct_holds_temp td {
1228     [% IF rtl == 't' -%]
1229     text-align: right;
1230     [% ELSE -%]
1231     text-align: left;
1232     [% END -%]
1233 }
1234
1235 #acct_checked_tabs .align, #acct_holds_tabs .align, #acct_prefs_tabs .align {
1236     [% IF rtl == 't' -%]
1237     float: right;
1238     [% ELSE -%]
1239     float:left;
1240     [% END -%]
1241 }
1242
1243 #acct_checked_main_header, #acct_holds_main_header, #acct_checked_hist_header, #acct_holds_hist_header, #acct_list_header, #acct_list_header_anon, #temp_list_holds, #acct_messages_main_header, #ebook_circs_main_table, #ebook_holds_main_table {
1244     border-collapse: collapse;
1245 }
1246
1247 .hold_notes {
1248     text-transform: none;
1249     font-weight: normal;
1250 }
1251
1252 .hold_note_title { font-weight: bold; }
1253
1254 #acct_checked_main_header td, #acct_holds_main_header td, #acct_checked_hist_header td, #acct_holds_hist_header td, #acct_list_header td, #acct_list_header_anon td, #temp_list_holds td, #acct_messages_main_header, #ebook_circs_main_table td, #ebook_holds_main_table td {
1255     background: [% css_colors.accent_lighter2 %];
1256     padding: 10px;
1257 }
1258
1259 #acct_checked_main_header th, #acct_holds_main_header th, #acct_checked_hist_header th, acct_holds_hist_header th, #acct_list_header th, #acct_list_header_anon th, #temp_list_holds th, #acct_messages_main_header, #ebook_circs_main_table th, #ebook_holds_main_table th {
1260     [% IF rtl == 't' -%]
1261     text-align: right;
1262     [% ELSE -%]
1263     text-align: left;
1264     [% END -%]
1265     padding: 0px 10px 0px 10px;
1266 }
1267
1268 #acct_list_header select, #acct_list_header_anon select {
1269     font-weight:normal;
1270     text-transform:none;
1271 }
1272
1273 .search_catalog_lbl {
1274     font-size: [% css_fonts.size_bigger %];
1275 }
1276 .adv_search_catalog_lbl {
1277     font-size: [% css_fonts.size_bigger %];
1278 }
1279
1280 .browse_the_catalog_lbl {
1281     font-size: [% css_fonts.size_bigger %];
1282 }
1283
1284 .lbl1 {
1285     font-size: [% css_fonts.size_bigger %];
1286     font-weight:bold;
1287 }
1288
1289 .lbl2 {
1290     font-size: [% css_fonts.size_smaller %];
1291     font-weight:normal;
1292     position:relative;
1293     top:3px;
1294     max-width:300px;
1295 }
1296
1297 #myopac_tabs, #adv_search_parent, #fines_payments_wrapper {
1298     background: [% css_colors.primary_fade %];
1299     padding-top:5px;
1300     margin-bottom:20px;
1301 }
1302
1303 #fines_payments_wrapper {
1304     padding-left: 5px; 
1305     padding-right: 5px;
1306 }
1307
1308 .myopac_payments_table th {
1309     [% IF rtl == 't' -%]
1310     text-align: right; }
1311     [% ELSE -%]
1312     text-align: left;
1313     [% END -%]
1314 }
1315
1316 .myopac_payments_table thead th { border-bottom: 1px dashed [% css_colors.accent_darker %]; }
1317 .myopac_payments_table thead th:first-child { width: 8em; }
1318 .myopac_payments_table tbody tr:nth-child(odd) { background-color: [% css_colors.accent_lighter %]; }
1319 .myopac_payments_table form { display: inline; }
1320 .myopac_payments_table input[type="submit"] { padding: 1px; }
1321
1322 .payment-error {
1323     font-weight: bold; color: [% css_colors.text_alert %];
1324     padding: 10px; border: 1px solid [% css_colors.accent_medium_dark %];
1325 }
1326
1327 .payment-processing {
1328     font-weight: bold;
1329     color: [% css_colors.text_greatnews %];
1330     font-size: [% css_fonts.size_bigger %];
1331     padding: 10px; border: 1px solid [% css_colors.accent_medium_dark %];
1332     text-align: center;
1333 }
1334 #adv_search_input { width: 100%; }
1335 #adv_search_parent {
1336     margin-bottom:0px;
1337 }
1338 #search-submit-spinner {
1339     height: 16px;
1340     width: 16px;
1341 }
1342 div.adv_search_available {
1343     margin-top: 1em;
1344 }
1345
1346 #myopac_loading {
1347     width:100%;
1348     text-align:center;
1349     padding-top:20px;
1350     font-size: [% css_fonts.size_bigger %];
1351     font-weight:bold;
1352 }
1353
1354 .chili_link {
1355     width:100px !important;
1356     text-align: center !important;
1357 }
1358
1359 .chili_review div.chili_link div {
1360     margin: auto;
1361 }
1362
1363 /* styling for advanced search filters that display with searchbar */
1364
1365 #adv_filter_results_block h4 { display: inline; }
1366
1367 #adv_filter_results_block {
1368     margin-top: 6px;
1369 }
1370
1371 .adv_filter_results_block_label {
1372     font-weight:bold;
1373     [% IF rtl == 't' -%]
1374     padding: 4px 12px 4px 0px;
1375     [% ELSE -%]
1376     padding: 4px 0px 4px 12px;
1377     [% END -%]
1378 }
1379
1380 .adv_filter_results_group {
1381     font-size: 12px;
1382     display: inline-block;
1383     background:  [% css_colors.accent_lighter2 %];
1384     border-style: solid;
1385     border-color: [% css_colors.accent_medium %];
1386     border-width: 1px;
1387     border-radius: 4px;
1388     padding: 2px 4px 2px 4px;
1389 }
1390
1391 .adv_filter_results_group_wrapper {
1392     display: inline-block;
1393     [% IF rtl == 't' -%]
1394     margin-right: 1em;
1395     [% ELSE -%]
1396     margin-left: 1em;
1397     [% END -%]
1398     margin-bottom: 8px;
1399 }
1400
1401 .adv_filter_results_group_header {
1402     display: inline-block;
1403 }
1404
1405 .adv_filter_results_group_values {
1406     display: inline;
1407 }
1408
1409 .adv_search_result_filter {
1410     display: inline-block;
1411 }
1412
1413 .remove_filter {
1414     font-size: 16px;
1415     [% IF rtl == 't' -%]
1416     margin-right: 3px;
1417     [% ELSE -%]
1418     margin-left: 3px;
1419     [% END -%]
1420 }
1421
1422 a.remove_filter {
1423     text-decoration: none;
1424     color: [% css_colors.accent_dark %];
1425 }
1426
1427 #filter_hits {
1428      display: inline-block;
1429 }
1430
1431 #refine_search_link {
1432     display: inline-block;
1433 }
1434
1435 [%- IF we_want_to_turn_on_facet_styling.defined; %]
1436 /* some facet styling */
1437 .facetClassContainer { margin: 2px; border: 1px solid [% css_colors.accent_light %]; }
1438 .facetClassLabelContainer { border: 1px solid [% css_colors.accent_light %]; }
1439 .facetClassLabel { font-weight: bold; text-align: center; }
1440 .facetFieldContainer {  }
1441 .facetFieldLabel { padding-left: 2px; margin-top: 5px; margin-bottom: 5px; font-weight: bold; text-align: left; }
1442 .extraFacetFieldsWrapper { }
1443 .toggleExtraFacetFieldsButton { float: right; margin: 0px; padding: 0px; }
1444 .facetFieldLineCount {
1445     display: inline-block;
1446     border-right: 1px solid [% css_colors.accent_light %];
1447     color: [% css_colors.accent_mediumdark %];
1448     width: 3em;
1449     margin-right: 3px
1450 }
1451 .facetField { border-top: 1px solid [% css_colors.accent_light %]; }
1452 .facetFields { padding-left: 5px; }
1453 .facetFieldLineValue { overflow: hidden; text-overflow: ellipsis; }
1454 [%- END -%]
1455
1456 div#facet_sidebar {
1457     [% IF rtl == 't' -%]
1458     float: right;
1459     margin-left: 1em;
1460     [% ELSE -%]
1461     float: left;
1462     margin-right: 1em;
1463     [% END-%]
1464 }
1465
1466 .facet_box_temp {
1467     padding-bottom:3px;
1468 }
1469
1470 .facet_box_temp .header {
1471     height: 2.3em;
1472     background:[% css_colors.primary %];
1473     -moz-border-top-left-radius: 5px;
1474     border-top-left-radius: 5px;
1475     -moz-border-top-right-radius: 5px;
1476     border-top-right-radius: 5px;
1477     font-weight:bold;
1478     color:[% css_colors.text_invert %];
1479     padding-top:4px;
1480 }
1481
1482 .facet_box_temp.filter_box_temp .header {
1483     background: [% css_colors.background_invert %] !important;
1484 }
1485
1486 .filter_box_label {
1487     color: [% css_colors.background_invert %];
1488     font-weight:bold;
1489     padding-top:4px;
1490     padding-bottom:4px;
1491     padding-left:12px;
1492 }
1493
1494 .facet_box_temp .header .title {
1495     [% IF rtl == 't' -%]
1496     float: right;
1497     padding-right: 12px;
1498     [% ELSE -%]
1499     float:left;
1500     padding-left:12px;
1501     [% END -%]
1502     padding-top:6px;
1503 }
1504
1505 /* in this context, where h4 is primarily for structure, 
1506    avoid the normal large font and margin for h4's */
1507 .facet_box_temp h4 {
1508     font-size : 100%; 
1509     margin: 0px;
1510 }
1511
1512 .facet_box_temp .header a.button {
1513     [% IF rtl == 't' -%]
1514     float: left;
1515     padding-left: 6px;
1516     [% ELSE -%]
1517     float:right;
1518     padding-right:6px;
1519     [% END -%]
1520     padding-top:6px;
1521     color:[% css_colors.text_invert %];
1522 }
1523
1524 .facet_box_wrapper .box_wrapper .box {
1525     border-top:1px solid [% css_colors.border_standard %];
1526     border-left:1px solid [% css_colors.border_standard %];
1527     border-right:1px solid [% css_colors.border_standard %];
1528     padding: 0 0.5em;
1529     width: 14em;
1530     overflow: hidden;
1531 }
1532
1533 .filter_box_wrapper {
1534     margin-bottom: 3px;
1535     padding: 2px;
1536     border: 1px solid [% css_colors.background_invert %];
1537     -moz-border-radius: 3px;
1538     border-radius: 3px;
1539     font-weight:bold;
1540     padding-top:4px;
1541 }
1542
1543 .facet_template {
1544     box-sizing: border-box;
1545     -moz-box-sizing: border-box;
1546     display: table;
1547     margin: 0.5em 0;
1548     width: 100%;
1549 }
1550
1551 .facet_template div {
1552     display: table-cell;
1553     padding: 2px;
1554 }
1555
1556 .facet_template.filter_template div {
1557     padding: 0px !important;
1558 }
1559
1560 .facet_template .count {
1561     text-align: right;
1562     color: [% css_colors.accent_mediumdark %];
1563 }
1564
1565 .facet_template_selected {
1566     background-color: [% css_colors.accent_lighter2 %];
1567     border: 1px solid [% css_colors.accent_medium %];
1568 }
1569
1570 #footer-wrap {
1571     background: linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1572     background: -moz-linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1573     background: -o-linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1574     background: -webkit-linear-gradient([% css_colors.primary_fade %], [% css_colors.primary %]);
1575     background-color: [% css_colors.primary %];
1576 }
1577
1578 #footer {
1579     [% IF rtl == 't' -%]
1580     margin-right: 1em;
1581     [% ELSE -%]
1582     margin-left: 1em;
1583     [% END -%]
1584     padding-top:5px;
1585     padding-bottom: 10px;
1586     font-size: [% css_fonts.size_small %];
1587 }
1588
1589 #footer a {
1590     color: [% css_colors.text_invert %];
1591     text-decoration: none;
1592     text-shadow: 0 0 0.2em [% css_colors.primary %], 0 0 0.2em [% css_colors.primary %];
1593 }
1594
1595 #copyright_text, #footer_logo {
1596     color: [% css_colors.text_invert %];
1597 }
1598
1599 .color_4 {
1600     font-weight: bold;
1601 }
1602
1603 .advanced_div { padding-top: 15px; }
1604 #adv_global_search { width: 100%; }
1605 #adv_global_search select { width: 13em; }
1606 #adv_global_addrow td { padding-top: 7px; }
1607 [% IF rtl == 't' -%]
1608 #adv_global_addrow.td-search-left{text-align:right;}
1609 [% END -%]
1610 #adv_global_input_table { width: 100%; }
1611 #adv_global_input_table select { width: 7em; }
1612 .adv_adv_link {
1613     font-size: [% css_fonts.size_smaller %];
1614     color: [% css_colors.text_alert %];
1615 }
1616 #acct_prefs_header {
1617     [% IF rtl == 't' -%]
1618     float: right;
1619     [% ELSE -%]
1620     float: left;
1621     [% END -%]
1622 }
1623 .search_page_nav_link {
1624     cursor: pointer;
1625     [% IF rtl == 't' -%]
1626     padding-right: 1em;
1627     [% ELSE -%]
1628     padding-left: 1em;
1629     [% END -%]
1630 }
1631 #opac.result.sort { width: 160px; }
1632 .renew-summary, .message-update-summary { font-size: [% css_fonts.size_bigger %]; font-style: italic; margin: 0.5ex 0; }
1633 .failure-text {
1634     [% IF rtl == 't' -%]
1635     margin-right: 4em;
1636     [% ELSE -%]
1637     margin-left: 4em;
1638     [% END -%]
1639     font-style: italic;
1640     color: [% css_colors.text_alert %];
1641 }
1642 .refine-controls { font-size: [% css_fonts.size_bigger %]; padding: 0.5ex 0; }
1643 #adv_search_refine input[type=text] { border: 1px inset [% css_colors.accent_light %] !important; }
1644 #adv_search_refine select { border: 1px inset [% css_colors.accent_light %] !important; }
1645 #adv_search_refine {
1646     [% IF rtl == 't' -%]
1647     padding-right: 5em;
1648     [% ELSE -%]
1649     padding-left: 5em;
1650     [% END -%]
1651     background-color: [% css_colors.accent_lighter2 %];
1652     margin: 2ex 0;
1653 }
1654 .row-remover { position: relative; top: 1px; vertical-align: middle; }
1655 .subtle-button {
1656     background-color: [% css_colors.background %];
1657     color: [% css_colors.primary %]; text-decoration: none;
1658     padding: 0; border: 0; margin: 0;
1659     vertical-align: middle;
1660 }
1661 .subtle-button:hover { text-decoration: underline; cursor: pointer; }
1662 .no-dec:hover { text-decoration: none; }
1663 .pending-addr td { background-color: [% css_colors.background_alert %] !important; border: 0 !important; }
1664
1665 #account-update-email table { text-align: center; padding: 20px; margin-top: 18px; border-collapse: collapse; }
1666 #account-update-email table td {
1667     [% IF rtl == 't' -%]
1668     text-align: right;
1669     [% ELSE -%]
1670     text-align: left;
1671     [% END -%]
1672     padding: 5px 15px 5px 15px;
1673     border-bottom: 1px solid [% css_colors.accent_lighter %];
1674 }
1675 #account-update-email-error { font-size: [% css_fonts.size_biggest %]; padding: 10px; border:1px solid [% css_colors.border_standard %];}
1676 a.dash-link:hover { text-decoration: underline !important; }
1677 #list_create_table td { vertical-align: middle; padding: 0 8px; }
1678 #list_create_table {
1679     background-color: [% css_colors.accent_light %];
1680     padding-bottom: 4px;
1681     margin-bottom: 10px;
1682     border-bottom: 1px dotted [% css_colors.accent_medium %];
1683     width: 100%;
1684 }
1685 .list_create_table_label {
1686     width: 30%;
1687 }
1688 #list_description, #list_create_name {
1689         width: 500px;
1690 }
1691 .list-create-table-buttons input[type=image] { margin-top: 2px; }
1692 .result_table_format_cell { padding: 0px 10px; text-align: center; }
1693 .results_row_count { font-weight: bold; }
1694 #hold_editor h1 { font-size: [% css_fonts.size_bigger %]; font-weight: bold; }
1695 #hold_editor h2 { font-size: [% css_fonts.size_big %]; font-weight: normal; text-indent: 2em; font-style: italic; }
1696 #hold_editor h1, #hold_editor h2 { margin: 2px 0; }
1697 #hold_editor_table { background-color: [% css_colors.accent_lighter %]; padding: 0.5em; }
1698 #hold_editor_table th {
1699     [% IF rtl == 't' -%]
1700     text-align: left;
1701     padding-left: 1em;
1702     [% ELSE -%]
1703     text-align: right;
1704     padding-right: 1em;
1705     [% END -%]
1706 }
1707 #hold_editor_table td { padding: 0.25em 0; }
1708 .fmt-note {
1709     [% IF rtl == 't' -%]
1710     padding-right: 1em !important;
1711     [% ELSE -%]
1712     padding-left: 1em !important;
1713     [% END -%]
1714     vertical-align: middle;
1715 }
1716 .hold-editor-controls { text-align: center; padding-top: 1em !important; }
1717 .hold-editor-controls a { padding-left: 2em; }
1718
1719 .text-right {
1720     [% IF rtl == 't' -%]
1721     text-align: left;
1722     [% ELSE -%]
1723     text-align: right;
1724     [% END -%]
1725 }
1726 .text-right-top {
1727     [% IF rtl == 't' -%]
1728     text-align: right;
1729     [% ELSE -%]
1730     vertical-align: top;
1731     [% END -%]
1732 }
1733 .rdetail-author-div {
1734     padding-bottom: 10px;
1735     display: inline-block;
1736 }
1737
1738 .invisible { visibility: hidden; }
1739 .rdetail-extras-summary { margin: 10px; }
1740 .staff-hold { background-color: [% css_colors.accent_lightest %]; }
1741 .expert-search tbody tr th {
1742     [% IF rtl == 't' -%]
1743     text-align: left;
1744     padding-right: 2em;
1745     [% ELSE -%]
1746     text-align: right;
1747     padding-left: 2em;
1748     [% END -%]
1749 }
1750 .expert-search-row { padding-top: 10px; }
1751 #adv_expert_row label { font-weight: bold; }
1752
1753 .bookshelf tr.browse_border td {
1754     border-bottom: 1px dashed [% css_colors.accent_dark %];
1755     font-size: 1px;
1756     height: 1px;
1757     padding-bottom: 1ex;
1758 }
1759 .cn_browse_item { padding: 2ex; }
1760 .results-paginator-list {
1761     [% IF rtl == 't' -%]
1762     padding-right: 1em;
1763     [% ELSE -%]
1764     padding-left: 1em;
1765     [% END -%]
1766 }
1767 .results-paginator-selected { color: [% css_colors.text_alert %]; }
1768 .inactive-hold { background: [% css_colors.accent_lightest %]; }
1769 .unread-patron-message { font-weight: bold; }
1770
1771 #hold-items-list td { padding: 5px; margin-bottom: 20px; }
1772 .hold-items-list-title { 
1773   font-size: [% css_fonts.size_bigger %];
1774   margin-bottom: 20px;
1775 }
1776 .hold-items-list-problem { color: [% css_colors.text_alert %]; }
1777
1778 .hold_success_links > span { margin: 0 2em; }
1779
1780 .radio-parts-selection { 
1781    width: 75%;
1782    margin-bottom: 20px;
1783 }
1784
1785 .parts-radio-option { 
1786   display: inline-block;
1787   width:15em;
1788 }
1789
1790 .mr_holds_no_formats { 
1791   [% IF rtl == 't' -%]
1792   margin-right: 25px;
1793   [% ELSE -%]
1794   margin-left: 25px;
1795   [% END -%]
1796   padding: 5px;
1797   font-size: 110%;
1798   font-weight: bold;
1799   color: [% css_colors.text_invert %]; 
1800   background: [% css_colors.primary %];
1801 }
1802  
1803 .holds_item_row_separator td {
1804   border-top: 2px dashed [% css_colors.accent_medium %];
1805 }
1806
1807 .big-strong {font-weight: bold; font-size: [% css_fonts.size_bigger %]; }
1808
1809 .results_header_btns, .results_header_sel {
1810     [% IF rtl == 't' -%]
1811     float: right;
1812     [% ELSE -%]
1813     float:left;
1814     [% END -%]
1815 }
1816
1817 /*
1818  * .various_containers a = shortcut to putting .opac-button on every 'a' with
1819  *     the tradeoff of increased stylesheet complexity (TODO: rethink?)
1820  */
1821
1822 .opac-multiline-button > a,
1823 .opac-button, .results_header_btns a, #simple-detail-view-links a, .dash_account_buttons a {
1824     color: [% css_colors.button_text %];
1825     font-weight: bold; 
1826     text-decoration: none;
1827     cursor: pointer !important;
1828     -moz-border-radius: 5px;
1829     border-radius: 5px;
1830     border: 1px solid [% css_colors.primary %];
1831     background:  [% css_colors.primary_fade %];
1832     margin: 0.5em;
1833     padding: 0.3em;
1834     display: inline-block;
1835 }
1836
1837 .opac-multiline-button > a:hover,
1838 .opac-button:hover, .results_header_btns a:hover, #simple-detail-view-links a:hover, #dash_wrapper a.opac-button:hover {
1839     background: [% css_colors.primary %];
1840 }
1841
1842 .opac-button:disabled {
1843     color: [% css_colors.accent_medium %];
1844     cursor: pointer !important;
1845     border: 1px solid [% css_colors.accent_light %];
1846     background-color: [% css_colors.accent_lighter %];
1847 }
1848
1849 /* Firefox adds its own special space to inputs; this gets us closer */
1850 button.opac-button::-moz-focus-inner, input.opac-button::-moz-focus-inner {
1851     padding: 0;
1852     border: 0;
1853 }
1854
1855 .opac-button-header, #dash_wrapper .opac-button {
1856     background: [% css_colors.control %];
1857     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
1858     font-size: [% css_fonts.size_base %];
1859 }
1860 a.opac-button-header:hover, #dash_wrapper a.opac-button:hover {
1861     border-color: [% css_colors.control %];
1862 }
1863
1864 .opac-multiline-button > a {
1865     display: inline-block;
1866 }
1867
1868 #myopac_checked_div {
1869     padding: 0px;
1870 }
1871
1872 .rdetail-mfhd-head {
1873     margin-top: 5px;
1874     padding-top: 5px;
1875     background-color: [% css_colors.table_heading %];
1876 }
1877
1878 .rdetail-mfhd-type {
1879     [% IF rtl == 't' -%]
1880     padding-right: 1em;
1881     [% ELSE -%]
1882     padding-left: 1em;
1883     [% END -%]
1884 }
1885
1886 .rdetail-mfhd-bottom {
1887     border-bottom: thin solid [% css_colors.border_dark %];
1888     width: 100%;
1889 }
1890
1891 #rdetail_record_details {
1892     clear: both;
1893     margin-top: 1em;
1894 }
1895
1896 .rdetail_content {
1897     [% IF rtl == 't' -%]
1898     margin-right: 1.5em;
1899     padding-right: 1.5em;
1900     [% ELSE -%]
1901     margin-left: 1.5em;
1902     padding-left: 1.5em;
1903     [% END -%]
1904 }
1905
1906 .rdetail_content_type, .rdetail_subject_type {
1907     vertical-align: top;
1908     font-weight: bold;
1909 }
1910
1911 .bookbag-item-row td { vertical-align: top; }
1912
1913 .error { color: [% css_colors.text_alert %]; font-weight: bold; }
1914 .success {
1915     color: [% css_colors.text_greatnews %];
1916     font-weight: bold;
1917 }
1918
1919 .rdetail_related_subjects {
1920     margin-top: 1.5em;
1921 }
1922
1923 .rdetail_related_series {
1924     margin-top: 1.5em;
1925 }
1926
1927 #rdetail_openurl {
1928     margin-top: 1em;
1929 }
1930
1931 .rdetail_openurl_entry {
1932     [% IF rtl == 't' -%]
1933     margin-right: 1em;
1934     padding-right: 1em;
1935     [% ELSE -%]
1936     margin-left: 1em;
1937     padding-left: 1em;
1938     [% END -%]
1939 }
1940 .bookbag-controls-holder { width: 100%; }
1941 .bookbag-controls-holder:nth-child(odd) { background-color: [% css_colors.accent_lighter2 %]; }
1942 .bookbag-controls-holder:nth-child(even) { background-color: [% css_colors.accent_lightest %]; }
1943 .bookbag-controls-holder .most {
1944     [% IF rtl == 't' -%]
1945     padding-right: 0;
1946     margin-left: 5em;
1947     [% ELSE -%]
1948     padding-left: 0;
1949     margin-right: 5em;
1950     [% END -%]
1951 }
1952 .bookbag-controls-title-block {
1953     [% IF rtl == 't' -%]
1954     float:right;
1955     [% ELSE -%]
1956     float:left;
1957     [% END -%]
1958     width:40%;
1959 }
1960 .bookbag-controls-button-block {
1961     [% IF rtl == 't' -%]
1962     float:right;
1963     [% ELSE -%]
1964     float:left;
1965     [% END -%]
1966     width:50%;
1967 }
1968 h2.bookbag-name { margin-bottom: 0em; padding-bottom: 0em; }
1969 .bookbag-share .fixed { min-width: 4em; }
1970 .bookbag-specific {
1971     [% IF rtl == 't' -%]
1972     margin-right: 1em;
1973     [% ELSE -%]
1974     margin-left: 1em;
1975     [% END -%]
1976 }
1977 .bookbag-specific div.sort {
1978     [% IF rtl == 't' -%]
1979     float: right;
1980     text-align: right;
1981     margin-right: 15px;
1982     [% ELSE -%]
1983     float: left;
1984     text-align: left;
1985     margin-left: 15px;
1986     [% END -%]
1987     width: 40%;
1988 }
1989 .bookbag-specific div.meta {
1990     background-color: [% css_colors.accent_light %];
1991     [% IF rtl == 't' -%]
1992     float: left;
1993     text-align: left;
1994     [% ELSE -%]
1995     float: right;
1996     text-align: right;
1997     [% END -%]
1998     width: 54%;
1999     border: 1px solid [% css_colors.accent_light %];
2000     padding: 5px;
2001     margin-top: 5px;
2002 }
2003 #bbag-name-desc-form tr th { vertical-align: middle; }
2004 #bbag-name-desc-form .saver { vertical-align: middle; text-align: center; }
2005 .bookbag-description {
2006     padding-top: 0em;
2007     font-style: italic;
2008     max-width: 40em;
2009 }
2010 .bbag-edit-desc-label {
2011     [% IF rtl == 't' -%]
2012     float:right;
2013     [% ELSE -%]
2014     float:left;
2015     [% END -%]
2016     width:8em;
2017 }
2018 .bbag-edit-desc-save {
2019     clear:both;
2020     margin-bottom:10px;
2021 }
2022 #bbag-edit-description {
2023     width: 20em;
2024     [% IF rtl == 't' -%]
2025     float:right;
2026     [% ELSE -%]
2027     float:left;
2028     [% END -%]
2029 }
2030 #bbag-edit-name {
2031     width: 20em;
2032     [% IF rtl == 't' -%]
2033     float: right;
2034     [% ELSE -%]
2035     float: left;
2036     [% END -%]
2037 }
2038 .bbag-action {
2039     [% IF rtl == 't' -%]
2040     margin-right: 15px;
2041     [% ELSE -%]
2042     margin-left: 15px;
2043     [% END -%]
2044 }
2045 .bbag-navigate-list {
2046     [% IF rtl == 't' -%]
2047     padding-right: 32px;
2048     float:right;
2049     [% ELSE -%]
2050     padding-left: 32px;
2051     float:left;
2052     [% END -%]
2053 }
2054 .bbag-navigate-list-pages {
2055     [% IF rtl == 't' -%]
2056     padding-right: 10px;
2057     float:right;
2058     [% ELSE -%]
2059     padding-left: 10px;
2060     float:left;
2061     [% END -%]
2062 }
2063 textarea { font-family: sans-serif; }
2064 table.bookbag-specific {
2065     border-right: 1px solid [% css_colors.accent_dark %];
2066     border-bottom: 1px solid [% css_colors.accent_medium %];
2067     margin-bottom: 2ex;
2068 }
2069 .bookbag-share {
2070     [% IF rtl == 't' -%]
2071     float: right;
2072     padding: 0px 10px 0px 0px;
2073     [% ELSE -%]
2074     float: left;
2075     padding: 0px 0px 0px 10px;
2076     [% END -%]
2077 }
2078 .bookbag-share .fixed { min-width: 6em; }
2079 .bookbag-controls {
2080     [% IF rtl == 't' -%]
2081     float: right;
2082     padding: 0px 10px 0px 0px;
2083     [% ELSE -%]
2084     float: left;
2085     padding: 0px 0px 0px 10px;
2086     [% END -%]
2087 }
2088 .bookbag-specific td.list_checkbox {
2089     [% IF rtl == 't' -%]
2090     padding-right: 10px !important;
2091     [% ELSE -%]
2092     padding-left: 10px !important;
2093     [% END -%]
2094 }
2095 .bookbag-specific td.list_entry {
2096     min-width: 10em;
2097     [% IF rtl == 't' -%]
2098     padding-right: 5px !important;
2099     [% ELSE -%]
2100     padding-left: 5px !important;
2101     [% END -%]
2102 }
2103 .bookbag-specific td.list_actions {
2104     white-space: nowrap !important;
2105 }
2106 .bookbag-paginator-selected { color: [% css_colors.text_alert %]; }
2107
2108 .list_is_empty {
2109     padding: 8px 0px 6px 0px;
2110     width: 100%;
2111     border: 0;
2112     font-size: [% css_fonts.size_bigger %];
2113     text-align: center;
2114     font-style: italic;
2115 }
2116 .save-notes { padding-bottom: 1.5ex; }
2117
2118 .nonbreaking-wrapper {
2119     display: inline-block;
2120 }
2121
2122 /* Moved from semiauto.css */
2123 .adv_global_input_container {
2124     border-bottom: none;
2125     clear: both;
2126 }
2127 .opac-auto-013 {
2128     border-bottom: none;
2129     *height: 0px;
2130 }
2131 .adv_global_filter_sort {
2132     border: none;
2133     width: 100%;
2134 }
2135 .clear-both { clear: both; }
2136 .common-no-pad {
2137     clear: both;
2138     height: 0px;
2139     margin: 0px;
2140     padding: 0px;
2141 }
2142 .common-full-pad {
2143     clear: both;
2144     height: 15px;
2145 }
2146 .alert { color: [% css_colors.text_alert %]; }
2147 .float-left {
2148     [% IF rtl == 't' -%]
2149     float: right;
2150     [% ELSE -%]
2151     float: left;
2152     [% END -%]
2153 }
2154 .float-right {
2155     [% IF rtl == 't' -%]
2156     float: left;
2157     [% ELSE -%]
2158     float: right;
2159     [% END -%]
2160 }
2161
2162 .saved-searches-header { width: 100%; font-weight: bold; font-size: [% css_fonts.size_bigger %]; }
2163 .saved-searches-header .button {
2164     [% IF rtl == 't' -%]
2165     float: left;
2166     [% ELSE -%]
2167     float: right;
2168     width: 28px;
2169     [% END -%]
2170 }
2171 .saved-searches-header .text {
2172     [% IF rtl == 't' -%]
2173     float: right;
2174     padding-left: 1em;
2175     [% ELSE -%]
2176     float: left;
2177     padding-right: 1em;
2178     [% END -%]
2179     margin: 0.5ex 0;
2180 }
2181 .saved-searches-header {font-weight: bold; font-size: [% css_fonts.size_bigger %]; }
2182 .saved-searches { border-bottom: 1px solid [% css_colors.accent_medium %]; padding-right: 1em; }
2183 #staff-saved-search { /* wraps .saved-searches-header and .saved-searches on the record page */
2184     [% IF rtl == 't' -%]
2185     border-left: 1px solid [% css_colors.accent_darker %];
2186     [% ELSE -%]
2187     border-right: 1px solid [% css_colors.accent_darker %];
2188     [% END -%]
2189 }
2190 .result_item_circulated {
2191     padding-top: 4px;
2192 }
2193
2194 .result_item_circulated span {
2195     position: relative;
2196     top:-3px;
2197     [% IF rtl == 't' -%]
2198     right: 3px;
2199     [% ELSE -%]
2200     left:3px;
2201     [% END -%]
2202 }
2203
2204 #search-only-bookbag-container { margin: 2ex 0; font-weight: bold; }
2205 #result-bookbag-heading { text-align: center; margin: 2ex; }
2206
2207 .result-bookbag-name { font-size: [% css_fonts.size_bigger %]; font-weight: bold; }
2208 .result-bookbag-description { font-size: [% css_fonts.size_bigger %]; font-style: italic; }
2209 .result-bookbag-item-note { font-style: italic; }
2210 .lowhits-bookbag-name { font-weight: bold; }
2211 .oils_AS { font-weight: bold; color: [% css_colors.text_match %]; }
2212 .oils_AS_match_term {
2213     [% IF rtl == 't' -%]
2214     text-align: right;
2215     [% ELSE -%]
2216     text-align: left;
2217     [% END -%]
2218     color: [% css_colors.text %];
2219 }
2220 .oils_AS_match_field {
2221     font-size: [% css_fonts.size_smallest %]; padding: 0.65em 0;
2222     [% IF rtl == 't' -%]
2223     text-align: left;
2224     [% ELSE -%]
2225     text-align: right;
2226     [% END -%]
2227     color: [% css_colors.accent_medium %];
2228 }
2229 table.result_holdings_table {
2230     margin-top: 1em;
2231     margin-bottom: 1em;
2232 }
2233 table.result_holdings_table thead tr {
2234     background: [% css_colors.table_heading %];
2235 }
2236 table.result_holdings_table thead tr th {
2237     font-weight: bold;
2238 }
2239 span.preflib {
2240     margin: 0 2em 0 2em;
2241 }
2242 a.preflib_change {
2243   vertical-align: super;
2244   font-size: [% css_fonts.size_smaller %];
2245   line-height: normal;
2246   text-decoration: none;
2247 }
2248 .rdetail-holding-group {
2249     [% IF rtl == 't' -%]
2250     margin-right: 1.5em;
2251     [% ELSE -%]
2252     margin-left: 1.5em;
2253     [% END -%]
2254 }
2255 .rdetail-holding-group span {
2256     [% IF rtl == 't' -%]
2257     margin-right: 1.5em;
2258     [% ELSE -%]
2259     margin-left: 1.5em;
2260     [% END -%]
2261 }
2262 .rdetail-holding-group .paging {
2263     [% IF rtl == 't' -%]
2264     margin-right: 1.5em;
2265     [% ELSE -%]
2266     margin-left: 1.5em;
2267     [% END -%]
2268 }
2269 #rdetail_deleted_exp {
2270     font-weight: bold;
2271     padding: 1em;
2272     margin: 1em;
2273     border: thick solid [% css_colors.border_alert %];
2274 }
2275
2276 #ac_tab_wrapper { width : 100%; }
2277 .ac_tab {
2278     [% IF rtl == 't' -%]
2279     float: right;
2280     padding-left: 10px;
2281     [% ELSE -%]
2282     float: left;
2283     padding-right: 10px;
2284     [% END -%]
2285     font-size: [% css_fonts.size_big %];
2286     padding: 5px;
2287     border: 1px solid [% css_colors.primary_offset %];
2288 }
2289 .ac_tab_selected { background-color: [% css_colors.primary_offset %]; }
2290 .ac_tab_selected a { color: [% css_colors.text_invert %]; }
2291 #ac_content { clear: both; width: 100%; margin-top: 10px; }
2292
2293 /* Popmenu styles used for making css menus. */
2294 .popmenu {
2295     margin: 0;
2296     padding: 0;
2297 }
2298 .popmenu li {
2299     list-style: none;
2300 }
2301 .popmenu li a {
2302     display: block;
2303     padding: 3px 5px;
2304 }
2305 .popmenu li ul {
2306     display: none; 
2307     width: 10em; /* Width to help Opera out */
2308     background-color: [% css_colors.primary %];
2309 }
2310 .popmenu li:hover ul {
2311     display: block;
2312     position: absolute;
2313     margin: 0;
2314     padding: 0;
2315     border-color: [% css_colors.border_dark %];
2316     border-width: 1px;
2317     border-style: solid;
2318 }
2319 .popmenu li:hover li {
2320     float: none;
2321 }
2322 .popmenu li:hover li a {
2323     background-color: [% css_colors.primary %]; 
2324     color: [% css_colors.accent_ultralight %];
2325 }
2326 .popmenu li li a:hover {
2327     background-color: [% css_colors.accent_ultralight %]; 
2328     color: [% css_colors.primary %];
2329 }
2330 /* Styles for the temporary list entry. */
2331 .popmenu li:hover li[class~="temporary"] a {
2332     background-color: [% css_colors.primary %]; 
2333     color: [% css_colors.accent_ultralight %];
2334 }
2335 .popmenu li li[class~="temporary"] a:hover {
2336     background-color: [% css_colors.accent_ultralight %]; 
2337     color: [% css_colors.primary %];
2338 }
2339 /* Styles for the default list entry. */
2340 .popmenu li:hover li[class~="default"] a {
2341     background-color: [% css_colors.primary %]; 
2342     color: [% css_colors.accent_ultralight %];
2343 }
2344 .popmenu li li[class~="default"] a:hover {
2345     background-color: [% css_colors.accent_ultralight %]; 
2346     color: [% css_colors.primary %];
2347 }
2348 /* Styles for the new list entry. */
2349 .popmenu li:hover li[class~="new"] a {
2350     background-color: [% css_colors.primary %]; 
2351     color: [% css_colors.accent_ultralight %];
2352 }
2353 .popmenu li li[class~="new"] a:hover {
2354     background-color: [% css_colors.accent_ultralight %]; 
2355     color: [% css_colors.primary %];
2356 }
2357 /* Style to add a divider on the menu. */
2358 .popmenu li li[class~="divider"] {
2359     border-bottom-width: 1px;
2360     border-bottom-color: [% css_colors.border_dark %];
2361     border-bottom-style: solid;
2362 }
2363     
2364 #locale_picker_form {
2365     [% IF rtl == 't' -%]
2366     float: left;
2367     border-left: thin [% css_colors.control %] solid;
2368     [% ELSE -%]
2369     float: right;
2370     border-right: thin [% css_colors.control %] solid;
2371     [% END -%]
2372     padding: 0.5em;
2373     margin-top: 2em;
2374 }
2375
2376 #locale_picker_form * {
2377     margin: 0;
2378     padding: 0;
2379     vertical-align: middle;
2380 }
2381
2382 #patron_usr_barcode_not_found {
2383     font-weight: bold; color: [% css_colors.text_alert %];
2384 }
2385
2386 .record_title {
2387     font-weight: bold;
2388 }
2389
2390 .record_author {
2391     font-style: italic;
2392 }
2393
2394 .password_message {
2395     padding-top: 1em;
2396     padding-bottom: 0.5em;
2397         font-style: italic;
2398 }
2399
2400 #maintenance_message {
2401     padding: 5px;
2402     width: 100%;
2403     background-color: [% css_colors.text_alert %];
2404     color: [% css_colors.text_invert %];
2405     text-align: center;
2406 }
2407
2408 #search-box > span {
2409     margin: 0 1em;
2410 }
2411 .browse-error {
2412     font-weight: bold;
2413     font-color: #c00;
2414 }
2415 .browse-result-sources, .browse-result-authority-bib-links {
2416     [% IF rtl == 't' -%]
2417     margin-right: 1em;
2418     [% ELSE -%]
2419     margin-left: 1em;
2420     [% END -%]
2421 }
2422 .browse-result-best-match {
2423     font-weight: bold;
2424 }
2425 .browse-pager {
2426     margin: 2ex 0;
2427 }
2428 .browse-result-list {
2429     padding-bottom: 0.5ex;
2430 }
2431 .browse-shortcuts {
2432     font-size: [% css_fonts.size_bigger %];
2433 }
2434 .browse-result-authority-field-name {
2435     font-style: italic;
2436     [% IF rtl == 't' -%]
2437     margin-left: 1em;
2438     [% ELSE -%]
2439     margin-right: 1em;
2440     [% END -%]
2441 }
2442 .browse-leading-article-warning {
2443     font-style: italic;
2444     font-size: [% css_fonts.size_big %];
2445 }
2446 .browse-public-general-note {
2447     font-size: [% css_fonts.size_big %];
2448 }
2449 .browse-public-general-note-label { }
2450 .browse-public-general-note-institution {
2451     font-style: normal;
2452     font-weight: bold;
2453 }
2454 .browse-public-general-note-body {
2455     font-style: italic;
2456 }
2457
2458 .bib_peer_type {
2459     font-weight: bold;
2460 }
2461
2462 #main-content-register {
2463     [% IF rtl == 't' -%]
2464     margin-right: 40px;
2465     [% ELSE -%]
2466     margin-left: 40px;
2467     [% END -%]
2468     font-size: [% css_fonts.size_bigger %];
2469 }
2470
2471 #main-content-register table { 
2472     padding: 20px; 
2473     margin-top: 18px; 
2474     border-collapse: collapse;
2475 }
2476
2477 #main-content-register td {
2478     [% IF rtl == 't' -%]
2479     text-align: right;
2480     [% ELSE -%]
2481     text-align: left;
2482     [% END -%]
2483 }
2484
2485 #main-content-register td:not(:first-child) {
2486     [% IF rtl == 't' -%]
2487     padding-right: 20px;
2488     [% ELSE -%]
2489     padding-left: 20px;
2490     [% END -%]
2491 }
2492
2493 .patron-reg-invalid {
2494     font-weight: bold;
2495     color: red;
2496     [% IF rtl == 't' -%]
2497     padding-left: 10px;
2498     [% ELSE -%]
2499     padding-right: 10px;
2500     [% END -%]
2501 }
2502
2503 .result_footer_nav1 {
2504     clear: both;
2505 }
2506
2507 .small_view_only, #filter_hits, #refine_hits, #return_to_hits {
2508     display: none;
2509 }
2510
2511 .rdetail_authors_div {
2512     margin-bottom: 1em;
2513 }
2514
2515 #search_query_label, #search_qtype_label, #search_itype_label, #search_locg_label {
2516     white-space: nowrap;
2517     display: inline-block;
2518 }
2519
2520 .result_table_title_cell {
2521     padding-top: 4px;
2522     padding-bottom: 4px;
2523 }
2524
2525 .record_title {
2526     font-size: [% css_fonts.size_bigger %];
2527 }
2528
2529 /* styling for sms text call number */
2530 .sms_text pre {
2531     font-family: Arial, Helvetica, sans-serif;
2532     font-size: [% css_fonts.size_medium %];
2533     background: [% css_colors.accent_lightest %];
2534     padding: .5%;
2535     /* Allow text to wrap */
2536     white-space: pre-wrap;       /* css-3 */
2537     white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
2538     white-space: -pre-wrap;      /* Opera 4-6 */
2539     white-space: -o-pre-wrap;    /* Opera 7 */
2540     word-wrap: break-word;       /* Internet Explorer 5.5+ */
2541 }
2542
2543 .mobile_view {
2544    display:none;
2545 }
2546
2547 /* patron message center */
2548 #myopac_message_tbody {
2549     vertical-align: top;
2550 }
2551 .myopac_message_message {
2552     white-space: pre-wrap;
2553 }
2554
2555 @media only screen and (max-width: 800px) {
2556     .facet_sidebar_hidden, .result_block_hidden {
2557         display: none;
2558     }
2559     .facet_sidebar_visible, .result_block_visible {
2560         display: inline ! important;
2561     }
2562     #acct_select, #acct_prefs_select {
2563         display: inline-block;
2564     }
2565     #acct_tabs, #acct_prefs_tabs {
2566          display:none;
2567      }
2568     .radio-parts-selection { width: 90%; }
2569     #list_description, #list_create_name {
2570         width: 300px;
2571     }
2572 }
2573
2574 @media only screen and (max-width: 600px) {
2575     input, select {
2576         font-size: [% css_fonts.size_big %];
2577     }
2578     span .nav_arrow_fix {
2579         display: none;
2580     }
2581     #header {
2582         padding: 0px;
2583         margin: 0px;
2584     }
2585     #homesearch_main_logo img {
2586         width:75%;
2587     }
2588     #format_selector {
2589         display:none;
2590     }
2591     #your-acct-login {
2592         padding: 0px;
2593         padding-top: 5px;
2594     }
2595     #your-acct-login a {
2596         margin: 0px;
2597         padding: 5px;
2598     }
2599     #topnav_logo {
2600         margin: 0;
2601     }
2602     #topnav_logo img {
2603         width: 200px;
2604     }
2605     #locale_picker_form {
2606         display: none;
2607     }
2608     #gold-links-holder {
2609         display: none;
2610     }
2611     #simple-detail-view-links {
2612         display: none;
2613     }
2614     #acct_tabs a, #acct_fines_tabs a {
2615        [% IF rtl == 't' -%]
2616        -moz-border-radius: 6px 0px 0px 6px;
2617        border-radius: 6px 0px 0px 6px;
2618        margin: 0px 0px 0px 5px;
2619        [% ELSE -%]
2620        -moz-border-radius: 6px 6px 0px 0px;
2621        border-radius: 6px 6px 0px 0px;
2622        margin: 0px 5px 0px 0px;
2623        [% END -%]
2624        padding: 2px 4px 3px 4px;
2625        font-size: [% css_fonts.size_base %];
2626     }
2627     .bookbag-controls-title-block {
2628         [% IF rtl == 't' -%]
2629         clear:right;
2630         [% ELSE -%]
2631         clear:left;
2632         [% END -%]
2633         width:90%;
2634     }
2635     .bookbag-controls-button-block {
2636         [% IF rtl == 't' -%]
2637         clear:right;
2638         [% ELSE -%]
2639         clear:left;
2640         [% END -%]
2641         width;90%;
2642     }
2643     .bookbag-specific {
2644         [% IF rtl == 't' -%]
2645         margin-right: 0px;
2646         [% ELSE -%]
2647         margin-left: 0px;
2648         [% END -%]
2649     }
2650     .bookbag-specific div.sort {
2651         [% IF rtl == 't' -%]
2652         float: right;
2653         text-align: right;
2654         [% ELSE -%]
2655         float: left;
2656         text-align: left;
2657         [% END -%]
2658         width: 95%;
2659         margin: 5px 0px 5px 0px;
2660         border: 1px solid [% css_colors.accent_light %];
2661         padding:5px;
2662     }
2663     .bookbag-specific div.meta {
2664         [% IF rtl == 't' -%]
2665         float: right;
2666         margin-right:0px;
2667         text-align: right;
2668         [% ELSE -%]
2669         float: left;
2670         margin-left:0px;
2671         text-align: left;
2672         [% END -%]
2673         width: 95%;
2674         margin-bottom:5px;
2675         padding:5px;
2676     }
2677     #bbag-edit-name {
2678         [% IF rtl == 't' -%]
2679         float: right;
2680         [% ELSE -%]
2681         float: left;
2682         [% END -%]
2683         width: 220px;
2684     }
2685     #bbag-edit-description {
2686         width: 220px;
2687         margin-top:5px;
2688     }
2689     .bbag-content {
2690         padding:5px;
2691         border:1px solid [% css_colors.accent_light %];
2692     }
2693     .bbag-action {
2694         [% IF rtl == 't' -%]
2695         margin-right:0px;
2696         [% ELSE -%]
2697         margin-left:0px;
2698         [% END -%]
2699         margin-bottom:5px;
2700     }
2701     .bbag-action-field {
2702         width:230px;
2703     }
2704     .bookbag-specific div.sort select {
2705         width:180px;
2706     }
2707     .bookbag-specific td.list_checkbox {
2708         [% IF rtl == 't' -%]
2709         padding-right: 0px !important;
2710         [% ELSE -%]
2711         padding-left: 0px !important;
2712         [% END -%]
2713     }
2714     .bookbag-specific td.list_entry {
2715         min-width: 5em;
2716         [% IF rtl == 't' -%]
2717         padding-right: 5px !important;
2718         [% ELSE -%]
2719         padding-left: 5px !important;
2720         [% END -%]
2721     }
2722     .bbag-navigate-list {
2723         display: none;
2724     }
2725     .bbag-navigate-list-pages {
2726         [% IF rtl == 't' -%]
2727         text-align:left;
2728         float:left;
2729         [% ELSE -%]
2730         text-align:right;
2731         float:right;
2732         [% END -%]
2733     }
2734     #dash_wrapper div {
2735         background: transparent;
2736         padding: 0px;
2737     }
2738     #dash_wrapper {
2739         position: static;
2740         top: auto;
2741     }
2742     #dash_wrapper .opac-button {
2743         top: 0px;
2744     }
2745     .small_view_only, #filter_hits {
2746         display: inline !important;
2747     }
2748     #dash_identity a {
2749         [% IF rtl == 't' -%]
2750         float:right;
2751         [% ELSE -%]
2752         float:left;
2753         [% END -%]
2754     }
2755     #dashboard, #dashboard_e {
2756         display: none;
2757     }
2758     #holds_box form blockquote {
2759         [% IF rtl == 't' -%]
2760         margin-right: 10px;
2761         margin-left: 2px;
2762         [% ELSE -%]
2763         margin-left: 10px;
2764         margin-right: 2px;
2765         [% END -%]
2766     }
2767     #holds_box form blockquote select {
2768         width: 100%;
2769     }
2770     #myopac_sum_fines_placehold {
2771         display:none;
2772     }
2773     #myopac_sum_fines {
2774         display: none;
2775     }
2776     #list_description, #list_create_name {
2777         width: 170px;
2778     }
2779     .results_header_lbl {
2780         display: none;
2781     }
2782     .results_header_nav1 span.h1 {
2783         display: none;
2784     }
2785     .preflib {
2786         display: none;
2787     }
2788     .start_end_links_span {
2789         display: block;
2790     }
2791     .invisible {
2792         display: none;
2793     }
2794     .result_table_pic_header {
2795         [% IF rtl == 't' -%]
2796         padding-right: 0px !important;
2797         padding-left: 5px;
2798         [% ELSE -%]
2799         padding-left: 0px !important;
2800         padding-right: 5px;
2801         [% END -%]
2802         width: 0px !important;
2803         margin: 0px;
2804     }
2805     .result_table_pic {
2806         width: 55px;
2807         padding: 0px;
2808         margin: 0px;
2809     }
2810     tr[name=results_isbn_tr], tr[name=results_phys_desc_tr], tr[name=results_pub_tr] strong, .result_count {
2811          display: none;
2812     }
2813     tr.result_table_title_cell[name=bib_cn_list] .result_holdings_table th:nth-child(4),
2814     tr.result_table_title_cell[name=bib_cn_list] .result_holdings_table td:nth-child(4) {
2815         display:none;
2816     }
2817     .results_info_table td {
2818         padding: 0px;
2819     }
2820     #results_header_bar {
2821         background-color: inherit;
2822     }
2823     .results_header_btns a {
2824         margin: 0.3em;
2825     }
2826     .adv_filter_results_hide {
2827         display: none;
2828     }
2829     .adv_filter_results_show {
2830         display: block;
2831     }
2832     .adv_filter_results_block_label {
2833         display: block;
2834     }
2835     .adv_filter_results_group_wrapper {
2836         display: block;
2837     }
2838     #main-content {
2839         margin: 0 1px;
2840     }
2841     #rdetails_status thead {
2842         display: none;
2843     }
2844     #rdetails_status tr {
2845         display: block;
2846         margin-top: 3px;
2847     }
2848     #rdetails_status td {
2849         display: block;
2850         padding: 1px;
2851     }
2852     .copy_details_row {
2853         background-color: [% css_colors.accent_lightest %];
2854     }
2855     .copy_details_offers_row {
2856         background-color: [% css_colors.accent_lightest %];
2857     }
2858     select#pickup_lib.search-wrapper-locg {
2859         width: 100%;
2860     }
2861     #search-wrapper #search-box {
2862         width: 85%;
2863         padding-top: 5px;
2864     }
2865     #main-content-home {
2866         padding: 0px;
2867         margin: 0px;
2868     }
2869     /* Make use of full width in mobile mode */
2870     .facet_box_wrapper .box_wrapper .box,
2871     .facet_template .facet,
2872     .facet_box_temp {
2873         width: inherit;
2874     }
2875     .facet_template .count {
2876         [% IF rtl == 't' -%]
2877         padding-right: 1em;
2878         [% ELSE -%]
2879         padding-left: 1em;
2880         [% END -%]
2881     }
2882     #facet_sidebar {
2883         margin-top: 0.5em;
2884     }
2885     #adv_search_parent {
2886         font-size: [% css_fonts.size_smaller %];
2887     }
2888     #adv_search_filters {                                                                                                                             
2889         position: relative;                                                                                                                           
2890         width: 300px;
2891     }
2892     #format_actions {
2893         [% IF rtl == 't' -%]
2894         float: right;
2895         [% ELSE -%]
2896         float: left;
2897         [% END -%]
2898     }
2899     .rdetail_aux_utils {
2900         padding: 0px;
2901         border: none;
2902     }
2903     .result_metadata {
2904         width: inherit;
2905     }
2906     div#rdetail_actions_div {
2907         float: none;
2908     }
2909     h2.rdetail_uris {
2910         clear: both;
2911     }
2912     #metarecord_population {
2913         overflow: hidden;
2914         width: 100%;
2915     }
2916     .metarecord_population_span_link {
2917     }
2918     .metarecord_population_item_lang {
2919         float: none;
2920     }
2921     .search_catalog_lbl {
2922         [% IF rtl == 't' -%]
2923         margin-right: 0;
2924         [% ELSE -%]
2925         margin-left: 0;
2926         [% END -%]
2927         white-space: nowrap;
2928     }
2929     .adv_search_catalog_lbl { 
2930         margin-top: 0;
2931         white-space: nowrap;
2932     }
2933     .browse_the_catalog_lbl {
2934         white-space: nowrap;
2935     }
2936     .mobile_hide {
2937         display: none;
2938     } 
2939     #dash_user {
2940         display: block;
2941         padding: 0.5em;
2942     }
2943     .dash_divider {
2944         display: none;
2945     }
2946     .dash_account_buttons {
2947         display: block;
2948     } 
2949     .searchbar { line-height: 1.5em; }
2950     #browse-controls { line-height: 1.5em; }
2951     #search_query_label, #search_qtype_label, #search_itype_label, #search_locg_label {
2952         display: block;
2953     }
2954     .bookshelf td {
2955         display: block;
2956         width: 100%;
2957     }
2958     .bookshelf table thead tr {
2959         display: block;
2960     }
2961     #lowhits_help { width: inherit; }
2962     #adv_search_tabs a{                                                                                                                           
2963         font-size: [% css_fonts.size_small %];
2964         margin: 2px 2px 0px 2px;
2965         padding: 2px 2px 5px 2px; 
2966         -moz-border-radius: 10px 0px 0px 0px;
2967         [% IF rtl == 't' -%]
2968         border-radius: 7px 0px 0px 7px;
2969         [% ELSE -%]
2970         border-radius: 7px 7px 0px 0px;
2971         [% END -%]
2972     }
2973     #adv_global_tbody td {
2974         border-bottom: thin solid [% css_colors.accent_light %];
2975     }
2976     #adv_global_addrow td {
2977         border-bottom: none;
2978     }
2979         /* Force table to not be like tables anymore */
2980         table#acct_checked_main_header thead tr th, table#acct_holds_main_header thead tr th, table#acct_checked_hist_header thead tr th, table#acct_holds_hist_header thead tr th, table#ebook_circs_main_table thead tr th, table#ebook_holds_main_table thead tr th {
2981                 display: block;
2982         }
2983         table#acct_checked_main_header tbody tr td, table#acct_holds_main_header tbody tr td, table#acct_checked_hist_header tbody tr td, table#acct_holds_hist_header tbody tr td, table#ebook_circs_main_table tbody tr td, table#ebook_holds_main_table tbody tr td {
2984                 display: block;
2985         }
2986
2987         /* Hide table headers (but not display: none;, for accessibility) */
2988         thead tr {
2989                 position: absolute;
2990                 top: -9999px;
2991                 [% IF rtl == 't' -%]
2992                 right: -9999px;
2993                 [% ELSE -%]
2994                 left: -9999px;
2995                 [% END -%]
2996         }
2997
2998         table#acct_checked_main_header, table#acct_holds_main_header, table#acct_checked_hist_header, table#acct_holds_hist_header, table#ebook_circs_main_table, table#ebook_holds_main_table {
2999                 width: 90%;
3000         }
3001
3002         table#acct_checked_main_header tr, table#acct_holds_main_header tr, table#acct_checked_hist_header tr { border: 1px solid #ddd; }
3003
3004         /* Holds history gets large white border to mimic header cell on other
3005            account screens that provide visual cue for next title. We should do
3006            the same for ebook tables too since we have no actions on those
3007            tables. If actions get added, we should move those tables out of
3008            here. */
3009
3010         table#acct_holds_hist_header tr, table#ebook_circs_main_table tr, table#ebook_holds_main_table tr { border-top: 25px solid #fff; }
3011
3012
3013         table#acct_checked_main_header td, table#acct_holds_main_header td, table#acct_checked_hist_header td, table#acct_holds_hist_header td, table#ebook_circs_main_table td, table#ebook_holds_main_table td {
3014                 /* Behave  like a "row" */
3015                 border: none;
3016                 border-bottom: 1px solid #eee;
3017                 position: relative;
3018                 [% IF rtl == 't' -%]
3019                 padding-right: 40%;
3020                 [% ELSE -%]
3021                 padding-left: 40%;
3022                 [% END -%]
3023         }
3024
3025          table#acct_checked_main_header td:before, table#acct_holds_main_header td:before, table#acct_checked_hist_header td:before, table#acct_holds_hist_header td:before, table#ebook_circs_main_table td:before, table#ebook_holds_main_table td:before {
3026                 /* Now like a table header */
3027                 position: absolute;
3028                 /* Top/left values mimic padding */
3029                 top: 2px;
3030                 width: 40%;
3031                 [% IF rtl == 't' -%]
3032                 right: 2px;
3033                 padding-left: 10px;
3034                 [% ELSE -%]
3035                 left: 2px;
3036                 padding-right: 10px;
3037                 [% END -%]
3038                 white-space: nowrap;
3039         }
3040
3041         table#acct_checked_main_header td:nth-of-type(1) { border-top: 5px solid #aaa; padding-top: 15px; background-color: #fff;}
3042         table#acct_checked_main_header td:nth-of-type(2):before { content: "[% l('Title') %]";}
3043         table#acct_checked_main_header td:nth-of-type(3):before { content: "[% l('Author') %]"; }
3044         table#acct_checked_main_header td:nth-of-type(4):before { content: "[% l('Renewals Left') %]"; }
3045         table#acct_checked_main_header td:nth-of-type(5):before { content: "[% l('Due Date') %]"; }
3046         table#acct_checked_main_header td:nth-of-type(6):before { content: "[% l('Barcode') %]"; }
3047         table#acct_checked_main_header td:nth-of-type(7):before { content: "[% l('Call number') %]"; }
3048
3049      table#acct_checked_hist_header td:nth-of-type(1) { border-top: 5px solid #aaa; padding-top: 15px; background-color: #fff;}
3050         table#acct_checked_hist_header td:nth-of-type(2):before { content: "[% l('Title') %]";}
3051         table#acct_checked_hist_header td:nth-of-type(3):before { content: "[% l('Author') %]"; }
3052         table#acct_checked_hist_header td:nth-of-type(4):before { content: "[% l('Checkout Date') %]"; }
3053         table#acct_checked_hist_header td:nth-of-type(5):before { content: "[% l('Due Date') %]"; }
3054         table#acct_checked_hist_header td:nth-of-type(6):before { content: "[% l('Date Returned') %]"; }
3055         table#acct_checked_hist_header td:nth-of-type(7):before { content: "[% l('Barcode') %]"; }
3056         table#acct_checked_hist_header td:nth-of-type(8):before { content: "[% l('Call number') %]"; }
3057
3058         table#acct_holds_main_header td:nth-of-type(1) { border-top: 5px solid #aaa; padding-top: 15px; background-color: #fff;}
3059         table#acct_holds_main_header td:nth-of-type(2):before { content: "[% l('Title') %]";}
3060         table#acct_holds_main_header td:nth-of-type(3):before { content: "[% l('Author') %]"; }
3061         table#acct_holds_main_header td:nth-of-type(4):before { content: "[% l('Format') %]"; }
3062         table#acct_holds_main_header td:nth-of-type(5):before { content: "[% l('Pickup Location') %]"; }
3063         table#acct_holds_main_header td:nth-of-type(6):before { content: "[% l('Cancel on') %]"; }
3064         table#acct_holds_main_header td:nth-of-type(7):before { content: "[% l('Status') %]"; }
3065         table#acct_holds_main_header td.hold_notes:before { content: "[% l('Notes') %]"; }
3066
3067         table#acct_holds_hist_header td:nth-of-type(1):before { content: "[% l('Title') %]";}
3068         table#acct_holds_hist_header td:nth-of-type(2):before { content: "[% l('Author') %]"; }
3069         table#acct_holds_hist_header td:nth-of-type(3):before { content: "[% l('Format') %]"; }
3070         table#acct_holds_hist_header td:nth-of-type(4):before { content: "[% l('Pickup Location') %]"; }
3071         table#acct_holds_hist_header td:nth-of-type(8):before { content: "[% l('Status') %]"; }
3072
3073         table#ebook_circs_main_table td:nth-of-type(1):before { content: "[% l('Title') %]"; }
3074         table#ebook_circs_main_table td:nth-of-type(2):before { content: "[% l('Author') %]"; }
3075         table#ebook_circs_main_table td:nth-of-type(3):before { content: "[% l('Due Date') %]"; }
3076         table#ebook_circs_main_table td:nth-of-type(4):before { content: "[% l('Actions') %]"; }
3077
3078         table#ebook_holds_main_table td:nth-of-type(1):before { content: "[% l('Title') %]"; }
3079         table#ebook_holds_main_table td:nth-of-type(2):before { content: "[% l('Author') %]"; }
3080         table#ebook_holds_main_table td:nth-of-type(3):before { content: "[% l('Due Date') %]"; }
3081         table#ebook_holds_main_table td:nth-of-type(4):before { content: "[% l('Actions') %]"; }
3082
3083
3084
3085        /*Want to see these in mobile ONLY */
3086        .mobile_view{
3087           display:block;
3088        }
3089
3090        .mobile_search_lbl_clr{
3091           color:[% css_colors.mobile_header_text %];
3092        }
3093 }
3094
3095
3096 /* 
3097 For text which is visible only to screen readers.
3098 Borrowed from http://getbootstrap.com/css/#helper-classes-screen-readers 
3099 See also http://webaim.org/techniques/css/invisiblecontent/
3100 */
3101 .sr-only {                                                                     
3102     position: absolute;                                                          
3103     width: 1px;                                                                  
3104     height: 1px;                                                                 
3105     padding: 0;                                                                  
3106     margin: -1px;                                                                
3107     overflow: hidden;                                                            
3108     clip: rect(0, 0, 0, 0);                                                      
3109     border: 0;                                                                   
3110 }
3111
3112 /* Make added rows in Expert Search have bold labels like the initial row */
3113 label[for*=expert_]
3114 {
3115     font-weight: bold;
3116 }  
3117
3118 .sort_deemphasize {
3119     font-weight: lighter;
3120     font-size: 70%;
3121 }
3122
3123 #results-page-depth-hint {
3124     text-align: center;
3125     font-style: italic;
3126 }
3127
3128 #clear-history-confirm {
3129   font-weight: bold;
3130   color: [% css_colors.text_badnews %]; 
3131   padding: 10px;
3132 }
3133
3134 /*Inline rules from other templates files*/
3135
3136 .td-left{
3137     [% IF rtl == 't' -%]
3138     text-align:right;
3139     [% ELSE -%]
3140     text-align:left;
3141     [% END -%]
3142     width:100%;
3143 }
3144 .td-search-left{
3145     [% IF rtl == 't' -%]
3146     text-align:right;
3147     [% ELSE -%]
3148     text-align:left;
3149     [% END -%]
3150 }
3151 #myopac_summary_div{padding:0px;}
3152 .div-left{
3153     [% IF rtl == 't' -%]
3154     float: right;
3155     [% ELSE -%]
3156     float: left;
3157     [% END -%]
3158 }
3159 .td-right{
3160     [% IF rtl == 't' -%]
3161     text-align:left;
3162     [% ELSE -%]
3163     text-align:right;
3164     [% END -%]
3165 }
3166 .login-form-left{
3167     [% IF rtl == 't' -%]
3168     float: right;
3169     margin-left: 40px;
3170     [% ELSE -%]
3171     float: left;
3172     margin-right: 40px;
3173     [% END -%]
3174     padding-bottom: 10px;
3175 }
3176 .hold-div{
3177     [% IF rtl == 't' -%]
3178     padding-right: 10px;
3179     [% ELSE -%]
3180     padding-left: 10px;
3181     [% END -%]
3182     padding-bottom: 15px;
3183 }
3184 .hold-span{font-weight: bold;}
3185 .padding-left-6{
3186     [% IF rtl == 't' -%]
3187     padding-right: 6px;
3188     [% ELSE -%]
3189     padding-left: 6px;
3190     [% END -%]
3191 }
3192 .padding-left-10{
3193     [% IF rtl == 't' -%]
3194     padding-right:10px;
3195     [% ELSE -%]
3196     padding-left:10px;
3197     [% END -%]
3198 }
3199 .padding-left-5{
3200     [% IF rtl == 't' -%]
3201     padding-right: 5px;
3202     [% ELSE -%]
3203     padding-left: 5px;
3204     [% END -%]
3205 }
3206
3207 /* Rules from metarecord_hold_filters.tt2 */
3208
3209 .metarecord_filters{
3210       padding: 5px;
3211       margin-top: 5px;
3212       border-bottom: 1px solid #333;
3213       border-top: 1px solid #333; }
3214 .metarecord_filter_container{
3215     [% IF rtl == 't' -%]
3216     float : right;
3217     margin-left: 10px;
3218     [% ELSE -%]
3219     float : left;
3220     margin-right: 10px;
3221     [% END -%]
3222 }
3223 .metarecord_filter_container select{padding: 2px;width: 13em; /* consistent w/ adv search selectors */}
3224 .metarecord_filter_header{padding-bottom: 5px;}