Code

Mark not migrated images red
[gosa.git] / gosa-core / html / themes / modern / style.css
1 body, html {
2   border:0;
3   margin:0;
4   background-color:#FFF;
5   color:#000;
6   font-size:12px;
7   font-family:"Lucida Grande",Arial,Verdana,sans-serif;
8   height:100%;
9   min-width:1000px;
10   min-height:700px;
11 }
13 .left{
14   float:left;
15 }
17 .right{
18   float:right;
19 }
21 .v-spacer{
22   height:8px;
23 }
25 hr {
26   border:0;
27   border-bottom:1px solid #CCC;
28 }
30 a:link {
31   text-decoration:none;
32   color:#000;
33 }
35 a:visited {
36   text-decoration:none;
37   color:#000;
38 }
40 input[type=checkbox]{
41   border:1px solid #CCC;
42 }
44 input[type=text]{
45   border:1px solid #CCC;
46   padding:3px;
47 }
49 input[type=text]:active, input[type=text]:focus{
50   border:1px solid #777;
51 }
53 input[type=text]:hover{
54   border-color:#777;
55 }
57 input[disabled] {
58 color:#888;      
59 background-color:#DDD;
60 }                     
62 textarea[disabled] {
63 color:#000;         
64 background-color:#DDD;
65 }                     
67 select[disabled] {
68 color:#000;       
69 background-color:#DDD;
70 }                     
72 h1, h2, h3 {
73   margin-top:2px;
74 }
76 h3 {
77   font-size:12px;
78   font-weight:bold;
79 }
81 /* Image with migration color */
82 img, input[type=image] {
83   border:1px solid red;
84   background-color:rgba(255,0,0,0.2);
85 }
87 /* Image with migration color */
88 div.img{
89   background-repeat:no-repeat;
90   position:relative;
91 }
93 div.img div {
94   background-color:transparent;
95   background-repeat:no-repeat;
96   bottom:0;
97   right:0;
98   position:absolute;
99 }
102 /* Title bar definitions */
104 div.title-bar{
105   padding:0px;
106   height:40px;
107   border-top:1px solid #111;
108   border-bottom:1px solid #222;
109   background:url('images/title-bar.png') repeat-x;
110   color:#FFF;
111   cursor:default;
114 div.title-bar ul, div.title-bar ul li{
115   list-style:none;
116   display:inline;
117   margin:0;
118   padding:0;
121 div.logged-in-label span{
122   font-weight:bold;
125 li.table-wrapper {
126   display:table;
129 div.logged-in-label {
130   display:table-cell;
131   height:40px;
132   vertical-align:middle;
133   padding:0 5px 0 5px;
136 div.logout-label {
137   display:table-cell;
138   height:40px;
139   vertical-align:middle;
140   padding:0 5px 0 5px;
143 #log-out{
144   width:16px;
145   height:16px;
146   border:0;
147   background-color:transparent;
148   background-image:url('images/btn-logout.png');
149   cursor:pointer;
152 #log-out:hover{
153   background-image:url('images/btn-logout-hover.png')
157 /* Screen areas */
159 div.navigation {
160   float:left;
161   position:absolute;
162   width:150px;
163   min-height:600px;
164   padding-left:6px;
165   margin-top:8px;
168 div.plugin-area {
169   float:right;
170   position:absolute;
171   left:164px;
172   right:0;
173   padding-right:6px;
174   min-height:600px;
175   min-width:700px;
176   cursor:default;
180 /* Plugin decorations */
182 .plugin {
183   clear:both;
184   padding:5px 8px;
185   position:relative;
186   border:1px solid #CCC;
187   border-radius:5px;
188   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
189   -webkit-border-radius:5px;
190   -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
191   -moz-border-radius:5px;
192   -moz-box-shadow: 0 1px 0px rgba(0,0,0,0.2);
195 .plugin-actions {
196   padding-top:5px;
197   text-align:right;
201 /* Plugin navigation bar */
203 .plugin-path {
204   margin-top:8px;
205   margin-bottom:8px;
206   height:32px;
207   background-color:#F8F8F8;
208   border:1px solid #CCC;
209   border-radius:5px;
210   -moz-border-radius:5px;
211   -webkit-border-radius:5px;
212   background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#EEE));
213   background: -moz-linear-gradient(top, #F8F8F8, #EEE);
216 ul.path-navigation {
217   list-style:none;
218   cursor:pointer;
219   padding:0;
220   margin:0;
221   color:#666;
224 ul.path-navigation li {
225   display:inline;
226   padding:5px;
227   padding-top:8px;
228   height:19px;
231 ul.path-navigation li:hover {
232   background-color: #E0E0E0;
233   background: -webkit-gradient(linear, 0 0, 0 100%, from(#EEE), to(#E0E0E0));
234   background: -moz-linear-gradient(top, #EEE, #E0E0E0);
237 div.nav-home {
238   height:14px;
239   width:20px;
240   background-image:url(images/home.png);
243 .right-border {
244   border-right:1px solid #C2C2C2;
247 .left-border {
248   border-left:1px solid #C2C2C2;
252 /* Side menu */
254 div.menu {
255   background: -webkit-gradient(linear, 0 0, 0 100%, from(#FFF), to(#F5F5F5));
256   background: -moz-linear-gradient(top, #FFF, #F5F5F5);
259 div.menu div {
260   height:3px;
261   border-right:1px solid #C2C2C2;
262   border-left:1px solid #C2C2C2;
263   border-bottom:1px solid #C2C2C2;
264   border-bottom-left-radius:5px;
265   border-bottom-right-radius:5px;
266   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
267   -webkit-border-bottom-left-radius:5px;
268   -webkit-border-bottom-right-radius:5px;
269   -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
270   -moz-border-radius:5px;
271   -moz-box-shadow: 0 1px 0px rgba(0,0,0,0.2);
274 div.menu ul {
275   list-style:none;
276   margin:0;
277   padding:0;
280 div.menu ul li {
281   padding:5px; 
282   cursor:pointer;
283   border-left:1px solid #C2C2C2;
284   border-right:1px solid #C2C2C2;
287 div.menu ul li.current {
288   padding:5px; 
289   cursor:pointer;
290   background-color: rgba(0,0,0,0.1);
291   border-left:1px solid #C2C2C2;
292   border-right:1px solid #C2C2C2;
295 div.menu ul li:hover {
296   background-color: #E0E0E0;
299 div.menu ul li.menu-header {
300   cursor:default;
301   text-align:center;
302   font-weight:bold;
303   color:#FFF;
304   border:0;
305   background-color: #415A84;
306   background: -webkit-gradient(linear, 0 0, 0 100%, from(#5B6B8E), to(#2A4A79));
307   background: -moz-linear-gradient(top, #5B6B8E, #2A4A79);
308   border-top-left-radius:5px;
309   border-top-right-radius:5px;
310   -moz-border-radius-topleft:5px;
311   -moz-border-radius-topright:5px;
312   -webkit-border-top-left-radius:5px;
313   -webkit-border-top-right-radius:5px;
317 /* Buttons */
319 .button {
320   padding:2px 6px;
321   margin:0;
322   background-color:#F8F8F8;
323   background: -webkit-gradient(linear, 0 0, 0 100%, from(#FFF), to(#BBB));
324   background: -moz-linear-gradient(top, #FFF, #BBB);
325   border:1px solid #BBB;
326   border-radius:2px;
327   -webkit-border-radius:2px;
328   -moz-border-radius:2px;
329   outline:none;
332 .button:active {
333   background-color:#CCC;
334   background: -webkit-gradient(linear, 0 100%, 0 0, from(#FFF), to(#BBB));
335   background: -moz-linear-gradient(top, #BBB, #FFF);
338 .button:hover {
339   cursor:pointer;
340   border-color:#777 !important;
343 .button:focus, .button:active {
344   border-color:#777;
348 /* Tabs */
350 .tabs {
351   width:100%;
352   height:25px;
355 .tab-content {
356   padding:5px 8px;
357   z-index:0;
358   margin-top:-2px;
359   position:relative;
360   border:1px solid #CCC;
361   border-top-right-radius:5px;
362   border-bottom-right-radius:5px;
363   border-bottom-left-radius:5px;
364   box-shadow: 0 1px 0 rgba(0,0,0,0.2);
365   -webkit-border-top-right-radius:5px;
366   -webkit-border-bottom-right-radius:5px;
367   -webkit-border-bottom-left-radius:5px;
368   -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
369   -moz-border-radius-topright:5px;
370   -moz-border-radius-bottomright:5px;
371   -moz-border-radius-bottomleft:5px;
372   -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
375 .tabs ul {
376   margin:0;
377   padding:0;
378   list-style:none;
381 .tabs li {
382   float:left;
383   margin:0;
384   padding:4px 8px;
385   border-top:1px solid #C8C8C8;
386   border-left:1px solid #C8C8C8;
387   border-right:1px solid #C8C8C8;
388   border-top-right-radius:5px;
389   border-top-left-radius:5px;
390   -webkit-border-top-right-radius:5px;
391   -webkit-border-top-left-radius:5px;
392   -moz-border-radius-topleft:5px;
393   -moz-border-radius-topright:5px;
394   background-color:#F8F8F8;
395   background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#EEE));
396   background: -moz-linear-gradient(top, #F8F8F8, #EEE);
397   color:#AAA;
400 .tabs li.current {
401   background-color:#FFF;
402   background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#FFF));
403   background: -moz-linear-gradient(top, #F8F8F8, #FFF);
404   margin-top:-2px;
405   max-height:14px;
406   padding-bottom:6px;
407   border-bottom:1px solid #FFF;
408   position:relative;
409   z-index:1;
410   color:#000;
413 .tabs a {
414   float:left;
415   display:block;
416   text-decoration:none;
417   font-weight:bold;
418   color:#777;
421 .tabs li a:visited {
422   color:#777;
425 .tabs li.current a:visited {
426   color:#000;
430 /* Fieldsets */
432 fieldset {
433   border:0;
434   padding:4px;
435   margin:0;
438 fieldset legend{
439   text-align:left;
440   padding:0px 0px;
441   margin-left:0px;
442   font-weight:bold;
445 fieldset label{
446   width:8em;
447   float:left;
448   text-align:left;
449   clear:left;
450   padding-top:3px;
451   margin-top:3px;
454 fieldset input[type=text]{
455   float:left;
456   width:10em;
457   margin-top:3px;
460 fieldset input[type=checkbox]{
461   clear:left;
462   float:left;
463   margin-top:1px;
464   margin-left:0;
467 fieldset select{
468   margin-top:5px;
471 fieldset textarea{
472   width:100%;
473   resize:none;
474   border:1px solid #CCC;
477 fieldset textarea:hover{
478   border-color:#777;
481 .fieldset-left {
482   padding-right:10px;
483   border-right:1px solid #CCC;
484   height:100%;
487 .fieldset-middle {
488   padding:0 10px;
489   border-right:1px solid #CCC;
490   height:100%;
493 .fieldset-right {
494   padding:0 10px;
495   height:100%;
498 /* Containers */
500 .container{
501   float:none;
502   clear:both;
503   height:100%;
506 .container-element{
507   float:left;
508   height:100%;
511 .clear-left{
512   clear:left;
515 .clear{
516   clear:both;
519 .line-clear{
520   clear:both;
521   padding:2px 0;
522   border-bottom:1px solid #CCC;
526 /* Icon menu */
528 .icon-menu-item{
529   float:left;
530   padding-top:10px;
531   padding-bottom:10px;
532   min-height:70px;
533   min-width:150px;
534   cursor:pointer;
537 .icon-menu-item div.img{
538   float:left;
541 .icon-menu-item div.dsc{
542   margin-left:55px
545 .icon-menu-item:hover{
546   background-color: #E0E0E0;
549 .icon-menu-item h1{
550   font-size:12px;
551   font-weight:bold;
552   margin:0;
553   color:#333;
556 h3.icon-menu-title{
557   font-size:14px;
558   font-weight:bold;
559   margin-top:8px;
560   color:#333;
563 .icon-menu-item p{
564   margin:0;
565   color:#777;
569 /* Errors */
571 .error {
572   border-color:red ! important;
576 /* Date picker*/
578 div.datepicker {
579   position:absolute;
580   text-align:center;
581   border:1px #CCC solid;
582   font-family:arial;
583   background:#FFF;
584   font-size:10px;
585   padding:0;
586   box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
587   -webkit-box-shadow: 2px 2px 1px rgba(0,0,0,0.2);
588   -moz-box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
591 div.datepicker-calendar table {
592   font-size:10px;
593   border:1px solid #FFF;
594   margin:0;
595   padding:0;
596   text-align:center;
599 div.datepicker div.datepicker-header {
600   font-size:11px;
601   font-weight:bold;
602   background:#F0F0F0;
603   border-bottom:1px solid #CCC;
604   padding:2px;
605   text-align:center;
608 div.datepicker table.header {
609   width:175px;
610   border:0;
611   padding:0;
612   text-align:center;
615 td.prev,td.prev_year,td.next,td.next_year {
616   width:8%;
617   cursor:pointer;
618   font-weight:bold;
619   line-height:16px;
622 td.prev:hover,td.prev_year:hover,td.next:hover,td.next_year:hover {
623   background-color:#DDD;
626 td.header {
627   text-align:center;
628   width:68%;
629   font-weight:bold;
630   line-height:16px;
633 div.datepicker-header {
634   height:16px;
637 div.datepicker-calendar table tbody tr {
638   border:1px solid #FFF;
639   margin:0;
640   padding:0;
643 div.datepicker-calendar table tbody tr td {
644   border:1px #EEE solid;
645   margin:0;
646   padding:0;
647   text-align:center;
648   height:16px;
649   line-height:16px;
650   width:21px;
651   cursor:pointer;
654 div.datepicker-calendar table tbody tr td:hover,div.datepicker-calendar table tbody tr td.outbound:hover,div.datepicker-calendar table tbody tr td.today:hover {
655   border:1px #CCE9FF solid;
656   background:#E9F5FF;
657   cursor:pointer;
660 div.datepicker-calendar table tbody tr td.wday {
661   border:1px #AAA solid;
662   background:#CCC;
663   cursor:text;
664   width:21px;
665   height:16px;
666   line-height:16px;
667   font-weight:bold;
670 div.datepicker-calendar table tbody tr td.outbound {
671   background:#F3F3F3;
674 div.datepicker-calendar table tbody tr td.today {
675   border:1px #CCE9FF solid;
676   background:#E9F5FF;
677   background-image:url(../../images/date_active.gif);
678   background-repeat:no-repeat;
679   position:top left;
680   width:21px;
681   height:16px;
682   line-height:16px;
685 div.datepicker-calendar table tbody tr td.today:hover {
686   border:1px #CCE9FF solid;
687   background:#E9F5FF;
688   background-image:url(../../images/date_active.gif);
689   background-repeat:no-repeat;
690   position:top left;
693 div.datepicker-calendar table tbody tr td.nclick,div.datepicker-calendar table tbody tr td.nclick_outbound {
694   cursor:default;
695   color:#aaa;
696   width:21px;
697   height:16px;
698   line-height:16px;
701 div.datepicker-calendar table tbody tr td.nclick_outbound {
702   background:#E8E4E4;
703   width:21px;
704   height:16px;
705   line-height:16px;
708 div.datepicker-calendar table tbody tr td.nclick:hover,div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
709   border:1px #EAEAEA solid;
710   background:#FFF;
713 div.datepicker-calendar table tbody tr td.nclick_outbound:hover {
714   background:#E8E4E4;
717 div.datepicker div.datepicker-footer {
718   font-size:10px;
719   background:#F0F0F0;
720   border-top:1px solid #AAA;
721   cursor:pointer;
722   text-align:center;
723   padding:2px;
726 .date {
727   float:left;
730 .datepicker-opener-table {
731   border:1px solid transparent;
732   padding:0;
733   border-spacing:0;
734   margin:0 0 0 3px;
735   background:transparent url(../../images/datepicker.gif) no-repeat 0 0;
736   width:18px;
737   height:18px;
738   cursor:pointer;
741 .Opera .datepicker-opener-table {
742   float:right;
745 .IE7 .datepicker-opener-table {
746   position:relative;
747   top:0;
748   left:3px;
751 .datepicker-opener-table:hover {
752   background:transparent url(../../images/datepicker_ro.gif) no-repeat 0 0;
755 .datepicker-opener {
756   width:16px;
757   height:16px;
758   margin:0 0 0 3px;
759   cursor:pointer;
763 /* Lists */
765 div.listContainer {
766   width:100%;
767   border-top:1px solid #CCC;
768   border-bottom:1px solid #CCC;
769   border-left:1px solid #CCC;
770   border-right:1px solid #CCC;
771   border-top-left-radius:2px;
772   border-top-right-radius:2px;
773   -moz-border-radius-topleft:2px;
774   -moz-border-radius-topright:2px;
775   -webkit-border-top-left-radius:2px;
776   -webkit-border-top-right-radius:2px;
779 .fixedListHeader tr {
780   position:relative;
781   height:auto;
782   font-weight:bold;
785 .fixedListHeader a {
786   color:#444;
789 .listHeaderFormat {
790   margin:3px;
791   padding:1px;
792   white-space:nowrap;
795 .listHeaderFormat tr td {
796   padding:4px;
797   background-color:#F5F5F5;
798   color:#444;
799   background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#EEE));
800   background: -moz-linear-gradient(top, #F8F8F8, #EEE);
801   border-right:1px solid #CCC;
802   border-bottom:1px solid #CCC;
805 .listScrollContent {
806   height:100%;
807   overflow-x:hidden;
808   overflow-y:auto;
811 .listScrollContent tr {
812   height:auto;
813   white-space:nowrap;
816 .listScrollContent tr:nth-child(odd) {
817   background-color:#FFF;
820 .listScrollContent tr:nth-child(even) {
821   background-color:#F5F5F5;
824 .listScrollContent tr:last-child {
825   background-color:#FFF;
828 .listScrollContent tr td:last-child {
829   padding-right:20px;
832 .listBodyFormat tr td {
833   color:#000;
834   margin:3px;
835   padding:2px;
836   border-right:1px solid #CCC;
837   word-wrap:break-word;
838   white-space:normal;
839   max-width:500px;
842 div.nlistFooter {
843   background-color:#F5F5F5;
844   color:#444;
845   background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#EEE));
846   background: -moz-linear-gradient(top, #F8F8F8, #EEE);
847   border-left:1px solid #CCC;
848   border-right:1px solid #CCC;
849   border-bottom:1px solid #CCC;
850   border-bottom-left-radius:2px;
851   border-bottom-right-radius:2px;
852   -moz-border-radius-bottomleft:2px;
853   -moz-border-radius-bottomright:2px;
854   -webkit-border-bottom-left-radius:2px;
855   -webkit-border-bottom-right-radius:2px;
856   padding:0;
857   width:100%;
861 /* List header, Filter, misc. */
863 #filter {
864   position:absolute;
865   right:0;
866   width:250px;
869 #mainlist {
870   position:absolute;
871   right:265px;
872   left:0;
875 .mainlist-header {
876   background-color:#F8F8F8;
877   border:1px solid #CCC;
878   border-radius:2px;
879   -moz-border-radius:2px;
880   -webkit-border-radius:2px;
881   background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#EEE));
882   background: -moz-linear-gradient(top, #F8F8F8, #EEE);
883   margin-bottom:4px;
884   margin-right:-2px;
887 .mainlist-header p{
888   color:#444;
889   font-weight:bold;
890   font-size:14px;
891   margin:4px;
894 .mainlist-header div{
895   border-top:1px solid #CCC;
896   background-color:white;
899 ul.mainlist-header-nav {
900   list-style:none;
901   cursor:pointer;
902   padding:0;
903   margin:0;
904   color:#666;
907 ul.mainlist-header-nav li {
908   display:inline;
909   padding:5px;
910   padding-top:8px;
911   height:19px;
914 ul.mainlist-header-nav li:hover {
915   background-color: #E0E0E0;
916   background: -webkit-gradient(linear, 0 0, 0 100%, from(#EEE), to(#E0E0E0));
917   background: -moz-linear-gradient(top, #EEE, #E0E0E0);
921 /* Sortable Lists */
923 div.sortableListContainer {
924   border:1px solid #AAA;
925   overflow:auto;
926   margin-bottom:2px;
929 .sortableListContainer th {
930   background-color:#D8D8D8;
931   padding:3px;
932   text-align:left;
933   border-left:1px solid #AAA;
936 .sortableListContainer td {
937   padding:3px;
938   text-align:left;
939   border-left:1px solid #AAA;
942 tr.sortableListItem {
943   background-color:#FFF;
944   cursor:move;
945   color:#000;
948 tr.sortableListItemFill {
949   background-color:#FFF;
950   cursor:default;
953 tr.sortableListItemOdd ::-moz-selection,tr.sortableListItem ::-moz-selection {
954   background:transparent;
957 tr.sortableListItemOdd ::selection,tr.sortableListItem ::selection {
958   background:transparent;
961 tr.sortableListItemOdd code::-moz-selection,tr.sortableListItem code::-moz-selection {
962   background:transparent;
965 tr.sortableListItemOdd code::selection,tr.sortableListItem code::selection {
966   background:transparent;
969 tr.sortableListItemOdd {
970   background-color:#F5F5F5;
971   cursor:move;
972   color:#000;
975 tr.sortableListItem:hover,tr.sortableListItemOdd:hover {
976   background-color:#EEE;
979 tr.sortableListItemDisabled {
980   cursor:default;
981   color:#CCC;
984 table.sortableListTable {
985   border:0;
988 tr.sortableListItemMarked {
989   background-color:#FFD;
993 /* Tree List */
995 ul.treeList,ul.treeList ul {
996   list-style-type:none;
997   background:url(../../images/lists/vline.png) repeat-y;
998   margin:0;
999   padding:0;
1002 ul.treeList ul {
1003   margin-left:10px;
1006 ul.treeList a:hover {
1007   background-color:#DDD;
1010 a.treeList {
1011   padding:2px;
1012   cursor:pointer;
1015 a.treeListSelected {
1016   font-weight:bold;
1017   color:#1010AF;
1018   background-color:#DDD;
1019   padding:2px;
1020   cursor:pointer;
1023 a.treeList:hover,a.treeListSelected:hover {
1024   background-color:#DDD;
1025   padding:2px;
1028 ul.treeList a {
1029   padding:2px;
1030   cursor:pointer;
1033 ul.treeList li {
1034   margin:0;
1035   padding:0 12px;
1036   line-height:20px;
1037   background:url(../../images/lists/node.png) no-repeat;
1040 li.treeListSelected a {
1041   font-weight:bold;
1042   color:#1010AF;
1043   padding:2px;
1046 ul.treeList li.last {
1047   background:#fff url(../../images/lists/lastnode.png) no-repeat;
1050 ul.treeList li:last-child {
1051   background:#fff url(../../images/lists/lastnode.png) no-repeat;
1054 div.treeList {
1055   background-color:#FFF;
1056   border:1px solid #AAA;
1057   padding:5px;
1058   position:absolute;
1059   z-index:500;
1060   overflow-y:auto;
1061   float:left;
1064 span.informal {
1065   color:#444;
1066   font-style:italic;
1070 /* Max height for IE */
1072 * html div.treeList {
1073   height: expression( this.scrollHeight > 500 ? "500px" : "auto" );
1076 span.mark {
1077   color:#B22;
1081 /* Message dialog */
1083 div.errorMsgTitle {
1084 width:100%;        
1085 font-size:1.4em;   
1086 padding-bottom:.3em;
1087 padding-top:.3em;   
1088 font-weight:bold;   
1089 background-color:#F0F0F0;
1090 }                        
1092 div.errorMsgDialog {
1093 width:60%;          
1094 background-color:#FFF;
1095 border:4px solid red; 
1096 z-index:150;          
1097 display:none;         
1098 position:absolute;    
1099 }                     
1101 div.infoMsgDialog {
1102 width:60%;         
1103 background-color:#FFF;
1104 border:2px solid #000;
1105 z-index:150;          
1106 display:none;         
1107 position:absolute;    
1108 }                     
1111 /* Autocompleter */
1113 div.autocomplete {
1114 position:absolute;
1115 background-color:#FFF;
1116 border:1px solid #AAA;
1117 margin:0;             
1118 padding:0;            
1119 z-index:600;          
1120 overflow:hidden;      
1121 word-wrap:break-word; 
1122 }                     
1124 div.autocomplete ul {
1125 list-style-type:none;
1126 margin:0;            
1127 padding:0;           
1128 }                    
1130 div.autocomplete ul li {
1131 list-style-type:none;   
1132 display:block;          
1133 margin:0;               
1134 padding:2px;            
1135 padding-left:4px;       
1136 cursor:pointer;         
1137 }                       
1139 div.autocomplete li:hover {
1140 background-color:#F0F0F0;  
1141 }                          
1143 div.autocomplete ul li.selected {
1144 background-color:#F0F0F0;        
1145 }                                
1148 /* Pulldown menu */
1150 #pulldown {
1151 background:#FFF;
1152 height:23px;    
1153 border:1px #CCC solid;
1154 background: -webkit-gradient(linear, 0 0, 0 100%, from(#F8F8F8), to(#EEE));
1155 background: -moz-linear-gradient(top, #F8F8F8, #EEE);
1156 }                             
1158 #pulldown ul {
1159 display:block;
1160 margin:0;     
1161 padding:0;    
1162 line-height:1em;
1163 list-style:none;
1164 z-index:90;     
1165 }               
1167 #pulldown ul li {
1168 float:left;      
1169 margin:0 3px 0 0;
1170 padding:0;       
1171 font-size:12px;  
1172 line-height:1 5em;
1173 list-style-type:none;
1174 }                    
1176 #pulldown ul li a {
1177 float:left;        
1178 display:block;     
1179 width:auto;        
1180 font-weight:normal;
1181 background:transparent;
1182 text-decoration:none;  
1183 margin:0;              
1184 padding:5px;           
1185 }                      
1187 #pulldown ul li a:hover {
1188 text-decoration:none;    
1189 }                        
1191 #pulldown ul li.sep {
1192 color:#AAA;          
1193 padding:.8em 0 .5em; 
1194 }                    
1196 /* Commented Backslash Hack hides rule from IE5-Mac \*/
1197 #pulldown ul li a {                                    
1198 float:none;                                            
1199 }                                                      
1201 /* End IE5-Mac hack */
1202 #pulldown ul.level2,#pulldown ul.level3 {
1203 position:absolute;                       
1204 top:0;                                   
1205 left:0;                                  
1206 visibility:hidden;                       
1207 border:1px #CCC solid;            
1208 background:#FFF;                         
1209 box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
1210 -webkit-box-shadow: 2px 2px 1px rgba(0,0,0,0.2);
1211 -moz-box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
1212 }                                        
1214 #pulldown ul.level2 li,#pulldown ul.level3 li {
1215 border-bottom:1px solid #fff;                  
1216 float:none;                                    
1217 margin:0;                                      
1218 padding:0;                                     
1219 width:200px;                                   
1220 }                                              
1222 #pulldown ul.level2 li a,#pulldown ul.level3 li a {
1223 padding:5px 9px 5px 5px;                           
1224 }                                                  
1226 #pulldown ul.level2 li a:hover,#pulldown ul.level3 li a:hover {
1227 font-weight:normal;                                            
1228 background-color:#418DD4;                                      
1229 background-image:none;                                         
1230 }