Bug 9677 - Style button on notices and slips page with Bootstrap
[koha-ffzg.git] / koha-tmpl / intranet-tmpl / prog / en / css / staff-global.css
1 @import url("../lib/yui/reset-fonts-grids.css") screen;
2 @import url("../lib/yui/skin.css");
3
4 input:focus, textarea:focus {
5     border-color:#538200;
6     border-style:solid;
7     border-radius: 4px;
8 }
9
10 ::selection      { background:#538200; color:#ffffff; /* Safari and Opera */ }
11 ::-moz-selection  { background:#538200; color:#ffffff; /* Firefox */ }
12
13 a, a:link, a:visited {
14     color : #004d99;
15     text-decoration: none;
16 }
17
18 a:hover, a:active {
19     color : #538200;
20     text-decoration: none;
21 }
22
23 .yui-button {
24     border-radius: 5px;
25 }
26
27 .yui-button .first-child {
28     border-radius: 5px;
29 }
30
31 .yui-button,.yui-button a:link,.yui-button a:visited {
32         color : #000;
33 }
34
35 a.yuimenuitemlabel {
36         color: #000000;
37 }
38
39 .overdue,
40 .debit {
41         color : #cc0000;
42 }
43
44 a.popup {
45         background : transparent url("../../img/pop-up-link.png") center right no-repeat;
46         padding-right : 15px;
47 }
48
49 body {
50         text-align : left;
51     padding:0 0 4em 0;
52   font-family: arial, verdana, helvetica, sans-serif;
53 }
54
55 br.clear {
56         clear : both;
57         line-height : 1px;
58 }
59
60 form {
61         display : inline;
62 }
63
64 form.confirm {
65         display : block;
66         text-align : center;
67 }
68
69 h1 {
70         font-size : 161.6%;
71         font-weight : bold;
72 }
73
74 h2 {
75         font-size : 146.5%;
76         font-weight : bold;
77 }
78
79 h3 {
80         font-size : 131%;
81         font-weight : bold;
82 }
83
84 h4 {
85         font-size : 116%;       
86         font-weight : bold;
87 }
88
89 h5 {
90         font-size : 100%;       
91         font-weight : bold;
92 }
93
94 h6 {
95         font-size : 93%;
96         font-weight : bold;
97 }
98
99 h1,h2,h3,h4,h5,h6 {
100         margin : .3em 0;
101 }
102
103 p {
104         margin: .5em 0 .5em 0;
105 }
106
107 strong {
108         font-weight : bold;
109 }
110
111 strong em {
112         font-weight : bold;
113         font-style : italic;
114 }
115
116 em, cite {
117         font-style : italic;
118 }
119
120 em strong {
121         font-weight : bold;
122         font-style : italic;
123 }
124
125 .subfield-label {
126     font-style : italic;
127 }
128
129 #navmenulist li {
130         padding : .2em 0;
131         list-style-image : url("../../img/arrow-bullet.gif");
132         border-bottom : 1px solid #EEE;
133 }
134
135 #navmenulist li a {
136         text-decoration : none;
137 }
138
139 #doc, #doc1, #doc2, #doc3 {
140         padding-top : 1em;
141 }
142
143 #login_controls  {
144         position : absolute;
145         right : .5em;
146     padding: .4em .5em;
147 }
148
149 ul {
150         padding-left : 1.1em;
151 }
152
153 ul li {
154         list-style-type : disc;
155 }
156
157 ul li li {
158         list-style-type : circle;
159 }
160
161 ol {
162         padding-left : 1.5em;
163 }
164
165 ol li {
166         list-style : decimal;
167 }
168
169 .gradient {
170     background-image: linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
171     background-image: -o-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
172     background-image: -moz-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
173     background-image: -webkit-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
174     background-image: -ms-linear-gradient(top, rgb(230,240,242) 1%, rgb(255,255,255) 99%);
175
176     background-image: -webkit-gradient(
177         linear,
178         left top,
179         left bottom,
180         color-stop(0.1, rgb(230, 240, 242)),
181         color-stop(0.99, rgb(255,255,255))
182     );
183     display: inline-block;
184     width:100%;
185 }
186
187 .clearfix:after {
188     content: ".";
189     display: block;
190     height: 0;
191     clear: both;
192     visibility: hidden;
193 }
194
195 .clearfix {
196     display: inline-block;
197 }
198
199 /* Hides from IE-mac \*/
200 * html .clearfix {height: 1%;}
201 .clearfix {display: block;}
202 /* End hide from IE-mac */
203
204 table {
205         border-collapse : collapse;
206         border-top : 1px solid #BCBCBC;
207         border-right : 1px solid #BCBCBC;
208 }
209
210 table.invis,
211 table.invis tr,
212 table.invis td,
213 tr.highlight table.invis td {
214         border : none;
215 }
216
217 td, th {
218         border-bottom : 1px solid #BCBCBC;
219         border-left : 1px solid #BCBCBC;
220         padding : .2em .3em;
221 }
222
223 td {
224         background-color : White;
225         vertical-align : top;
226 }
227
228 table.indexes td {
229     vertical-align : middle;
230 }
231
232 td.borderless {
233     border-collapse : separate;
234     border : 0 none;
235 }
236
237 td.data,
238 th.data {
239         font-family : "Courier New", Courier, monospace;
240         text-align : right;
241 }
242
243 th {
244         background-color : #E8E8E8;
245         font-weight : bold;
246         text-align : center;
247 }
248
249 table+table {
250         margin-top : 1em;
251 }
252
253 #editions table, #editions td {
254         border : 0;
255 }
256
257 .highlighted-row { background-color: orange !important }
258
259 tr.highlight td,
260 tr.highlight th,
261 tr.odd td,
262 tr.odd.highlight td {
263         background-color : #F3F3F3;
264     border : 1px solid #BCBCBC;
265     border-right : 1px solid #BCBCBC;
266 }
267
268 tr.even td, tr.even.highlight td {
269         background-color: #FFF;
270     border-right : 1px solid #BCBCBC;
271 }
272
273 td.od {
274         color : #cc0000;
275         font-weight : bold;
276 }
277
278 tr.warn td {
279         background-color: #FF9090;
280 }
281
282 tr.onissue td {
283         background-color: #FFFFCC;
284 }
285
286 tr.odd.onissue td {
287         background-color: #FFFFE1;
288 }
289
290 tfoot td {
291         background-color : #f3f3f3;
292         font-weight : bold;
293 }
294
295 td.total {
296         text-align : right;
297 }
298
299 caption {
300         font-size : 133.9%;
301         font-weight : bold;
302         margin : .3em 0;
303 }
304
305 span.problem {
306         background-color : #FFFFCC;
307         color : #990000;
308         font-weight : bold;
309         line-height : 1.7em;
310 }
311
312 fieldset {
313         margin : 1em 1em 1em 0;
314         padding : 1em;
315     background-color:#f4f8f9;
316     border:2px solid #b9d8d9;
317     border-radius:5px;
318 }
319
320 legend {
321         font-size : 123.1%;
322         font-weight : bold;
323     border:2px solid #b9d8d9;
324     background-color:#ffffff;
325     border-radius:3px;
326     padding: 0.2em 0.5em;
327 }
328
329 #breadcrumbs {
330     background-color : #e6f0f2;
331     clear : both;
332     font-size : 90%;
333     padding :.2em .5em .4em 10px;
334     margin : 0;
335 }
336
337 #header+#breadcrumbs {
338         margin-top : 1em;
339 }
340
341 div.justify {
342     text-align: justify;
343 }
344
345 div#header_search {
346         background-position : .5em .5em;
347         background-repeat : no-repeat;
348         float: left;
349         margin: .3em 0 .5em 0;
350 }
351
352 div#header_search input {
353         font-size : 1.3em;
354 }
355
356 div#header_search div.residentsearch {
357         border : 0;
358     border-bottom : 1px solid #85ca11;
359         padding : 0 0 .2em 0;
360 }
361
362 div#reserves,div#checkouts {
363         border : 1px solid #B9D8D9;
364         padding : 1em;
365 }
366
367 .tip {
368         font-size: 93%;
369         color : Gray;
370 }
371
372 .single-line {
373         white-space: nowrap;
374 }
375
376 .ex {
377         font-family : "Courier New", Courier, fixed-width;
378         font-weight : bold;
379 }
380
381
382 div.yui-b h5 {
383         font-size : 100%;
384         margin : .5em 0;
385 }
386
387 dt {
388         font-weight : bold;
389 }
390
391 dd {
392         padding : .2em;
393         font-size : 90%;
394         text-indent : 2.5em;
395         font-weight : normal;
396 }
397
398 div#toolbar {
399        background-color : #EDF4F6;
400      padding: 5px 5px 5px 5px;
401       border-radius: 5px 5px 0 0;
402     border: 1px solid #E6F0F2;
403 }
404
405 ul.toolbar {
406         padding-left : 0;
407 }
408
409 ul.toolbar button {
410         padding-bottom : 2px;
411         font-family: arial, verdana, helvetica, sans-serif;
412 }
413
414 a.yuimenuitemlabel-disabled, #disabled a {
415         color: #999;
416 }
417 a.yuimenuitemlabel-disabled, #disabled2 a {
418  color: #999;
419 }
420 a.yuimenuitemlabel-disabled:hover, #disabled a:hover {
421         color : #999;
422 }
423 a.highlight_toggle {
424     display : none;
425 }
426
427 ul.toolbar li {
428         display : inline;
429         list-style : none;
430 }
431
432 div.patroninfo {
433         margin-top : -.5em;
434 }
435
436 *html div.patroninfo {
437         margin-right : .5em;
438 }
439
440 div.patroninfo h5 {
441     border-right:1px solid #b9d8d9;
442         margin-bottom : 0;
443         padding-left : -.5em;
444         padding-top : .3em;
445         padding-bottom : .5em;
446 }
447
448 div.patroninfo h5:empty {
449     border-right: none;
450 }
451
452 div.patroninfo ul {
453         border : 0;
454     border-right:1px solid #b9d8d9;
455         border-bottom : 0;
456         border-top : 0;
457         padding : 0;
458         margin : 0;
459 }
460
461 div.patroninfo ul li {
462         margin : 0;
463 }
464
465 div.patroninfo ul li {
466         list-style-type : none;
467 }
468
469 div.patronviews {
470         border-right :  1px solid #000;
471         border-top : 1px solid #000;
472         margin-bottom : .5em;
473         padding : .5em 0 .5em 0;
474 }
475 }
476
477 .column-tool {
478         font-size: 80%;
479 }
480
481 fieldset.brief {
482     border : 2px solid #B9D8D9;
483 }
484
485 fieldset.brief label,
486 fieldset.brief span.label {
487         display : block;
488         font-weight : bold;
489         padding : .3em 0;
490 }
491
492 fieldset.brief ol, fieldset.brief li {
493         list-style-type : none;
494 }
495
496 .hint {
497         color : #999999;
498         font-size : 95%;
499 }
500
501 fieldset.brief div.hint, fieldset.rows div.hint, div.yui-u div.hint {
502         font-size : 95%;
503         margin-bottom : .4em;
504 }
505
506 div.yui-b fieldset.brief {
507         padding : .4em .7em;
508 }
509
510 div.yui-b fieldset.brief ol {
511         font-size : 85%;
512         margin : 0;
513         padding : 0;
514 }
515
516 div.yui-b fieldset.brief select {
517         width: 12em;
518 }
519 div.yui-b fieldset.brief li.radio {
520         padding : .7em 0;
521 }
522 div.yui-b fieldset.brief li.radio label,
523 div.yui-b fieldset.brief li.dateinsert label,
524 div.yui-b fieldset.brief li.dateinsert span.label,
525 div.yui-b fieldset.brief li.radio span.label {
526         display : inline;
527 }
528
529 div.yui-b fieldset.brief li.radio input {
530         padding:0.3em 0;
531 }
532
533 div.yui-b fieldset.brief fieldset {
534         margin : 0 .3em;
535         padding : .5em;
536 }
537
538 div.yui-b fieldset.brief fieldset legend {
539         font-size : 85%;
540 }
541
542 fieldset.rows {  
543 border-width : 1px;
544 border:2px solid #b9d8d9;
545 float : left;
546 font-size : 90%;
547 clear : left;
548 margin: .9em 0 0 0;  
549 padding: 0;
550 width: 100%; 
551 }
552
553 fieldset.rows legend {  
554         margin-left: 1em;
555         font-weight: bold;
556         font-size : 110%;
557 }
558
559 fieldset.rows label, fieldset.rows span.label {  
560         float: left;  
561         font-weight : bold;
562         width: 6em;  
563         margin-right: 1em;  
564         text-align: right;
565 }
566
567 fieldset.rows fieldset {
568     background-color: transparent;
569         border-width : 1px;
570     margin : 1em;
571         padding : .3em;
572 }
573
574 .yui-b fieldset.rows label, .yui-b fieldset.rows span.label {  
575         width: 9em;  
576 }
577
578 .yui-b fieldset.rows div.hint {
579         margin-left : 10.5em;
580 }
581
582 .yui-u fieldset.rows label, .yui-u fieldset.rows span.label {  
583         width: 10em;  
584 }
585
586 .yui-u fieldset.rows div.hint {
587         margin-left : 7.5em;
588 }
589
590 fieldset.rows.left label, fieldset.rows.left span.label {
591         width : 8em;
592         text-align : left;      
593 }
594
595 fieldset.rows ol {  
596 padding: 1em 1em 0 1em;  
597 list-style-type: none;
598 }
599
600 fieldset.rows li {  
601 float : left;
602 clear : left;
603 padding-bottom: 1em;
604 list-style-type: none;
605 width: 100%; 
606 }
607
608 fieldset.rows.left li {
609         padding-bottom : .4em;
610 }
611
612 fieldset.rows li.radio {
613         padding-left: 9em;
614         width : auto;
615 }
616
617 fieldset.rows li.radio label {
618         float : none;
619         width : auto;
620         margin : 0 0 0 1em;
621 }
622
623 fieldset.rows ol.radio label {
624         width : auto;
625         float : none;
626         margin-right : 0;
627 }
628
629 fieldset.rows ol.radio label.radio {
630         float : left;
631         width : 12em;
632         margin-right : 1em;
633 }
634
635 fieldset.rows caption {
636     font-size : 120%;
637 }
638
639 fieldset.rows p {
640     margin : 1em 0 1em 1em;
641 }
642
643 fieldset.rows table {
644         font-size : 105%;
645         clear : both;
646         margin : 1em 0 1em 1em;
647 }
648
649 fieldset.rows td label {
650         float : none;
651         font-weight : normal;
652         width : auto;
653 }
654
655 fieldset.rows label.yesno {
656         float : none;
657         width : auto;
658 }
659
660 fieldset.rows label.error {
661         float: none;
662         margin-left: 1em;
663         width: auto;
664 }
665
666 fieldset.action, div.action {
667     background-color: transparent;
668         clear : both;
669         float : none;
670     border : 0px;
671   margin: 0;
672      padding: .4em .4em .4em .1em;
673   width: auto;
674 }
675
676 div.rows+div.rows {
677     margin-top : .6em;
678 }
679
680 div.rows {
681 float : left;
682 clear : left;
683 margin: 0 0 0 0;  
684 padding: 0;
685 width: 100%; 
686 }
687
688
689 div.rows span.label {  
690         float: left;  
691         font-weight : bold;
692         width: 9em;  
693         margin-right: 1em;  
694         text-align: left;
695 }
696
697 div.rows ol {  
698 padding: .5em 1em 0 0;  
699 list-style-type: none;
700 }
701
702 div.rows ol li li {
703         border-bottom: 0;
704 }
705
706 div.rows li {
707 border-bottom :  1px solid #EEE;
708 float : left;
709 clear : left;
710 padding-bottom: .2em;
711 padding-top: .1em;
712 list-style-type: none;
713 width: 100%; 
714 }
715
716 a.cancel {
717         padding-left : 1em;
718 }
719
720 fieldset.rows fieldset.action {
721         padding : 1em;
722 }
723
724 fieldset.rows label.inline {
725         display : inline;
726         float : none;
727         margin-left : 1em;
728         width : auto;
729 }
730
731 fieldset.rows .inputnote {
732         clear : left;
733         float : left;
734         margin : .5em 0 0 11em;
735 }
736
737 .checkedout {
738         color : #999999;
739         font-style : italic;
740 }
741
742 .subfield_not_filled {
743         background-color : #FFFF99;
744 }
745 .content_hidden {
746     visibility:hidden; /* you propably don't need to change this one */
747     display:none;
748 }
749
750 /* the property for the displayed tab */
751 .content_visible {
752     visibility:visible; /* you propably don't need to change this one */
753     display:block;
754 }
755 #new_course a, #newbiblio a, #addchild a, #newentry a, #newshelf a, #newmenuc .first-child, #newsupplier .first-child, #newlabel a, #newtemplate a, #newlabelbatch a, #newpatroncardbatch a, #newprofile a, #newsubscription a, #newdictionary a, #newbasket a, #newrootbudget-button, #budgets_menuc .first-child {
756         padding-left : 34px;
757         background-image: url("../../img/toolbar-new.gif");
758         background-position : center left;
759         background-repeat : no-repeat;
760 }
761
762 #changepassword a {
763         padding-left : 34px;
764         background-image: url("../../img/toolbar-password.gif");
765         background-position : center left;
766         background-repeat : no-repeat;
767 }
768
769 #manageorders a {
770         padding-left : 34px;
771         background-image: url("../../img/toolbar-orders.gif");
772         background-position : center left;
773         background-repeat : no-repeat;
774 }
775
776
777 #savemenuc .first-child, #addbiblio .first-child {
778         padding-left : 34px;
779         background-image: url("../../img/toolbar-save.gif");
780         background-position : center left;
781         background-repeat : no-repeat;
782 }
783
784 #editpatron a,
785 #editreport a,
786 #editmenuc .first-child,
787 #editshelf a,
788 #edit a,
789 #editsupplier a,
790 #managelabel a,
791 #managetemplate a,
792 #managelabelbatch a,
793 #manageprofile a,
794 #periods_menuc .first-child {
795         padding-left : 34px;
796         background-image: url("../../img/toolbar-edit.gif");
797         background-position : center left;
798         background-repeat : no-repeat;
799 }
800
801 #duplicate a {
802         padding-left : 34px;
803         background-image: url("../../img/toolbar-duplicate.gif");
804         background-position : center left;
805         background-repeat : no-repeat;
806 }
807
808 #receive a {
809         padding-left : 34px;
810         background-image: url("../../img/toolbar-receive.gif");
811         background-position : center left;
812         background-repeat : no-repeat;
813 }
814
815 #renew a {
816         padding-left : 34px;
817         background-image: url("../../img/toolbar-renew.gif");
818         background-position : center left;
819         background-repeat : no-repeat;
820 }
821
822 #deletebiblio button, #deletebiblio a, #deletepatron a, #deleteshelf .first-child, #delete a {
823         padding-left : 34px;
824         background-image: url("../../img/toolbar-delete.gif");
825         background-position : center left;
826         background-repeat : no-repeat;
827 }
828
829 #z3950search .first-child {
830         padding-left : 34px;
831         background-image: url("../../img/toolbar-search.gif");
832         background-position : center left;
833         background-repeat : no-repeat;
834 }
835 #z3950searcht table {
836         /* doesn't have desired effect in catalogue/results.tmpl - I'll leave this here for now but there do seem to be casscading CSS errors in this and other CSS fiels - RICKW 20081118 */
837         padding: 20px;
838         border: none;
839 }
840 #printbiblio button, #printbiblio a, #printmenuc .first-child {
841         padding-left : 34px;
842         background-image: url("../../img/toolbar-print.gif");
843         background-position : center left;
844         background-repeat : no-repeat;
845 }
846
847 #addtoshelf button, #addtoshelf a {
848         padding-left : 34px;
849         background-image: url("../../img/toolbar-add-to-shelf.gif");
850         background-position : center left;
851         background-repeat : no-repeat;
852 }
853
854 #placehold a,
855 #placehold button,
856 #holdfor .first-child {
857         padding-left : 34px;
858         background-image: url("../../img/toolbar-hold.gif");
859         background-position : center left;
860         background-repeat : no-repeat;
861 }
862
863 #placeholdc #yui-gen13 { border-top : 1px solid #CCCCCC; margin-top : .3em; }
864
865 #holdfor .first-child { padding-left : 17px; }
866
867 #editmenuc .first-child, #deleteshelf .first-child,#newmenuc .first-child, #addbiblio .first-child, #z3950search .first-child, #printmenuc .first-child, #newsupplier .first-child, #savemenuc .first-child, #budgets_menuc .first-child, #periods_menuc .first-child {
868         padding-left : 15px;
869 }
870
871 .error,
872 .error a,
873 .error a:link,
874 .error a:visited {
875        color: #cc0000;
876 }
877
878 div.error {
879         border : 2px dashed #990000;
880         background-color : #FFFF99;
881         padding : .5em;
882         margin : 1em;
883 }
884
885 input.alert {
886         background-color : #FFFF99;
887         border-color: #900;
888 }
889
890 ol.bibliodetails {
891         float: left;
892         margin : 0 0 1em 1em;
893 }
894
895 ol.bibliodetails li {
896         border-bottom: 1px solid #E8E8E8;
897         list-style-type : none;
898         padding : .1em;
899 }
900
901 ol.bibliodetails span.label {
902         border-right : 1px solid #E8E8E8;
903         float : left;
904         font-weight: bold;
905         width: 12em;  
906         margin-right: 1em;  
907 }
908
909 div.listgroup {
910         clear :  left;
911 }
912
913 div.listgroup h4 {
914         font-style: italic;
915 }
916
917 div.listgroup h4 a {
918         font-size :  80%;
919 }
920
921 div.listgroup input {
922         font-size: 80%;
923 }
924
925 div.sysprefs h3 {
926         margin : .2em 0 .2em .4em;
927 }
928
929 div.sysprefs dl {
930         margin-left : 1.5em;
931 }
932
933 div.sysprefs div.hint {
934         width : 25%;
935         float : right;
936         padding : .5em;
937         margin : .7em;
938 }
939
940 tr.highlight td {
941         background-color : #F6F6F6;
942         border-color : #BCBCBC;
943 }
944
945 tr.highlight th[scope=row] {
946         background-color : #DDDDDD;
947         border-color : #BCBCBC;
948 }
949
950 #circ_circulation_issue label {
951         font-size: 105%;
952         font-weight : bold;
953 }
954
955 #circ_circulation_issue div.hint {
956         color : #666666;
957         margin: .2em 0;
958 }
959
960 .date-select {
961     font-size : 85%;
962     padding-top : .3em;
963 }
964
965 #circ_circulation_issue .date-select label,
966 .date-select label {
967     font-size : inherit;
968     font-weight: normal;
969 }
970
971 .date-select input {
972     padding : 1px;
973 }
974
975 tr.expired td {
976         color : #999999;
977 }
978
979 span.expired {
980         color : #990000;
981         font-style : italic;
982 }
983
984 div.help {
985         margin: .9em 0 0 0;  
986 }
987
988 .blocker {
989         color : #990000;
990 }
991
992 .circmessage li {
993         list-style : url(../../img/arrow-bullet.gif);
994         margin-bottom : .2em;
995 }
996
997 div.circmessage:first-child {
998         margin-top : 1em;
999 }
1000
1001 div.circmessage {
1002         padding: 0 .4em .4em .4em;
1003         margin-bottom : .3em;
1004 }
1005
1006 span.circ-hlt {
1007         color : #cc0000;
1008         font-weight : bold;
1009 }
1010
1011 div.first fieldset {
1012         margin-right : 0;
1013 }
1014
1015 #circ_needsconfirmation {
1016         margin : auto;
1017 }
1018
1019 .dialog {
1020         -moz-border-radius : 2px;
1021         border-radius : 2px;
1022         padding : .5em;
1023         margin : 1em auto;
1024         text-align : center;
1025         width: 65%;
1026 }
1027
1028 .dialog table {
1029         margin : .5em auto;
1030 }
1031
1032 .dialog table th {
1033         text-align : right;
1034 }
1035
1036 .dialog table td {
1037         text-align : left;
1038 }
1039   
1040 .dialog  h2, .dialog h3, .dialog h4 {
1041         margin : auto;
1042         text-align : center;
1043   }
1044   
1045 .dialog input {
1046         background-color : #FFF;
1047         border : 1px solid #bcbcbc;
1048         margin : .4em;
1049         padding : .4em .4em .4em 25px;
1050  }
1051
1052  .dialog input[type="submit"] {
1053         background : #FFF none;
1054  }
1055  
1056 .dialog input.approve, td input.approve {
1057         background : #FFF url(../../img/approve.gif) no-repeat 4px center;
1058         padding : .4em .4em .4em 25px;  
1059  }
1060  
1061 td input.approve {
1062         background-color : #FFC;
1063 }
1064
1065 .dialog input.deny {
1066         background : #FFF url(../../img/deny.gif) no-repeat 4px center;
1067         padding : .4em .4em .4em 25px;
1068  }
1069
1070 .dialog input.save {
1071         background: #fff url(../../img/toolbar-save.gif) no-repeat 4px center;
1072         color:black;
1073         padding: .4em .4em .4em 34px;
1074 }
1075
1076 .dialog input.edit {
1077         background: #fff url(../../img/toolbar-edit.gif) no-repeat 4px center;
1078         color:black;
1079         max-width : 13em;
1080         padding: .4em .4em .4em 34px;
1081         white-space: normal;
1082 }
1083
1084 .dialog input.new {
1085         background: #fff url(../../img/toolbar-new.gif) no-repeat 4px center;
1086         color:black;
1087         max-width : 13em;
1088         padding: .4em .4em .4em 34px;
1089         white-space: normal;
1090 }
1091
1092 .dialog input.print {
1093         background : #FFF url(../../img/print-confirm.gif) no-repeat 4px center;
1094         padding : .4em .4em .4em 25px;  
1095 }
1096
1097 .dialog input:hover {
1098         background-color : #ffc;
1099  }
1100
1101 div.dialog {
1102         border: 1px solid #bcbcbc;
1103     text-align : center;
1104 }
1105
1106 div.alert {
1107         background: #fef8d3; /* Old browsers */
1108         background: -moz-linear-gradient(top, #fef8d3 0%, #ffec91 9%, #ffed87 89%, #f9dc00 100%); /* FF3.6+ */
1109         background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fef8d3), color-stop(9%,#ffec91), color-stop(89%,#ffed87), color-stop(100%,#f9dc00)); /* Chrome,Safari4+ */
1110         background: -webkit-linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* Chrome10+,Safari5.1+ */
1111         background: -o-linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* Opera11.10+ */
1112         background: -ms-linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* IE10+ */
1113         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fef8d3', endColorstr='#f9dc00',GradientType=0 ); /* IE6-9 */
1114         background: linear-gradient(top, #fef8d3 0%,#ffec91 9%,#ffed87 89%,#f9dc00 100%); /* W3C */
1115           text-align : center;
1116         border: 1px solid #E0C726;
1117     color : inherit;
1118     text-shadow : none;
1119 }
1120
1121 div.alert strong {
1122         color : #900;
1123 }
1124
1125 .dialog li {
1126     list-style-position:inside;
1127 }
1128
1129 a.clear-field {
1130     background : transparent url("../../img/clear-field.png") center left no-repeat;
1131     padding-left : 16px;
1132 }
1133
1134 a.clone-field {
1135     background : transparent url("../../img/clone-field.png") center left no-repeat;
1136     padding-left : 20px;
1137 }
1138
1139 a.document {
1140         background-position : left middle;
1141         background-repeat : no-repeat;
1142         padding-left : 20px;
1143 }
1144
1145 a.pdf {
1146         background-image : url("../../img/famfamfam/silk/page_white_acrobat.png");
1147 }
1148
1149 a.csv {
1150         background-image : url("../../img/famfamfam/silk/page_white_excel.png");
1151 }
1152
1153 a.xml {
1154         background-image : url("../../img/famfamfam/silk/page_white_code.png");
1155 }
1156
1157 div.message {
1158         background: #ffffff; /* Old browsers */
1159         background: -moz-linear-gradient(top, #ffffff 0%, #f4f6fa 2%, #eaeef5 23%, #e8edf6 94%, #cddbf2 100%); /* FF3.6+ */
1160         background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(2%,#f4f6fa), color-stop(23%,#eaeef5), color-stop(94%,#e8edf6), color-stop(100%,#cddbf2)); /* Chrome,Safari4+ */
1161         background: -webkit-linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* Chrome10+,Safari5.1+ */
1162         background: -o-linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* Opera11.10+ */
1163         background: -ms-linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* IE10+ */
1164     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeef5', endColorstr='#cddbf2',GradientType=0 ); /* IE6-9 */
1165         background: linear-gradient(top, #ffffff 0%,#f4f6fa 2%,#eaeef5 23%,#e8edf6 94%,#cddbf2 100%); /* W3C */
1166         border : 1px solid #bcbcbc;
1167         text-align: center;
1168         width : 55%;
1169 }
1170
1171 div.message ul,
1172 div.message h5 {
1173         padding-left : 25%;
1174         text-align : left;
1175 }
1176
1177 div.message ul+h4 {
1178         margin-top : .7em;
1179 }
1180
1181 div.note {
1182         background: #f4f6fa;
1183         background-repeat : no-repeat;
1184         background-position : left center;
1185         background-image : url("../../img/note.png");
1186         background-image: url("../../img/note.png"), -moz-linear-gradient(top, #f4f6fa 0%, #e8edf6 100%); /* FF3.6+ */
1187         background-image: url("../../img/note.png"), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f6fa), color-stop(100%,#e8edf6)); /* Chrome,Safari4+ */
1188         background-image: url("../../img/note.png"), -webkit-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* Chrome10+,Safari5.1+ */
1189         background-image: url("../../img/note.png"), -o-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* Opera11.10+ */
1190         background-image: url("../../img/note.png"), -ms-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* IE10+ */
1191         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f6fa', endColorstr='#e8edf6',GradientType=0 ); /* IE6-9 */
1192         background-image: url("../../img/note.png"), linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* W3C */
1193         border : 1px solid #BCBCBC;
1194         padding : .5em .5em .5em 20px;
1195         margin : .5em 0;
1196 }
1197  
1198  div.results {
1199         padding : .7em 0;
1200  }
1201  
1202  .accesskey {
1203         text-decoration : underline;
1204  }
1205  
1206 label.required,
1207 span.required {
1208     color : #C00;
1209 }
1210
1211 span.required {
1212         font-style : italic;
1213         margin-left : .5em;
1214 }
1215
1216 .missing{
1217     background-color : #FFFFCC;
1218 }
1219
1220 .term {
1221     background-color: #FFC;
1222          color : #990000;
1223 }
1224
1225 a .term {
1226          text-decoration : underline;
1227 }
1228
1229 /* style for shelving location in catalogsearch */
1230 .shelvingloc {
1231     display : block;
1232     font-style : italic;
1233 }
1234
1235 a:hover .term {
1236         color : #FF9090;
1237 }
1238
1239 div#menu {
1240     border-right:1px solid #b9d8d9;
1241         margin-right: .5em;
1242         padding-top: 1em;
1243         padding-bottom: 2em;
1244 }
1245
1246 *html #menu li {
1247         display : inline;
1248 }
1249
1250 div#menu li a {
1251         text-decoration: none;
1252         display: block;
1253
1254               background: #e8f0f6; /* Old browsers */
1255         background: -moz-linear-gradient(left, #e8f0f6 0%, #e8f0f6 96%, #c1c1c1 100%); /* FF3.6+ */
1256     background: -webkit-gradient(linear, left top, right top, color-stop(0%,#e8f0f6), color-stop(96%,#e8f0f6), color-stop(100%,#c1c1c1)); /* Chrome,Safari4+ */
1257     background: -webkit-linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* Chrome10+,Safari5.1+ */
1258      background: -o-linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* Opera11.10+ */
1259    background: -ms-linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* IE10+ */
1260        background: linear-gradient(left, #e8f0f6 0%,#e8f0f6 96%,#c1c1c1 100%); /* W3C */
1261         -moz-border-top-left-radius: 5px;
1262         border-top-left-radius: 5px;
1263         -moz-border-bottom-left-radius: 5px;
1264         border-bottom-left-radius: 5px;
1265     border:1px solid #b9d8d9;
1266         font-size: 111%;
1267         margin: .5em 0;
1268         padding: .4em .3em;
1269         margin-right :  -1px;
1270 }
1271
1272 div#menu li a:hover {
1273      background: #fff; /* Old browsers */
1274    background: -moz-linear-gradient(left, #FAFAFA 0%, #FAFAFA 96%, #e6e6e6 97%, #cccccc 99%, #c1c1c1 100%); /* FF3.6+ */
1275   background: -webkit-gradient(linear, left top, right top, color-stop(0%,#FAFAFA), color-stop(96%,#FAFAFA), color-stop(97%,#e6e6e6), color-stop(99%,#cccccc), color-stop(100%,#c1c1c1)); /* Chrome,Safari4+ */
1276   background: -webkit-linear-gradient(left, #FAFAFA 0%,#FAFAFA 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* Chrome10+,Safari5.1+ */
1277      background: -o-linear-gradient(left, #FAFAFA 0%,#FAFAFA 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* Opera11.10+ */
1278    background: -ms-linear-gradient(left, #FAFAFA 0%,#FAFAFA 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* IE10+ */
1279        background: linear-gradient(left, #FAFAFA 0%,#fff 96%,#e6e6e6 97%,#cccccc 99%,#c1c1c1 100%); /* W3C */
1280     border-left: 1px solid #85CA11;
1281     border-top: 1px solid #85CA11;
1282     border-bottom: 1px solid #85CA11;
1283 }
1284
1285 div#menu li.active a:hover {
1286         background-color: #fff;
1287     color :  #538200;
1288 }
1289
1290 #menu ul li {
1291         list-style-type: none;
1292 }
1293
1294 #menu ul li.active a {
1295         background-color: #FFF;
1296         background-image : none;
1297         font-weight: bold;
1298     color:#000000;
1299     border-left: 1px solid #85CA11;
1300     border-top: 1px solid #85CA11;
1301     border-bottom: 1px solid #85CA11;
1302     border-right: 0;
1303 }
1304
1305 h1#logo {
1306         border:0pt none;
1307         float:left !important;
1308         margin:0;
1309         padding:0;
1310         width:180px;
1311 }
1312 h1#logo {
1313         background:transparent url(../../img/koha-logo-medium.gif) no-repeat scroll 0%;
1314         margin:0.75em .3em 0.75em .7em;
1315 }
1316
1317 *html h1#logo {
1318         margin : 0.75em .3em 0.75em .3em;
1319 }
1320
1321 h1#logo a {
1322         border:0;
1323         cursor:pointer;
1324         display:block;
1325         height:0px !important;
1326         margin:0;
1327         overflow:hidden;
1328         padding:44px 0 0;
1329         text-decoration:none;
1330         width:180px;
1331 }
1332
1333 #closewindow {
1334         margin-top : 2em;
1335         text-align : center;
1336 }
1337
1338 #closewindow a {
1339         font-weight : bold;     
1340 }
1341
1342 .patroninfo+#menu {
1343         margin-right : 0;
1344 }
1345
1346 .barcode {
1347         font-size :  200%;
1348 }
1349
1350 li.email a {
1351         display:block;
1352         overflow:hidden;
1353         width:13em;
1354 }
1355 li.email {
1356         background: #FFF url(../../img/elipsis.gif) right bottom no-repeat;
1357         font-size :  87%;
1358         overflow:hidden;
1359         padding :0 10px 0 0;
1360         width:13em;
1361 }
1362
1363 .empty {
1364         color : #CCC;
1365 }
1366
1367 .address {
1368         font-size: 110%;
1369 }
1370
1371 .clearfix:after {
1372     content: "."; 
1373     display: block; 
1374     height: 0; 
1375     clear: both; 
1376     visibility: hidden;
1377 }
1378
1379 /* Hides from IE-mac \*/
1380 * html .clearfix {height: 1%;}
1381 /* End hide from IE-mac */
1382
1383 .title {
1384         font-weight : bold;
1385         font-size : 105%;
1386 }
1387
1388 .hold {
1389         float : right;
1390         font-size: 90%;
1391         margin: 0;
1392 }
1393
1394 .thumbnail {
1395         display : block;
1396         margin : auto;
1397 }
1398
1399 .thumbnails > li {
1400     list-style-type: none;
1401 }
1402
1403 #searchresults ul li {
1404         font-size : 90%;
1405         list-style : url(../../img/item-bullet.gif);
1406         padding : .2em 0;
1407         clear : left;
1408 }
1409
1410 #searchresults span.status {
1411         clear : left;
1412         color : #900;
1413         display : block;
1414 }
1415
1416 #searchresults span.unavailable {
1417         clear : left;
1418         display : block;
1419 }
1420
1421 #searchresults .availability strong {
1422         display : block;
1423 }
1424
1425 #searchresults ul li img {
1426         float : left;
1427         margin : 3px 5px 3px -5px;
1428 }
1429
1430 #searchresults table td {
1431         vertical-align : top;
1432 }
1433
1434 #searchheader {
1435      background-color : #E6F0F2;
1436         font-size : 80%;
1437         margin : 0 0 .5em -1px;
1438  padding : .1em 0 .4em 1em;
1439      border-radius : 5px 5px 0 0;
1440    border : 1px solid #B9D8D9;
1441 }
1442
1443 #searchheader .btn-group > .btn:first-child {
1444     margin-left : .7em;
1445 }
1446
1447 #searchheader form {
1448         float : right;
1449   padding : 5px 5px 3px 0;
1450 }
1451
1452 #searchheader form.fz3950 {
1453         float : right;
1454         font-size : 125%;
1455         padding : 0 0 0 5em;
1456 }
1457
1458 #searchheader form.fz3950bigrpad {
1459         float : right;
1460         font-size : 125%;
1461         padding : 5px 25em 0 0;
1462 }
1463
1464 #searchheader .yui-button button,
1465 #searchheader .yui-button a {
1466         line-height : 1.5em;
1467 }
1468
1469 #search-facets ul {
1470         margin : 0;
1471         padding : .3em;
1472 }
1473
1474 #search-facets {
1475     border : 1px solid #B9D8D9;
1476     border-radius: 5px 5px 0 0;
1477 }
1478
1479 #search-facets h4 {
1480      background-color : #E6F0F2;
1481     border-bottom : 1px solid #B9D8D9;
1482      border-radius: 5px 5px 0 0;
1483         font-size : 90%;
1484         margin : 0;
1485         padding : .4em .2em;
1486         text-align : center;
1487 }
1488
1489 #search-facets ul li {
1490         font-weight : bold;
1491         list-style-type : none;
1492 }
1493
1494 #search-facets li li {
1495         font-weight : normal;
1496         font-size : 85%;
1497         margin-bottom : 2px;
1498         padding : .1em .2em;
1499 }
1500
1501 #search-facets li.showmore {
1502         font-weight : bold;
1503         text-indent : 1em;
1504 }
1505
1506 div.pages {
1507         margin : .5em 0;
1508 }
1509
1510 div.pages a {
1511         font-weight: bold;
1512         padding: 1px 5px 1px 5px;
1513         text-decoration: none;
1514 }
1515
1516 div.pages a:link,
1517 div.pages a:visited {
1518         background-color : #eeeeee;
1519         color : #3366CC;
1520 }
1521
1522 div.pages a:hover {
1523         background-color : #FFC;
1524 }
1525
1526 div.pages a:active {
1527         background-color : #ffc;
1528 }
1529
1530 div.pages .current,
1531 div.pages .currentPage {
1532         background-color : #e6fcb7;
1533         color : #666;
1534         font-weight: bold;
1535         padding: 1px 5px 1px 5px;
1536 }
1537
1538 div.pages .inactive {
1539         background-color : #f3f3f3;
1540         color : #BCBCBC;
1541         font-weight: bold;
1542         padding: 1px 5px 1px 5px;
1543 }
1544
1545 div.browse {
1546         margin : .5em 0;
1547 }
1548
1549 div#bookcoverimg {
1550         text-align : center;
1551 }
1552
1553 div#header_search input.submit {
1554         font-size : 1em;
1555 }
1556
1557 *html input.submit {
1558         padding : .1em;
1559 }
1560
1561 input[type=submit]:active, input[type=button]:active, button.submit:active, a.submit:active {
1562         border : 1px inset #999999;
1563 }
1564
1565 input[type=submit], input[type=reset], input[type=button], input.submit, button.submit, a.submit {
1566         border: 1px outset #999999;
1567         border-top-color: #666;
1568         border-left-color: #666;
1569         -moz-border-radius : 2px;
1570         padding: 0.25em;
1571         background: #ffffff; /* Old browsers */
1572         background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 35%, #e0e0e0 100%); /* FF3.6+ */
1573         background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(35%,#f7f7f7), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
1574         background: -webkit-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
1575         background: -o-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* Opera11.10+ */
1576         background: -ms-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* IE10+ */
1577         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
1578         background: linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* W3C */
1579         color: #333333;
1580 }
1581
1582 input[type=submit]:disabled,
1583 input[type=reset]:disabled,
1584 input[type=button]:disabled,
1585 input.submit:disabled,
1586 button.submit:disabled,
1587 a.submit:disabled {
1588     color : #999;
1589     border : 1px solid #C0C0C0;
1590     background : #EEE none;
1591 }
1592
1593 input[type=reset]:active, input[type=button]:active, input.submit:active, button.submit:active, a.submit:active {
1594         border : 1px inset #999999;
1595 }
1596
1597 a.submit {
1598     display: inline-block;
1599 }
1600
1601 ul li input.submit {
1602         font-size : 87%;
1603         padding : 2px;
1604 }
1605
1606 input.warning {
1607     background : #FFF url(../../img/famfamfam/silk/error.png) no-repeat 4px center;
1608         padding : 0.25em 0.25em 0.25em 25px;
1609 }
1610
1611 .searchhighlightblob {
1612     font-size:75%;
1613         font-style : italic;
1614 }
1615
1616 a.yuimenuitemlabel:hover {
1617         background-color : #B3D4FF;
1618         color : #000;
1619 }
1620                 
1621 #displayexample {
1622         padding: 5px; 
1623         margin-bottom: 10px;
1624         background-color: #CCCCCC;
1625 }
1626
1627 #irregularity_summary {
1628         vertical-align : top;
1629 }
1630
1631 ul#toplevelmenu {
1632     padding : 0;
1633 }
1634
1635 /*#toplevelnav {
1636         float : left;
1637         margin-left : .5em;
1638      width: 40%;
1639 }
1640
1641 ul#toplevelmenu li {
1642         display: inline;
1643         padding : 0 .6em;
1644 }
1645                 
1646 ul#toplevelmenu li.more a {
1647         background-image:url(../../img/more-arrow.gif);
1648         background-position:right center;
1649         background-repeat:no-repeat;
1650         padding-right:13px;
1651 }
1652                 
1653 ul#toplevelmenu li.more ul li a {
1654         background-image : none;
1655         padding-right : 20px;
1656 }
1657
1658 ul#toplevelmenu li.more ul li a.yuimenuitemlabel {
1659         padding: .2em 20px .2em 20px;
1660 }
1661                 
1662 ul#toplevelmenu li a {
1663         text-decoration : none;
1664 }
1665 ul#toplevelmenu li ul li {
1666         display :block;
1667         padding :0;
1668 }
1669 ul#toplevelmenu li ul li a {
1670         text-decoration : none;
1671 }
1672
1673 ul#i18nMenu {
1674         margin : 0;
1675         padding : .2em 0;
1676  }
1677  
1678 ul#i18nMenu li {
1679         border-left : 1px solid #CCC;
1680         display : inline;
1681         float: left;
1682         list-style : none;
1683         padding : 0 10px;
1684 }
1685
1686 ul#i18nMenu li.yuimenuitem {
1687         float: none;
1688 }
1689
1690 ul#i18nMenu li:first-child {
1691         border-left : 0;
1692  }
1693  
1694 ul#i18nMenu li ul li {
1695         border : 0;
1696         display : block;
1697         padding : 0;
1698  }
1699  
1700 ul#i18nMenu li.more a {
1701         background-image:url(../../img/more-up-arrow.gif);
1702         background-position:right center;
1703         background-repeat:no-repeat;
1704         padding-right:13px;
1705 }
1706                 
1707 ul#i18nMenu li.more ul li a {
1708         background-image : none;
1709         padding-right : 20px;
1710 }
1711
1712 div.lang {
1713         float:left;
1714 }
1715  
1716  div#changelanguage{
1717         background-color: #fff;
1718         border-top: 1px solid #CCC;
1719   position:absolute;
1720   bottom:0;
1721   left:0;
1722   width:100%;
1723   height: 2em;
1724  }
1725  
1726  @media screen{
1727   body>div#changelanguage {
1728    position: fixed;
1729   }
1730  }
1731  
1732  * html body{
1733   overflow:hidden;
1734  } 
1735  
1736  * html div#doc1{
1737   height:100%;
1738   overflow:auto;
1739  }
1740   
1741  * html div#doc2{
1742   height:100%;
1743   overflow:auto;
1744  }
1745   
1746  * html div#doc3{
1747   height:100%;
1748   overflow:auto;
1749  }*/
1750
1751 #CheckAll, #CheckNone, #CheckPending {
1752         font-weight : normal;
1753         margin : 0 .5em 0 0;
1754 }
1755 .lost,.dmg,.wdn {
1756         display : block;
1757         color : #990000;
1758 }
1759 .datedue {
1760         display : block;
1761         color : #999;
1762         font-style : italic;
1763 }
1764
1765 tr.reserved td {
1766         background-color : #eeffd4;
1767 }
1768 tr.transfered td {
1769         background-color : #e8f0f6;
1770 }
1771 .waitinghere,
1772 .credit {
1773         color : #669900;
1774 }
1775
1776 /* Permissions Labels */
1777 label.permissioncode:before {
1778         content: "(";
1779 }
1780 label.permissioncode:after {
1781         content: ")";
1782 }
1783 label.permissioncode {
1784         font-style : italic;
1785 }
1786 span.permissiondesc {
1787         font-weight : normal;
1788 }
1789 #mainuserblock {
1790         border : 1px solid #E8E8E8;
1791         margin-top : .5em;
1792         padding : .5em;
1793 }
1794
1795 .labeledmarc-table {
1796         border: 0;
1797 }
1798
1799 .labeledmarc-label {
1800         border: 0;
1801         padding: 5;
1802         font-size: 11pt;
1803     color: #000000;
1804     font-style: italic;
1805 }
1806
1807 .labeledmarc-value {
1808         border: 0;
1809         padding: 5;
1810         font-size: 10pt;
1811         color: black;
1812 }
1813
1814 #cartDetails {
1815         background-color : #FFF;
1816         border: 1px solid #739acf;
1817          -moz-box-shadow: 1px 1px 3px 0 #666;
1818          -webkit-box-shadow: 1px 1px 3px 0 #666;
1819          box-shadow: 1px 1px 3px 0 #666;
1820         color : black;
1821         display : none;
1822         margin : 0;
1823         padding : 10px;
1824         text-align : center;
1825         width : 180px;
1826         z-index : 50;
1827 }
1828 #cartmenulink {
1829         background: transparent url("../../img/cart-small.gif") left center no-repeat;
1830         padding-left : 15px;
1831 }
1832 #cartmenulink span#basketcount span {
1833         display : inline;
1834         font-size : 90%;
1835         font-weight : normal;
1836         padding : 0;
1837 }
1838 #moremenu {
1839         display : none;
1840 }
1841
1842 .results_summary {
1843   display: block;
1844   font-size : 85%; 
1845   color: #707070;
1846   padding : 0 0 .5em 0;
1847 }
1848 .results_summary .label {
1849   color: #202020;
1850 }
1851 .results_summary a {
1852   font-weight: normal;
1853 }
1854
1855 ul.budget_hierarchy {
1856     margin-left: 0px;
1857     padding-left: 0px;
1858 }
1859 ul.budget_hierarchy li {
1860     display: inline;
1861 }
1862 ul.budget_hierarchy li:after {
1863     content: " -> ";
1864 }
1865 ul.budget_hierarchy li:last-child:after {
1866     content: "";
1867 }
1868 ul.budget_hierarchy li:first-child:after {
1869     content: "";
1870 }
1871 .holdcount { font-size : 105%; line-height : 200%; }
1872 .holdcount a {
1873         border : 1px solid #a4bedd;
1874         background-color : #e4ecf5;
1875         font-weight : bold;
1876         -moz-border-radius: 4px;
1877         border-radius: 4px;
1878         padding : .1em .4em;
1879         text-decoration : none;
1880 }
1881 .holdcount a:hover { background-color : #ebeff7; }
1882 .container {
1883         border : 1px solid #EEE;
1884         padding : 1em;
1885         margin : 1em 0;
1886 }
1887 fieldset.rows+h3 {clear:both;padding-top:.5em;}
1888
1889 .import_export{
1890     position:relative;
1891 }
1892 .import_export .import_export_options{
1893     background: white;
1894     border: 1px solid #CDCDCD;
1895     left: 60px;
1896     padding: 10px;
1897     position: absolute;
1898     top: 0;
1899     z-index: 1;
1900     width: 300px;
1901 }
1902 .import_export_options fieldset.rows li label {
1903     width : 16em;
1904 }
1905 .form_import fieldset.rows li label {
1906     width : auto;
1907 }
1908
1909 .import_export_options .export_ok {
1910     padding: 10;
1911     background: #E3E3E3 none;
1912     cursor: pointer;
1913     margin-left: 20px;
1914     border: none;
1915 }
1916 .import_export_options {
1917     padding: 10;
1918     background: #E3E3E3 none;
1919     cursor: pointer;
1920     margin-left: 20px;
1921     border: none;
1922 }
1923 .form_import .input_import {
1924     border: 1px solid #bcbcbc;
1925 }
1926 .import_export_options .importing {
1927     padding: inherit;
1928     background: none;
1929 }
1930
1931 .importing {
1932     position: relative;
1933 }
1934
1935 .importing .importing_msg {
1936     padding-left: 10px;
1937     padding-bottom: 10px;
1938 }
1939
1940 .m880 {
1941     display:block; 
1942     text-align:right; 
1943     float:right; 
1944     width:50%; 
1945     padding-left:20px
1946 }
1947
1948 .advsearch {
1949     margin: 0;
1950 }
1951
1952 .advsearch table {
1953     border-spacing : 5px;
1954     border-collapse : separate;
1955     border-width : 0;
1956 }
1957 .advsearch td {
1958     border : 1px solid #EEE;
1959     padding : 0.3em 0.4em;
1960 }
1961 #circ_circulation_issue {
1962     position: relative;
1963     }
1964
1965 #clearscreen {
1966     position: absolute;
1967     top:0;
1968     right:0;
1969     }
1970
1971 #clearscreen a {
1972     display:block;
1973     -moz-border-radius: 0 0 0 5px;
1974     border-radius: 0 0 0 5px;
1975     padding : 0 .7em .2em .7em;
1976     background-color : #EEE;
1977     color : #CCC;
1978     text-shadow: 0px -1px 0px #666;
1979     text-decoration: none;
1980     font-size: 160%;
1981     font-weight : bold
1982     }
1983 #clearscreen a:hover {
1984     color : #cc0000;
1985     }
1986
1987 div.pager {
1988         background-color : #E8E8E8;
1989         border : 1px solid #BCBCBC;
1990         -moz-border-radius : 5px;
1991     border-radius : 5px;
1992         display : inline-block;
1993         font-size : 85%;
1994         padding : .3em .5em .3em .5em;
1995         margin : .4em 0;
1996 }
1997 div.pager img {
1998         vertical-align : middle;
1999 }
2000
2001 div.pager img.last {
2002         padding-right: 5px;
2003 }
2004 div.pager input.pagedisplay {
2005         border : 0;
2006         background-color : transparent;
2007         font-weight: bold;
2008         text-align : center;
2009 }
2010 a.localimage img {
2011         border : 1px solid #0000CC;
2012         margin : 0 .5em;
2013         padding : .3em;
2014 }
2015 div.pager p {
2016         margin: 0;
2017 }
2018
2019 div#acqui_order_supplierlist > div.supplier {
2020     border: 1px solid #EEEEEE;
2021     margin: 0.5em;
2022     padding: 1em;
2023 }
2024
2025 div#acqui_order_supplierlist > div.supplier > span.suppliername {
2026     display: inline;
2027     font-size: 1.7em;
2028     margin-bottom: 0.5em;
2029 }
2030
2031 div#acqui_order_supplierlist > div.supplier > span.action {
2032     margin-left: 5em;
2033 }
2034
2035 div#acqui_order_supplierlist > div.supplier > div.baskets {
2036     margin-top: 0.5em;
2037 }
2038
2039 /* Override core jQueryUI widgets */
2040 .ui-widget-content { border: 1px solid #B9D8D9; background: #ffffff none; color: #222222; }
2041 .ui-widget-header { border: 1px solid #B9D8D9; background: #E6F0F2 none; color: #222222; font-weight: bold; }
2042 .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #B9D8D9; background: #F4F8F9 none; font-weight: normal; color: #555555; }
2043 .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #B9D8D9; background: #E6F0F2 none; font-weight: normal; color: #212121; }
2044 .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff none; font-weight: normal; color: #212121; }
2045 .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #FED22F; background: #FFF4C6; color: #363636; }
2046 .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec; color: #cd0a0a; }
2047
2048 /* Override jQuery Autocomplete */
2049 .ui-autocomplete {
2050     position: absolute;
2051     cursor: default;
2052     -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.3);
2053     -moz-box-shadow: 2px 2px 2px rgba(0,0,0,.3);
2054     box-shadow: 2px 2px 2px rgba(0,0,0,.3);
2055 }
2056 .ui-autocomplete.ui-widget-content .ui-state-hover {
2057     border: 1px solid #B9D8D9;
2058     background: #E6F0F2 none;
2059     font-weight: normal;
2060     color: #212121;
2061 }
2062 .ui-autocomplete-loading {
2063     background: #FFF url("../../img/loading-small.gif") right center no-repeat;
2064 }
2065
2066 /* jQuery UI standard tabs */
2067 .ui-menu li {
2068     list-style:none;
2069 }
2070
2071 .ui-tabs-nav .ui-tabs-selected a,
2072 .ui-tabs-nav a:hover,
2073 .ui-tabs-nav a:focus,
2074 .ui-tabs-nav a:active,
2075 .ui-tabs-nav span.a {
2076     background: none repeat scroll 0 0 transparent;
2077     outline: 0 none;
2078 }
2079
2080 .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
2081     background-color : #FFF;
2082     border : 1px solid #B9D8D9;
2083 }
2084
2085 .ui-widget,
2086 .ui-widget input,
2087 .ui-widget select,
2088 .ui-widget textarea,
2089 .ui-widget button {
2090     font-family : inherit;
2091     font-size : inherit;
2092 }
2093 ul.ui-tabs-nav li {
2094     list-style : none;
2095 }
2096 .ui-tabs.ui-widget-content {
2097     background : transparent none;
2098     border : 0;
2099 }
2100
2101 .ui-tabs .ui-tabs-panel {
2102     border : 1px solid #B9D8D9;
2103 }
2104 .ui-tabs-nav.ui-widget-header {
2105     border : 0;
2106     background : none;
2107 }
2108 .ui-tabs .ui-tabs-nav li {
2109     background: #E6F0F2 none;
2110     border: 1px solid #B9D8D9;
2111     margin-right : .4em;
2112 }
2113 .ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
2114     color : #000;
2115     font-weight : bold;
2116 }
2117
2118 .ui-tabs .ui-tabs-nav li.ui-state-default.ui-state-hover {
2119     background : #EDF4F5 none;
2120 }
2121
2122 .ui-tabs .ui-tabs-nav li.ui-tabs-selected.ui-state-hover {
2123     background : #FFF none;
2124 }
2125
2126 .ui-tabs .ui-state-default a,
2127 .ui-tabs .ui-state-default a:link,
2128 .ui-tabs .ui-state-default a:visited {
2129     color: #004D99;
2130 }
2131
2132 .ui-tabs .ui-state-hover a,
2133 .ui-tabs .ui-state-hover a:link,
2134 .ui-tabs .ui-state-hover a:visited {
2135     color: #538200;
2136 }
2137
2138 .statictabs ul {
2139     background: none repeat scroll 0 0 transparent;
2140     border: 0 none;
2141     margin: 0;
2142     padding: 0.2em 0.2em 0;
2143     border-bottom-right-radius: 4px;
2144     border-bottom-left-radius: 4px;
2145     border-top-right-radius: 4px;
2146     border-top-left-radius: 4px;
2147     color: #222222;
2148     font-weight: bold;
2149     font-size: 100%;
2150     line-height: 1.3;
2151     list-style: none outside none;
2152     outline: 0 none;
2153     text-decoration: none;
2154 }
2155
2156 .statictabs ul:after {
2157     clear: both;
2158 }
2159
2160 .statictabs ul:before,
2161 .statictabs ul:after {
2162     content: "";
2163     display: table;
2164 }
2165
2166 .statictabs ul li {
2167     background: none repeat scroll 0 0 #E6F0F2;
2168     border: 1px solid #B9D8D9;
2169     border-bottom: 0 none !important;
2170     border-top-right-radius: 4px;
2171     border-top-left-radius: 4px;
2172     float: left;
2173     list-style: none outside none;
2174     margin-bottom: 0;
2175     margin-right: 0.4em;
2176     padding: 0;
2177     position: relative;
2178     white-space: nowrap;
2179     top: 1px;
2180     color: #555555;
2181     font-weight: normal;
2182
2183 }
2184
2185 .statictabs ul li.active {
2186     background-color: #FFFFFF;
2187     color: #212121;
2188     font-weight: normal;
2189     padding-bottom: 1px;
2190 }
2191
2192 .statictabs ul li a {
2193     color: #004D99;
2194     cursor: pointer;
2195     float: left;
2196     padding: 0.5em 1em;
2197     text-decoration: none;
2198 }
2199
2200 .statictabs ul li a:hover {
2201     background-color : #EDF4F5;
2202     border-top-right-radius: 4px;
2203     border-top-left-radius: 4px;
2204     color : #538200;
2205 }
2206
2207 .statictabs ul li.active a {
2208     color: #000000;
2209     font-weight: bold;
2210     cursor: text;
2211     background: none repeat scroll 0 0 transparent;
2212     outline: 0 none;
2213 }
2214
2215 .statictabs .tabs-container {
2216     border: 1px solid #B9D8D9;
2217     background: none repeat scroll 0 0 transparent;
2218     display: block;
2219     padding: 1em 1.4em;
2220     border-bottom-right-radius: 4px;
2221     border-bottom-left-radius: 4px;
2222     color: #222222;
2223 }
2224
2225 /* jQuery UI header search box tabs */
2226 #header_search ul.ui-tabs-nav {
2227     padding-top : 0;
2228     margin-left: 1em;
2229 }
2230 #header_search ul.ui-tabs-nav li.ui-state-default {
2231     border: 0 !important;
2232     background : transparent none; top: 0;
2233 }
2234 #header_search ul.ui-tabs-nav li.ui-state-default a {
2235     padding : .3em .6em;
2236 }
2237 #header_search ul.ui-tabs-nav li.ui-tabs-selected {
2238     background-color : #FFFFF1;
2239     border: 1px solid #85CA11 !important;
2240     border-top: 0 !important; top: -1px;
2241 }
2242 #header_search ul.ui-tabs-nav li.ui-tabs-selected a {
2243     text-decoration: none;
2244 }
2245 #header_search .ui-corner-top {
2246      border-radius: 0 0 4px 4px;
2247 }
2248
2249 .authref {
2250     font-style: normal;
2251     text-indent: 4em;
2252 }
2253
2254 .seefrom, .seealso {
2255     font-style: italic;
2256     text-indent: 2em;
2257 }
2258
2259 #authfinderops {
2260     float: right;
2261 }
2262 div.authorizedheading {
2263   font-weight: bold;
2264 }
2265 .authres_notes, .authres_seealso, .authres_otherscript {
2266   padding-top: 3px;
2267 }
2268 .authres_notes {
2269   font-style: italic;
2270 }
2271
2272
2273 .contents {
2274     width: 75%;
2275 }
2276
2277 .contentblock {
2278     position: relative;
2279     margin-left: 2em;
2280 }
2281
2282 .contents .t:first-child:before {
2283     content: "→ ";
2284 }
2285
2286 .contents .t:before {
2287     content: "\A→ ";
2288     white-space: pre;
2289 }
2290
2291 .contents .t {
2292     font-weight: bold;
2293     display: inline;
2294 }
2295
2296 .contents .r {
2297     display: inline;
2298 }
2299
2300 #hierarchies a {
2301     font-weight: normal;
2302     text-decoration: underline;
2303     color: #069;
2304 }
2305
2306 #hierarchies a:hover {
2307     color: #990033;
2308 }
2309
2310 #didyoumeanopac, #didyoumeanintranet {
2311     float: left;
2312     width: 260px;
2313 }
2314
2315 .pluginlist {
2316     padding-bottom: 10px;
2317 }
2318 .plugin {
2319     margin: 0 1em 1em 0;
2320 }
2321 .pluginname {
2322     margin: 0.3em;
2323     padding-bottom: 4px;
2324     padding-left: 0.2em;
2325     background-color: #E6F0F2;
2326 }
2327 .pluginname .ui-icon {
2328     float: right;
2329 }
2330 .plugindesc {
2331     padding: 0.4em;
2332 }
2333 .ui-sortable-placeholder {
2334     border: 1px dotted black;
2335     visibility: visible !important;
2336     height: 80px !important;
2337 }
2338 .ui-sortable-placeholder * {
2339     visibility: hidden;
2340 }
2341
2342 /* jQuery UI Datepicker */
2343 .ui-datepicker table {
2344     width: 100%;
2345     font-size: .9em;
2346     border : 0;
2347     border-collapse: collapse;
2348     margin:0 0 .4em;
2349 }
2350
2351 .ui-datepicker th {
2352     background : transparent none;
2353     padding: .7em .3em;
2354     text-align: center;
2355     font-weight: bold;
2356     border: 0;
2357 }
2358
2359 .ui-datepicker-trigger {
2360     vertical-align: middle;
2361     margin : 0 3px;
2362 }
2363 .ui-datepicker {
2364     -moz-box-shadow: 1px 1px 3px 0 #666;
2365     -webkit-box-shadow: 1px 1px 3px 0 #666;
2366     box-shadow: 1px 1px 3px 0 #666;
2367 }
2368
2369 /* css for timepicker */
2370 .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
2371 .ui-timepicker-div dl { text-align: left; }
2372 .ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
2373 .ui-timepicker-div dl dd { margin: 0 10px 10px 65px; }
2374 .ui-timepicker-div td { font-size: 90%; }
2375 .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
2376 .ui_tpicker_second,
2377 .ui_tpicker_millisec,
2378 .ui_tpicker_microsec {
2379     display: none;
2380 }
2381
2382 /* jQuery UI Accordion */
2383 .ui-accordion-header,
2384 .ui-widget-content .ui-accordion-header {
2385     font-weight: bold; font-size : 110%;
2386 }
2387
2388 video {
2389     width: 480px;
2390 }
2391
2392 /* Bootstrap overrides */
2393 .btn {
2394     border-color : #ADADAD #ADADAD #949494;
2395 }
2396
2397 .btn.btn-link {
2398     border : 0;
2399 }
2400
2401 .btn-small .caret {
2402     margin-top : .6em;
2403 }
2404
2405 .icon-hold {
2406     background-position:-24px -166px;
2407 }
2408
2409 .icon-copy {
2410     background-position:-3px -166px;
2411 }
2412
2413 .icon-merge {
2414     background-position:-48px -166px;
2415 }
2416
2417 #toolbar .btn,
2418 #toolbar .dropdown-menu {
2419     font-size: 13px;
2420 }
2421 a.btn:link,
2422 a.btn:visited{
2423     color: #333333;
2424 }
2425 .dropdown-menu li {
2426     list-style: none outside none;
2427 }
2428 a.dropdown-toggle {
2429     white-space: nowrap;
2430 }
2431 [class^="icon-"],[class*=" icon-"]{background-image:url("../../img/glyphicons-halflings-koha.png");}
2432 .icon-white,.nav-tabs>.active>a>[class^="icon-"],.nav-tabs>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"]{background-image:url("../../img/glyphicons-halflings-white-koha.png");}
2433 a.disabled {
2434     color : #999999;
2435 }
2436
2437 .navbar {
2438     color: #333;
2439 }
2440
2441 .navbar .nav > li > a {
2442     color: #004D99;
2443     font-weight: bold;
2444     padding : .4em .2em;
2445 }
2446
2447 .navbar .nav > li {
2448     list-style: none outside none;
2449     padding : 0 .6em;
2450 }
2451
2452 .navbar .nav > li > a:focus,
2453 .navbar .nav > li > a:hover {
2454     color: #538200;
2455 }
2456
2457 .navbar .nav li.dropdown.open > .dropdown-toggle,
2458 .navbar .nav li.dropdown.active > .dropdown-toggle,
2459 .navbar .nav li.dropdown.open.active > .dropdown-toggle {
2460     background: transparent none;
2461 }
2462
2463 .navbar-static-top .navbar-inner {
2464     background: #E6F0F2 none;
2465     border: 0;
2466     box-shadow: none;
2467     min-height: 0;
2468     padding-left: 0;
2469 }
2470 .navbar-fixed-bottom .navbar-inner {
2471     min-height: 0;
2472     padding : .4em 0;
2473 }
2474
2475 .navbar-fixed-bottom .nav > li > a {
2476     font-weight: normal;
2477     padding : .05em .3em;
2478 }
2479
2480 .navbar-fixed-bottom .nav > li {
2481     border-right : 1px solid #CCC;
2482 }
2483
2484 .navbar-fixed-bottom .nav > li:last-child {
2485     border-right : 0;
2486 }
2487
2488 .navbar-fixed-bottom .nav > li.navbar-text {
2489     line-height: normal;
2490     padding : 0.4em 0.7em;
2491 }
2492 .navbar .nav > li {
2493     list-style: none outside none;
2494     padding : 0 .6em;
2495 }
2496 .navbar .nav > li > a {
2497     color: #004D99;
2498     font-weight: bold;
2499     padding : .4em .3em;
2500 }
2501 .navbar .nav li.dropdown.open > .dropdown-toggle, .navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav li.dropdown.open.active > .dropdown-toggle {
2502     background: transparent none;
2503 }
2504
2505 .navbar .nav > li > a:focus,
2506 .navbar .nav > li > a:hover {
2507     color: #538200;
2508 }
2509
2510 .navbar .nav li.dropdown.open > .dropdown-toggle,
2511 .navbar .nav li.dropdown.active > .dropdown-toggle,
2512 .navbar .nav li.dropdown.open.active > .dropdown-toggle {
2513     background: transparent none;
2514 }
2515
2516 .tooltip.bottom .tooltip-arrow {
2517     border-bottom-color: #EEE;
2518 }
2519 .tooltip.bottom .tooltip-inner {
2520     background-color : #FFF;
2521     border: 1px solid rgba(0, 0, 0, 0.2);
2522     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2523     color: #000;
2524     padding : 1em;
2525     font-size : 120%;
2526 }
2527 .separator { color : #666; padding : 0 .2em; }
2528
2529 .close {
2530     position: inherit;
2531     top: auto;
2532     right : auto;
2533     filter : none;
2534     float : none;
2535     font-size: inherit;
2536     font-weight: normal;
2537     opacity: inherit;
2538     text-shadow: none;
2539 }
2540
2541 .close:hover {
2542     color: #538200;
2543     filter: inherit;
2544     font-size: inherit;
2545     opacity: inherit;
2546 }
2547
2548 /* Redefine a new style for Bootstrap's class "close" since we use that already */
2549 /* Use <a class="closebtn" href="#">&times;</a> */
2550 .alert .closebtn{position:relative;top:-2px;right:-21px;line-height:20px;}
2551 .modal-header .closebtn{margin-top:2px;}
2552 .closebtn{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.closebtn:hover{color:#000000;text-decoration:none;cursor:pointer;opacity:0.4;filter:alpha(opacity=40);}
2553 button.closebtn{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}
2554
2555 .btn-group label,
2556 .btn-group select {
2557     font-size: 13px;
2558 }
2559
2560 .tooltip-inner {
2561     white-space:pre-wrap;
2562 }
2563
2564 /* End Bootstrap overrides */
2565
2566 .waiting {
2567     cursor: wait;
2568 }
2569
2570 fieldset.rows table.mceListBox {
2571     margin: 0;
2572 }
2573
2574 #jobpanel,#jobstatus,#jobfailed { display : none; }
2575 #jobstatus { margin:.4em; }
2576 #jobprogress{ width:200px;height:10px;border:1px solid #666;background:url('../../img/progress.png') -300px 0px no-repeat; }
2577 #selections { width : 100%; white-space : normal; }
2578 #selections span { margin:3px;padding:3px;background-color:#EBF3FF;-moz-border-radius:5px;border-radius:5px;white-space:nowrap;line-height:240%;font-size:75%; }
2579 #selections span.selected { background-color : #CCE0FC; }
2580 #selections input { vertical-align:middle;margin:0 2px; }
2581 #changepasswordf input[type="text"],
2582 #changepasswordf input[type="password"] {
2583     font-size: 140%;
2584     font-family : monospace;
2585     padding : .3em;
2586 }
2587
2588 /* Class to be added to toolbar when it starts being fixed at the top of the screen*/
2589 .floating {
2590     -webkit-box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, .5);
2591     box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, .5);
2592 }
2593
2594 .inline {
2595     display : inline;
2596 }
2597
2598 .nowrap {
2599     white-space: nowrap;
2600 }
2601
2602 .tag_editor {
2603     background: transparent url("../../img/edit-tag.png") top left no-repeat;
2604     display : block;
2605     float : left;
2606     width : 16px;
2607     height: 16px;
2608     margin : 4px;
2609     text-indent: 100%;
2610     white-space: nowrap;
2611     overflow: hidden;
2612 }
2613
2614 .browse-controls {
2615     margin-left: 1.1em;
2616     margin-right: .5em;
2617     padding-bottom: 1em;
2618     padding-top: 1em;
2619 }
2620
2621 #browse-return-to-results {
2622     border-top-left-radius : 3px;
2623     border-top-right-radius : 3px;
2624     display: block;
2625     text-align: center;
2626 }
2627
2628 .browse-button {
2629     color: #004d99;
2630     padding: .4em .6em;
2631     display: inline-block;
2632 }
2633
2634 span.browse-button {
2635     background: #fafafa;
2636     color: #222;
2637 }
2638
2639 .browse-button:hover {
2640     background: #fafafa;
2641 }
2642
2643 .browse-label,
2644 .browse-prev-next {
2645     border: 1px solid #b9d8d9;
2646 }
2647
2648 .browse-label {
2649     border-top-left-radius : 5px;
2650     border-top-right-radius : 5px;
2651     background-color : #e8f0f6;
2652 }
2653
2654 .browse-prev-next {
2655     border-top-width: 0;
2656     border-bottom-left-radius: 5px;
2657     border-bottom-right-radius: 5px;
2658 }
2659
2660 #browse-previous {
2661     border-right : 1px solid #B9D8D9;
2662     border-bottom-left-radius: 5px;
2663     padding-right: 1em;
2664 }
2665
2666 #browse-next {
2667     border-top-width : 0;
2668     border-bottom-right-radius: 5px;
2669     float: right;
2670     padding-right: 1em;
2671 }
2672
2673 .loading-overlay {
2674     background-color: #FFF;
2675     cursor: wait;
2676     height: 100%;
2677     left: 0;
2678     opacity: .7;
2679     position: fixed;
2680     top: 0;
2681     width: 100%;
2682     z-index: 1000;
2683 }
2684 .loading-overlay div {
2685     background : transparent url(../../img/loading.gif) top left no-repeat;
2686     font-size : 175%;
2687     font-weight: bold;
2688     height: 2em;
2689     left: 50%;
2690     margin: -1em 0 0 -2.5em;
2691     padding-left : 50px;
2692     position: absolute;
2693     top: 50%;
2694     width: 15em;
2695 }
2696
2697 #merge_invoices {
2698     display: none;
2699     margin: 1em auto;
2700 }
2701
2702 #merge {
2703     margin: 0.5em 0 0 0;
2704 }
2705
2706 #merge_table tr.active td {
2707     background-color: #FFFFCC;
2708 }
2709
2710 .renewals {
2711     display:block;
2712     font-size:0.8em;
2713     padding:0.5em;
2714 }