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