]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/style.css
558290c2fcbe68941c34b6f4885ad67233c75f35
[friendica.git] / view / theme / dispy / style.css
1 /*
2  * dispy
3  *
4  * modernised, sort of, by simon <http://simon.kisikew.org/>
5  *
6  */
7
8 /* from html5boilerplate */
9
10 /* these are to tell browsers they should be displayed a certain way */
11 article, aside, details, figcaption, figure, footer,
12 header, hgroup, nav, section {
13     display: block;
14 }
15 audio, canvas, video, time {
16     display: inline-block;
17     *display: inline;
18     *zoom: 1;
19 }
20 audio:not([controls]) {
21     display: none;
22 }
23 [hidden] {
24     display: none;
25 }
26
27 /* 
28  *  Base
29  */
30
31 /*
32  * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
33  * 2. Force vertical scrollbar in non-IE
34  * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
35  */
36
37 html {
38     font-size: 100%;
39     overflow-y: scroll;
40     -webkit-text-size-adjust: 100%;
41     -ms-text-size-adjust: 100%;
42 }
43 body {
44     margin: 0;
45     font-size: 16px;
46     line-height: 1.1em;
47 }
48
49 body, button, input, select, textarea {
50     font-family: sans-serif;
51     color: #222;
52     background-color: rgb(254,254,254);
53     background-color: rgba(254,254,254,255);
54 }
55 /* remember to define focus styles! */
56 :focus {
57     outline: 0;
58 }
59
60 /* remember to highlight inserts somehow! */
61 ins {
62     background-color: #ff9;
63     color: #000;
64     text-decoration: none;
65 }
66 mark {
67     background-color: #ff9;
68     color: #000;
69     font-style: italic;
70     font-weight: bold;
71 }
72 ins {
73     background: #ff9;
74     color: #000;
75     text-decoration: none;
76 }
77 mark {
78     background: #ff0;
79     color: #000;
80     font-style: italic;
81     font-weight: bold;
82 }
83 /* Redeclare monospace font family: h5bp.com/j */
84 pre, code, kbd, samp, .wall-item-body code {
85     font-family: monospace, monospace;
86     _font-family: 'courier new', monospace;
87     font-size: 1em; }
88
89 /* Improve readability of pre-formatted text in all browsers */
90 pre, .wall-item-body code {
91     white-space: pre;
92     white-space: pre-wrap;
93     word-wrap: break-word;
94 }
95
96 q {
97     quotes: none;
98 }
99 q:before, q:after {
100     content: "";
101     content: none;
102 }
103 small {
104     font-size: 85%;
105 }
106
107 /* Position subscript and superscript content without affecting line-height: h5bp.com/k */
108 sub, sup {
109     font-size: 75%;
110     line-height: 0;
111     position: relative;
112     vertical-align: baseline;
113 }
114 sup {
115     top: -0.5em;
116 }
117 sub {
118     bottom: -0.25em;
119 }
120 img {
121     border: 0 none;
122     /*vertical-align: middle;*/
123 }
124 a {
125     color: #3465a4;
126     text-decoration: none;
127     margin-bottom: 1px;
128 }
129 a:hover img {
130     text-decoration: none;
131 }
132 blockquote {
133     background: #eee;
134     text-indent: 5px;
135     padding: 5px;
136     border: 1px #aaa solid;
137     border-radius: 5px;
138 }
139 a:hover {
140     color: #729fcf;
141     padding-bottom: 0;
142     border-bottom: 1px dotted #729fcf;
143 }
144 .required {
145     display: inline;
146     color: #ff0000;
147 }
148 .fakelink, .lockview {
149     color: #3465a4;
150     cursor: pointer;
151 }
152 .fakelink:hover {
153     color: #729fcf;
154 }
155 input[type=submit] {
156     margin-top: 10px;
157     height: 22px;
158     background-color: #555753;
159     color: #eeeeec;
160     -webkit-border-radius: 5px;
161     -moz-border-radius: 5px;
162     border-radius: 5px;
163     border: 0;
164 }
165 .smalltext {
166     font-size: 0.7em;
167 }
168 #panel {
169         position: absolute;
170         font-size: 0.8em;
171         -webkit-border-radius: 5px;
172         -moz-border-radius: 5px;
173         border-radius: 5px;
174         border: 1px solid #fff;
175         background-color: #2e3436;
176         color: #eeeeec;
177         padding: 1em;
178 }
179 .pager {
180         margin-top: 60px;
181         display: block;
182         clear: both;
183         text-align: center;
184 }
185 .pager span {
186     padding: 4px;
187     margin: 4px;
188 }
189 .pager_current {
190     background-color: #729fcf;
191     color: #fff;
192 }
193
194 /**
195  * global
196  */
197 /* .tool .action */
198 .action {
199     float: right;
200 }
201
202 /**
203  *      login
204  */
205 #login-extra-links a {
206     margin-right: 20px;
207 }
208
209 /*********
210 * nav
211 *********/
212 nav {
213         height: 60px;
214         display: block;
215         background-color: #2e3436;
216         color: #eeeeec;
217         position: relative;
218         padding: 20px 20px 10px 95px;
219     margin-left: auto;
220     margin-right: auto;
221 }
222 nav a {
223         text-decoration: none;
224         color: #eeeeec;
225         border: 0px;
226 }
227 nav a:hover {
228         text-decoration: none;
229         color: #eeeeec;
230     border: 0px;
231 }
232 nav #banner {
233         display: block;
234         position: absolute;
235         left: 51px;
236         top: 25px;
237 }
238 nav #banner #logo-text a {
239         font-size: 40px;
240         font-weight: bold;
241         margin-left: 3px;
242 }
243 nav #user-menu {
244     display: block;     
245     width: auto;
246     float: right;
247     margin: 3px 68px 0 0;
248     position: relative;
249         background-color: #555753;
250     -webkit-border-radius: 5px;
251     -moz-border-radius: 5px;
252     border-radius: 5px;
253     background: #555753 url("menu-user-pin.jpg") 98% center no-repeat;
254     clear: both;
255 }
256 nav #user-menu-label {
257         float: left;
258         font-size: 12px;
259     padding: 3px 20px 9px 5px;
260     height: 10px;
261 }
262 ul#user-menu-popup {
263         display: none;
264         position: absolute;
265         background-color: #555753;
266         width: 100%;
267     padding: 10px 0px;
268     margin: 0px;
269         top: 20px;
270         left: 0;
271         -webkit-border-radius: 0 0 5px 5px;
272         -moz-border-radius: 0 0 5px 5px;
273         border-radius: 0 0 5px 5px;
274         z-index: 10000;
275 }
276 ul#user-menu-popup li {
277         display: block;
278 }
279 ul#user-menu-popup li a {
280         display: block;
281         padding: 5px;
282 }
283 ul#user-menu-popup li a:hover {
284         color: #2e3436;
285         background-color: #eeeeec;
286 }
287 ul#user-menu-popup li a.nav-sep {
288         border-top: 1px solid #eeeeec;
289 }
290 #nav-buttons {
291     clear: both;
292         list-style: none;
293         padding: 0px;
294 }
295 #nav-buttons li {
296         padding: 0;
297 }
298 nav .nav-link {
299         float: right;
300         display: block;
301         width: 22px;
302         height: 22px;
303         overflow: hidden;
304         margin: 0px 5px 5px;
305         text-indent: 50px;
306         background: transparent url(icons.png) 0 0 no-repeat;
307 }
308 #nav-apps-link {
309         background-position: 0 -66px;
310 }
311 #nav-apps-link:hover {
312         background-position: -22px -66px;
313 }
314 #nav-community-link {
315     background-position: 0 -22px;
316 }
317 #nav-community-link:hover {
318     background-position: -22px -22px;
319 }
320 #nav-contacts-link {
321     background-position: 0 -22px;
322 }
323 #nav-contacts-link:hover {
324     background-position: -22px -22px;
325 }
326 #nav-directory-link {
327         background-position: -44px -154px;
328 }
329 #nav-directory-link:hover {
330         background-position: -66px -154px;
331 }
332 #nav-help-link {
333         background-position: 0 -110px;
334 }
335 #nav-help-link:hover {
336         background-position: -22px -110px;
337 }
338 #nav-home-link {
339     background-position: -44px -132px;
340 }
341 #nav-home-link:hover {
342     background-position: -66px -132px;
343 }
344 #nav-login-link {
345         background-position: 0 -88px;
346 }
347 #nav-login-link:hover {
348         background-position: -22px -88px;
349 }
350 #nav-logout-link {
351         background-position: 0 -88px;
352 }
353 #nav-logout-link:hover {
354         background-position: -22px -88px;
355 }
356 #nav-messages-link {
357     background-position: -44px -88px;
358 }
359 #nav-messages-link:hover {
360     background-position: -66px -88px;
361 }
362 #nav-notify-link, #nav-notifications-linkmenu {
363     background-position: -44px -110px;
364 }
365 #nav-notify-link:hover {
366     background-position: -66px -110px;
367 }
368 #nav-network-link {
369     background-position: 0px -177px;
370 }
371 #nav-network-link:hover {
372     background-position: -22px -177px;
373 }
374 #nav-search-link {
375         background-position: 0 -44px;
376 }
377 #nav-search-link:hover {
378         background-position: -22px -44px;
379 }
380 #profile-link,
381 #profile-title, 
382 #wall-image-upload,
383 #wall-file-upload,
384 #profile-attach-wrapper,
385 #profile-audio,
386 #profile-link,
387 #profile-location,
388 #profile-nolocation,
389 #profile-title,
390 #jot-title,
391 #profile-upload-wrapper,
392 #profile-video,
393 #profile-jot-submit,
394 #wall-image-upload-div,
395 #wall-file-upload-div,
396 .icon, .hover, .focus, .pointer {
397     cursor: pointer;
398 }
399 #notifications {
400         height: 20px;
401         width: 100%;
402         position: absolute;
403         top: -19px;
404         left: 0;
405 }
406 /* popup notifications */
407 div.jGrowl div.notice {
408     background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
409     color: #ffffff;
410     padding-left: 58px;
411 }
412 div.jGrowl div.info {
413     background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
414     color: #ffffff;
415     padding-left: 58px;
416 }
417 #nav-notifications-menu {
418     margin: 30px 0 0 -45px;
419     width: 300px;
420     max-height: 400px;
421     overflow: auto;
422     font-size: 9pt;
423 }
424 #nav-notifications-menu .contactname {
425     font-weight: bold;
426     font-size: 0.9em;
427 }
428 #nav-notifications-menu img {
429     float: left;
430     margin-right: 5px;
431 }
432 #nav-notifications-menu .notif-when {
433     font-size: 0.8em;
434     display: block;
435 }
436 #nav-notifications-menu li {
437     padding: 7px 0px 7px 10px;
438     word-wrap: normal;
439     border-bottom: 1px solid #000;
440 }
441 #nav-notifications-menu li:hover {
442     color: black;
443 }
444 #nav-notifications-menu a:hover {
445     color: black;
446     text-decoration: underline;
447 }
448 nav #nav-notifications-linkmenu.on .icon.s22.notify, nav #nav-notifications-linkmenu.selected .icon.s22.notify {
449   background-image: url("../../../images/icons/22/notify_on.png");
450 }
451 .show {
452     display: block;
453 }
454 #nav-floater {
455     position: fixed;
456     top: 20px;
457     right: 1%;
458     padding: 5px;
459     background: #2e3436;
460     border-radius: 5px;
461     z-index: 100;
462 }
463 .floaterflip {
464         display: block;
465     position: fixed;
466     z-index: 110;
467     top: 53px;
468     right: 19px;
469         width: 22px;
470         height: 22px;
471         overflow: hidden;
472         margin: 0px;
473         background: transparent url(icons.png) -190px -60px no-repeat;
474 }
475 .nav-ajax-update, .nav-ajax-left {
476         width: 30px;
477         height: 19px;
478         background: transparent url(notifications.png) 0 0 no-repeat;
479         color: #222;
480         font-weight: bold;
481         font-size: 0.8em;
482         padding-top: 0.2em;
483         text-align: center;
484         float: left;
485         margin: 0 -1px 0 3px;
486         display: block;
487         visibility: hidden;
488 }
489 .nav-ajax-update.show, .nav-ajax-left.show {
490     visibility: visible;
491 }
492 #net-update {
493         background-position: 0px 0px;
494 }
495 #mail-update {
496         background-position: -30px 0;
497 }
498 #notify-update {
499         background-position: -60px 0px;
500 }
501 #home-update {
502         background-position: -90px 0px;
503 }
504 #lang-select-icon {
505         cursor: pointer;
506         position: absolute;
507         left: 0;
508         top: 0;
509 }
510 #language-selector {
511     position: absolute;
512     top: 0;
513     left: 16px;
514     padding-right: 50px;
515 }
516 .menu-popup {
517     position: absolute;
518     display: none;
519     width: 11em;
520     background: #ffffff;
521     color: #2d2d2d;
522     margin: 0px;
523     padding: 0px;
524     list-style: none;
525     border: 3px solid #364e59;
526     z-index: 100000;
527     -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
528     -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
529     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
530 }
531 .menu-popup a {
532     display: block;
533     color: #2d2d2d;
534     padding: 5px 10px;
535     text-decoration: none;
536 }
537 .menu-popup a:hover {
538     background-color: #bdcdd4;
539 }
540 .menu-popup .menu-sep {
541     border-top: 1px solid #9eabb0;
542 }
543 .menu-popup li {
544     float: none;
545     overflow: auto;
546     height: auto;
547     display: block;
548 }
549 .menu-popup li img {
550     float: left;
551     width: 16px;
552     height: 16px;
553     padding-right: 5px;
554 }
555 .menu-popup .empty {
556     padding: 5px;
557     text-align: center;
558     color: #9eabb0;
559 }
560 .notif-item {
561     font-size: small;
562 }
563 .notif-item a {
564     vertical-align: middle;
565 }
566 .notif-image {
567     width: 32px;
568     height: 32px;
569     padding: 7px 7px 0px 0px;
570 }
571 .notify-seen {
572     background: #ddd;
573 }
574
575 /** sysmsg **/
576 #sysmsg_info {
577         position:fixed;
578         bottom:0;
579         -moz-box-shadow:0 0 5px #888;
580         -webkit-box-shadow:0 0 5px #888;
581         box-shadow:0 0 5px #888;
582     padding: 10px;
583         background-color:#fcaf3e;
584         border:2px solid #f8911b;
585         border-bottom:0;
586         padding-bottom: 50px;
587         z-index: 1000;
588 }
589 #sysmsg {
590         position: fixed;
591         bottom: 0;
592         -moz-box-shadow: 0 0 5px #888;
593         -webkit-box-shadow: 0 0 5px #888;
594         box-shadow: 0 0 5px #888;
595     padding: 10px;
596         background-color: #fcaf3e;
597         border: 2px solid #f8911b;
598         border-bottom: 0;
599         padding-bottom: 50px;
600         z-index: 1000;
601 }
602 #sysmsg_info br,
603 #sysmsg br {
604         display: block;
605         margin: 2px 0px;
606         border-top: 1px solid #ccccce;
607 }
608
609
610 /**
611 * aside
612 **/
613 aside {
614     position: absolute;
615     right: 15px;
616     width: 230px;
617     font-size: smaller;
618 }
619 .vcard .fn {
620         font-size: 1.7em;
621         font-weight: bold;
622         border-bottom: 1px solid #729fcf;
623         padding-bottom: 3px;
624 }
625 .vcard #profile-photo-wrapper {
626         margin: 20px;
627 }
628 .vcard #profile-photo-wrapper img {
629         box-shadow: 3px 3px 10px 0;
630 }
631 aside h4 {
632         font-size: 1.2em;
633 }
634 aside #viewcontacts {
635         text-align: right;
636 }
637 .aprofile dt {
638     box-shadow: 1px 1px 5px 0;
639     color: #666666;
640     margin: 15px 0 5px;
641     padding-left: 5px;
642 }
643 #profile-extra-links ul {
644         margin-left: 0px;
645     padding-left: 0px;
646     list-style: none;
647 }
648 #dfrn-request-link {
649         background:#3465A4 url(connect.png) no-repeat 95% center;
650         border-radius:5px 5px 5px 5px;
651         color:#fff;
652         display:block;
653         font-size:1.2em;
654         padding:.2em .5em;
655 }
656 #netsearch-box {
657         margin: 30px 0px;
658 }
659
660
661 /**
662 * contacts block
663 */
664 .contact-block-div {
665     width: 50px;
666     height: 50px;
667     float: left;
668 }
669 .contact-block-textdiv {
670     width: 150px;
671     height: 34px;
672     float: left;
673 }
674 #contact-block-end {
675     clear: both;
676 }
677
678
679 /**
680  * jot
681  **/
682 #jot {
683   /*width: 785px;*/
684   margin: 10px 0 20px 0px;
685   width: 100%;
686 }
687 #jot #jot-tools {
688   margin: 0px;
689   padding: 0px;
690   height: 40px;
691   overflow: none;
692   width: 100%;
693   /*background-color: #0e232e;*/
694   /*border-bottom: 2px solid #9eabb0;*/
695 }
696 #jot #jot-tools span {
697     float: left;
698     margin: 10px 20px 2px 0px;
699 }
700 #jot #jot-tools span a {
701     display: block;
702     /*color: #cccccc;    */
703     /*width: 100%;       */
704     /*height: 40px;      */
705     /*text-align: center;*/
706     /*line-height: 40px; */
707     /*overflow: hidden;*/
708 }
709 /*#jot #jot-tools li:hover {*/
710     /*background-color: #364e59;*/
711 /*}*/
712 #jot #jot-tools .perms {
713     float: right;
714     width: 40px;
715 }
716 /*#jot #jot-tools .perms a.unlock {*/
717 /*    width: 30px;                    */
718 /*    border-left: 10px solid #cccccc;*/
719 /*    background-color: #cccccc;      */
720 /*}*/
721 /*#jot #jot-tools .perms a.lock {*/
722 /*    width: 30px;                    */
723 /*    border-left: 10px solid #666666;*/
724 /*    background-color: #666666;      */
725 /*}*/
726 /*#jot #jot-tools li.submit {            */
727 /*    float: right;                      */
728 /*    background-color: #cccccc;         */
729 /*    border-bottom: 2px solid #cccccc;  */
730 /*    border-right: 1px solid #666666;   */
731 /*    border-left: 1px solid #666666;    */
732 /*}                                      */
733 /*#jot #jot-tools li.submit input {      */
734 /*    border: 0px;                       */
735 /*    margin: 0px;                       */
736 /*    padding: 0px;                      */
737 /*    background-color: #cccccc;         */
738 /*    color: #666666;                    */
739 /*    width: 80px;                       */
740 /*    height: 40px;                      */
741 /*    line-height: 40px;                 */
742 /*}                                      */
743 /*#jot #jot-tools li.submit input:hover {*/
744 /*    background-color: #bdcdd4;         */
745 /*    color: #666666;                    */
746 /*}                                      */
747 #jot #jot-tools li.loading {
748     float: right;
749     background-color: #ffffff;
750     width: 20px;
751     vertical-align: center;
752     text-align: center;
753     border-top: 2px solid #9eabb0;
754     height: 38px;
755 }
756 #jot #jot-tools li.loading img {
757     margin-top: 10px;
758 }
759 #jot #jot-title {
760         border: 1px solid #aaa;
761     margin: 0 0 5px;
762     height: 20px;
763     width: 90%;
764     font-weight: bold;
765     border-radius: 5px;
766         vertical-align: middle;
767         padding: 5px 1px;
768 }
769 #jot #character-counter {
770   width: 40px;
771   float: right;
772   text-align: right;
773   height: 20px;
774   line-height: 20px;
775   padding: 5px;
776   margin: 0 0 5px;
777 }
778 #profile-jot-text_tbl {
779         margin-bottom: 10px;
780 }
781 #profile-jot-text_ifr {
782         width:99.900002% !important;
783 }
784 #profile-attach-wrapper,
785 #profile-audio,
786 #profile-link-wrapper,
787 #profile-location,
788 #profile-nolocation,
789 #profile-title-wrapper,
790 #profile-upload-wrapper,
791 #profile-video {
792     float: left;
793     margin-left: 10px;
794 }
795 #profile-rotator-wrapper {
796         float: right; 
797 }
798 #profile-jot-tools-end,
799 #profile-jot-banner-end {
800         clear: both;
801 }
802 #profile-jot-email-wrapper {
803         margin:10px 10% 0;
804         border:1px solid #555753;
805         border-bottom:0;
806 }
807 #profile-jot-email-label {
808         background-color:#555753;
809         color:#ccccce;
810         padding:5px;
811 }
812 #profile-jot-email {
813         width:90%;
814         margin:5px;
815 }
816 #profile-jot-networks {
817         margin: 0 10%;
818         border: 1px solid #555753;
819         border-top: 0;
820         border-bottom: 0;
821         padding: 5px;
822 }
823 #jot-preview-link {
824     margin: 0 0 0 25px;
825     border: 0;
826     text-decoration: none;
827 }
828 .icon-text-preview {
829         margin: 0 0 -18px 0;
830         display: block;
831     width: 20px;
832     height: 20px;
833     background: url(icons.png) no-repeat -128px -40px;
834     border: 0;
835     text-decoration: none;
836 }
837 #profile-jot-perms { 
838         /*float: right;*/
839     background-color: #555753;
840     height: 22px;
841     width: 20px;
842     -webkit-border-radius: 5px 0px 0px 5px;
843     -moz-border-radius: 5px 0px 0px 5px;
844     border-radius: 5px 0px 0px 5px;     
845     overflow: hidden;
846     border: 0px;
847     margin: 0 -4px 0 10px;
848 }
849 #profile-jot-submit-wrapper {
850         float: right;
851         width: 30%;
852         list-style: none;
853         margin: 10px 0 0 0;
854         padding: 0;
855 }
856 #profile-jot-submit-wrapper li {
857         display: inline-block;
858         vertical-align: middle;
859 }
860 #profile-jot-submit {
861         height: 22px;
862         background-color: #555753;
863         color: #eeeeec;
864         -webkit-border-radius: 0 5px 5px 0;
865         -moz-border-radius: 0 5px 5px 0;
866         border-radius: 0 5px 5px 0;
867         border: 0;
868         margin: 0;
869 }
870 #jot-perms-icons {
871         background-color: #555753;
872         height: 22px;
873         width: 20px;
874         -webkit-border-radius: 0 5px 5px 0;
875         -moz-border-radius: 0 5px 5px 0;
876         border-radius: 0 5px 5px 0;
877         overflow: hidden;
878         border: 0;
879         margin: 0 0 0 94.4%;
880 }
881 #profile-jot-acl-wrapper {
882         margin: 0 10px;
883         border: 1px solid #555753;
884         border-top: 0;
885         display: block !important;
886 }
887 #group_allow_wrapper,
888 #group_deny_wrapper,
889 #acl-permit-outer-wrapper {
890         width:47%;
891         float:left;
892 }
893 #contact_allow_wrapper,
894 #contact_deny_wrapper,
895 #acl-deny-outer-wrapper {
896         width:47%;
897         float:right;
898 }
899 #acl-permit-text {
900         background-color: #555753;
901         color: #ccccce;
902         padding: 5px;
903         float: left;
904 }
905 #jot-public {
906         background-color: #555753;
907         color: #ff0000;
908         padding: 5px;
909         float: left;
910 }
911 #acl-deny-text {
912         background-color: #555753;
913         color: #ccccce;
914         padding: 5px;
915         float: left;
916 }
917 #acl-permit-text-end,
918 #acl-deny-text-end {
919         clear: both;
920 }
921 #jot-title-desc {
922         color: #cccccc;
923 }
924 #profile-jot-desc {
925         color: #a00;
926 }
927 #jot-title-wrapper {
928         margin-bottom: 5px;
929 }
930 #jot-title {
931         border: 1px solid #cccccc;
932         width: 90%;
933 }
934 #jot-title-display {
935         font-weight: bold;
936 }
937 .jothidden {
938     display: none;
939 }
940 #jot-preview-content {
941     background-color: #ffffe0;
942     border: 1px #aaaa00 solid;
943     border-radius: 3px;
944     padding: 3px 3px 6px 10px;
945 }
946
947
948 /**
949  * section
950  */
951 section {
952     margin: 20px 6% 0 4%;
953     font-size: 0.8em;
954     padding-right: 220px;
955         min-width: 475px;
956 }
957
958 /** tabs **/
959 .tabs {
960     list-style: none;
961     margin: 10px 0 10px;
962     padding: 0;
963     border-bottom: 1px solid #729fcf;
964     font-size: 14px;
965 }
966 .tabs li {
967     display: inline;
968 }
969 .tab {
970     padding: 0 5px;
971 }
972 .tab:hover {
973     background-color: #729fcf;
974     color: #eeeeec;
975     border: 0px;
976 }
977 .tab:active {
978     background-color: #729fcf;
979     color: #eeeeec;
980     border: 0px;
981 }
982
983
984 /**
985  *      items
986  */
987 .wall-item-outside-wrapper {
988         border: 1px solid #aaa;
989         border-radius: 5px;
990 }
991 .wall-item-outside-wrapper.comment {
992         margin-top: 5px;
993 }
994 .wall-item-outside-wrapper-end {
995     clear: both;
996 }
997 .wall-item-content-wrapper {
998     position: relative;
999         padding: 10px;
1000         width: auto;
1001 }
1002 .wall-item-outside-wrapper .wall-item-comment-wrapper {
1003     /*margin-left: 90px;*/
1004 }
1005 .shiny {
1006     background: #efefdf;
1007 }
1008 .wall-item-content {
1009         overflow-x: auto;
1010 }
1011 /* removing it from here, vs. putting it in .wall-item-content
1012  * might break things for people. we shall see ;) */
1013 [id^="tread-wrapper"], [class^="tread-wrapper"] {
1014     margin: 15px 0 0 0;
1015     padding: 0px;
1016         /*overflow-x: auto;*/
1017 }
1018 .wall-item-photo-menu {
1019     display: none;
1020 }
1021 .wall-item-photo-menu-button {
1022     display:none;
1023     text-indent:-99999px;
1024     background:#555753 url(menu-user-pin.jpg) no-repeat 75px center;
1025     position:absolute;
1026     overflow:hidden;
1027     height:20px;
1028     width:90px;
1029     top:85px;
1030     left:0;
1031     -webkit-border-radius:0 0 5px 5px;
1032     -moz-border-radius:0 0 5px 5px;
1033     border-radius:0 0 5px 5px;
1034 }
1035 .wall-item-info {
1036     float: left;
1037     width: 110px;
1038 }
1039 .wall-item-photo-wrapper {
1040     width: 80px;
1041     height: 80px;
1042     position: relative;
1043     padding: 5px;
1044     background-color: #555753;
1045     -webkit-border-radius: 5px;
1046     -moz-border-radius: 5px;
1047     border-radius: 5px;
1048 }
1049 [class^="wall-item-tools"] > *, [class^="wall-item-tools"] > * > * {
1050         margin: 0 0 5px 0;
1051 }
1052 .wall-item-tools {
1053     float: right;
1054     filter: alpha(opacity=35);
1055     opacity: 0.4;
1056     -webkit-transition: all 1s ease-in-out;
1057     -moz-transition: all 1s ease-in-out;
1058     -o-transition: all 1s ease-in-out;
1059     -ms-transition: all 1s ease-in-out;
1060     transition: all 1s ease-in-out;
1061 }
1062 .wall-item-tools:hover {
1063     filter: alpha(opacity=100);
1064     opacity: 1;
1065     -webkit-transition: all 1s ease-in-out;
1066     -moz-transition: all 1s ease-in-out;
1067     -o-transition: all 1s ease-in-out;
1068     -ms-transition: all 1s ease-in-out;
1069     transition: all 1s ease-in-out;
1070 }
1071 .wall-item-title {
1072         font-size: 1.2em;
1073         font-weight: bold;
1074     margin-bottom: 1em;
1075 }
1076 .wall-item-body {
1077         margin: 10px 10px 10px 0px;
1078     text-align: left;
1079 }
1080 .wall-item-lock-wrapper {
1081         float: right;
1082 }
1083 .wall-item-dislike,
1084 .wall-item-like {
1085         clear: left;
1086         font-size: 0.8em;
1087         color: #878883;
1088         margin: 5px 0 5px 120px;
1089 }
1090 .wall-item-author, .wall-item-actions-author {
1091         clear: left;
1092         font-size: 0.8em;
1093         color: #878883;
1094         margin: 20px 0 0 110px;
1095 }
1096 .wall-item-ago {
1097         display: inline;
1098         padding-left: 10px;
1099 }
1100 .wall-item-wrapper-end {
1101         clear:both;
1102 }
1103 .wall-item-location {
1104     margin-top: 10px;
1105     width: 100px;
1106     overflow: hidden;
1107     text-overflow: ellipsis;
1108     -o-text-overflow: ellipsis;
1109 }
1110 .wall-item-location .icon {
1111     float: left;
1112 }
1113 .wall-item-location > a {
1114     margin-left: 25px;
1115     font-size: 0.7em;
1116     display: block;
1117 }
1118 .wall-item-location .smalltext {
1119     margin-left: 25px;
1120     font-size: 0.7em;
1121     display: block;
1122 }
1123 .wall-item-location > br {
1124     display: none;
1125 }
1126 .wallwall .wwto {
1127     left: 5px;
1128     margin: 0;
1129     position: absolute;
1130     top: 75px;
1131     width: 30px;
1132     z-index: 10001;
1133     width: 30px;
1134     height: 30px;
1135 }
1136 .wallwall .wwto img {
1137     width: 30px !important;
1138     height: 30px !important;
1139 }
1140 .wallwall .wall-item-photo-end {
1141     clear: both;
1142 }
1143 .wall-item-arrowphoto-wrapper {
1144     position: absolute;
1145     left: 35px;
1146     top: 80px;
1147     z-index: 10002;
1148 }
1149 .wall-item-photo-menu {
1150         min-width: 92px;
1151         border: 2px solid #FFFFFF;
1152         border-top: 0px;
1153         background: #555753;
1154         position: absolute;
1155         left: -2px; top: 101px;
1156         display: none;
1157         z-index: 10003;
1158         -webkit-border-radius: 0px 5px 5px 5px;
1159         -moz-border-radius: 0px 5px 5px 5px;
1160         border-radius: 0px 5px 5px 5px;
1161 }
1162 .wall-item-photo-menu ul {
1163     margin:0px;
1164     padding: 0px;
1165     list-style: none;
1166 }
1167 .wall-item-photo-menu li a {
1168     white-space: nowrap;
1169     display: block;
1170     padding: 5px 2px;
1171     color: #eeeeec;
1172 }
1173 .wall-item-photo-menu li a:hover {
1174     color: #555753;
1175     background: #eeeeec;
1176 }
1177 #item-delete-selected {
1178     overflow: auto;
1179     width: 100%;
1180 }
1181
1182
1183 /**
1184  *      comment
1185  */
1186 .ccollapse-wrapper {
1187     font-size: 0.9em;
1188     margin-left: 80px;
1189 }
1190
1191 .wall-item-outside-wrapper.comment {
1192     margin-left: 80px;
1193 }
1194 .wall-item-outside-wrapper.comment .wall-item-photo {
1195     width: 40px!important;
1196     height: 40px!important;
1197 }
1198 .wall-item-outside-wrapper.comment .wall-item-photo-wrapper {
1199     width: 40px;
1200     height: 40px;
1201 }
1202 .wall-item-outside-wrapper.comment .wall-item-photo-menu-button {
1203         width: 50px;
1204     top: 45px;
1205     background-position: 35px center;
1206 }
1207 .wall-item-outside-wrapper.comment .wall-item-info {
1208     width: 60px;
1209 }
1210 .wall-item-outside-wrapper.comment .wall-item-body {
1211     margin-left: 10px;
1212 }
1213 .wall-item-outside-wrapper.comment .wall-item-author {
1214     margin-left: 50px;
1215 }
1216
1217 .wall-item-outside-wrapper.comment .wall-item-photo-menu {
1218     min-width: 50px;
1219     top: 60px;
1220 }
1221 .comment-wwedit-wrapper {
1222     /*margin: 30px 0px 0px 80px;*/
1223 }
1224 .comment-edit-wrapper {
1225     border-top: 1px #aaa solid;
1226 }
1227 .comment-wwedit-wrapper img,
1228 .comment-edit-wrapper img {
1229         width: 20px;
1230         height: 20px;
1231 }
1232 .comment-edit-photo-link, .comment-edit-photo {
1233         float: left;
1234         margin-left: 10px;
1235 }
1236 .my-comment-photo {
1237     width: 40px;
1238     height: 40px;
1239     padding: 5px;
1240 }
1241 [class^="comment-edit-text"] {
1242     margin: 5px 0 10px 20px;
1243     width: 86.5%;
1244 }
1245 .comment-edit-text-empty {
1246         height: 20px;
1247         border: 2px #babdd6 solid;
1248         border-radius: 5px;
1249         color: #babdb6;
1250         -webkit-transition: all 0.5s ease-in-out;
1251         -moz-transition: all 0.5s ease-in-out;
1252         -o-transition: all 0.5s ease-in-out;
1253         -ms-transition: all 0.5s ease-in-out;
1254         transition: all 0.5s ease-in-out;       
1255 }
1256 .comment-edit-text-empty:hover {
1257         color: #999999;
1258 }
1259 .comment-edit-text-full {
1260         height: 10em;
1261     border-radius: 5px;
1262         -webkit-transition: all 0.5s ease-in-out;
1263         -moz-transition: all 0.5s ease-in-out;
1264         -o-transition: all 0.5s ease-in-out;
1265         -ms-transition: all 0.5s ease-in-out;
1266         transition: all 0.5s ease-in-out;       
1267 }
1268 .comment-edit-submit-wrapper {
1269         width: 90%;
1270         margin: 5px 5px 10px 50px;
1271         text-align: right;
1272 }
1273 .comment-edit-submit {
1274     height: 22px;
1275     background-color: #555753;
1276     color: #eeeeec;
1277     -webkit-border-radius: 5px;
1278     -moz-border-radius: 5px;
1279     border-radius: 5px;
1280     border: 0;
1281 }
1282
1283
1284 /**
1285  * item text style
1286  **/
1287 .wall-item-body code {
1288         display: block;
1289         padding-left: 10px;
1290         border-color: #ccc;
1291         border-style: solid;
1292         border-width: 1px 1px 1px 10px;
1293         background: #eee;
1294         width: 95%;
1295 }
1296
1297
1298 /**
1299  * profile
1300  **/
1301 div[id$="text"] {
1302     font-weight: bold;
1303     border-bottom: 1px solid #ccc;
1304 }
1305 div[id$="wrapper"] {
1306     height: 100%;
1307     margin-bottom: 1em;
1308 }
1309 div[id$="wrapper"] br {
1310     clear: left;
1311 }
1312 #advanced-profile-with {
1313     margin-left: 200px;
1314 }
1315
1316
1317 /**
1318  * photos
1319  **/
1320 .photos {
1321         height: auto;
1322         overflow: auto;
1323 }
1324 #photo-top-links {
1325     margin-bottom: 30px;
1326 }
1327 .photo-album-image-wrapper,
1328 .photo-top-image-wrapper {
1329     float: left;
1330     -moz-box-shadow: 0 0 5px #888;
1331     -webkit-box-shadow: 0 0 5px #888;
1332     box-shadow: 0 0 5px #888;
1333     background-color: #eee;
1334     -webkit-border-radius: 5px;
1335     -moz-border-radius: 5px;
1336     border-radius: 5px;
1337     padding-bottom: 30px;
1338     position: relative;
1339     margin: 0 10px 10px 0;
1340 }
1341
1342 #photo-photo {
1343     max-width: 100%;
1344 }
1345 #photo-photo img {
1346     max-width: 100%;
1347 }
1348 .photo-top-image-wrapper a:hover,
1349 #photo-photo a:hover,
1350 .photo-album-image-wrapper a:hover {
1351     border-bottom: 0;
1352 }
1353 .photo-top-photo,.photo-album-photo {
1354     -webkit-border-radius:5px 5px 0 0;
1355     -moz-border-radius:5px 5px 0 0;
1356     border-radius:5px 5px 0 0;
1357 }
1358 .photo-top-album-name {
1359     position: absolute;
1360     bottom: 0;
1361     padding: 0 5px;
1362 }
1363 .caption {
1364     position: absolute;
1365     bottom: 0;
1366     margin: 0 5px;
1367 }
1368 #photo-photo {
1369         position: relative;
1370         float:left;
1371 }
1372 #photo-photo-end {
1373     clear: both;
1374 }
1375 #photo-prev-link,
1376 #photo-next-link {
1377     position:absolute;
1378     width:30%;
1379     height:100%;
1380     background-color:rgba(255,255,255,0.5);
1381     opacity:0;
1382     -webkit-transition:all .2s ease-in-out;
1383     -moz-transition:all .2s ease-in-out;
1384     -o-transition:all .2s ease-in-out;
1385     -ms-transition:all .2s ease-in-out;
1386     transition:all .2s ease-in-out;
1387     background-position:center center;
1388     background-repeat:no-repeat;
1389 }
1390 #photo-prev-link {
1391     left:0;
1392     top:0;
1393     background-image:url(prev.png);
1394 }
1395 #photo-next-link {
1396     right:0;
1397     top:0;
1398     background-image:url(next.png);
1399 }
1400
1401 #photo-prev-link a,#photo-next-link a {
1402     display:block;
1403     width:100%;
1404     height:100%;
1405     overflow:hidden;
1406     text-indent:-900000px;
1407 }
1408 #photo-prev-link:hover,
1409 #photo-next-link:hover {
1410     opacity:1;
1411     -webkit-transition:all .2s ease-in-out;
1412     -moz-transition:all .2s ease-in-out;
1413     -o-transition:all .2s ease-in-out;
1414     -ms-transition:all .2s ease-in-out;
1415     transition:all .2s ease-in-out;
1416 }
1417 #photo-next-link .icon,
1418 #photo-prev-link .icon {
1419     display: none;
1420 }
1421 #photos-upload-spacer,
1422 #photos-upload-new-wrapper,
1423 #photos-upload-exist-wrapper {
1424     margin-bottom: 1em;
1425 }
1426 #photos-upload-existing-album-text,
1427 #photos-upload-newalbum-div {
1428     background-color:#555753;
1429     color:#eeeeec;
1430     padding:1px;
1431 }
1432 #photos-upload-album-select,
1433 #photos-upload-newalbum {
1434     width: 99%;
1435 }
1436 #photos-upload-perms-menu {
1437     text-align: right;
1438 }
1439 #photo-edit-caption, #photo-edit-newtag, #photo-edit-albumname {
1440     float: left;
1441     margin-bottom: 25px;
1442 }
1443 #photo-edit-link-wrap {
1444     margin-bottom: 15px;
1445 }
1446 #photo-edit-caption {
1447         width: 100%;
1448 }
1449 #photo-edit-newtag {
1450         width: 100%;
1451 }
1452 #photo-like-div {
1453     margin-bottom: 25px;
1454 }
1455 #photo-edit-caption-end, #photo-edit-tags-end, #photo-edit-albumname-end {
1456     clear: both;
1457 }
1458 #photo-edit-delete-button {
1459     margin-left: 200px;
1460 }
1461 #photo-edit-end {
1462     margin-bottom: 35px;
1463 }
1464 #photo-caption {
1465     font-size: 110%;
1466     font-weight: bold;
1467     margin-top: 15px;
1468     margin-bottom: 15px;
1469 }
1470
1471 /**
1472  *      message
1473  */
1474 .prvmail-text {
1475     width: 100%;
1476 }
1477 #prvmail-subject {
1478     width: 100%;
1479 }
1480 #prvmail-submit-wrapper {
1481     margin-top: 10px;
1482 }
1483 #prvmail-submit {
1484     float:right;
1485     margin-top: 0;
1486 }
1487 #prvmail-submit-wrapper > div {
1488     margin-right:5px;
1489     float:left;
1490 }
1491 .mail-list-outside-wrapper {
1492     margin-top: 20px;
1493 }
1494 .mail-list-sender {
1495     float: left;
1496 }
1497 .mail-list-detail {
1498     margin-left: 90px;
1499 }
1500 .mail-list-sender-name {
1501     display: inline;
1502 }
1503 .mail-list-date {
1504     display: inline;
1505     font-size: 0.8em;
1506     padding-left: 10px;
1507 }
1508 .mail-list-subject {
1509     font-size: 1.5em;
1510 }
1511 .mail-list-delete-wrapper {
1512     float: right;
1513 }
1514 .mail-list-outside-wrapper-end {
1515     clear: both;
1516 }
1517 .mail-conv-sender {
1518     float: left;
1519     margin: 0px 5px 5px 0px;
1520 }
1521 .mail-conv-sender-photo {
1522     width: 32px;
1523     height: 32px;
1524 }
1525 .mail-conv-sender-name {
1526     float: left;
1527 }
1528 .mail-conv-date {
1529     float: right;
1530 }
1531 .mail-conv-subject {
1532     clear: right;
1533     font-weight: bold;
1534     font-size: 1.2em;
1535 }
1536 .mail-conv-body {
1537     clear: both;
1538 }
1539 .mail-conv-delete-wrapper {
1540     margin-top: 5px;
1541 }
1542
1543
1544 /**
1545  *      contacts
1546  */
1547 .view-contact-wrapper,
1548 .contact-entry-wrapper {
1549     float: left;
1550     margin-right: 5px;
1551     margin-bottom: 40px;
1552     width: 120px;
1553         height: 120px;
1554         padding: 3px;
1555     position: relative;
1556 }
1557 .contact-direction-wrapper {
1558     position: absolute;
1559     top: 20px;
1560 }
1561 .contact-edit-links {
1562     position: absolute;
1563     top: 60px;
1564 }
1565 .contact-entry-photo-wrapper {
1566
1567 }
1568 .contact-entry-photo {
1569         margin-left: 20px;
1570 }
1571 .contact-entry-name {
1572     width: 120px;
1573     font-weight: bold;
1574     /*overflow: hidden;*/
1575 }
1576 .contact-entry-photo {
1577         position: relative;
1578 }
1579 .contact-entry-edit-links .icon {
1580     border: 1px solid #babdb6;
1581     -webkit-border-radius: 3px;
1582     -moz-border-radius: 3px;
1583     border-radius: 3px;
1584     background-color: #fff;
1585 }
1586 #contact-entry-url, [id^="contact-entry-url"] {
1587     font-size: smaller;
1588     /*overflow: scroll;*/
1589 }
1590 #contact-entry-network, [id^="contact-entry-network"] {
1591     font-size: smaller;
1592     font-style: italic;
1593 }
1594 #contact-edit-banner-name {
1595     font-size: 1.5em;
1596 }
1597 #contact-edit-photo-wrapper {
1598     position: relative;
1599     float: left;
1600     padding: 20px;
1601 }
1602 #contact-edit-direction-icon {
1603     position:absolute;
1604     top:60px;
1605     left:0;
1606 }
1607 #contact-edit-nav-wrapper {
1608     margin-left: 0px;
1609 }
1610 #contact-edit-links {
1611     margin-top: 23px;
1612 }
1613 #contact-edit-links ul {
1614     list-style-type: none;
1615 }
1616 #contact-drop-links {
1617     margin-left:5px;
1618 }
1619 #contact-edit-nav-wrapper .icon {
1620         border: 1px solid #babdb6;
1621     -webkit-border-radius: 3px;
1622     -moz-border-radius: 3px;
1623     border-radius: 3px; 
1624 }
1625 #contact-edit-poll-wrapper {
1626     margin-left: 0px;
1627 }
1628 #contact-edit-last-update-text {
1629     margin-bottom: 15px;
1630 }
1631 #contact-edit-last-updated {
1632     font-weight: bold;
1633 }
1634 #contact-edit-poll-text {
1635     display: inline;
1636 }
1637 #contact-edit-info_tbl, #contact-edit-info_parent {
1638     width: 100%;
1639 }
1640 .mceLayout {
1641     width: 100%;
1642 }
1643 #contact-edit-end {
1644     clear: both;
1645     margin-bottom: 65px;
1646 }
1647
1648 .contact-photo-menu-button {
1649     position: absolute;
1650     background-image: url("photo-menu.jpg");
1651     background-position: top left; 
1652     background-repeat: no-repeat;
1653     margin: 0px; padding: 0px;
1654     width: 16px;
1655     height: 16px;
1656     top: 64px; left:0px;
1657     overflow: hidden;
1658     text-indent: 40px;
1659     display: none;
1660 }
1661 .contact-photo-menu {
1662     width: auto;
1663     border: 2px solid #444444;
1664     background: #FFFFFF;
1665     position: absolute;
1666     left: 0px; top: 90px;
1667     display: none;
1668     z-index: 10000;
1669 }
1670 .contact-photo-menu ul {
1671     margin:0px;
1672     padding: 0px;
1673     list-style: none;
1674 }
1675 .contact-photo-menu li a {
1676     display: block;
1677     padding: 2px;
1678 }
1679 .contact-photo-menu li a:hover {
1680     color: #fff;
1681     background: #3465A4;
1682     text-decoration: none;
1683 }
1684
1685
1686
1687 /**
1688  *      register, settings & profile forms
1689  */
1690 #id_openid_url,
1691 .openid {
1692     background:url(login-bg.gif) no-repeat;
1693     background-position:0 50%;
1694     padding-left:18px;
1695 }
1696
1697 #settings-nickname-desc {
1698     background-color: #eee;
1699     -webkit-border-radius: 5px;
1700     -moz-border-radius: 5px;
1701     border-radius: 5px;
1702     padding: 5px;
1703 }
1704 #settings-default-perms {
1705     margin-bottom: 20px;
1706 }
1707 #register-form div,
1708 #profile-edit-form div {
1709     clear: both;
1710 }
1711
1712 #register-form label,
1713 #profile-edit-form label {
1714         width: 300px;
1715     float: left;
1716 }
1717
1718 #register-form span,
1719 #profile-edit-form span {
1720     color:#555753;
1721     display:block;
1722     margin-bottom:20px;
1723 }
1724 .settings-submit-wrapper,
1725 .profile-edit-submit-wrapper {
1726     margin: 30px 0px;
1727 }
1728 .profile-edit-side-div {
1729     margin-top: 0px;
1730 }
1731 .profile-edit-side-link {
1732     float: right;
1733     margin: 0px 20px -18px 0;
1734 }
1735 .profile-listing {
1736     float: left;
1737     margin: 20px 20px 0px 0px;
1738 }
1739
1740 #profile-edit-links ul {
1741     margin: 20px 0;
1742     padding: 0;
1743     list-style: none;
1744 }
1745
1746 #register-sitename {
1747     display: inline;
1748     font-weight: bold;
1749 }
1750
1751 /**
1752  *      contacts selector
1753  */
1754 .group-delete-wrapper {
1755         margin: -28px 150px 0 0;
1756     float: right;
1757 }
1758 #group-edit-submit-wrapper {
1759     margin: 0 0 10px 0;
1760     display: inline;
1761 }
1762 #group-edit-desc {
1763     margin: 10px 0px;
1764 }
1765 #group-members,
1766 #prof-members {
1767     height:200px;
1768     overflow:auto;
1769     border:1px solid #555753;
1770     -webkit-border-radius:5px 5px 0 0;
1771     -moz-border-radius:5px 5px 0 0;
1772     border-radius:5px 5px 0 0;
1773 }
1774 #group-all-contacts,
1775 #prof-all-contacts {
1776     height:200px;
1777     overflow:auto;
1778     border:1px solid #555753;
1779     -webkit-border-radius:0 0 5px 5px;
1780     -moz-border-radius:0 0 5px 5px;
1781     border-radius:0 0 5px 5px;
1782 }
1783 #group-members h3,
1784 #group-all-contacts h3,
1785 #prof-members h3,
1786 #prof-all-contacts h3 {
1787     color:#eeeeec;
1788     background-color:#555753;
1789     margin:0;
1790     padding:5px;
1791 }
1792 #group-separator,
1793 #prof-separator {
1794     display: none;
1795 }
1796
1797 /**
1798  * profile
1799  */
1800 #cropimage-wrapper {
1801     float:left;
1802 }
1803 #crop-image-form {
1804     clear:both;
1805 }
1806
1807 /**
1808  * events
1809  **/
1810 .clear { clear: both; }
1811 .eventcal {
1812     float:left;
1813     font-size:20px;
1814 }
1815 .vevent {
1816     border:1px solid #ccc;
1817 }
1818 .vevent .event-description, .vevent .event-location {
1819         margin-left: 10px;
1820         margin-right: 10px;
1821 }
1822 .vevent .event-start {
1823         margin-left: 10px;
1824         margin-right: 10px;
1825 }
1826
1827 #new-event-link {
1828         margin-bottom: 10px;
1829 }
1830 .edit-event-link, .plink-event-link {
1831         float: left;
1832         margin-top: 4px;
1833         margin-right: 4px;
1834         margin-bottom: 15px;
1835 }
1836 .event-description:before {
1837         content: url('../../../images/calendar.png');
1838         margin-right: 15px;
1839 }
1840 .event-start, .event-end {
1841         margin-left: 10px;
1842         width: 330px;
1843 }
1844 .event-start .dtstart, .event-end .dtend {
1845         float: right;
1846 }
1847 .event-list-date {
1848         margin-bottom: 10px;
1849 }
1850 .prevcal, .nextcal {
1851         float: left;
1852         margin-left: 32px;
1853         margin-right: 32px;
1854         margin-top: 64px;
1855 }
1856 .event-calendar-end {
1857         clear: both;
1858 }
1859 .calendar {
1860     font-family: monospace;
1861 }
1862 .today {
1863         font-weight: bold;
1864         color: #FF0000;
1865
1866 #event-start-text, 
1867 #event-finish-text {
1868         margin-top: 10px;
1869         margin-bottom: 5px;
1870 }
1871 #event-nofinish-checkbox,
1872 #event-nofinish-text,
1873 #event-adjust-checkbox,
1874 #event-adjust-text,
1875 #event-share-checkbox {
1876     float:left;
1877 }
1878 #event-datetime-break {
1879         margin-bottom: 10px;
1880 }
1881 #event-nofinish-break,
1882 #event-adjust-break,
1883 #event-share-break {
1884         clear: both;
1885 }
1886 #event-desc-text, 
1887 #event-location-text {
1888         margin-top: 10px;
1889         margin-bottom: 5px;
1890 }
1891 #event-submit {
1892         margin-top: 10px;
1893 }
1894 .body-tag {
1895         margin: 10px 0;
1896         opacity: 0.5;
1897         filter:alpha(opacity=50);
1898 }
1899 .body-tag:hover {
1900         opacity: 1.0 !important;
1901         filter:alpha(opacity=100) !important;
1902 }
1903 .item-select {
1904         opacity: 0.1;
1905         filter:alpha(opacity=10);
1906         float: right;
1907         margin-right: 10px;
1908
1909 }
1910 .item-select:hover, .checkeditem {
1911         opacity: 1;
1912         filter:alpha(opacity=100);
1913 }
1914 #item-delete-selected {
1915         margin-top: 30px;
1916 }
1917 /* was tired of having no way of moving it around, so
1918  * here's a little 'hook' to do so */
1919 .delete-checked {
1920         position: absolute;
1921         left: 35px;
1922         margin-top: 20px;
1923 }
1924 #item-delete-selected-end {
1925         clear: both;
1926 }
1927 #item-delete-selected-icon, #item-delete-selected-desc {
1928         float: left;
1929         margin-right: 5px;
1930 }
1931 #item-delete-selected-desc:hover {
1932         text-decoration: underline;
1933 }
1934
1935
1936 /**
1937  *      directory
1938  */
1939 .directory-item {
1940     float: left;
1941     margin: 50px 50px 0px 0px;
1942 }
1943
1944
1945 /**
1946  * sidebar
1947  */
1948 #group-sidebar {
1949     margin-bottom: 10px;
1950 }
1951 .group-selected, .nets-selected {
1952     padding: 3px;
1953     border: 1px solid #CCCCCC;
1954     background: #F8F8F8;
1955     font-weight: bold;
1956 }
1957 .groupsideedit {
1958     margin-right: 10px;
1959 }
1960 #sidebar-group-ul {
1961     padding-left: 0;
1962 }
1963 #sidebar-group-list {
1964     margin: 0 0 5px 0;
1965 }
1966 #sidebar-group-list ul {
1967     list-style-type: none;
1968     list-style-position: inside;
1969 }
1970 #sidebar-group-list li {
1971     margin-top: 10px;
1972 }
1973 #sidebar-group-list .icon {
1974     display: inline-block;
1975     height: 12px;
1976     width: 12px;
1977 }
1978 #sidebar-new-group {
1979     margin: auto;
1980     display: inline-block;
1981     color: #efefef;
1982     text-decoration: none;
1983     text-align: center;
1984 }
1985
1986 #sidebar-new-group:hover {
1987     /*background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #b20202), color-stop(1, #d60808) );*/
1988     /*background: -moz-linear-gradient( center top, #b20202 5%, #d60808 100% );*/
1989     /*background-color: #b20202;*/
1990 }
1991
1992 #sidebar-new-group:active {
1993     position: relative;
1994     top: 1px;
1995 }
1996 .nets-ul {
1997     list-style-type: none;
1998     padding-left: 0px;
1999 }
2000 .nets-ul li {
2001     margin: 10px 0 0;
2002 }
2003
2004 .nets-link {
2005     margin-left: 0px;
2006 }
2007 .nets-all {
2008     margin-left: 0px;
2009 }
2010 #netsearch-box {
2011     margin-top: 20px;
2012     width: 150px;   
2013 }
2014 #netsearch-box #search-submit {
2015     margin: 5px 0px 0px 0px;
2016 }
2017
2018 /**
2019  * ADMIN
2020  */
2021 #pending-update {
2022     float:right;
2023     color: #fff;
2024     font-weight: bold;
2025     background-color: #ff0000;
2026     padding: 0 .3em;
2027 }
2028 .admin.linklist {
2029     border: 0; padding: 0;
2030 }
2031 .admin.link {
2032     list-style-position: inside;
2033 }
2034 #adminpage dl {
2035     clear:left;
2036     margin-bottom: 2px;
2037     padding-bottom: 2px;
2038     border-bottom: 1px solid #000;
2039 }
2040 #adminpage dt {
2041     width: 200px;
2042     float: left;
2043     font-weight: bold;
2044 }
2045 #adminpage dd {
2046         margin-left: 200px;
2047 }
2048 #adminpage h3 {
2049     border-bottom:1px solid #ccc;
2050 }
2051
2052 #adminpage .submit {
2053         clear:left;
2054 }
2055
2056 #adminpage #pluginslist {
2057     margin: 0;
2058     padding: 0;
2059 }
2060 #adminpage .plugin {
2061     list-style: none;
2062     display: block;
2063     border: 1px solid #888;
2064     padding: 1em;
2065     margin-bottom: 5px;
2066     clear: left;
2067 }
2068 #adminpage .toggleplugin {
2069         float:left;
2070         margin-right: 1em;
2071 }
2072
2073 #adminpage table {
2074     width: 100%;
2075     border-bottom: 1px solid #000;
2076     margin: 5px 0;
2077 }
2078 #adminpage table th {
2079     text-align: left;
2080 }
2081 #adminpage td .icon {
2082     float: left;
2083 }
2084 #adminpage table#users img {
2085     width: 16px; height: 16px;
2086 }
2087 #adminpage table tr:hover {
2088     background-color:#bbc7d7;
2089 }
2090 #adminpage .selectall {
2091     text-align: right;
2092 }
2093
2094 /**
2095  * Form fields
2096  */
2097 .field {
2098         /*margin-bottom: 10px;*/
2099         /*padding-bottom: 10px;*/
2100     overflow: auto;
2101     width: 100%;
2102 }
2103 .field label {
2104     float: left;
2105     width: 275px;
2106         display: block;
2107         font-size: 1.077em;
2108         /*font-weight: bold;*/
2109         margin: 0 10px 0.5em 0;
2110         border: 1px #999 solid;
2111         padding: 5px;
2112         background: #eee;
2113         vertical-align: middle;
2114 }
2115 .field input {
2116         width: 250px;
2117         height: 25px;
2118         border: 1px #999 solid;
2119 }
2120 .field textarea {
2121     width: 80%;
2122 }
2123 .field textarea {
2124     height: 100px;
2125 }
2126 .field_help {
2127     display: block;
2128     margin-left: 297px;
2129     color: #666;
2130 }
2131 .field .onoff {
2132     float: left;
2133     width: 80px;
2134 }
2135 .field .onoff a {
2136     display: block;
2137     border: 1px solid #666;
2138     padding: 3px 6px 4px 10px;
2139     height: 16px;
2140     text-decoration: none;
2141 }
2142 .field .onoff .on {
2143         background: url("../../../images/onoff.jpg") no-repeat 42px 1px #999;
2144     color: #111;
2145     text-align: left;
2146 }
2147 .field .onoff .off {
2148         background: url("../../../images/onoff.jpg") no-repeat 2px 1px #ccc;
2149     color: #333;
2150     text-align: right;
2151 }
2152 .hidden {
2153     display:none !important;
2154 }
2155
2156 .field.radio .field_help {
2157     margin-left: 0;
2158 }
2159
2160
2161 /*
2162  * UPDATE
2163  */
2164 .popup {        
2165         width: 100%;
2166     height: 100%;
2167         top:0px;
2168     left:0px;
2169         position: absolute;
2170         display: none;
2171 }
2172 .popup .background {
2173         background-color: rgba(0,0,0,128);
2174         opacity: 0.5;
2175         width: 100%;
2176     height: 100%;
2177         position: absolute;
2178         top:0px;
2179     left:0px;
2180 }
2181 .popup .panel {
2182         top: 25%;
2183     left: 25%;
2184     width: 50%;
2185     height: 50%;
2186         padding: 1em;
2187         position: absolute;
2188         border: 4px solid #000000;
2189         background-color: #FFFFFF;
2190 }
2191 #panel {
2192     z-index: 100;
2193 }
2194 .grey {
2195     color: grey;
2196 }
2197 .orange {
2198     color: orange;
2199 }
2200 .red {
2201     color: red;
2202 }
2203 .popup .panel .panel_text {
2204     display: block;
2205     overflow: auto;
2206     height: 80%;
2207
2208 .popup .panel .panel_in {
2209     width: 100%;
2210     height: 100%;
2211     position: relative;
2212 }
2213 .popup .panel .panel_actions {
2214     width: 100%;
2215     bottom: 4px;
2216     left: 0px;
2217     position: absolute;
2218 }
2219 .panel_text .progress {
2220     width: 50%;
2221     overflow: hidden;
2222     height: auto;
2223     border: 1px solid #cccccc;
2224     margin-bottom: 5px;
2225 }
2226 .panel_text .progress span {
2227     float: right;
2228     display: block;
2229     width: 25%;
2230     background-color: #eeeeee;
2231     text-align: right;
2232 }
2233
2234 /**
2235  * OAuth
2236  */
2237 .oauthapp {
2238         height: auto;
2239     overflow: auto;
2240         border-bottom: 2px solid #cccccc;
2241         padding-bottom: 1em;
2242         margin-bottom: 1em;     
2243 }
2244 .oauthapp img {
2245         float: left;
2246         width: 48px; height: 48px;
2247         margin: 10px;
2248 }
2249 .oauthapp img.noicon {
2250         background-image: url("../../../images/icons/48/plugin.png");
2251         background-position: center center;
2252         background-repeat: no-repeat;
2253 }
2254 .oauthapp a {
2255         float: left;
2256 }
2257
2258
2259 /**
2260  * ICONS
2261  */
2262 .iconspacer {
2263         display: block;
2264     width: 16px;
2265     height: 16px;
2266 }
2267 .icon {
2268     display: block;
2269     width: 20px;
2270     height: 20px;
2271     background: url(icons.png) no-repeat;
2272     border: 0;
2273     text-decoration: none;
2274 }
2275 .icon:hover {
2276     border: 0;
2277     text-decoration: none;
2278 }
2279 .icon.drop,
2280 .icon.drophide, .icon.delete {
2281     float: left;
2282 }
2283 .icon.s22 {
2284         display: block;
2285         background: url(icons.png) no-repeat;
2286         width: 22px;
2287         height: 22px;
2288 }
2289 .icon.s22.delete {
2290         display: block;
2291         background-position: -110px 0;
2292 }
2293 .icon.s22.text {
2294         padding: 10px 0px 0px 25px;
2295         width: 200px;
2296 }
2297 .icon.text {
2298     text-indent: 0px;
2299 }
2300 .icon.s16 {
2301     min-width: 16px;
2302     height: 16px;
2303 }
2304 .s16 .add {
2305     background: url("../../../images/icons/16/add.png") no-repeat;
2306 }
2307 .add {
2308     margin: 0px 5px;    
2309 }
2310 .article {
2311         background-position: -50px 0;
2312 }
2313 .audio {
2314         background-position: -70px 0;
2315 }
2316 .block {
2317         background-position: -90px 0px;
2318 }
2319 .drop, .delete {
2320         background-position: -110px 0;
2321 }
2322 .drophide {
2323         background-position: -130px 0;
2324 }
2325 .edit {
2326         background-position: -150px 0;
2327 }
2328 .camera {
2329         background-position: -170px 0;
2330 }
2331 .dislike {
2332         background-position: -190px 0;
2333 }
2334 .like {
2335         background-position: -211px 0;
2336 }
2337 .link {
2338         background-position: -230px 0;
2339 }
2340 .globe, .location {
2341         background-position: -50px -20px;
2342 }
2343 .noglobe, .nolocation {
2344         background-position: -70px -20px;
2345 }
2346 .no {
2347         background-position: -90px -20px;
2348 }
2349 .pause {
2350         background-position: -110px -20px;
2351 }
2352 .play {
2353         background-position: -130px -20px;
2354 }
2355 .pencil {
2356         background-position: -151px -18px;
2357 }
2358 .small-pencil {
2359         background-position: -170px -20px;
2360 }
2361 .recycle {
2362         background-position: -190px -20px;
2363 }
2364 .remote-link {
2365         background-position: -210px -20px;
2366 }
2367 .share {
2368         background-position: -230px -20px;
2369 }
2370 .tools {
2371         background-position: -50px -40px;
2372 }
2373 .lock {
2374         background-position: -70px -40px;
2375 }
2376 .unlock {
2377         background-position: -90px -40px;
2378 }
2379 .video {
2380         background-position: -110px -40px;
2381 }
2382 .attach {
2383         background-position: -190px -40px;
2384 }
2385 .language {
2386         background-position: -210px -40px;
2387 }
2388 .starred {
2389         background-position: -130px -60px;
2390 }
2391 .unstarred {
2392         background-position: -150px -60px;
2393 }
2394 .tagged {
2395         background-position: -170px -60px;
2396 }
2397 .on {
2398         background-position: -50px  -60px;
2399 }
2400 .off {
2401         background-position: -70px  -60px;
2402 }
2403 .prev {
2404         background-position: -90px  -60px;
2405 }
2406 .next {
2407         background-position: -110px  -60px;
2408 }
2409 .icon.dim {
2410         opacity: 0.3;
2411         filter: alpha(opacity=30);
2412 }
2413 #pause {
2414         position: fixed;
2415         bottom: 5px;
2416         right: 5px;
2417 }
2418 .border, .border:hover {
2419         border: 1px solid #babdb6;
2420     -webkit-border-radius: 3px;
2421     -moz-border-radius: 3px;
2422     border-radius: 3px; 
2423 }
2424 .attachtype {
2425     display: block;
2426     width: 20px;
2427     height: 23px;
2428     background-image: url(../../../images/content-types.png);
2429 }
2430 .type-video {
2431     background-position: 0px 0px;
2432 }
2433 .type-image {
2434     background-position: -20px 0;
2435 }
2436 .type-audio {
2437     background-position: -40px 0;
2438 }
2439 .type-text {
2440     background-position: -60px 0px;
2441 }
2442 .type-unkn {
2443     background-position: -80px 0;
2444 }
2445
2446
2447 /**
2448  *      footer
2449  */
2450 .cc-license {
2451     margin-top: 100px;
2452     font-size: 0.7em;
2453 }
2454 footer {
2455     display: block;
2456     margin: 50px 20%;
2457     clear: both;
2458 }
2459 #profile-jot-text {
2460     height: 20px;
2461     color: #666;
2462     border: 1px solid #ccc;
2463     border-radius: 5px;
2464     width: 99.5%;
2465 }
2466
2467
2468 /** acl **/
2469 #photo-edit-perms-select,
2470 #photos-upload-permissions-wrapper,
2471 #profile-jot-acl-wrapper {
2472     display: block !important;
2473 }
2474 #acl-wrapper {
2475     width: 690px;
2476     float: left;
2477 }
2478 #acl-search {
2479     float: right;
2480     background: #fff url("../../../images/search_18.png") no-repeat right center;
2481     padding-right: 20px;
2482 }
2483 #acl-showall {
2484     float:left;
2485     display:block;
2486     width:auto;
2487     height:18px;
2488     background-color:#CCC;
2489     background-image:url("../../../images/show_all_off.png");
2490     background-position:7px 7px;
2491     background-repeat:no-repeat;
2492     padding:7px 10px 7px 30px;
2493     -webkit-border-radius:5px;
2494     -moz-border-radius:5px;
2495     border-radius:5px;
2496     color:#999;
2497 }
2498 #acl-showall.selected {
2499     color:#000;
2500     background-color:#F90;
2501     background-image:url(../../../images/show_all_on.png);
2502 }
2503 #acl-list {
2504     height:210px;
2505     border:1px solid #ccc;
2506     clear:both;
2507     margin-top:30px;
2508     overflow:auto;
2509 }
2510 #acl-list-content {
2511 }
2512 .acl-list-item {
2513     display:block;
2514     width:150px;
2515     height:30px;
2516     border:1px solid #ccc;
2517     margin:5px;
2518     float:left;
2519 }
2520 .acl-list-item img {
2521     width:22px;
2522     height:22px;
2523     float:left;
2524     margin:4px;
2525 }
2526 .acl-list-item p {
2527     height: 12px;
2528     font-size: 10px;
2529     margin: 0;
2530     padding: 2px 0 1px;
2531 }
2532 .acl-list-item a {
2533     font-size:8px;
2534     display:block;
2535     width:40px;
2536     height:10px;
2537     float:left;
2538     color:#999;
2539     background-color:#CCC;
2540     background-position:3px 3px;
2541     background-repeat:no-repeat;
2542     margin-right:5px;
2543     -webkit-border-radius:2px;
2544     -moz-border-radius:2px;
2545     border-radius:2px;
2546     padding-left:15px;
2547 }
2548 #acl-wrapper a:hover {
2549     text-decoration:none;
2550     color:#000;
2551 }
2552 .acl-button-show {
2553     background-image:url('../../../images/show_off.png');
2554 }
2555 .acl-button-hide {
2556     background-image:url('../../../images/hide_off.png');
2557 }
2558 .acl-button-show.selected {
2559     color:#000;
2560     background-color:#9ade00;
2561     background-image:url(../../../images/show_on.png);
2562 }
2563 .acl-button-hide.selected {
2564     color:#000;
2565     background-color:#ff4141;
2566     background-image:url(../../../images/hide_on.png);
2567 }
2568 .acl-list-item.groupshow {
2569     border-color:#9ade00;
2570 }
2571 .acl-list-item.grouphide {
2572     border-color:#ff4141;
2573 }
2574 /** /acl **/
2575
2576
2577 /* autocomplete popup */
2578 .acpopup {
2579         max-height: 150px;
2580         background-color: #555753;
2581         color: #fff;
2582         overflow: auto;
2583         z-index: 100000;
2584         border: 1px solid #cccccc;
2585 }
2586 .acpopupitem {
2587         background-color: #555753;
2588     padding: 4px;
2589         clear: left;
2590 }
2591 .acpopupitem img {
2592         float: left;
2593         margin-right: 4px;
2594 }
2595 .acpopupitem.selected {
2596         color: #2e3436;
2597     background-color: #eeeeec;
2598 }
2599 .qcomment-wrapper {
2600     padding: 0px;
2601     margin: 2px;
2602     list-style-type: none;
2603 }
2604 .qcomment, .qcomment:hover {
2605     display: inline;
2606     padding: 5px;
2607     margin: 5px;
2608 }
2609 .qcomment {
2610         opacity: 0.5;
2611         filter:alpha(opacity=50);
2612 }
2613 .qcomment:hover {
2614         opacity: 1.0;
2615         filter:alpha(opacity=100);
2616 }
2617 #network-star-link {
2618     margin-top: 10px;
2619 }
2620 .network-star {
2621     float: left;
2622     margin-right: 5px;
2623 }
2624 .network-star.icon.starred {
2625     display: inline-block;
2626 }
2627