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