]> git.mxchange.org Git - friendica.git/commitdiff
Merge https://github.com/friendica/friendica into pull
authorfriendica <info@friendica.com>
Mon, 19 Nov 2012 07:50:37 +0000 (23:50 -0800)
committerfriendica <info@friendica.com>
Mon, 19 Nov 2012 07:50:37 +0000 (23:50 -0800)
56 files changed:
boot.php
htconfig.php
include/api.php
include/bbcode.php
include/dba.php
include/diaspora.php
include/html2plain.php
include/items.php
include/network.php
include/poller.php
include/text.php
mod/photo.php
object/Item.php
view/de/messages.po
view/de/strings.php
view/theme/diabook/diabook-aerith/style-network.css
view/theme/diabook/diabook-aerith/style-profile.css
view/theme/diabook/diabook-aerith/style.css
view/theme/diabook/diabook-blue/style-network.css
view/theme/diabook/diabook-blue/style-profile.css
view/theme/diabook/diabook-blue/style.css
view/theme/diabook/diabook-green/style-network.css
view/theme/diabook/diabook-green/style-profile.css
view/theme/diabook/diabook-green/style.css
view/theme/diabook/diabook-pink/style-network.css
view/theme/diabook/diabook-pink/style-profile.css
view/theme/diabook/diabook-pink/style.css
view/theme/diabook/diabook-red/style-network.css
view/theme/diabook/diabook-red/style-profile.css
view/theme/diabook/diabook-red/style.css
view/theme/diabook/style-network.css
view/theme/diabook/style-profile.css
view/theme/diabook/theme.php
view/theme/vier/css/font-awesome-ie7.css [new file with mode: 0644]
view/theme/vier/css/font-awesome.css [new file with mode: 0644]
view/theme/vier/font/fontawesome-webfont.eot [new file with mode: 0755]
view/theme/vier/font/fontawesome-webfont.svg [new file with mode: 0755]
view/theme/vier/font/fontawesome-webfont.ttf [new file with mode: 0755]
view/theme/vier/font/fontawesome-webfont.woff [new file with mode: 0755]
view/theme/vier/mail_list.tpl [new file with mode: 0644]
view/theme/vier/nav.tpl
view/theme/vier/search_item.tpl
view/theme/vier/style.css
view/theme/vier/theme.php [new file with mode: 0644]
view/theme/vier/wall_thread.tpl
view/zh-cn/follow_notify_eml.tpl [new file with mode: 0644]
view/zh-cn/friend_complete_eml.tpl [new file with mode: 0644]
view/zh-cn/intro_complete_eml.tpl [new file with mode: 0644]
view/zh-cn/lostpass_eml.tpl [new file with mode: 0644]
view/zh-cn/messages.po [new file with mode: 0644]
view/zh-cn/passchanged_eml.tpl [new file with mode: 0644]
view/zh-cn/register_open_eml.tpl [new file with mode: 0644]
view/zh-cn/register_verify_eml.tpl [new file with mode: 0644]
view/zh-cn/request_notify_eml.tpl [new file with mode: 0644]
view/zh-cn/strings.php [new file with mode: 0644]
view/zh-cn/update_fail_eml.tpl [new file with mode: 0644]

index b00424f95046f700279c04c7e6757e2fb8147ce5..05711e3a256d58c9bd1c1c0a46cc58bcf2004f11 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1848,3 +1848,54 @@ function random_digits($digits) {
        }
        return $rn;
 }
+
+function get_cachefile($file, $writemode = true) {
+       $cache = get_config("system","itemcache");
+
+       if ($cache == "")
+               return("");
+
+       if (!is_dir($cache))
+               return("");
+
+       $subfolder = $cache."/".substr($file, 0, 2);
+
+       $cachepath = $subfolder."/".$file;
+
+       if ($writemode) {
+               if (!is_dir($subfolder)) {
+                       mkdir($subfolder);
+                       chmod($subfolder, 0777);
+               }
+       }
+
+       return($cachepath);
+}
+
+function clear_cache($basepath = "", $path = "") {
+       if ($path == "") {
+               $basepath = get_config('system','itemcache');
+               $path = $basepath;
+       }
+
+       if (($path == "") OR (!is_dir($path)))
+               return;
+
+       if (substr(realpath($path), 0, strlen($basepath)) != $basepath)
+               return;
+
+       $cachetime = (int)get_config('system','itemcache_duration');
+       if ($cachetime == 0)
+               $cachetime = 86400;
+
+       if ($dh = opendir($path)) {
+               while (($file = readdir($dh)) !== false) {
+                       $fullpath = $path."/".$file;
+                       if ((filetype($fullpath) == "dir") and ($file != ".") and ($file != ".."))
+                               clear_cache($basepath, $fullpath);
+                       if ((filetype($fullpath) == "file") and filectime($fullpath) < (time() - $cachetime))
+                               unlink($fullpath);
+               }
+               closedir($dh);
+       }
+}
index ab9a7ca506e45d0a6d707a6e5903a4795066fef7..bb0f47727ab289aab61e6ddaeda97eb8e20f0482 100644 (file)
@@ -91,3 +91,6 @@ $a->config['system']['lockpath'] = "";
 
 // If enabled, the MyBB fulltext engine is used
 // $a->config['system']['use_fulltext_engine'] = true;
+
+// Let reshared messages look like wall-to-wall posts
+// $a->config['system']['diaspora_newreshare'] = true;
index 7517abb70c4e44853d200991902ec1c6b15ecafd..8a93093c70ac910fb8a99ace62a2938b114e2070 100644 (file)
                        $_REQUEST['body'] = requestdata('status');
                        //$_REQUEST['body'] = urldecode(requestdata('status'));
 
+               $_REQUEST['title'] = requestdata('title');
+
                $parent = requestdata('in_reply_to_status_id');
                if(ctype_digit($parent))
                        $_REQUEST['parent'] = $parent;
index ef4a9aa9ba3462747f5ba5a30d69e565e77c077c..d83fe6c12f15efcb40e067d8953b46c7082169b4 100644 (file)
@@ -3,7 +3,24 @@
 require_once("include/oembed.php");
 require_once('include/event.php');
 
+function cleancss($input) {
 
+       $cleaned = "";
+
+       $input = strtolower($input);
+
+       for ($i = 0; $i < strlen($input); $i++) {
+               $char = substr($input, $i, 1);
+
+               if (($char >= "a") and ($char <= "z"))
+                       $cleaned .= $char;
+
+               if (!(strpos(" #;:0123456789", $char) === false))
+                       $cleaned .= $char;
+       }
+
+       return($cleaned);
+}
 
 function stripcode_br_cb($s) {
        return '[code]' . str_replace('<br />', '', $s[1]) . '[/code]';
index 9f2dab51915e498f4e092cbd7bc4c9ed011c7470..ad33705bf14bfa1ac45741d48fe3223a96e9fd7e 100644 (file)
@@ -231,7 +231,7 @@ function q($sql) {
        unset($args[0]);
 
        if($db && $db->connected) {
-               $stmt = vsprintf($sql,$args);
+               $stmt = @vsprintf($sql,$args); // Disabled warnings
                //logger("dba: q: $stmt", LOGGER_ALL);
                if($stmt === false)
                        logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
index f645aeb39b86a0ea62f24419a30bde0b8937b42e..c2b2fbcf4e1a71753b1a140ca1d48e5ba4e9678e 100755 (executable)
@@ -859,7 +859,8 @@ function diaspora_post($importer,$xml,$msg) {
        $datarray['parent'] = 0;
        $datarray['owner-name'] = $contact['name'];
        $datarray['owner-link'] = $contact['url'];
-       $datarray['owner-avatar'] = $contact['thumb'];
+       //$datarray['owner-avatar'] = $contact['thumb'];
+       $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']);
        $datarray['author-name'] = $contact['name'];
        $datarray['author-link'] = $contact['url'];
        $datarray['author-avatar'] = $contact['thumb'];
@@ -962,8 +963,8 @@ function diaspora_reshare($importer,$xml,$msg) {
                $details = '[url=' . $person['url'] . ']' . $person['name'] . '[/url]';
        else
                $details = $orig_author;
-       
-       $prefix = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . $details . "\n"; 
+
+       $prefix = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . $details . "\n";
 
 
        // allocate a guid on our system - we aren't fixing any collisions.
@@ -1021,11 +1022,22 @@ function diaspora_reshare($importer,$xml,$msg) {
        $datarray['parent'] = 0;
        $datarray['owner-name'] = $contact['name'];
        $datarray['owner-link'] = $contact['url'];
-       $datarray['owner-avatar'] = $contact['thumb'];
-       $datarray['author-name'] = $contact['name'];
-       $datarray['author-link'] = $contact['url'];
-       $datarray['author-avatar'] = $contact['thumb'];
-       $datarray['body'] = $prefix . $body;
+       $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']);
+       if (intval(get_config('system','diaspora_newreshare'))) {
+               // Let reshared messages look like wall-to-wall posts
+               // we have to set an additional value in the item in the future
+               // to distinct the wall-to-wall-posts from reshared/repeated messages
+               $datarray['author-name'] = $person['name'];
+               $datarray['author-link'] = $person['url'];
+               $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
+               $datarray['body'] = $body;
+       } else {
+               $datarray['author-name'] = $contact['name'];
+               $datarray['author-link'] = $contact['url'];
+               $datarray['author-avatar'] = $contact['thumb'];
+               $datarray['body'] = $prefix . $body;
+       }
+
        $datarray['tag'] = $str_tags;
        $datarray['app']  = 'Diaspora';
 
@@ -1116,7 +1128,8 @@ function diaspora_asphoto($importer,$xml,$msg) {
        $datarray['parent'] = 0;
        $datarray['owner-name'] = $contact['name'];
        $datarray['owner-link'] = $contact['url'];
-       $datarray['owner-avatar'] = $contact['thumb'];
+       //$datarray['owner-avatar'] = $contact['thumb'];
+       $datarray['owner-avatar'] = ((x($contact,'thumb')) ? $contact['thumb'] : $contact['photo']);
        $datarray['author-name'] = $contact['name'];
        $datarray['author-link'] = $contact['url'];
        $datarray['author-avatar'] = $contact['thumb'];
@@ -1864,7 +1877,8 @@ EOT;
 
        $arr['owner-name'] = $parent_item['name'];
        $arr['owner-link'] = $parent_item['url'];
-       $arr['owner-avatar'] = $parent_item['thumb'];
+       //$arr['owner-avatar'] = $parent_item['thumb'];
+       $arr['owner-avatar'] = ((x($parent_item,'thumb')) ? $parent_item['thumb'] : $parent_item['photo']);
 
        $arr['author-name'] = $person['name'];
        $arr['author-link'] = $person['url'];
index 839dd70a74437383a01ccdec34bbcad0d66506a7..4afac41d8316267b78198d2ed054ea686497a3ce 100644 (file)
@@ -92,6 +92,9 @@ function collecturls($message) {
                if ((strpos($treffer[1], "//plus.google.com/") !== false) and (strpos($treffer[1], "/posts") !== false))
                                $ignore = false;
 
+               if ((strpos($treffer[1], "//plus.google.com/") !== false) and (strpos($treffer[1], "/photos") !== false))
+                               $ignore = false;
+
                if (!$ignore)
                        $urls[$treffer[1]] = $treffer[1];
        }
index aea5a4de5e9affaf1676cd89204ac2fc93ceae85..4ef26fbda8a9fc6885a05b4dcac1ce6d86097ece 100755 (executable)
@@ -379,10 +379,12 @@ function title_is_body($title, $body) {
 
        $title = strip_tags($title);
        $title = trim($title);
+       $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
        $title = str_replace(array("\n", "\r", "\t", " "), array("","","",""), $title);
 
        $body = strip_tags($body);
        $body = trim($body);
+       $body = html_entity_decode($body, ENT_QUOTES, 'UTF-8');
        $body = str_replace(array("\n", "\r", "\t", " "), array("","","",""), $body);
 
        if (strlen($title) < strlen($body))
@@ -793,6 +795,8 @@ function get_atom_elements($feed,$item) {
        // There is some better way to parse this array - but it didn't worked for me.
        $child = $item->feed->data["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["feed"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["entry"][0]["child"]["http://activitystrea.ms/spec/1.0/"][object][0]["child"];
        if (is_array($child)) {
+               logger('get_atom_elements: Looking for status.net repeated message');
+
                $message = $child["http://activitystrea.ms/spec/1.0/"]["object"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10]["content"][0]["data"];
                $author = $child[SIMPLEPIE_NAMESPACE_ATOM_10]["author"][0]["child"][SIMPLEPIE_NAMESPACE_ATOM_10];
                $uri = $author["uri"][0]["data"];
@@ -801,6 +805,8 @@ function get_atom_elements($feed,$item) {
                $avatar = $avatar["href"];
 
                if (($name != "") and ($uri != "") and ($avatar != "") and ($message != "")) {
+                       logger('get_atom_elements: fixing sender of repeated message');
+
                        $res["owner-name"] = $res["author-name"];
                        $res["owner-link"] = $res["author-link"];
                        $res["owner-avatar"] = $res["author-avatar"];
index 0e1a63792f5a04676cf3f23b00123c5cd7aad12b..edd03d557acc2bb28066dab678e71cf1c671ade7 100644 (file)
@@ -823,15 +823,13 @@ function scale_external_images($s, $include_link = true, $scale_replace = false)
                                $scaled = $mtch[1];
                        $i = fetch_url($scaled);
 
-                       $cache = get_config('system','itemcache');
-                       if (($cache != '') and is_dir($cache)) {
-                               $cachefile = $cache."/".hash("md5", $scaled);
+                       $cachefile = get_cachefile(hash("md5", $scaled));
+                       if ($cachefile != '')
                                file_put_contents($cachefile, $i);
-                       }
 
                        // guess mimetype from headers or filename
                        $type = guess_image_type($mtch[1],true);
-                       
+
                        if($i) {
                                $ph = new Photo($i, $type);
                                if($ph->is_valid()) {
index d5efa36a832b42544b9840ba134589d14286c75b..6f2eeed822b80f757adafaf269caac0c656ee91e 100644 (file)
@@ -102,18 +102,8 @@ function poller_run(&$argv, &$argc){
        // clear old cache
        Cache::clear();
 
-       // clear item cache files if they are older than one day
-       $cache = get_config('system','itemcache');
-       if (($cache != '') and is_dir($cache)) {
-               if ($dh = opendir($cache)) {
-                       while (($file = readdir($dh)) !== false) {
-                               $fullpath = $cache."/".$file;
-                               if ((filetype($fullpath) == "file") and filectime($fullpath) < (time() - 86400))
-                                       unlink($fullpath);
-                       }
-                       closedir($dh);
-               }
-       }
+       // clear old item cache files
+       clear_cache();
 
        $manual_id  = 0;
        $generation = 0;
@@ -128,7 +118,7 @@ function poller_run(&$argv, &$argc){
                $restart = true;
                $generation = intval($argv[2]);
                if(! $generation)
-                       killme();               
+                       killme();
        }
 
        if(($argc > 1) && intval($argv[1])) {
index 044a1f8926984fc96950d8073fe71540b9f991a6..a326412411703947bc1c827c5853c0f4bf4a6c47 100644 (file)
@@ -962,13 +962,11 @@ if(! function_exists('prepare_body')) {
 function prepare_body($item,$attach = false) {
 
        $a = get_app();
-       call_hooks('prepare_body_init', $item); 
+       call_hooks('prepare_body_init', $item);
 
-       $cache = get_config('system','itemcache');
-
-       if (($cache != '')) {
-               $cachefile = $cache."/".$item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']);
+       $cachefile = get_cachefile($item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']));
 
+       if (($cachefile != '')) {
                if (file_exists($cachefile))
                        $s = file_get_contents($cachefile);
                else {
index dee483d835bbda6479376d21a0c5a603f9cf29b1..e37b9273859e940e8ca13e5cd4ac5f13f4d44e49 100644 (file)
@@ -4,30 +4,7 @@ require_once('include/security.php');
 require_once('include/Photo.php');
 
 function photo_init(&$a) {
-
-       // To-Do:
-       // - checking with realpath
-       // - checking permissions
-       /*
-       $cache = get_config('system','itemcache');
-        if (($cache != '') and is_dir($cache)) {
-               $cachefile = $cache."/".$a->argc."-".$a->argv[1]."-".$a->argv[2]."-".$a->argv[3];
-               if (file_exists($cachefile)) {
-                       $data = file_get_contents($cachefile);
-
-                       if(function_exists('header_remove')) {
-                               header_remove('Pragma');
-                               header_remove('pragma');
-                       }
-
-                       header("Content-type: image/jpeg");
-                       header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT");
-                       header("Cache-Control: max-age=" . (3600*24));
-                       echo $data;
-                       killme();
-                       // NOTREACHED
-               }
-       }*/
+       global $_SERVER;
 
        $prvcachecontrol = false;
 
@@ -50,6 +27,22 @@ function photo_init(&$a) {
                        // NOTREACHED
        }
 
+       //      strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= filemtime($localFileName)) {
+       if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
+               header('HTTP/1.1 304 Not Modified');
+               header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+               header('Etag: '.$_SERVER['HTTP_IF_NONE_MATCH']);
+               header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
+               header("Cache-Control: max-age=31536000");
+               if(function_exists('header_remove')) {
+                       header_remove('Last-Modified');
+                       header_remove('Expires');
+                       header_remove('Cache-Control');
+               }
+               exit;
+       }
+
+
        $default = 'images/person-175.jpg';
 
        if(isset($type)) {
@@ -182,10 +175,6 @@ function photo_init(&$a) {
                }
        }
 
-       // Writing in cachefile
-       if (isset($cachefile) && $cachefile != '')
-               file_put_contents($cachefile, $data);
-
        if(function_exists('header_remove')) {
                header_remove('Pragma');
                header_remove('pragma');
@@ -203,10 +192,10 @@ function photo_init(&$a) {
 
        }
        else {
-
-               header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT");
-               header("Cache-Control: max-age=" . (3600*24));
-
+               header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+               header('Etag: "'.md5($data).'"');
+               header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
+               header("Cache-Control: max-age=31536000");
        }
        echo $data;
        killme();
index b8afe2213a547651b49607a973ef5f542157683a..2799291111d7aeca659c0c28f32878a2692442e7 100644 (file)
@@ -229,6 +229,7 @@ class Item extends BaseObject {
                        'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
                        'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
                        'to' => t('to'),
+                       'via' => t('via'),
                        'wall' => t('Wall-to-Wall'),
                        'vwall' => t('via Wall-To-Wall:'),
                        'profile_url' => $profile_link,
@@ -256,6 +257,7 @@ class Item extends BaseObject {
                        'vote' => $buttons,
                        'like' => $like,
                        'dislike' => $dislike,
+                       'switchcomment' => t('Comment'),
                        'comment' => $this->get_comment_box($indent),
                        'previewing' => ($conv->is_preview() ? ' preview ' : ''),
                        'wait' => t('Please wait'),
index 0f0c64da7c13fe41e36a42568205bad3094e29ab..f1c4fa7a06c416f31e01ef9e10d2402f3eb99654 100644 (file)
@@ -22,8 +22,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-11-08 10:00-0800\n"
-"PO-Revision-Date: 2012-11-10 07:33+0000\n"
+"POT-Creation-Date: 2012-11-14 10:00-0800\n"
+"PO-Revision-Date: 2012-11-16 08:50+0000\n"
 "Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -52,7 +52,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
 
 #: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
 #: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:132 ../../mod/photos.php:994
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
 #: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
 #: ../../mod/notifications.php:66 ../../mod/contacts.php:146
 #: ../../mod/settings.php:86 ../../mod/settings.php:525
@@ -67,7 +67,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
 #: ../../mod/message.php:38 ../../mod/message.php:168
 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9
+#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
 #: ../../mod/display.php:165 ../../mod/profiles.php:7
 #: ../../mod/profiles.php:424 ../../mod/delegate.php:6
 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
@@ -75,7 +75,7 @@ msgstr "Konnte den Kontakt nicht aktualisieren."
 #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
 #: ../../addon/fbpost/fbpost.php:165
 #: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3971
-#: ../../index.php:319 ../../addon.old/facebook/facebook.php:510
+#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
 #: ../../addon.old/facebook/facebook.php:516
 #: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
 #: ../../addon.old/dav/friendica/layout.fnk.php:354
@@ -145,10 +145,10 @@ msgid "New photo from this URL"
 msgstr "Neues Foto von dieser URL"
 
 #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1027
-#: ../../mod/photos.php:1103 ../../mod/photos.php:1366
-#: ../../mod/photos.php:1406 ../../mod/photos.php:1450
-#: ../../mod/photos.php:1522 ../../mod/install.php:246
+#: ../../mod/events.php:455 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1104 ../../mod/photos.php:1367
+#: ../../mod/photos.php:1407 ../../mod/photos.php:1451
+#: ../../mod/photos.php:1523 ../../mod/install.php:246
 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
 #: ../../mod/content.php:693 ../../mod/contacts.php:351
 #: ../../mod/settings.php:543 ../../mod/settings.php:697
@@ -197,7 +197,7 @@ msgstr "Neues Foto von dieser URL"
 #: ../../view/theme/diabook/theme.php:599
 #: ../../view/theme/diabook/config.php:152
 #: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:559 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../object/Item.php:562 ../../addon.old/fromgplus/fromgplus.php:40
 #: ../../addon.old/facebook/facebook.php:619
 #: ../../addon.old/snautofollow/snautofollow.php:64
 #: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
@@ -246,20 +246,20 @@ msgstr "Neues Foto von dieser URL"
 msgid "Submit"
 msgstr "Senden"
 
-#: ../../mod/help.php:30
+#: ../../mod/help.php:79
 msgid "Help:"
 msgstr "Hilfe:"
 
-#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
 #: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
 msgid "Help"
 msgstr "Hilfe"
 
-#: ../../mod/help.php:38 ../../index.php:228
+#: ../../mod/help.php:90 ../../index.php:218
 msgid "Not Found"
 msgstr "Nicht gefunden"
 
-#: ../../mod/help.php:41 ../../index.php:231
+#: ../../mod/help.php:93 ../../index.php:221
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
@@ -297,12 +297,12 @@ msgstr "l, F j"
 msgid "Edit event"
 msgstr "Veranstaltung bearbeiten"
 
-#: ../../mod/events.php:323 ../../include/text.php:1185
+#: ../../mod/events.php:323 ../../include/text.php:1192
 msgid "link to source"
 msgstr "Link zum Originalbeitrag"
 
 #: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90
-#: ../../include/nav.php:52 ../../boot.php:1711
+#: ../../include/nav.php:52 ../../boot.php:1745
 msgid "Events"
 msgstr "Veranstaltungen"
 
@@ -360,7 +360,7 @@ msgstr "Beschreibung"
 
 #: ../../mod/events.php:448 ../../mod/directory.php:134
 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1241
+#: ../../boot.php:1275
 msgid "Location:"
 msgstr "Ort:"
 
@@ -375,7 +375,7 @@ msgstr "Veranstaltung teilen"
 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:142
 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:1001
+#: ../../include/conversation.php:1005
 #: ../../addon.old/js_upload/js_upload.php:45
 msgid "Cancel"
 msgstr "Abbrechen"
@@ -445,33 +445,33 @@ msgstr "Ja"
 msgid "No"
 msgstr "Nein"
 
-#: ../../mod/photos.php:50 ../../boot.php:1704
+#: ../../mod/photos.php:51 ../../boot.php:1738
 msgid "Photo Albums"
 msgstr "Fotoalben"
 
-#: ../../mod/photos.php:58 ../../mod/photos.php:153 ../../mod/photos.php:1008
-#: ../../mod/photos.php:1095 ../../mod/photos.php:1110
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1577
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
+#: ../../mod/photos.php:1096 ../../mod/photos.php:1111
+#: ../../mod/photos.php:1566 ../../mod/photos.php:1578
 #: ../../addon/communityhome/communityhome.php:110
 #: ../../view/theme/diabook/theme.php:485
 #: ../../addon.old/communityhome/communityhome.php:110
 msgid "Contact Photos"
 msgstr "Kontaktbilder"
 
-#: ../../mod/photos.php:65 ../../mod/photos.php:1126 ../../mod/photos.php:1615
+#: ../../mod/photos.php:66 ../../mod/photos.php:1127 ../../mod/photos.php:1616
 msgid "Upload New Photos"
 msgstr "Weitere Fotos hochladen"
 
-#: ../../mod/photos.php:78 ../../mod/settings.php:23
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
 msgid "everybody"
 msgstr "jeder"
 
-#: ../../mod/photos.php:142
+#: ../../mod/photos.php:143
 msgid "Contact information unavailable"
 msgstr "Kontaktinformationen nicht verfügbar"
 
-#: ../../mod/photos.php:153 ../../mod/photos.php:675 ../../mod/photos.php:1095
-#: ../../mod/photos.php:1110 ../../mod/profile_photo.php:74
+#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1096
+#: ../../mod/photos.php:1111 ../../mod/profile_photo.php:74
 #: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
 #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
 #: ../../mod/profile_photo.php:305
@@ -482,221 +482,221 @@ msgstr "Kontaktinformationen nicht verfügbar"
 msgid "Profile Photos"
 msgstr "Profilbilder"
 
-#: ../../mod/photos.php:163
+#: ../../mod/photos.php:164
 msgid "Album not found."
 msgstr "Album nicht gefunden."
 
-#: ../../mod/photos.php:181 ../../mod/photos.php:1104
+#: ../../mod/photos.php:182 ../../mod/photos.php:1105
 msgid "Delete Album"
 msgstr "Album löschen"
 
-#: ../../mod/photos.php:244 ../../mod/photos.php:1367
+#: ../../mod/photos.php:245 ../../mod/photos.php:1368
 msgid "Delete Photo"
 msgstr "Foto löschen"
 
-#: ../../mod/photos.php:606
+#: ../../mod/photos.php:607
 #, php-format
 msgid "%1$s was tagged in %2$s by %3$s"
 msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: ../../mod/photos.php:606
+#: ../../mod/photos.php:607
 msgid "a photo"
 msgstr "einem Foto"
 
-#: ../../mod/photos.php:711 ../../addon/js_upload/js_upload.php:315
+#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:315
 #: ../../addon.old/js_upload/js_upload.php:315
 msgid "Image exceeds size limit of "
 msgstr "Die Bildgröße übersteigt das Limit von "
 
-#: ../../mod/photos.php:719
+#: ../../mod/photos.php:720
 msgid "Image file is empty."
 msgstr "Bilddatei ist leer."
 
-#: ../../mod/photos.php:751 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:110
+#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
+#: ../../mod/wall_upload.php:112
 msgid "Unable to process image."
 msgstr "Konnte das Bild nicht bearbeiten."
 
-#: ../../mod/photos.php:778 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:136
+#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
+#: ../../mod/wall_upload.php:138
 msgid "Image upload failed."
 msgstr "Hochladen des Bildes gescheitert."
 
-#: ../../mod/photos.php:864 ../../mod/community.php:18
+#: ../../mod/photos.php:865 ../../mod/community.php:18
 #: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
 #: ../../mod/display.php:7 ../../mod/search.php:86 ../../mod/directory.php:31
 msgid "Public access denied."
 msgstr "Öffentlicher Zugriff verweigert."
 
-#: ../../mod/photos.php:874
+#: ../../mod/photos.php:875
 msgid "No photos selected"
 msgstr "Keine Bilder ausgewählt"
 
-#: ../../mod/photos.php:975
+#: ../../mod/photos.php:976
 msgid "Access to this item is restricted."
 msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: ../../mod/photos.php:1037
+#: ../../mod/photos.php:1038
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: ../../mod/photos.php:1040
+#: ../../mod/photos.php:1041
 #, php-format
 msgid "You have used %1$.2f Mbytes of photo storage."
 msgstr "Du verwendest %1$.2f Mbyte des Foto-Speichers."
 
-#: ../../mod/photos.php:1046
+#: ../../mod/photos.php:1047
 msgid "Upload Photos"
 msgstr "Bilder hochladen"
 
-#: ../../mod/photos.php:1050 ../../mod/photos.php:1099
+#: ../../mod/photos.php:1051 ../../mod/photos.php:1100
 msgid "New album name: "
 msgstr "Name des neuen Albums: "
 
-#: ../../mod/photos.php:1051
+#: ../../mod/photos.php:1052
 msgid "or existing album name: "
 msgstr "oder existierender Albumname: "
 
-#: ../../mod/photos.php:1052
+#: ../../mod/photos.php:1053
 msgid "Do not show a status post for this upload"
 msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: ../../mod/photos.php:1054 ../../mod/photos.php:1362
+#: ../../mod/photos.php:1055 ../../mod/photos.php:1363
 msgid "Permissions"
 msgstr "Berechtigungen"
 
-#: ../../mod/photos.php:1114
+#: ../../mod/photos.php:1115
 msgid "Edit Album"
 msgstr "Album bearbeiten"
 
-#: ../../mod/photos.php:1120
+#: ../../mod/photos.php:1121
 msgid "Show Newest First"
 msgstr "Zeige neueste zuerst"
 
-#: ../../mod/photos.php:1122
+#: ../../mod/photos.php:1123
 msgid "Show Oldest First"
 msgstr "Zeige älteste zuerst"
 
-#: ../../mod/photos.php:1146 ../../mod/photos.php:1598
+#: ../../mod/photos.php:1147 ../../mod/photos.php:1599
 msgid "View Photo"
 msgstr "Fotos betrachten"
 
-#: ../../mod/photos.php:1181
+#: ../../mod/photos.php:1182
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: ../../mod/photos.php:1183
+#: ../../mod/photos.php:1184
 msgid "Photo not available"
 msgstr "Foto nicht verfügbar"
 
-#: ../../mod/photos.php:1239
+#: ../../mod/photos.php:1240
 msgid "View photo"
 msgstr "Fotos ansehen"
 
-#: ../../mod/photos.php:1239
+#: ../../mod/photos.php:1240
 msgid "Edit photo"
 msgstr "Foto bearbeiten"
 
-#: ../../mod/photos.php:1240
+#: ../../mod/photos.php:1241
 msgid "Use as profile photo"
 msgstr "Als Profilbild verwenden"
 
-#: ../../mod/photos.php:1246 ../../mod/content.php:603
-#: ../../object/Item.php:103
+#: ../../mod/photos.php:1247 ../../mod/content.php:603
+#: ../../object/Item.php:104
 msgid "Private Message"
 msgstr "Private Nachricht"
 
-#: ../../mod/photos.php:1265
+#: ../../mod/photos.php:1266
 msgid "View Full Size"
 msgstr "Betrachte Originalgröße"
 
-#: ../../mod/photos.php:1339
+#: ../../mod/photos.php:1340
 msgid "Tags: "
 msgstr "Tags: "
 
-#: ../../mod/photos.php:1342
+#: ../../mod/photos.php:1343
 msgid "[Remove any tag]"
 msgstr "[Tag entfernen]"
 
-#: ../../mod/photos.php:1352
+#: ../../mod/photos.php:1353
 msgid "Rotate CW (right)"
 msgstr "Drehen US (rechts)"
 
-#: ../../mod/photos.php:1353
+#: ../../mod/photos.php:1354
 msgid "Rotate CCW (left)"
 msgstr "Drehen EUS (links)"
 
-#: ../../mod/photos.php:1355
+#: ../../mod/photos.php:1356
 msgid "New album name"
 msgstr "Name des neuen Albums"
 
-#: ../../mod/photos.php:1358
+#: ../../mod/photos.php:1359
 msgid "Caption"
 msgstr "Bildunterschrift"
 
-#: ../../mod/photos.php:1360
+#: ../../mod/photos.php:1361
 msgid "Add a Tag"
 msgstr "Tag hinzufügen"
 
-#: ../../mod/photos.php:1364
+#: ../../mod/photos.php:1365
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/photos.php:1384 ../../mod/content.php:667
-#: ../../object/Item.php:196
+#: ../../mod/photos.php:1385 ../../mod/content.php:667
+#: ../../object/Item.php:197
 msgid "I like this (toggle)"
 msgstr "Ich mag das (toggle)"
 
-#: ../../mod/photos.php:1385 ../../mod/content.php:668
-#: ../../object/Item.php:197
+#: ../../mod/photos.php:1386 ../../mod/content.php:668
+#: ../../object/Item.php:198
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (toggle)"
 
-#: ../../mod/photos.php:1386 ../../include/conversation.php:962
+#: ../../mod/photos.php:1387 ../../include/conversation.php:966
 msgid "Share"
 msgstr "Teilen"
 
-#: ../../mod/photos.php:1387 ../../mod/editpost.php:118
-#: ../../mod/content.php:482 ../../mod/content.php:846
+#: ../../mod/photos.php:1388 ../../mod/editpost.php:118
+#: ../../mod/content.php:482 ../../mod/content.php:848
 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293
 #: ../../mod/message.php:481 ../../include/conversation.php:624
-#: ../../include/conversation.php:981 ../../object/Item.php:258
+#: ../../include/conversation.php:985 ../../object/Item.php:261
 msgid "Please wait"
 msgstr "Bitte warten"
 
-#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
-#: ../../mod/photos.php:1519 ../../mod/content.php:690
-#: ../../object/Item.php:556
+#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
+#: ../../mod/photos.php:1520 ../../mod/content.php:690
+#: ../../object/Item.php:559
 msgid "This is you"
 msgstr "Das bist du"
 
-#: ../../mod/photos.php:1405 ../../mod/photos.php:1449
-#: ../../mod/photos.php:1521 ../../mod/content.php:692 ../../boot.php:589
-#: ../../object/Item.php:558
+#: ../../mod/photos.php:1406 ../../mod/photos.php:1450
+#: ../../mod/photos.php:1522 ../../mod/content.php:692 ../../boot.php:605
+#: ../../object/Item.php:561
 msgid "Comment"
 msgstr "Kommentar"
 
-#: ../../mod/photos.php:1407 ../../mod/photos.php:1451
-#: ../../mod/photos.php:1523 ../../mod/editpost.php:139
-#: ../../mod/content.php:702 ../../include/conversation.php:999
-#: ../../object/Item.php:568
+#: ../../mod/photos.php:1408 ../../mod/photos.php:1452
+#: ../../mod/photos.php:1524 ../../mod/editpost.php:139
+#: ../../mod/content.php:702 ../../include/conversation.php:1003
+#: ../../object/Item.php:571
 msgid "Preview"
 msgstr "Vorschau"
 
-#: ../../mod/photos.php:1491 ../../mod/content.php:439
+#: ../../mod/photos.php:1492 ../../mod/content.php:439
 #: ../../mod/content.php:724 ../../mod/settings.php:606
 #: ../../mod/group.php:168 ../../mod/admin.php:696
-#: ../../include/conversation.php:569 ../../object/Item.php:117
+#: ../../include/conversation.php:569 ../../object/Item.php:118
 msgid "Delete"
 msgstr "Löschen"
 
-#: ../../mod/photos.php:1604
+#: ../../mod/photos.php:1605
 msgid "View Album"
 msgstr "Album betrachten"
 
-#: ../../mod/photos.php:1613
+#: ../../mod/photos.php:1614
 msgid "Recent Photos"
 msgstr "Neueste Fotos"
 
@@ -754,96 +754,96 @@ msgstr "Beitrag nicht gefunden"
 msgid "Edit post"
 msgstr "Beitrag bearbeiten"
 
-#: ../../mod/editpost.php:88 ../../include/conversation.php:948
+#: ../../mod/editpost.php:88 ../../include/conversation.php:952
 msgid "Post to Email"
 msgstr "An E-Mail senden"
 
 #: ../../mod/editpost.php:103 ../../mod/content.php:711
-#: ../../mod/settings.php:605 ../../object/Item.php:107
+#: ../../mod/settings.php:605 ../../object/Item.php:108
 msgid "Edit"
 msgstr "Bearbeiten"
 
 #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
 #: ../../mod/message.php:291 ../../mod/message.php:478
-#: ../../include/conversation.php:963
+#: ../../include/conversation.php:967
 msgid "Upload photo"
 msgstr "Foto hochladen"
 
-#: ../../mod/editpost.php:105 ../../include/conversation.php:964
+#: ../../mod/editpost.php:105 ../../include/conversation.php:968
 msgid "upload photo"
 msgstr "Bild hochladen"
 
-#: ../../mod/editpost.php:106 ../../include/conversation.php:965
+#: ../../mod/editpost.php:106 ../../include/conversation.php:969
 msgid "Attach file"
 msgstr "Datei anhängen"
 
-#: ../../mod/editpost.php:107 ../../include/conversation.php:966
+#: ../../mod/editpost.php:107 ../../include/conversation.php:970
 msgid "attach file"
 msgstr "Datei anhängen"
 
 #: ../../mod/editpost.php:108 ../../mod/wallmessage.php:151
 #: ../../mod/message.php:292 ../../mod/message.php:479
-#: ../../include/conversation.php:967
+#: ../../include/conversation.php:971
 msgid "Insert web link"
 msgstr "einen Link einfügen"
 
-#: ../../mod/editpost.php:109 ../../include/conversation.php:968
+#: ../../mod/editpost.php:109 ../../include/conversation.php:972
 msgid "web link"
 msgstr "Weblink"
 
-#: ../../mod/editpost.php:110 ../../include/conversation.php:969
+#: ../../mod/editpost.php:110 ../../include/conversation.php:973
 msgid "Insert video link"
 msgstr "Video-Adresse einfügen"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:970
+#: ../../mod/editpost.php:111 ../../include/conversation.php:974
 msgid "video link"
 msgstr "Video-Link"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:971
+#: ../../mod/editpost.php:112 ../../include/conversation.php:975
 msgid "Insert audio link"
 msgstr "Audio-Adresse einfügen"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:972
+#: ../../mod/editpost.php:113 ../../include/conversation.php:976
 msgid "audio link"
 msgstr "Audio-Link"
 
-#: ../../mod/editpost.php:114 ../../include/conversation.php:973
+#: ../../mod/editpost.php:114 ../../include/conversation.php:977
 msgid "Set your location"
 msgstr "Deinen Standort festlegen"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:974
+#: ../../mod/editpost.php:115 ../../include/conversation.php:978
 msgid "set location"
 msgstr "Ort setzen"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:975
+#: ../../mod/editpost.php:116 ../../include/conversation.php:979
 msgid "Clear browser location"
 msgstr "Browser-Standort leeren"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:976
+#: ../../mod/editpost.php:117 ../../include/conversation.php:980
 msgid "clear location"
 msgstr "Ort löschen"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:982
+#: ../../mod/editpost.php:119 ../../include/conversation.php:986
 msgid "Permission settings"
 msgstr "Berechtigungseinstellungen"
 
-#: ../../mod/editpost.php:127 ../../include/conversation.php:991
+#: ../../mod/editpost.php:127 ../../include/conversation.php:995
 msgid "CC: email addresses"
 msgstr "Cc:-E-Mail-Addressen"
 
-#: ../../mod/editpost.php:128 ../../include/conversation.php:992
+#: ../../mod/editpost.php:128 ../../include/conversation.php:996
 msgid "Public post"
 msgstr "Öffentlicher Beitrag"
 
-#: ../../mod/editpost.php:131 ../../include/conversation.php:978
+#: ../../mod/editpost.php:131 ../../include/conversation.php:982
 msgid "Set title"
 msgstr "Titel setzen"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:980
+#: ../../mod/editpost.php:133 ../../include/conversation.php:984
 msgid "Categories (comma-separated list)"
 msgstr "Kategorien (kommasepariert)"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:994
+#: ../../mod/editpost.php:134 ../../include/conversation.php:998
 msgid "Example: bob@example.com, mary@example.com"
 msgstr "Z.B.: bob@example.com, mary@example.com"
 
@@ -1036,36 +1036,35 @@ msgstr "Adresse deines Profils:"
 msgid "Submit Request"
 msgstr "Anfrage abschicken"
 
-#: ../../mod/uexport.php:10 ../../mod/settings.php:30
-#: ../../include/nav.php:137
+#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:137
 msgid "Account settings"
 msgstr "Kontoeinstellungen"
 
-#: ../../mod/uexport.php:15 ../../mod/settings.php:35
+#: ../../mod/uexport.php:14 ../../mod/settings.php:35
 msgid "Display settings"
 msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/uexport.php:21 ../../mod/settings.php:41
+#: ../../mod/uexport.php:20 ../../mod/settings.php:41
 msgid "Connector settings"
 msgstr "Connector-Einstellungen"
 
-#: ../../mod/uexport.php:26 ../../mod/settings.php:46
+#: ../../mod/uexport.php:25 ../../mod/settings.php:46
 msgid "Plugin settings"
 msgstr "Plugin-Einstellungen"
 
-#: ../../mod/uexport.php:31 ../../mod/settings.php:51
+#: ../../mod/uexport.php:30 ../../mod/settings.php:51
 msgid "Connected apps"
 msgstr "Verbundene Programme"
 
-#: ../../mod/uexport.php:36 ../../mod/uexport.php:81 ../../mod/settings.php:56
+#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:56
 msgid "Export personal data"
 msgstr "Persönliche Daten exportieren"
 
-#: ../../mod/uexport.php:41 ../../mod/settings.php:61
+#: ../../mod/uexport.php:40 ../../mod/settings.php:61
 msgid "Remove account"
 msgstr "Konto löschen"
 
-#: ../../mod/uexport.php:49 ../../mod/settings.php:69
+#: ../../mod/uexport.php:48 ../../mod/settings.php:69
 #: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990
 #: ../../addon/dav/friendica/layout.fnk.php:225
 #: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:614
@@ -1074,21 +1073,21 @@ msgstr "Konto löschen"
 msgid "Settings"
 msgstr "Einstellungen"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:72
 msgid "Export account"
 msgstr "Account exportieren"
 
-#: ../../mod/uexport.php:73
+#: ../../mod/uexport.php:72
 msgid ""
 "Export your account info and contacts. Use this to make a backup of your "
 "account and/or to move it to another server."
 msgstr "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen."
 
-#: ../../mod/uexport.php:74
+#: ../../mod/uexport.php:73
 msgid "Export all"
 msgstr "Alles exportieren"
 
-#: ../../mod/uexport.php:74
+#: ../../mod/uexport.php:73
 msgid ""
 "Export your accout info, contacts and all your items as json. Could be a "
 "very big file, and could take a lot of time. Use this to make a full backup "
@@ -1416,7 +1415,7 @@ msgid "is interested in:"
 msgstr "ist interessiert an:"
 
 #: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1179
+#: ../../include/contact_widgets.php:9 ../../boot.php:1213
 msgid "Connect"
 msgstr "Verbinden"
 
@@ -1446,19 +1445,19 @@ msgid "Group: "
 msgstr "Gruppe: "
 
 #: ../../mod/content.php:438 ../../mod/content.php:723
-#: ../../include/conversation.php:568 ../../object/Item.php:116
+#: ../../include/conversation.php:568 ../../object/Item.php:117
 msgid "Select"
 msgstr "Auswählen"
 
-#: ../../mod/content.php:455 ../../mod/content.php:816
-#: ../../mod/content.php:817 ../../include/conversation.php:587
-#: ../../object/Item.php:227 ../../object/Item.php:228
+#: ../../mod/content.php:455 ../../mod/content.php:817
+#: ../../mod/content.php:818 ../../include/conversation.php:587
+#: ../../object/Item.php:229 ../../object/Item.php:230
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr "Das Profil von %s auf %s betrachten."
 
-#: ../../mod/content.php:465 ../../mod/content.php:828
-#: ../../include/conversation.php:607 ../../object/Item.php:240
+#: ../../mod/content.php:465 ../../mod/content.php:829
+#: ../../include/conversation.php:607 ../../object/Item.php:242
 #, php-format
 msgid "%s from %s"
 msgstr "%s von %s"
@@ -1467,15 +1466,15 @@ msgstr "%s von %s"
 msgid "View in context"
 msgstr "Im Zusammenhang betrachten"
 
-#: ../../mod/content.php:586 ../../object/Item.php:277
+#: ../../mod/content.php:586 ../../object/Item.php:280
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
-#: ../../mod/content.php:588 ../../include/text.php:1441
-#: ../../object/Item.php:279 ../../object/Item.php:292
+#: ../../mod/content.php:588 ../../include/text.php:1448
+#: ../../object/Item.php:282 ../../object/Item.php:295
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
@@ -1483,93 +1482,93 @@ msgstr[1] "Kommentar"
 
 #: ../../mod/content.php:589 ../../addon/page/page.php:77
 #: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:195 ../../boot.php:590
-#: ../../object/Item.php:280 ../../addon.old/page/page.php:77
+#: ../../include/contact_widgets.php:195 ../../boot.php:606
+#: ../../object/Item.php:283 ../../addon.old/page/page.php:77
 #: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
 msgid "show more"
 msgstr "mehr anzeigen"
 
-#: ../../mod/content.php:667 ../../object/Item.php:196
+#: ../../mod/content.php:667 ../../object/Item.php:197
 msgid "like"
 msgstr "mag ich"
 
-#: ../../mod/content.php:668 ../../object/Item.php:197
+#: ../../mod/content.php:668 ../../object/Item.php:198
 msgid "dislike"
 msgstr "mag ich nicht"
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:200
 msgid "Share this"
 msgstr "Weitersagen"
 
-#: ../../mod/content.php:670 ../../object/Item.php:199
+#: ../../mod/content.php:670 ../../object/Item.php:200
 msgid "share"
 msgstr "Teilen"
 
-#: ../../mod/content.php:694 ../../object/Item.php:560
+#: ../../mod/content.php:694 ../../object/Item.php:563
 msgid "Bold"
 msgstr "Fett"
 
-#: ../../mod/content.php:695 ../../object/Item.php:561
+#: ../../mod/content.php:695 ../../object/Item.php:564
 msgid "Italic"
 msgstr "Kursiv"
 
-#: ../../mod/content.php:696 ../../object/Item.php:562
+#: ../../mod/content.php:696 ../../object/Item.php:565
 msgid "Underline"
 msgstr "Unterstrichen"
 
-#: ../../mod/content.php:697 ../../object/Item.php:563
+#: ../../mod/content.php:697 ../../object/Item.php:566
 msgid "Quote"
 msgstr "Zitat"
 
-#: ../../mod/content.php:698 ../../object/Item.php:564
+#: ../../mod/content.php:698 ../../object/Item.php:567
 msgid "Code"
 msgstr "Code"
 
-#: ../../mod/content.php:699 ../../object/Item.php:565
+#: ../../mod/content.php:699 ../../object/Item.php:568
 msgid "Image"
 msgstr "Bild"
 
-#: ../../mod/content.php:700 ../../object/Item.php:566
+#: ../../mod/content.php:700 ../../object/Item.php:569
 msgid "Link"
 msgstr "Verweis"
 
-#: ../../mod/content.php:701 ../../object/Item.php:567
+#: ../../mod/content.php:701 ../../object/Item.php:570
 msgid "Video"
 msgstr "Video"
 
-#: ../../mod/content.php:736 ../../object/Item.php:180
+#: ../../mod/content.php:736 ../../object/Item.php:181
 msgid "add star"
 msgstr "markieren"
 
-#: ../../mod/content.php:737 ../../object/Item.php:181
+#: ../../mod/content.php:737 ../../object/Item.php:182
 msgid "remove star"
 msgstr "Markierung entfernen"
 
-#: ../../mod/content.php:738 ../../object/Item.php:182
+#: ../../mod/content.php:738 ../../object/Item.php:183
 msgid "toggle star status"
 msgstr "Markierung umschalten"
 
-#: ../../mod/content.php:741 ../../object/Item.php:185
+#: ../../mod/content.php:741 ../../object/Item.php:186
 msgid "starred"
 msgstr "markiert"
 
-#: ../../mod/content.php:742 ../../object/Item.php:186
+#: ../../mod/content.php:742 ../../object/Item.php:187
 msgid "add tag"
 msgstr "Tag hinzufügen"
 
-#: ../../mod/content.php:746 ../../object/Item.php:120
+#: ../../mod/content.php:746 ../../object/Item.php:121
 msgid "save to folder"
 msgstr "In Ordner speichern"
 
-#: ../../mod/content.php:818 ../../object/Item.php:229
+#: ../../mod/content.php:819 ../../object/Item.php:231
 msgid "to"
 msgstr "zu"
 
-#: ../../mod/content.php:819 ../../object/Item.php:230
+#: ../../mod/content.php:820 ../../object/Item.php:232
 msgid "Wall-to-Wall"
 msgstr "Wall-to-Wall"
 
-#: ../../mod/content.php:820 ../../object/Item.php:231
+#: ../../mod/content.php:821 ../../object/Item.php:233
 msgid "via Wall-To-Wall:"
 msgstr "via Wall-To-Wall:"
 
@@ -2089,7 +2088,7 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
 #: ../../addon/public_server/public_server.php:62
 #: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3359
-#: ../../boot.php:803 ../../addon.old/facebook/facebook.php:702
+#: ../../boot.php:821 ../../addon.old/facebook/facebook.php:702
 #: ../../addon.old/facebook/facebook.php:1200
 #: ../../addon.old/fbpost/fbpost.php:661
 #: ../../addon.old/public_server/public_server.php:62
@@ -2103,7 +2102,7 @@ msgid ""
 "Password reset failed."
 msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: ../../mod/lostpass.php:83 ../../boot.php:940
+#: ../../mod/lostpass.php:83 ../../boot.php:960
 msgid "Password Reset"
 msgstr "Passwort zurücksetzen"
 
@@ -2757,7 +2756,7 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela
 msgid "Invalid contact."
 msgstr "Ungültiger Kontakt."
 
-#: ../../mod/notes.php:44 ../../boot.php:1718
+#: ../../mod/notes.php:44 ../../boot.php:1752
 msgid "Personal Notes"
 msgstr "Persönliche Notizen"
 
@@ -2766,7 +2765,7 @@ msgstr "Persönliche Notizen"
 #: ../../addon/privacy_image_cache/privacy_image_cache.php:263
 #: ../../addon/fbpost/fbpost.php:267
 #: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681
+#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
 #: ../../addon.old/facebook/facebook.php:770
 #: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
 #: ../../addon.old/fbpost/fbpost.php:267
@@ -2775,26 +2774,32 @@ msgstr "Persönliche Notizen"
 msgid "Save"
 msgstr "Speichern"
 
-#: ../../mod/uimport.php:41
+#: ../../mod/uimport.php:50 ../../mod/register.php:190
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+
+#: ../../mod/uimport.php:64
 msgid "Import"
 msgstr "Import"
 
-#: ../../mod/uimport.php:43
+#: ../../mod/uimport.php:66
 msgid "Move account"
 msgstr "Account umziehen"
 
-#: ../../mod/uimport.php:44
+#: ../../mod/uimport.php:67
 msgid ""
-"You can move here an account from another Friendica server. <br>\r\n"
-"                            You need to export your account form the old server and upload it here. We will create here your old account with all your contacts. We will try also to inform you friends that you moved here.<br>\r\n"
-"                            <b>This feature is experimental. We can't move here contacts from ostatus network (statusnet/identi.ca) or from diaspora"
+"You can import an account from another Friendica server. <br>\r\n"
+"                            You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.<br>\r\n"
+"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
 msgstr "Du kannst deinen Account auf einen anderen Friendica Server umziehen.<br>Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.<br><b>Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden.</b>"
 
-#: ../../mod/uimport.php:47
+#: ../../mod/uimport.php:70
 msgid "Account file"
 msgstr "Account Datei"
 
-#: ../../mod/uimport.php:47
+#: ../../mod/uimport.php:70
 msgid ""
 "To export your accont, go to \"Settings->Export your porsonal data\" and "
 "select \"Export account\""
@@ -2831,7 +2836,7 @@ msgstr "Kein Empfänger."
 
 #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
 #: ../../mod/message.php:242 ../../mod/message.php:250
-#: ../../include/conversation.php:898 ../../include/conversation.php:916
+#: ../../include/conversation.php:902 ../../include/conversation.php:920
 msgid "Please enter a link URL:"
 msgstr "Bitte gib die URL des Links ein:"
 
@@ -2914,7 +2919,7 @@ msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen
 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103
 #: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7
 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1694
+#: ../../boot.php:1728
 msgid "Profile"
 msgstr "Profil"
 
@@ -3085,7 +3090,7 @@ msgstr "Gruppe nicht gefunden."
 msgid "Group name changed."
 msgstr "Gruppenname geändert."
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:318
+#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
 msgid "Permission denied"
 msgstr "Zugriff verweigert"
 
@@ -3137,7 +3142,7 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 msgid "No contacts."
 msgstr "Keine Kontakte."
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:618
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
 msgid "View Contacts"
 msgstr "Kontakte anzeigen"
 
@@ -3168,12 +3173,6 @@ msgstr "Registrierungsanfrage auf %s"
 msgid "Your registration is pending approval by the site owner."
 msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: ../../mod/register.php:190
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
-
 #: ../../mod/register.php:218
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
@@ -3225,7 +3224,7 @@ msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstab
 msgid "Choose a nickname: "
 msgstr "Spitznamen wählen: "
 
-#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:902
+#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:920
 msgid "Register"
 msgstr "Registrieren"
 
@@ -3235,7 +3234,7 @@ msgstr "Personensuche"
 
 #: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
 #: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1437
+#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1444
 #: ../../include/diaspora.php:1835 ../../include/conversation.php:125
 #: ../../include/conversation.php:253
 #: ../../addon.old/communityhome/communityhome.php:163
@@ -3282,7 +3281,7 @@ msgid "Access denied."
 msgstr "Zugriff verweigert."
 
 #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:51 ../../boot.php:1701
+#: ../../include/nav.php:51 ../../boot.php:1735
 msgid "Photos"
 msgstr "Bilder"
 
@@ -3311,8 +3310,8 @@ msgstr "Konnte den Originalbeitrag nicht finden."
 msgid "Empty post discarded."
 msgstr "Leerer Beitrag wurde verworfen."
 
-#: ../../mod/item.php:420 ../../mod/wall_upload.php:133
-#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149
+#: ../../mod/item.php:420 ../../mod/wall_upload.php:135
+#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
 #: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Pinnwand-Bilder"
@@ -3377,7 +3376,7 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue
 msgid "Unable to process image"
 msgstr "Bild konnte nicht verarbeitet werden"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
 #, php-format
 msgid "Image exceeds size limit of %d"
 msgstr "Bildgröße überschreitet das Limit von %d"
@@ -4160,7 +4159,7 @@ msgstr "FTP Nutzername"
 msgid "FTP Password"
 msgstr "FTP Passwort"
 
-#: ../../mod/profile.php:21 ../../boot.php:1089
+#: ../../mod/profile.php:21 ../../boot.php:1123
 msgid "Requested profile is not available."
 msgstr "Das angefragte Profil ist nicht vorhanden."
 
@@ -4230,8 +4229,8 @@ msgid ""
 "Account not found and OpenID registration is not permitted on this site."
 msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: ../../mod/openid.php:93 ../../include/auth.php:98
-#: ../../include/auth.php:161
+#: ../../mod/openid.php:93 ../../include/auth.php:110
+#: ../../include/auth.php:173
 msgid "Login failed."
 msgstr "Anmeldung fehlgeschlagen."
 
@@ -4268,8 +4267,8 @@ msgstr "Anwendungen"
 msgid "No installed applications."
 msgstr "Keine Applikationen installiert."
 
-#: ../../mod/search.php:96 ../../include/text.php:678
-#: ../../include/text.php:679 ../../include/nav.php:91
+#: ../../mod/search.php:96 ../../include/text.php:685
+#: ../../include/text.php:686 ../../include/nav.php:91
 msgid "Search"
 msgstr "Suche"
 
@@ -4561,28 +4560,28 @@ msgstr "Alter: "
 msgid "Edit/Manage Profiles"
 msgstr "Verwalte/Editiere Profile"
 
-#: ../../mod/profiles.php:689 ../../boot.php:1207
+#: ../../mod/profiles.php:689 ../../boot.php:1241
 msgid "Change profile photo"
 msgstr "Profilbild ändern"
 
-#: ../../mod/profiles.php:690 ../../boot.php:1208
+#: ../../mod/profiles.php:690 ../../boot.php:1242
 msgid "Create New Profile"
 msgstr "Neues Profil anlegen"
 
-#: ../../mod/profiles.php:701 ../../boot.php:1218
+#: ../../mod/profiles.php:701 ../../boot.php:1252
 msgid "Profile Image"
 msgstr "Profilbild"
 
-#: ../../mod/profiles.php:703 ../../boot.php:1221
+#: ../../mod/profiles.php:703 ../../boot.php:1255
 msgid "visible to everybody"
 msgstr "sichtbar für jeden"
 
-#: ../../mod/profiles.php:704 ../../boot.php:1222
+#: ../../mod/profiles.php:704 ../../boot.php:1256
 msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../mod/filer.php:29 ../../include/conversation.php:902
-#: ../../include/conversation.php:920
+#: ../../mod/filer.php:29 ../../include/conversation.php:906
+#: ../../include/conversation.php:924
 msgid "Save to Folder:"
 msgstr "In diesen Ordner verschieben:"
 
@@ -4706,17 +4705,17 @@ msgid "Gender: "
 msgstr "Geschlecht:"
 
 #: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
-#: ../../boot.php:1243
+#: ../../boot.php:1277
 msgid "Gender:"
 msgstr "Geschlecht:"
 
 #: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
-#: ../../boot.php:1246
+#: ../../boot.php:1280
 msgid "Status:"
 msgstr "Status:"
 
 #: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
-#: ../../boot.php:1248
+#: ../../boot.php:1282
 msgid "Homepage:"
 msgstr "Homepage:"
 
@@ -5586,7 +5585,7 @@ msgstr "Aktiviere Planeten Plugin"
 #: ../../addon/communityhome/communityhome.php:34
 #: ../../addon/communityhome/twillingham/communityhome.php:28
 #: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:927
+#: ../../include/nav.php:64 ../../boot.php:946
 #: ../../addon.old/communityhome/communityhome.php:28
 #: ../../addon.old/communityhome/communityhome.php:34
 #: ../../addon.old/communityhome/twillingham/communityhome.php:28
@@ -5626,7 +5625,7 @@ msgid "Latest likes"
 msgstr "Neueste Favoriten"
 
 #: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1435
+#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1442
 #: ../../include/conversation.php:117 ../../include/conversation.php:245
 #: ../../addon.old/communityhome/communityhome.php:155
 msgid "event"
@@ -5780,7 +5779,7 @@ msgstr "Tage"
 #: ../../addon/dav/common/wdcal_edit.inc.php:254
 #: ../../addon/dav/common/wdcal_edit.inc.php:270
 #: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:231
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:254
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:270
@@ -5791,7 +5790,7 @@ msgstr "Sonntag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:235
 #: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:235
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:274
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:308
@@ -5799,35 +5798,35 @@ msgid "Monday"
 msgstr "Montag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:238
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:277
 msgid "Tuesday"
 msgstr "Dienstag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:241
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:280
 msgid "Wednesday"
 msgstr "Mittwoch"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:244
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:283
 msgid "Thursday"
 msgstr "Donnerstag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:247
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:286
 msgid "Friday"
 msgstr "Freitag"
 
 #: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:915
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:250
 #: ../../addon.old/dav/common/wdcal_edit.inc.php:289
 msgid "Saturday"
@@ -8215,218 +8214,218 @@ msgstr "neuer"
 msgid "older"
 msgstr "älter"
 
-#: ../../include/text.php:597
+#: ../../include/text.php:604
 msgid "No contacts"
 msgstr "Keine Kontakte"
 
-#: ../../include/text.php:606
+#: ../../include/text.php:613
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d Kontakt"
 msgstr[1] "%d Kontakte"
 
-#: ../../include/text.php:719
+#: ../../include/text.php:726
 msgid "poke"
 msgstr "anstupsen"
 
-#: ../../include/text.php:719 ../../include/conversation.php:210
+#: ../../include/text.php:726 ../../include/conversation.php:210
 msgid "poked"
 msgstr "stupste"
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "ping"
 msgstr "anpingen"
 
-#: ../../include/text.php:720
+#: ../../include/text.php:727
 msgid "pinged"
 msgstr "pingte"
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prod"
 msgstr "knuffen"
 
-#: ../../include/text.php:721
+#: ../../include/text.php:728
 msgid "prodded"
 msgstr "knuffte"
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slap"
 msgstr "ohrfeigen"
 
-#: ../../include/text.php:722
+#: ../../include/text.php:729
 msgid "slapped"
 msgstr "ohrfeigte"
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "finger"
 msgstr "befummeln"
 
-#: ../../include/text.php:723
+#: ../../include/text.php:730
 msgid "fingered"
 msgstr "befummelte"
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuff"
 msgstr "eine Abfuhr erteilen"
 
-#: ../../include/text.php:724
+#: ../../include/text.php:731
 msgid "rebuffed"
 msgstr "abfuhrerteilte"
 
-#: ../../include/text.php:736
+#: ../../include/text.php:743
 msgid "happy"
 msgstr "glücklich"
 
-#: ../../include/text.php:737
+#: ../../include/text.php:744
 msgid "sad"
 msgstr "traurig"
 
-#: ../../include/text.php:738
+#: ../../include/text.php:745
 msgid "mellow"
 msgstr "sanft"
 
-#: ../../include/text.php:739
+#: ../../include/text.php:746
 msgid "tired"
 msgstr "müde"
 
-#: ../../include/text.php:740
+#: ../../include/text.php:747
 msgid "perky"
 msgstr "frech"
 
-#: ../../include/text.php:741
+#: ../../include/text.php:748
 msgid "angry"
 msgstr "sauer"
 
-#: ../../include/text.php:742
+#: ../../include/text.php:749
 msgid "stupified"
 msgstr "verblüfft"
 
-#: ../../include/text.php:743
+#: ../../include/text.php:750
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: ../../include/text.php:744
+#: ../../include/text.php:751
 msgid "interested"
 msgstr "interessiert"
 
-#: ../../include/text.php:745
+#: ../../include/text.php:752
 msgid "bitter"
 msgstr "verbittert"
 
-#: ../../include/text.php:746
+#: ../../include/text.php:753
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: ../../include/text.php:747
+#: ../../include/text.php:754
 msgid "alive"
 msgstr "lebendig"
 
-#: ../../include/text.php:748
+#: ../../include/text.php:755
 msgid "annoyed"
 msgstr "verärgert"
 
-#: ../../include/text.php:749
+#: ../../include/text.php:756
 msgid "anxious"
 msgstr "unruhig"
 
-#: ../../include/text.php:750
+#: ../../include/text.php:757
 msgid "cranky"
 msgstr "schrullig"
 
-#: ../../include/text.php:751
+#: ../../include/text.php:758
 msgid "disturbed"
 msgstr "verstört"
 
-#: ../../include/text.php:752
+#: ../../include/text.php:759
 msgid "frustrated"
 msgstr "frustriert"
 
-#: ../../include/text.php:753
+#: ../../include/text.php:760
 msgid "motivated"
 msgstr "motiviert"
 
-#: ../../include/text.php:754
+#: ../../include/text.php:761
 msgid "relaxed"
 msgstr "entspannt"
 
-#: ../../include/text.php:755
+#: ../../include/text.php:762
 msgid "surprised"
 msgstr "überrascht"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "January"
 msgstr "Januar"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "February"
 msgstr "Februar"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "March"
 msgstr "März"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "April"
 msgstr "April"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "June"
 msgstr "Juni"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "July"
 msgstr "Juli"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "August"
 msgstr "August"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "September"
 msgstr "September"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "October"
 msgstr "Oktober"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "November"
 msgstr "November"
 
-#: ../../include/text.php:919
+#: ../../include/text.php:926
 msgid "December"
 msgstr "Dezember"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1012
 msgid "bytes"
 msgstr "Byte"
 
-#: ../../include/text.php:1032 ../../include/text.php:1044
+#: ../../include/text.php:1039 ../../include/text.php:1051
 msgid "Click to open/close"
 msgstr "Zum öffnen/schließen klicken"
 
-#: ../../include/text.php:1217 ../../include/user.php:236
+#: ../../include/text.php:1224 ../../include/user.php:236
 msgid "default"
 msgstr "Standard"
 
-#: ../../include/text.php:1229
+#: ../../include/text.php:1236
 msgid "Select an alternate language"
 msgstr "Alternative Sprache auswählen"
 
-#: ../../include/text.php:1439
+#: ../../include/text.php:1446
 msgid "activity"
 msgstr "Aktivität"
 
-#: ../../include/text.php:1442
+#: ../../include/text.php:1449
 msgid "post"
 msgstr "Beitrag"
 
-#: ../../include/text.php:1597
+#: ../../include/text.php:1604
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
@@ -8462,22 +8461,31 @@ msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendic
 msgid "Error! I can't import this file: DB schema version is not compatible."
 msgstr "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel."
 
-#: ../../include/uimport.php:92
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+
+#: ../../include/uimport.php:104
 msgid "User creation error"
 msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: ../../include/uimport.php:110
+#: ../../include/uimport.php:122
 msgid "User profile creation error"
 msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: ../../include/uimport.php:155
+#: ../../include/uimport.php:167
 #, php-format
 msgid "%d contact not imported"
 msgid_plural "%d contacts not imported"
 msgstr[0] "%d Kontakt nicht importiert"
 msgstr[1] "%d Kontakte nicht importiert"
 
-#: ../../include/uimport.php:233
+#: ../../include/uimport.php:245
 msgid "Done. You can now login with your username and password"
 msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
 
@@ -8512,7 +8520,7 @@ msgstr "Neue Gruppe erstellen"
 msgid "Contacts not in any group"
 msgstr "Kontakte in keiner Gruppe"
 
-#: ../../include/nav.php:46 ../../boot.php:926
+#: ../../include/nav.php:46 ../../boot.php:945
 msgid "Logout"
 msgstr "Abmelden"
 
@@ -8520,7 +8528,7 @@ msgstr "Abmelden"
 msgid "End this session"
 msgstr "Diese Sitzung beenden"
 
-#: ../../include/nav.php:49 ../../boot.php:1687
+#: ../../include/nav.php:49 ../../boot.php:1721
 msgid "Status"
 msgstr "Status"
 
@@ -8600,11 +8608,11 @@ msgstr "Verwalten"
 msgid "Manage other pages"
 msgstr "Andere Seiten verwalten"
 
-#: ../../include/nav.php:138 ../../boot.php:1201
+#: ../../include/nav.php:138 ../../boot.php:1235
 msgid "Profiles"
 msgstr "Profile"
 
-#: ../../include/nav.php:138 ../../boot.php:1201
+#: ../../include/nav.php:138 ../../boot.php:1235
 msgid "Manage/edit profiles"
 msgstr "Profile verwalten/editieren"
 
@@ -8679,17 +8687,17 @@ msgstr "Alles"
 msgid "Categories"
 msgstr "Kategorien"
 
-#: ../../include/auth.php:35
+#: ../../include/auth.php:36
 msgid "Logged out."
 msgstr "Abgemeldet."
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
 
-#: ../../include/auth.php:114
+#: ../../include/auth.php:126
 msgid "The error message was:"
 msgstr "Die Fehlermeldung lautete:"
 
@@ -9122,7 +9130,7 @@ msgstr "Bitte lade ein Profilbild hoch."
 msgid "Welcome back "
 msgstr "Willkommen zurück "
 
-#: ../../include/security.php:354
+#: ../../include/security.php:357
 msgid ""
 "The form security token was not correct. This probably happened because the "
 "form has been opened for too long (>3 hours) before submitting it."
@@ -9177,11 +9185,11 @@ msgstr "Nachricht/Beitrag"
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: ../../include/conversation.php:599 ../../object/Item.php:218
+#: ../../include/conversation.php:599 ../../object/Item.php:220
 msgid "Categories:"
 msgstr "Kategorien"
 
-#: ../../include/conversation.php:600 ../../object/Item.php:219
+#: ../../include/conversation.php:600 ../../object/Item.php:221
 msgid "Filed under:"
 msgstr "Abgelegt unter:"
 
@@ -9221,46 +9229,46 @@ msgstr "<span  %1$s>%2$d Leute</span> mögen das nicht."
 msgid "and"
 msgstr "und"
 
-#: ../../include/conversation.php:872
+#: ../../include/conversation.php:875
 #, php-format
 msgid ", and %d other people"
 msgstr " und %d andere"
 
-#: ../../include/conversation.php:873
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s like this."
 msgstr "%s mögen das."
 
-#: ../../include/conversation.php:873
+#: ../../include/conversation.php:877
 #, php-format
 msgid "%s don't like this."
 msgstr "%s mögen das nicht."
 
-#: ../../include/conversation.php:897 ../../include/conversation.php:915
+#: ../../include/conversation.php:901 ../../include/conversation.php:919
 msgid "Visible to <strong>everybody</strong>"
 msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: ../../include/conversation.php:899 ../../include/conversation.php:917
+#: ../../include/conversation.php:903 ../../include/conversation.php:921
 msgid "Please enter a video link/URL:"
 msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: ../../include/conversation.php:900 ../../include/conversation.php:918
+#: ../../include/conversation.php:904 ../../include/conversation.php:922
 msgid "Please enter an audio link/URL:"
 msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: ../../include/conversation.php:901 ../../include/conversation.php:919
+#: ../../include/conversation.php:905 ../../include/conversation.php:923
 msgid "Tag term:"
 msgstr "Tag:"
 
-#: ../../include/conversation.php:903 ../../include/conversation.php:921
+#: ../../include/conversation.php:907 ../../include/conversation.php:925
 msgid "Where are you right now?"
 msgstr "Wo hältst du dich jetzt gerade auf?"
 
-#: ../../include/conversation.php:904
+#: ../../include/conversation.php:908
 msgid "Delete item(s)?"
 msgstr "Einträge löschen?"
 
-#: ../../include/conversation.php:983
+#: ../../include/conversation.php:987
 msgid "permissions"
 msgstr "Zugriffsrechte"
 
@@ -9276,105 +9284,109 @@ msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
 msgid "This action is not available under your subscription plan."
 msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
 
-#: ../../boot.php:588
+#: ../../boot.php:604
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: ../../boot.php:591
+#: ../../boot.php:607
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: ../../boot.php:798
+#: ../../boot.php:816
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: ../../boot.php:800
+#: ../../boot.php:818
 #, php-format
 msgid "Update Error at %s"
 msgstr "Updatefehler bei %s"
 
-#: ../../boot.php:901
+#: ../../boot.php:919
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: ../../boot.php:929
+#: ../../boot.php:948
 msgid "Nickname or Email address: "
 msgstr "Spitzname oder E-Mail-Adresse: "
 
-#: ../../boot.php:930
+#: ../../boot.php:949
 msgid "Password: "
 msgstr "Passwort: "
 
-#: ../../boot.php:933
+#: ../../boot.php:950
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
+
+#: ../../boot.php:953
 msgid "Or login using OpenID: "
 msgstr "Oder melde dich mit deiner OpenID an: "
 
-#: ../../boot.php:939
+#: ../../boot.php:959
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: ../../boot.php:1050
+#: ../../boot.php:1084
 msgid "Requested account is not available."
 msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../boot.php:1127
+#: ../../boot.php:1161
 msgid "Edit profile"
 msgstr "Profil bearbeiten"
 
-#: ../../boot.php:1193
+#: ../../boot.php:1227
 msgid "Message"
 msgstr "Nachricht"
 
-#: ../../boot.php:1315 ../../boot.php:1401
+#: ../../boot.php:1349 ../../boot.php:1435
 msgid "g A l F d"
 msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../boot.php:1316 ../../boot.php:1402
+#: ../../boot.php:1350 ../../boot.php:1436
 msgid "F d"
 msgstr "d. F"
 
-#: ../../boot.php:1361 ../../boot.php:1442
+#: ../../boot.php:1395 ../../boot.php:1476
 msgid "[today]"
 msgstr "[heute]"
 
-#: ../../boot.php:1373
+#: ../../boot.php:1407
 msgid "Birthday Reminders"
 msgstr "Geburtstagserinnerungen"
 
-#: ../../boot.php:1374
+#: ../../boot.php:1408
 msgid "Birthdays this week:"
 msgstr "Geburtstage diese Woche:"
 
-#: ../../boot.php:1435
+#: ../../boot.php:1469
 msgid "[No description]"
 msgstr "[keine Beschreibung]"
 
-#: ../../boot.php:1453
+#: ../../boot.php:1487
 msgid "Event Reminders"
 msgstr "Veranstaltungserinnerungen"
 
-#: ../../boot.php:1454
+#: ../../boot.php:1488
 msgid "Events this week:"
 msgstr "Veranstaltungen diese Woche"
 
-#: ../../boot.php:1690
+#: ../../boot.php:1724
 msgid "Status Messages and Posts"
 msgstr "Statusnachrichten und Beiträge"
 
-#: ../../boot.php:1697
+#: ../../boot.php:1731
 msgid "Profile Details"
 msgstr "Profildetails"
 
-#: ../../boot.php:1714
+#: ../../boot.php:1748
 msgid "Events and Calendar"
 msgstr "Ereignisse und Kalender"
 
-#: ../../boot.php:1721
+#: ../../boot.php:1755
 msgid "Only You Can See This"
 msgstr "Nur du kannst das sehen"
 
-#: ../../index.php:380
+#: ../../index.php:398
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
 
index c7ba70053985c5efb823cc6b67f28ee29754d8ce..0fd4103cef2720e9687ea8a9912ddf4ae8946832 100644 (file)
@@ -603,9 +603,10 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
 $a->strings["Invalid contact."] = "Ungültiger Kontakt.";
 $a->strings["Personal Notes"] = "Persönliche Notizen";
 $a->strings["Save"] = "Speichern";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
 $a->strings["Import"] = "Import";
 $a->strings["Move account"] = "Account umziehen";
-$a->strings["You can move here an account from another Friendica server. <br>\r\n                            You need to export your account form the old server and upload it here. We will create here your old account with all your contacts. We will try also to inform you friends that you moved here.<br>\r\n                            <b>This feature is experimental. We can't move here contacts from ostatus network (statusnet/identi.ca) or from diaspora"] = "Du kannst deinen Account auf einen anderen Friendica Server umziehen.<br>Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.<br><b>Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden.</b>";
+$a->strings["You can import an account from another Friendica server. <br>\r\n                            You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.<br>\r\n                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "Du kannst deinen Account auf einen anderen Friendica Server umziehen.<br>Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.<br><b>Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden.</b>";
 $a->strings["Account file"] = "Account Datei";
 $a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
 $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
@@ -683,7 +684,6 @@ $a->strings["Failed to send email message. Here is the message that failed."] =
 $a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
 $a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
 $a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
 $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
 $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
 $a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
@@ -1806,6 +1806,8 @@ $a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
 $a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
 $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
 $a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
 $a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
 $a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
 $a->strings["%d contact not imported"] = array(
@@ -2004,6 +2006,7 @@ $a->strings["Update Error at %s"] = "Updatefehler bei %s";
 $a->strings["Create a New Account"] = "Neues Konto erstellen";
 $a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
 $a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
 $a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
 $a->strings["Forgot your password?"] = "Passwort vergessen?";
 $a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
index ef6e5cac141417820621cc39fd9528ee14df8b0c..af59203642f1b160b4fdf589a05b4181cb54c11b 100644 (file)
@@ -1,88 +1,6 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
-
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+@import url('../../diabook/style-network.css');
 
+/* There seem to be a stupid number of icons.  Can we do this better? Are they all actually used? */ 
 .icon.contacts {
   background-image: url("../diabook-aerith/icons/contacts.png");}
 .icon.notifications {
@@ -93,7 +11,6 @@
   background-image: url("../diabook-aerith/icons/messages.png");}
 .icon.community {
   background-image: url("../diabook-aerith/icons/community.png");}
-  
 .icon.drop     { background-image: url("../diabook-aerith/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-aerith/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-aerith/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-aerith/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-aerith/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-aerith/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-aerith/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-aerith/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-aerith/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-aerith/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-aerith/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-aerith/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-aerith/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-aerith/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-aerith/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-aerith/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-aerith/icons/camera.png");}
+.attach        { background-image: url("../diabook-aerith/icons/attach.png");}
+.video2        { background-image: url("../diabook-aerith/icons/video.png");}  
+.video         { background-image: url("../diabook-aerith/icons/video.png");}
+.audio2        { background-image: url("../diabook-aerith/icons/audio.png");}
+.audio         { background-image: url("../diabook-aerith/icons/audio.png");}
+.weblink       { background-image: url("../diabook-aerith/icons/weblink.png");}
+.globe         { background-image: url("../diabook-aerith/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-aerith/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-aerith/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
+.attachtype {background-image: url('../../../../images/content-types.png');}
 .icon.border.camera{
-  background-image: url("../diabook-aerith/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-aerith/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
+  background-image: url("../diabook-aerith/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-aerith/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+
+.hide-comments-outer {background-color: #fff;}
+
+a {color: #333333;}
 
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 1px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  background-color: #fff;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #3465A4;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
 #saved-search-ul .tool:hover,
 #nets-sidebar .tool:hover,
 #sidebar-group-list .tool:hover ,
 #fileas-sidebar .tool:hover {
        background: aliceBlue;
 }
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
+
 .tool a {
   color: #3465A4;
 }
-.tool a:hover {
-  text-decoration: none;
+
+nav a, nav a:active, nav a:visited, nav a:link, nav a:hover {
+color: #000;
 }
+
 /* popup notifications */
-div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #ff500f;
   background-color: #ff500f;
-  z-index: 100;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
@@ -539,47 +128,21 @@ background-image: -webkit-gradient(
        color-stop(0.82, rgb(255,255,255))
 );
 }
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
-}
+
+header #site-location {display: none;}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: black;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
 }
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-}
-/* nav */
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
   background: #ff500f;
   color: #000;
-  z-index: 99;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
@@ -597,95 +160,7 @@ background-image: -webkit-gradient(
        color-stop(0.82, rgb(255,255,255))
 );
 }
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
-  /*color: #1f1f1f;*/
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
-}
-
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
 
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -696,93 +171,21 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
-nav .nav-notify {
-  display: none;
-  position: absolute;
+ nav .nav-notify {
   background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
+
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;}
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-aerith/icons/messages.png");
-       }
+       background-image: url("../diabook-aerith/icons/messages.png");}
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-aerith/icons/notify.png");
-       }
+       background-image: url("../diabook-aerith/icons/notify.png");}
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-aerith/icons/contacts.png");
-       }
+       background-image: url("../diabook-aerith/icons/contacts.png");}
        
 nav #nav-apps-link.selected {
   background-color: #fff;
@@ -791,1327 +194,70 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #3465A4; /*bdcdd4;*/
+  background-color: #3465A4;
   color: #fff;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
-
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
 #profile_side a{
   color: #333;
 }
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: aliceBlue; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../diabook-aerith/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../diabook-aerith/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../diabook-aerith/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../diabook-aerith/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../diabook-aerith/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../diabook-aerith/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../diabook-aerith/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
--moz-border-bottom-colors: #dbdbdb;
-  -moz-border-top-colors: #999;
-  -moz-border-left-colors: #999;
-  -moz-border-right-colors: #dbdbdb;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums ul li a{
-  color: #3465A4;
-}
-.widget .tool.selected {
-  background: url("../diabook-aerith/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-span.sbox_l  {
-       background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
-}
+.menu-profile-list:hover{background: aliceBlue;}
 
-span.sbox_r  {
-       background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
-}
+.menu-profile-icon.home{background: url("../diabook-aerith/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{background: url("../diabook-aerith/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{background: url("../diabook-aerith/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{background: url("../diabook-aerith/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{background: url("../diabook-aerith/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{background: url("../diabook-aerith/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{background: url("../diabook-aerith/icons/pscontacts.png") no-repeat;}
 
-span.sbox input {
-       background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: auto;
-  padding: 0px 0px 0px 12px;
-}
+aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;}
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+#side-bar-photos-albums li{list-style-type: disc;}
+#side-bar-photos-albums ul li{margin-left: 30px;
+  padding-left: 0px;}
+#side-bar-photos-albums ul li a{color: #3465A4;}
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
-#birthday-wrapper a {
-       color: #3465A4;
-       }
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
+.widget .tool.selected {background: url("../diabook-aerith/icons/selected.png") no-repeat left center;}
+span.sbox_l  {background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left;}
+span.sbox_r  {background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left;}
+span.sbox input {background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left;}
+#birthday-wrapper a {color: #3465A4;}
 right_aside a{color: #3465A4;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
+
 .close_box             { 
                background-image: url("../diabook-aerith/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
-               }
-.close_box:hover       { 
-               background-image: url("../diabook-aerith/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
-               }
+               cursor: pointer;}
 
+.close_box:hover {background-image: url("../diabook-aerith/icons/close_box.png");}
 
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #3465A4;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
-
-
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px; 
+.tread-wrapper a{color: #3465A4;}
 
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-  background-color: #fff;
-  width: 500px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 1.6em ;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
+.wall-item-comment-wrapper {background-color: #fff;
+  width: 500px;}
 
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
+.button.creation2 {background-color: #3465A4;}
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
+#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;}
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
-.button.creation2 {
-    background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
+#acl-showall {background-image: url("../../../../images/show_all_off.png");}
 
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
+#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");}
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
+.acl-button-show {background-image: url("../../../../images/show_off.png");}
+.acl-button-hide {background-image: url("../../../../images/hide_off.png");}
+.acl-button-show.selected {background-image: url("../../../../images/show_on.png");}
+.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");}
 
-.profile-edit-side-div {
-  display: none;
-}
+ul.tabs li .active {background-color: #3465A4;}
 
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+.field .onoff a {background-image: url("../../../../images/onoff.jpg");}
 
-.required {
-  display: inline;
-  color: #B20202;
-}
+.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");}
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
@@ -2119,498 +265,17 @@ border-radius: 10px;
 height: 145px !important;
 width: 145px !important;
 }
+
 .lframe {
   float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #3465A4;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
 }
 
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
+.event-description:before {content: url('../../../../images/calendar.png');}
 
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
+.calendar.eventcal a {color: #3465A4;}
 
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2618,40 +283,5 @@ list-style-type: disc;
         padding-left: 3px;
         background-color: #EEE;
 }
-.photo-top-album-link{
-  color: #3465A4;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
+.photo-top-album-link{color: #3465A4;}
 
index 2b7d3df17391041d1a966fc792e72cd663fdfc01..c6c1fecfa6fbb636943566750536c1ddf56706a7 100644 (file)
@@ -1,99 +1,10 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../../diabook/style-profile.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
-
-.icon.contacts {
-  background-image: url("../diabook-aerith/icons/contacts.png");}
-.icon.notifications {
-  background-image: url("../diabook-aerith/icons/notifications.png");}
-.icon.notify {
-  background-image: url("../diabook-aerith/icons/notify.png");}
-.icon.messages {
-  background-image: url("../diabook-aerith/icons/messages.png");}
-.icon.community {
-  background-image: url("../diabook-aerith/icons/community.png");}
-  
+ .icon.contacts {background-image: url("../diabook-aerith/icons/contacts.png");}
+.icon.notifications {background-image: url("../diabook-aerith/icons/notifications.png");}
+.icon.notify {background-image: url("../diabook-aerith/icons/notify.png");}
+.icon.messages {background-image: url("../diabook-aerith/icons/messages.png");}
+.icon.community {background-image: url("../diabook-aerith/icons/community.png");}  
 .icon.drop     { background-image: url("../diabook-aerith/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-aerith/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-aerith/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-aerith/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-aerith/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-aerith/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-aerith/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-aerith/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-aerith/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-aerith/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-aerith/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-aerith/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-aerith/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-aerith/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-aerith/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-aerith/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-aerith/icons/camera.png");}
+.attach        { background-image: url("../diabook-aerith/icons/attach.png");}
+.video2        { background-image: url("../diabook-aerith/icons/video.png");}  
+.video         { background-image: url("../diabook-aerith/icons/video.png");}
+.audio2        { background-image: url("../diabook-aerith/icons/audio.png");}
+.audio         { background-image: url("../diabook-aerith/icons/audio.png");}
+.weblink       { background-image: url("../diabook-aerith/icons/weblink.png");}
+.globe         { background-image: url("../diabook-aerith/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-aerith/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-aerith/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../diabook-aerith/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-aerith/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
+.attachtype {background-image: url('../../../../images/content-types.png');}                     
+.icon.border.camera{background-image: url("../diabook-aerith/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-aerith/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+a {color: #333333;}
+
+#sidebar-group-list .tool:hover {background: #EEE;}
 
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  border-top: 1px solid #BDCDD4;
-
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #3465A4;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover {
-       background: #EEE;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
 div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #ff500f;
   background-color: #ff500f;
-  z-index: 100;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
@@ -539,47 +104,18 @@ background-image: -webkit-gradient(
        color-stop(0.82, rgb(255,255,255))
 );
 }
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
-}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
-  font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-}
-/* nav */
+  font-weight: bolder;}
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
   background: #ff500f;
   color: #1f1f1f;
-  z-index: 99;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
@@ -597,95 +133,23 @@ background-image: -webkit-gradient(
        color-stop(0.82, rgb(255,255,255))
 );
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
-  color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
+  color: #1f1f1f;}
+
 nav #banner a,
 nav #banner a:active,
 nav #banner a:visited,
 nav #banner a:link,
 nav #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
 }
 
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
-}
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -696,81 +160,10 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
   background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
        background-image: url("../diabook-aerith/icons/messages.png");
@@ -783,7 +176,7 @@ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selecte
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
        background-image: url("../diabook-aerith/icons/contacts.png");
        }
-       
+
 nav #nav-apps-link.selected {
  background-color: #fff;
   moz-border-radius: 5px 5px 0 0;
@@ -791,169 +184,11 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #3465A4; /*bdcdd4;*/
+  background-color: #3465A4;
   color: #fff;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  padding-top: 3px;
-  padding-bottom: 3px;
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #EEE;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
 .menu-profile-list.home{
        background: url("../diabook-aerith/icons/home.png") no-repeat;
        }
@@ -973,172 +208,10 @@ ul.menu-popup .empty {
        background: url("../diabook-aerith/icons/com_side.png") no-repeat;
        }
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
 aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
   background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 48px;
-  height: 48px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
+ }
+
 #side-bar-photos-albums li{
 list-style-type: disc;
 }
@@ -1149,780 +222,55 @@ list-style-type: disc;
 #side-bar-photos-albums ul li a{
   color: #3465A4;
 }
+
 .widget .tool.selected {
   background: url("../diabook-aerith/icons/selected.png") no-repeat left center;
 }
-/* widget: search */
+
 span.sbox_l  {
        background: white url('../diabook-aerith/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
 }
 
 span.sbox_r  {
        background: white url('../diabook-aerith/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
 }
 
 span.sbox input {
        background: white url('../diabook-aerith/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 611px;
-  padding: 0px 0px 0px 12px;
 }
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
-
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
 #birthday-wrapper a {
        color: #3465A4;
        }
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  /*padding-right: 10px;*/
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
 right_aside a{color: #3465A4;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
+
 .close_box             { 
                background-image: url("../diabook-aerith/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
                }
 .close_box:hover       { 
                background-image: url("../diabook-aerith/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
                }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #3465A4;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
 
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px;
-
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 1.6em ;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
+.tread-wrapper a{
+  color: #3465A4;
 }
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-        font-weight: bolder;
-        cursor: pointer;
-}
 .button.creation2 {
-    background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
+    background-color: #3465A4;}
+
 #acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
+   background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
 }
+
 #acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
+  background-image: url("../../../../images/show_all_off.png");}
+
 #acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
+  background-image: url("../../../../images/show_all_on.png");}
+
 .acl-button-show {
   background-image: url("../../../../images/show_off.png");
 }
@@ -1930,657 +278,37 @@ transition: all 0.2s ease-in-out;
   background-image: url("../../../../images/hide_off.png");
 }
 .acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
   background-image: url("../../../../images/show_on.png");
 }
 .acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
   background-image: url("../../../../images/hide_on.png");
 }
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
 
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.tabs li .active {
+    background-color: #3465A4;}
 
-.required {
-  display: inline;
-  color: #B20202;
+.field .onoff a {
+  background-image: url("../../../../images/onoff.jpg");
 }
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
 .oauthapp img.noicon {
   background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
+ }
+
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
+margin: 0px;}
 
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 48px;
-        height: 48px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
 .event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
+        content: url('../../../../images/calendar.png');}
 
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
   color: #3465A4;      
        }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
 
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2591,37 +319,3 @@ list-style-type: disc;
 .photo-top-album-link{
   color: #3465A4;
        }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
index 630b331e93e5433bd32904d7c5c8d992ceaa440e..3ca3fa1048538889eb271547d1dcc4becfefa3ab 100644 (file)
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../diabook/style.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-        list-style: none;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+/* Why are these paths so long?  They should probably become ../icons/ in the next revision */
 
 .icon.bb-url{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-url.png");}
 .icon.quote{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/quote.png");}
 .icon.bold{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bold.png");}
 .icon.underline{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/underline.png");}
 .icon.italic{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/italic.png");}
 .icon.bb-image{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-image.png");}
 .icon.bb-video{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png");
-  float: right;
-  margin-top: 2px;}
-  
-.icon.contacts {
+  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/bb-video.png");}
+ .icon.contacts {
   background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");}
 .icon.notifications {
   background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notifications.png");}
 .icon.lock             { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/lock.png");}
 .icon.unlock           { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unlock.png");}
 .icon.language    { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/language.png");}
-
-
-.camera        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
-.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
-.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");
-                         display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}                      
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");}
+.attach        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/attach.png");}
+.video2        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png"); }        
+.video         { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/video.png");}
+.audio2        { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");}
+.audio         { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/audio.png");}
+.weblink       { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");}
+.globe         { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/globe.png");}
+.unglobe       { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/unglobe.png");}
+.edit    {background-image: url("../../../view/theme/diabook/diabook-aerith/icons/pencil2.png");}
+.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");}                   
 .icon.on             { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/toogle_off.png"); background-repeat: no-repeat;}
 .icon.prev           { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/prev.png"); background-repeat: no-repeat;}
 .icon.next           { background-image: url("../../../view/theme/diabook/diabook-aerith/icons/next.png"); background-repeat: no-repeat;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 684px;
-  border-bottom: 1px solid #BDCDD4;
-  padding: 8px;
-}
+icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/camera.png");}
+.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/weblink.png");}
+av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
+       background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");}
+.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
+       background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");}
+nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");}
 
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-#jappix_mini {
-right: 45px !important;
-}
+.menu-profile-icon.home{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{
+       background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat;}
 
 
-h4 {
-  font-size: 1.1em;
-}
 
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
 
-.wall-item-name-link {
-/*  float: left;*/
-}
+a {color: #333333;}
 
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+#fileas-sidebar .tool:hover  {background: aliceBlue;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #3465A4;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-.intro-end {
-       border-bottom: 1px solid black;
-   clear: both;
-   margin-bottom: 25px;
-   padding-bottom: 25px;
-   width: 75%;
-       }
-.intro-form-end {
-       clear: both;
-       }
-.intro-fullname {
-       padding-bottom: 5px;
-   padding-top: 5px;
-       }
-.intro-wrapper-end {
-       clear: both;
-   padding-bottom: 5px;
-       }
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
-#fileas-sidebar .tool:hover  {
-       background: aliceBlue;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
-div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
-div.jGrowl div.notice {
-  background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
 /* header */
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #ff500f;
   background-color: #ff500f;
-  z-index: 100;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
@@ -587,7 +101,6 @@ background-image: -o-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,2
 background-image: -moz-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
 background-image: -webkit-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
 background-image: -ms-linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
-
 background-image: -webkit-gradient(
        linear,
        left bottom,
@@ -596,126 +109,30 @@ background-image: -webkit-gradient(
        color-stop(0.82, rgb(255,255,255))
 );
 }
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: banner;
-  width: 82%;
-  margin-left: 25%;
-}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
 }
+
 header #banner #logo-text {
  font-size: 20px!important;position: relative!important;top: -4px!important;
 }
+
 /* messages */
 #message-new {
   background: #3465A4;
   border: 1px solid #333;
-  width: 150px;
-}
-#message-new a {
-  color: #ffffff;
-  text-align: center;
-  display: block;
-  font-weight: bold;
-  padding: 1em 0px;
-    text-decoration: none;
-}
-.mail-list-wrapper {
-  background-color: #f6f7f8;
-  margin-bottom: 5px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-.mail-list-wrapper span {
-  display: block;
-  float: left;
-  width: 20%;
-  overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
-  width: 30%;
-  padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
-  display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
-  font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
-  padding: 4px 4px 0px 4px;
-  text-align: right;
-}
-.mail-list-wrapper .mail-delete {
-  float: right;
-}
-#mail-display-subject {
-  background-color: #f6f7f8;
-  color: #2d2d2d;
-  margin-bottom: 10px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-#mail-display-subject span {
-  float: left;
-  overflow: hidden;
-  padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
-  float: right;
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-#mail-display-subject:hover .mail-delete {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
 }
+
 /* nav */
-nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #ff500f;
+nav { background: #ff500f;
   color: #1f1f1f;
-  z-index: 99;
-  border-bottom: 1px;
+ border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
   background-image: linear-gradient(bottom, rgb(215,227,241) 26%, rgb(255,255,255) 82%);
@@ -732,95 +149,15 @@ background-image: -webkit-gradient(
        color-stop(0.82, rgb(255,255,255))
 );
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -831,94 +168,15 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
+background-color: #fff;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
+
 nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+font-size: 14px;
 }
 
-nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../../../view/theme/diabook/diabook-aerith/icons/messages.png");
-       }
-       
-/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../../../view/theme/diabook/diabook-aerith/icons/notify.png");
-       }
-       
-nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../../../view/theme/diabook/diabook-aerith/icons/contacts.png");
-       }
-       
 nav #nav-apps-link.selected {
  background-color: #fff;
   moz-border-radius: 5px 5px 0 0;
@@ -926,285 +184,18 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
 ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
+  background: #fff;}
+
 ul.menu-popup a:hover {
   background-color: #3465A4; /*bdcdd4;*/
   color: #fff;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 425px !important;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
 .menu-profile-list:hover{
        background: aliceBlue; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../../../view/theme/diabook/diabook-aerith/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 180px;
-  padding: 0px 10px 0px 20px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 173px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 173px;
-       }
-aside #side-peoplefind-url {
-       width: 173px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
 }
+
 aside #likes a, a:visited, a:link {
                color: #3465A4;
                text-decoration: none;
@@ -1215,41 +206,8 @@ aside #likes a:hover{
        text-decoration: underline;
        }
 
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;          
-       }
-#login-submit-wrapper{
 
-  margin-bottom: 12px;
-       }
-aside #login-submit-button{
-  margin-left: 0px!important;  
-       }
-aside #login-extra-links{
-  padding-top: 0px!important;  
-       }
+
 .group_selected {
   background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
   float: left;
@@ -1294,283 +252,24 @@ transition: all 0.2s ease-in-out;
   float: right;
   height: 10px;
 }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
+
 #side-bar-photos-albums ul li{
   margin-left: 30px;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
   color: #3465A4;
-}
-.widget .tool.selected {
-  background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 800px;
-  padding: 0px 0px 0px 12px;
-}
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 775px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
+.widget .tool.selected {
+  background: url("../../../view/theme/diabook/diabook-aerith/icons/selected.png") no-repeat left center;}
 
 #birthday-wrapper a {
        color: #3465A4;
        }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 775px;
-  padding-top: 10px;
-}
+
 .tread-wrapper a{
   color: #3465A4;
 }
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 780px;
-}
-.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-.wall-item-photo-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-photo-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-photo-container .wall-item-content {
-
-  max-width: 720px;
-  word-wrap: break-word;
-
-  margin-bottom: 14px;
-}
-.wall-item-photo-container .wall-item-content img {
-  max-width: 700px;
-}
-.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-photo-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-photo-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-photo-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-photo-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-photo-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 40px;
-  width: 650px;
-  border-bottom: 1px solid #D2D2D2;
-}
-.wall-item-photo-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-photo-container {
-  display: table;
-  width: 780px;
-}
-.my-comment-photo {
-  width: 48px;
-  margin-left: 40px;
-  margin-right: 32px;
-       }
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-}
-.comment-edit-text-empty {
-    width: 500px;
-    border: 1px solid #D2D2D2;
-    height: 3.2em;
-    color: #2d2d2d;
-}
-.comment-edit-text-full {
-  font-size: 12.5px;
-  height: 3.3em;
-  
-  border: 1px solid #D2D2D2;
-  width: 500px;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-    display: table-cell;
-}
-
 
 .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
   display: table-row;
@@ -1685,1261 +384,41 @@ body .pageheader{
   width: 700px;
   border-bottom: 1px solid hsl(198, 21%, 79%);
 }
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 1.6em ;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
+
 .comment-edit-preview {
   width: 500px;
   margin-top: 10px;
   background-color:  #fff797;
 }
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
+.button.creation2 {
+    background-color: #3465A4;
+        cursor: pointer;
 }
 
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
 
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
+/*ACL*/
 
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 785px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 783px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title, #profile-jot-form #jot-category {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 785px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 785px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 785px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    font-weight: bolder;
-        cursor: pointer;
-}
-.button.creation2 {
-    background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
 ul.tabs li .active {
     background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-//settings tabs
-ul.rs_tabs {
-  list-style-type: none;
-  font-size: 11px;
-}
-ul.rs_tabs li {
-  float: left;
-  margin-bottom: 30px;
-  clear: both;
-}
-ul.rs_tabs li .selected {
-    background-color: #3465A4;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    font-size: 13px;
-}
-.rs_tabs {
-    list-style-type: none;
-    font-size: 11px;
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.rs_tab.button {       
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: bolder;
-    padding: 3px;
-    color:  #333333;
-    text-decoration: none;
-       }
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-.suggest-select {
-width: 500px;
-height: 350px; 
-       }
-.message-to-select {
-       width: 400px;
-   height: 150px;
-       }
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
+    box-shadow: 2px 2px 2px #CFCFCF;}
 
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.rs_tabs li .selected {
+    background-color: #3465A4;}
 
-.required {
-  display: inline;
-  color: #B20202;
-}
+/*Photo */
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
 border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
 }
 
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-    color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-position: relative;
-width: 400px;
-padding: 20px;
-padding-top: 10px;
-margin: 0 0px;
-margin-bottom: 10px;
-background-color: white;
--webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
--moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-}
-.vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-description {
-margin-left: 10px;
-margin-right: 10px;
-font-size: 1.1em;
-font-weight: bolder;
-}
-.vevent .event-start, .vevent .event-end {
-
-margin-right: 20px;
-margin-bottom: 2px;
-margin-top: 2px;
-font-size: 0.9em;
-text-align: left;
-}
-.event-start .dtstart, .event-end .dtend {
-float: right;
-}
-
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content:   url("../../../view/theme/diabook/icons/events2.png") !important;
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
   color: #3465A4;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
 }
 
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-       float: left;
-   margin-right: 10px;
-       }
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-section .directory-item dl {
-  height: auto;
-  overflow: auto;      
-}
-section .directory-item dt {
-  float: left;
-  margin-left: 0px;
-  text-align: right;
-  color: #999;
-}
-section .directory-item dd {
-  float: left;
-  margin-left: 5px;
-}
-.directory-profile-wrapper {
-  float: left;
-  max-height: 178px;
-  overflow: hidden;
-  width: 635px;
-}
-.directory-copy-wrapper {
-  float: left;
-  overflow: hidden;    
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 800px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-
-section .directory-photo-wrapper {
-  float: left;
-  height: 200px;
-  width: 165px;  
-}
-.contact-name {
-  font-weight: bold;
-  font-size: 18px;
-  margin-bottom: -3px;
-  text-align: left;
-}
-.contact-details {
-  color: #999999;
-}
-.page-type {
-  font-size: 10px;
-  font-style: italic;
-}
-.directory-detailscolumn-wrapper {
-  float: left; 
-  width: 305px;
-  margin-right: 10px;  
-}
-.directory-profile-wrapper dl {
-  margin-top: 3px;
-  margin-bottom: 3px;
-}
-.directory-profile-title {
-  font-weight: bold;
-  margin-bottom: 3px;
-  font-size: 14px;
-}
-#side-bar-photos-albums{
-       margin-top: 15px;       
-}
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2949,38 +428,4 @@ section .directory-photo-wrapper {
 }
 .photo-top-album-link{
   color: #3465A4;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
+}
\ No newline at end of file
index 123792b656ad3f9c1c45a6c3d23878b1540c6cf8..873cbb26fa52cb4adedac8e9e682fd7397b76067 100644 (file)
@@ -1,88 +1,6 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
-
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+@import url('../../diabook/style-network.css');
 
+/* There seem to be a stupid number of icons.  Can we do this better? Are they all actually used? */ 
 .icon.contacts {
   background-image: url("../diabook-blue/icons/contacts.png");}
 .icon.notifications {
@@ -93,7 +11,6 @@
   background-image: url("../diabook-blue/icons/messages.png");}
 .icon.community {
   background-image: url("../diabook-blue/icons/community.png");}
-  
 .icon.drop     { background-image: url("../diabook-blue/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-blue/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-blue/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-blue/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-blue/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-blue/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-blue/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-blue/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-blue/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-blue/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-blue/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-blue/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-blue/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-blue/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-blue/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-blue/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-blue/icons/camera.png");}
+.attach        { background-image: url("../diabook-blue/icons/attach.png");}
+.video2        { background-image: url("../diabook-blue/icons/video.png");}    
+.video         { background-image: url("../diabook-blue/icons/video.png");}
+.audio2        { background-image: url("../diabook-blue/icons/audio.png");}
+.audio         { background-image: url("../diabook-blue/icons/audio.png");}
+.weblink       { background-image: url("../diabook-blue/icons/weblink.png");}
+.globe         { background-image: url("../diabook-blue/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-blue/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-blue/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
+.attachtype {background-image: url('../../../../images/content-types.png');}
 .icon.border.camera{
-  background-image: url("../diabook-blue/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-blue/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
+  background-image: url("../diabook-blue/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-blue/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+
+.hide-comments-outer {background-color: #fff;}
+
+a {color: #333333;}
 
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 1px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  background-color: #fff;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #1872A2;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
 #saved-search-ul .tool:hover,
 #nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
+#sidebar-group-list .tool:hover ,
 #fileas-sidebar .tool:hover {
-       background: #308DBF;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
+       background: aliceBlue;
 }
+
 .tool a {
-  color: ##3F8FBA;
+  color: #333333;
 }
-.tool a:hover {
-  text-decoration: none;
+
+nav a, nav a:active, nav a:visited, nav a:link, nav a:hover {
+color: #fff;
 }
+
 /* popup notifications */
-div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #1872a2;
   background-color: #1872a2;
-  z-index: 100;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
 }
+
+header #site-location {display: none;}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
- font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
+  color: #fff;
+  font-weight: bolder;
 }
-/* nav */
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
   background: #1872a2;
-  color: #ffffff;
-  z-index: 99;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
+  color: #fff;
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   background-color: #308dbf;  
   position: relative;
@@ -671,1408 +140,88 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
-nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #ff0000;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
-}
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+ nav .nav-notify {
+  border: 1px solid black;
 }
 
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;}
+
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-blue/icons/messages2.png");
-       }
+       background-image: url("../diabook-blue/icons/messages.png");}
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-blue/icons/notify2.png");
-       }
+       background-image: url("../diabook-blue/icons/notify.png");}
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-blue/icons/contacts2.png");
-       }
+       background-image: url("../diabook-blue/icons/contacts.png");}
        
 nav #nav-apps-link.selected {
-  background-color: #364e59;
-}
-
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
+  background-color: #364e59;;
+  moz-border-radius: 5px 5px 0 0;
+-webkit-border-radius: 5px 5px 0 0;
+border-radius: 5px 5px 0 0;
 }
 
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #308DBF; /*bdcdd4;*/
+  background-color: #308DBF;
   color: #fff;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
 
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
+.menu-profile-list:hover{background: #308DBF;}
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
+.menu-profile-icon.home{background: url("../diabook-blue/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{background: url("../diabook-blue/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{background: url("../diabook-blue/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{background: url("../diabook-blue/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{background: url("../diabook-blue/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{background: url("../diabook-blue/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{background: url("../diabook-blue/icons/pscontacts.png") no-repeat;}
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #308DBF;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-       
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../diabook-blue/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../diabook-blue/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../diabook-blue/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../diabook-blue/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../diabook-blue/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../diabook-blue/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../diabook-blue/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-               height: 17px;
-               padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
--moz-border-bottom-colors: #dbdbdb;
-  -moz-border-top-colors: #999;
-  -moz-border-left-colors: #999;
-  -moz-border-right-colors: #dbdbdb;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums ul li a{
-  color: #1872A2;
-}
-.widget .tool.selected {
-  background: url("../diabook-blue/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-span.sbox_l  {
-       background: white url('../diabook-blue/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
-}
+aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;}
 
-span.sbox_r  {
-       background: white url('../diabook-blue/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
-}
+#side-bar-photos-albums li{list-style-type: disc;}
+#side-bar-photos-albums ul li{margin-left: 30px;
+  padding-left: 0px;}
+#side-bar-photos-albums ul li a{color: #1872a2;}
 
-span.sbox input {
-       background: white url('../diabook-blue/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: auto;
-  padding: 0px 0px 0px 12px;
-}
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+.widget .tool.selected {background: url("../diabook-blue/icons/selected.png") no-repeat left center;}
+span.sbox_l  {background: white url('../diabook-blue/icons/srch_l.gif') no-repeat top left;}
+span.sbox_r  {background: white url('../diabook-blue/icons/srch_r.gif') no-repeat top left;}
+span.sbox input {background: white url('../diabook-blue/icons/srch_bg.gif') repeat-x top left;}
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
+right_aside a{color: #1872a2;}
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
-right_aside a{color: #1872A2;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
 .close_box             { 
                background-image: url("../diabook-blue/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
-               }
-.close_box:hover       { 
-               background-image: url("../diabook-blue/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
-               }
-               
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #1872A2;
-}
+               cursor: pointer;}
 
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
+.close_box:hover {background-image: url("../diabook-blue/icons/close_box.png");}
 
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
+.tread-wrapper a{color: #1872a2;}
 
+.wall-item-comment-wrapper {background-color: #fff;
+  width: 500px;}
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
+.button.creation2 {background-color: #055580;}
 
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
+#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;}
 
-.wall-item-container .wall-item-content {
+#acl-showall {background-image: url("../../../../images/show_all_off.png");}
 
-  max-width: 420px;
-  word-wrap: break-word;
+#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");}
 
+.acl-button-show {background-image: url("../../../../images/show_off.png");}
+.acl-button-hide {background-image: url("../../../../images/hide_off.png");}
+.acl-button-show.selected {background-image: url("../../../../images/show_on.png");}
+.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");}
 
-}
+ul.tabs li .active {background-color: #055580;}
 
-.wall-item-container .wall-item-content img {
-  max-width: 400px; 
+.field .onoff a {background-image: url("../../../../images/onoff.jpg");}
 
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-  background-color: #fff;
-  width: 500px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
+.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");}
 
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
-.button.creation2 {
-    background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
-
-.required {
-  display: inline;
-  color: #B20202;
-}
-
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
@@ -2080,498 +229,17 @@ border-radius: 10px;
 height: 145px !important;
 width: 145px !important;
 }
+
 .lframe {
   float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -20px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #1872A2;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
 }
 
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
+.event-description:before {content: url('../../../../images/calendar.png');}
 
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
+.calendar.eventcal a {color: #1872a2;}
 
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2579,40 +247,5 @@ list-style-type: disc;
         padding-left: 3px;
         background-color: #EEE;
 }
-.photo-top-album-link{
-  color: #1872A2;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
+.photo-top-album-link{color: #1872a2;}
 
index b8064c9c0feb01460f43241b125d7f4a2943a18d..fb21d7e57896276d31c964e81a77d4b65aac5ad5 100644 (file)
@@ -1,99 +1,10 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../../diabook/style-profile.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
-
-.icon.contacts {
-  background-image: url("../diabook-blue/icons/contacts.png");}
-.icon.notifications {
-  background-image: url("../diabook-blue/icons/notifications.png");}
-.icon.notify {
-  background-image: url("../diabook-blue/icons/notify.png");}
-.icon.messages {
-  background-image: url("../diabook-blue/icons/messages.png");}
-.icon.community {
-  background-image: url("../diabook-blue/icons/community.png");}
-  
+ .icon.contacts {background-image: url("../diabook-blue/icons/contacts.png");}
+.icon.notifications {background-image: url("../diabook-blue/icons/notifications.png");}
+.icon.notify {background-image: url("../diabook-blue/icons/notify.png");}
+.icon.messages {background-image: url("../diabook-blue/icons/messages.png");}
+.icon.community {background-image: url("../diabook-blue/icons/community.png");}  
 .icon.drop     { background-image: url("../diabook-blue/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-blue/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-blue/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-blue/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-blue/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-blue/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-blue/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-blue/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-blue/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-blue/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-blue/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-blue/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-blue/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-blue/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-blue/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-blue/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-blue/icons/camera.png");}
+.attach        { background-image: url("../diabook-blue/icons/attach.png");}
+.video2        { background-image: url("../diabook-blue/icons/video.png");}    
+.video         { background-image: url("../diabook-blue/icons/video.png");}
+.audio2        { background-image: url("../diabook-blue/icons/audio.png");}
+.audio         { background-image: url("../diabook-blue/icons/audio.png");}
+.weblink       { background-image: url("../diabook-blue/icons/weblink.png");}
+.globe         { background-image: url("../diabook-blue/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-blue/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-blue/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../diabook-blue/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-blue/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
+.attachtype {background-image: url('../../../../images/content-types.png');}                     
+.icon.border.camera{background-image: url("../diabook-blue/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-blue/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+a {color: #333333;}
+
+
+#sidebar-group-list .tool:hover {background: #EEE;}
 
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  border-top: 1px solid #BDCDD4;
-
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #1872A2;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover {
-       background: #EEE;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
 div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #1872a2;
   background-color: #1872a2;
-  z-index: 100;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
- font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-}
-/* nav */
+  font-weight: bolder;}
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
   background: #1872a2;
   color: #ffffff;
-  z-index: 99;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
+  color: #ffffff;}
+
 nav #banner a,
 nav #banner a:active,
 nav #banner a:visited,
 nav #banner a:link,
 nav #banner a:hover {
   color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
 
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
-  background-color: #308dbf;  
   position: relative;
   height: 22px;
   padding: 5px;
@@ -671,259 +129,35 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
   background-color: #ff0000;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
-}
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+  border: 1px solid black;
 }
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-blue/icons/messages2.png");
+       background-image: url("../diabook-blue/icons/messages.png");
        }
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-blue/icons/notify2.png");
+       background-image: url("../diabook-blue/icons/notify.png");
        }
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-blue/icons/contacts2.png");
+       background-image: url("../diabook-blue/icons/contacts.png");
        }
-       
-nav #nav-apps-link.selected {
-  background-color: #364e59;
-}
-
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
 
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
+nav #nav-apps-link.selected {
+ background-color: #364e59;
+  moz-border-radius: 5px 5px 0 0;
+-webkit-border-radius: 5px 5px 0 0;
+border-radius: 5px 5px 0 0;
 }
 
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #308DBF; /*bdcdd4;*/
+  background-color: #308dbf;
   color: #fff;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  padding-top: 3px;
-  padding-bottom: 3px;
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #EEE;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
 .menu-profile-list.home{
        background: url("../diabook-blue/icons/home.png") no-repeat;
        }
@@ -943,172 +177,10 @@ ul.menu-popup .empty {
        background: url("../diabook-blue/icons/com_side.png") no-repeat;
        }
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
 aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
   background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-               height: 17px;
-               padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 48px;
-  height: 48px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
+ }
+
 #side-bar-photos-albums li{
 list-style-type: disc;
 }
@@ -1117,779 +189,57 @@ list-style-type: disc;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #1872A2;
+  color: #308dbf;
 }
+
 .widget .tool.selected {
   background: url("../diabook-blue/icons/selected.png") no-repeat left center;
 }
-/* widget: search */
+
 span.sbox_l  {
        background: white url('../diabook-blue/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
 }
 
 span.sbox_r  {
        background: white url('../diabook-blue/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
 }
 
 span.sbox input {
        background: white url('../diabook-blue/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 611px;
-  padding: 0px 0px 0px 12px;
 }
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
+#birthday-wrapper a {
+       color: #308dbf;
        }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
+right_aside a{color: #308dbf;}
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  /*padding-right: 10px;*/
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
-right_aside a{color: #1872A2;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
 .close_box             { 
                background-image: url("../diabook-blue/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
                }
 .close_box:hover       { 
                background-image: url("../diabook-blue/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
                }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #1872A2;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
-
-
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px;
-
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
 
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
 
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
+.tread-wrapper a{
+  color: #308dbf;
 }
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       font-size: 14px;
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
 .button.creation2 {
-    background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
+    background-color: #308dbf;}
+
 #acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
+   background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
 }
+
 #acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
+  background-image: url("../../../../images/show_all_off.png");}
+
 #acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
+  background-image: url("../../../../images/show_all_on.png");}
+
 .acl-button-show {
   background-image: url("../../../../images/show_off.png");
 }
@@ -1897,657 +247,37 @@ transition: all 0.2s ease-in-out;
   background-image: url("../../../../images/hide_off.png");
 }
 .acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
   background-image: url("../../../../images/show_on.png");
 }
 .acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
   background-image: url("../../../../images/hide_on.png");
 }
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
 
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.tabs li .active {
+    background-color: #308dbf;}
 
-.required {
-  display: inline;
-  color: #B20202;
+.field .onoff a {
+  background-image: url("../../../../images/onoff.jpg");
 }
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
 .oauthapp img.noicon {
   background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
+ }
+
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -20px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 48px;
-        height: 48px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
+margin: 0px;}
 
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
 .event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
+        content: url('../../../../images/calendar.png');}
 
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
-  color: #1872A2;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
+  color: #308dbf;      
        }
 
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2556,39 +286,5 @@ list-style-type: disc;
         background-color: #EEE;
 }
 .photo-top-album-link{
-  color: #1872A2;
+  color: #308dbf;
        }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
index 952f907750f15503671c672f2477f3f4f86c6ac3..54303be411471e7362cf960b1135cadcdbd5ef9e 100644 (file)
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../diabook/style.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
+/* Why are these paths so long?  They should probably become ../icons/ in the next revision */
 
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-        list-style: none;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
 .icon.bb-url{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-url.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-url.png");}
 .icon.quote{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/quote.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/quote.png");}
 .icon.bold{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bold.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bold.png");}
 .icon.underline{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/underline.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/underline.png");}
 .icon.italic{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/italic.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/italic.png");}
 .icon.bb-image{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-image.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-image.png");}
 .icon.bb-video{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-video.png");
-  float: right;
-  margin-top: 2px;}
-  
-.icon.contacts {
+  background-image: url("../../../view/theme/diabook/diabook-blue/icons/bb-video.png");}
+ .icon.contacts {
   background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts.png");}
 .icon.notifications {
   background-image: url("../../../view/theme/diabook/diabook-blue/icons/notifications.png");}
 .icon.lock             { background-image: url("../../../view/theme/diabook/diabook-blue/icons/lock.png");}
 .icon.unlock           { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unlock.png");}
 .icon.language    { background-image: url("../../../view/theme/diabook/diabook-blue/icons/language.png");}
-
-
-.camera        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../../../view/theme/diabook/diabook-blue/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../../../view/theme/diabook/diabook-blue/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
-.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
-.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");
-                         display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}                      
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png");}
+.attach        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/attach.png");}
+.video2        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png"); }  
+.video         { background-image: url("../../../view/theme/diabook/diabook-blue/icons/video.png");}
+.audio2        { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");}
+.audio         { background-image: url("../../../view/theme/diabook/diabook-blue/icons/audio.png");}
+.weblink       { background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png");}
+.globe         { background-image: url("../../../view/theme/diabook/diabook-blue/icons/globe.png");}
+.unglobe       { background-image: url("../../../view/theme/diabook/diabook-blue/icons/unglobe.png");}
+.edit    {background-image: url("../../../view/theme/diabook/diabook-blue/icons/pencil2.png");}
+.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");}                   
 .icon.on             { background-image: url("../../../view/theme/diabook/diabook-blue/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../../../view/theme/diabook/diabook-blue/icons/toogle_off.png"); background-repeat: no-repeat;}
 .icon.prev           { background-image: url("../../../view/theme/diabook/diabook-blue/icons/prev.png"); background-repeat: no-repeat;}
 .icon.next           { background-image: url("../../../view/theme/diabook/diabook-blue/icons/next.png"); background-repeat: no-repeat;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 684px;
-  border-bottom: 1px solid #BDCDD4;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
+icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-blue/icons/camera.png");}
+.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-blue/icons/weblink.png");}
+av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
+       background-image: url("../../../view/theme/diabook/diabook-blue/icons/messages.png");}
+.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
+       background-image: url("../../../view/theme/diabook/diabook-blue/icons/notify.png");}
+nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts.png");}
 
-#jappix_mini {
-right: 45px !important;
-}
+.menu-profile-icon.home{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{
+       background: url("../../../view/theme/diabook/diabook-blue/icons/pscontacts.png") no-repeat;}
 
 
-h4 {
-  font-size: 1.1em;
-}
 
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
 
-.wall-item-name-link {
-/*  float: left;*/
-}
+a {color: #333333;}
 
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+#fileas-sidebar .tool:hover  {background: #308dbf;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #1872A2;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-.intro-end {
-       border-bottom: 1px solid black;
-   clear: both;
-   margin-bottom: 25px;
-   padding-bottom: 25px;
-   width: 75%;
-       }
-.intro-form-end {
-       clear: both;
-       }
-.intro-fullname {
-       padding-bottom: 5px;
-   padding-top: 5px;
-       }
-.intro-wrapper-end {
-       clear: both;
-   padding-bottom: 5px;
-       }
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
-#fileas-sidebar .tool:hover {
-       background: #308DBF;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
-div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
-div.jGrowl div.notice {
-  background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
 /* header */
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #1872a2;
   background-color: #1872a2;
-  z-index: 100;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
 }
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: banner;
-  width: 82%;
-  margin-left: 25%;
-}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
- font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
+  font-weight: bolder;
 }
+
 header #banner #logo-text {
 font-size: 20px!important;position: relative!important;top: -4px!important;
+ font-size: 20px!important;position: relative!important;top: -4px!important;
 }
+
 /* messages */
 #message-new {
   background: #055580;
   border: 1px solid #333;
-  width: 150px;
-}
-#message-new a {
-  color: #ffffff;
-  text-align: center;
-  display: block;
-  font-weight: bold;
-  padding: 1em 0px;
-    text-decoration: none;
-}
-.mail-list-wrapper {
-  background-color: #f6f7f8;
-  margin-bottom: 5px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-.mail-list-wrapper span {
-  display: block;
-  float: left;
-  width: 20%;
-  overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
-  width: 30%;
-  padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
-  display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
-  font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
-  padding: 4px 4px 0px 4px;
-  text-align: right;
-}
-.mail-list-wrapper .mail-delete {
-  float: right;
-}
-#mail-display-subject {
-  background-color: #f6f7f8;
-  color: #2d2d2d;
-  margin-bottom: 10px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-#mail-display-subject span {
-  float: left;
-  overflow: hidden;
-  padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
-  float: right;
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-#mail-display-subject:hover .mail-delete {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
 }
+
 /* nav */
-nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #1872a2;
+nav { background: #1872a2;
   color: #ffffff;
-  z-index: 99;
-  border-bottom: 1px;
+ border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
   color: #ffffff;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
 }
-nav #banner #logo-img {
+
+nav .nav-menu-icon:hover {
+  position: relative;
   height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
+  padding: 5px;
+  margin: 0px 5px;
+  -moz-border-radius: 5px 5px 0 0;
+  -webkit-border-radius: 5px 5px 0 0;
+  border-radius: 5px 5px 0 0;
 }
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
+
+nav .nav-notify {
+background-color: #ff0000;
+  border: 1px solid black;
 }
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
+
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{
+font-size: 14px;
 }
 
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
+nav #nav-apps-link.selected {
+ background-color: #364e59;
+  moz-border-radius: 5px 5px 0 0;
+-webkit-border-radius: 5px 5px 0 0;
+border-radius: 5px 5px 0 0;
 }
 
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
+ul.menu-popup {
+  background: #fff;}
+
+ul.menu-popup a:hover {
+  background-color: #055580; /*bdcdd4;*/
+  color: #fff;
 }
-nav .nav-menu-search {
-  position: relative;
 
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
+.menu-profile-list:hover{
+       background: #308dbf; 
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
+aside #likes a, a:visited, a:link {
+               color: #055580;
+               text-decoration: none;
+               cursor: pointer;
+               
+}
+aside #likes a:hover{
+       text-decoration: underline;
        }
 
 
-nav .nav-menu-icon {
-  position: relative;
+
+.group_selected {
+  background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
+  float: left;
   height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
+  width: 22px;
 }
-nav .nav-menu-icon:hover {
-  background-color: #308dbf;  
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
-nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #ff0000;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
-}
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
-
-nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../../../view/theme/diabook/diabook-blue/icons/messages2.png");
-       }
-       
-/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../../../view/theme/diabook/diabook-blue/icons/notify2.png");
-       }
-       
-nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../../../view/theme/diabook/diabook-blue/icons/contacts2.png");
-       }
-       
-nav #nav-apps-link.selected {
-  background-color: #364e59;
-}
-
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
-ul.menu-popup a:hover {
-  background-color: #308DBF; /*bdcdd4;*/
-  color: #fff;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 425px !important;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
-
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #308DBF;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-       
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../../../view/theme/diabook/diabook-blue/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 180px;
-  padding: 0px 10px 0px 20px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 173px;
-       height: 17px;
-   padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 173px;
-       }
-aside #side-peoplefind-url {
-       width: 173px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;          
-       }
-#login-submit-wrapper{
-
-  margin-bottom: 12px;
-       }
-aside #login-submit-button{
-  margin-left: 0px!important;  
-       }
-aside #login-extra-links{
-  padding-top: 0px!important;  
-       }
-.group_selected {
-  background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
-  float: left;
-  height: 22px;
-  width: 22px;
-}
-.group_unselected {
-  background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
-  float: left;
+.group_unselected {
+  background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
+  float: left;
   height: 22px;
   width: 22px;
 }
@@ -1254,197 +227,87 @@ transition: all 0.2s ease-in-out;
   float: right;
   height: 10px;
 }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
+
 #side-bar-photos-albums ul li{
   margin-left: 30px;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #1872A2;
-}
+  color: #055580;
+
 .widget .tool.selected {
-  background: url("../../../view/theme/diabook/diabook-blue/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 800px;
-  padding: 0px 0px 0px 12px;
-}
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 775px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+  background: url("../../../view/theme/diabook/diabook-blue/icons/selected.png") no-repeat left center;}
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
+#birthday-wrapper a {
+       color: #055580;
        }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 775px;
-  padding-top: 10px;
-}
+
 .tread-wrapper a{
-  color: #1872A2;
+  color: #055580;
 }
 
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
+.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
+  display: table-row;
 }
-
-.wall-item-container {
-  display: table;
-  width: 780px;
+.wall-item-bottom {
+  font-size: 13px;
 }
-.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
+.wall-item-container .wall-item-bottom {
+/*  opacity: 0.5;
+  -webkit-transition: all 0.2s ease-in-out;
+  -moz-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  -ms-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out; */
+}
+.wall-item-container:hover .wall-item-bottom {
+/*  opacity: 1;
+  -webkit-transition: all 0.2s ease-in-out;
+  -moz-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  -ms-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out; */
 }
-.wall-item-photo-container .wall-item-info {
+.wall-item-container .wall-item-info {
   display: table-cell;
   vertical-align: top;
   text-align: left;
   width: 80px;
 }
-.wall-item-photo-container .wall-item-location {
+.wall-item-container .wall-item-location {
   padding-right: 40px;
   display: table-cell;
 }
-.wall-item-photo-container .wall-item-ago {
+.wall-item-container .wall-item-ago {
   word-wrap: break-word;
   width: 50px;
   margin-left: 10px;
   color: #999;
 }
-.wall-item-photo-container .wall-item-content {
+.wall-item-location {
+  
+  clear: both;
+  overflow: hidden;
+  
+  margin-bottom: 5px;
+}
+
+.wall-item-container .wall-item-content {
 
   max-width: 720px;
   word-wrap: break-word;
 
-  margin-bottom: 14px;
+
 }
-.wall-item-photo-container .wall-item-content img {
+
+.wall-item-container .wall-item-content img {
   max-width: 700px;
 }
-.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
   display: table-cell;
   vertical-align: middle;
 }
-.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
+.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
   opacity: 0.5;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
@@ -1452,7 +315,7 @@ body .pageheader{
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
 }
-.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
+.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
   opacity: 1;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
@@ -1460,1444 +323,76 @@ body .pageheader{
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
 }
-.wall-item-photo-container .wall-item-name {
+.wall-item-container .wall-item-name {
   font-weight: bold;
 }
-.wall-item-photo-container .wall-item-actions-author {
+.wall-item-container .wall-item-actions-author {
   width: 100%;
   margin-bottom: 0.3em;
 }
-.wall-item-photo-container .wall-item-actions-social {
+.wall-item-container .wall-item-actions-social {
   float: left;
   margin-bottom: 1px;
   display: table-cell;
 }
-.wall-item-photo-container .wall-item-actions-social a {
+.wall-item-container .wall-item-actions-social a {
   margin-right: 1em;
 }
-.wall-item-photo-container .wall-item-actions-tools {
+.wall-item-actions-social a {
+  float: left;
+}
+.wall-item-container .wall-item-actions-tools {
   float: right;
   width: 80px;
-  display: table-cell;
+  display: table-cell;done
 }
-.wall-item-photo-container .wall-item-actions-tools a {
+.wall-item-container .wall-item-actions-tools a {
   float: right;
 }
-.wall-item-photo-container .wall-item-actions-tools input {
+.wall-item-container .wall-item-actions-tools input {
   float: right;
 }
-.wall-item-photo-container.comment {
+.wall-item-container.comment {
   margin-top: 5px;
   margin-bottom: 5px;
-  margin-left: 40px;
-  width: 650px;
-  border-bottom: 1px solid #D2D2D2;
-}
-.wall-item-photo-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-photo-container {
-  display: table;
-  width: 780px;
+  margin-left: 80px;
+  width: 700px;
+  border-bottom: 1px solid hsl(198, 21%, 79%);
 }
-.my-comment-photo {
-  width: 48px;
-  margin-left: 40px;
-  margin-right: 32px;
-       }
+
+
 .comment-edit-preview {
   width: 500px;
   margin-top: 10px;
 }
-.comment-edit-text-empty {
-    width: 500px;
-    border: 1px solid #D2D2D2;
-    height: 3.2em;
-    color: #2d2d2d;
-}
-.comment-edit-text-full {
-  font-size: 12.5px;
-  height: 3.3em;
-  
-  border: 1px solid #D2D2D2;
-  width: 500px;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-    display: table-cell;
-}
-
-
-
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 720px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 700px;
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;done
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 700px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 785px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 783px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title, #profile-jot-form #jot-category {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 785px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 785px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 785px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
 .button.creation2 {
     background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-}
-//settings tabs
-ul.rs_tabs {
-  list-style-type: none;
-  font-size: 11px;
-}
-ul.rs_tabs li {
-  float: left;
-  margin-bottom: 30px;
-  clear: both;
-}
-ul.rs_tabs li .selected {
-    background-color: #055580;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    font-size: 13px;
-}
-.rs_tabs {
-    list-style-type: none;
-    font-size: 11px;
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.rs_tab.button {       
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: bolder;
-    padding: 3px;
-    color:  #333333;
-    text-decoration: none;
-       }
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-.suggest-select {
-width: 500px;
-height: 350px; 
-       }
-.message-to-select {
-       width: 400px;
-   height: 150px;
-       }
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
+        cursor: pointer;
 }
 
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
+/*ACL*/
 
-.profile-edit-side-div {
-  display: none;
-}
+ul.tabs li .active {
+    background-color: #055580;
+    box-shadow: 2px 2px 2px #CFCFCF;}
 
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.rs_tabs li .selected {
+    background-color: #055580;}
 
-.required {
-  display: inline;
-  color: #B20202;
-}
+/*Photo */
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
 border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -20px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-position: relative;
-width: 400px;
-padding: 20px;
-padding-top: 10px;
-margin: 0 0px;
-margin-bottom: 10px;
-background-color: white;
--webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
--moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-}
-.vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-description {
-margin-left: 10px;
-margin-right: 10px;
-font-size: 1.1em;
-font-weight: bolder;
-}
-.vevent .event-start, .vevent .event-end {
-
-margin-right: 20px;
-margin-bottom: 2px;
-margin-top: 2px;
-font-size: 0.9em;
-text-align: left;
-}
-.event-start .dtstart, .event-end .dtend {
-float: right;
-}
-
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content:   url("../../../view/theme/diabook/icons/events2.png") !important;
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
 }
 
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
-  color: #1872A2;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
+  color: #055580;      
 }
 
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-       float: left;
-   margin-right: 10px;
-       }
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-section .directory-item dl {
-  height: auto;
-  overflow: auto;      
-}
-section .directory-item dt {
-  float: left;
-  margin-left: 0px;
-  text-align: right;
-  color: #999;
-}
-section .directory-item dd {
-  float: left;
-  margin-left: 5px;
-}
-.directory-profile-wrapper {
-  float: left;
-  max-height: 178px;
-  overflow: hidden;
-  width: 635px;
-}
-.directory-copy-wrapper {
-  float: left;
-  overflow: hidden;    
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 800px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-
-section .directory-photo-wrapper {
-  float: left;
-  height: 200px;
-  width: 165px;  
-}
-.contact-name {
-  font-weight: bold;
-  font-size: 18px;
-  margin-bottom: -3px;
-  text-align: left;
-}
-.contact-details {
-  color: #999999;
-}
-.page-type {
-  font-size: 10px;
-  font-style: italic;
-}
-.directory-detailscolumn-wrapper {
-  float: left; 
-  width: 305px;
-  margin-right: 10px;  
-}
-.directory-profile-wrapper dl {
-  margin-top: 3px;
-  margin-bottom: 3px;
-}
-.directory-profile-title {
-  font-weight: bold;
-  margin-bottom: 3px;
-  font-size: 14px;
-}
-#side-bar-photos-albums{
-       margin-top: 15px;       
-}
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2906,39 +401,5 @@ section .directory-photo-wrapper {
         background-color: #EEE;
 }
 .photo-top-album-link{
-  color: #1872A2;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
+  color: #055580;
+}
\ No newline at end of file
index 6fffec9424eee774ead75df00b0f224fd2e98516..71298253969ee3356ff827319094188235b5e2ec 100644 (file)
@@ -1,88 +1,6 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
-
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+@import url('../../diabook/style-network.css');
 
+/* There seem to be a stupid number of icons.  Can we do this better? Are they all actually used? */ 
 .icon.contacts {
   background-image: url("../diabook-green/icons/contacts.png");}
 .icon.notifications {
@@ -93,7 +11,6 @@
   background-image: url("../diabook-green/icons/messages.png");}
 .icon.community {
   background-image: url("../diabook-green/icons/community.png");}
-  
 .icon.drop     { background-image: url("../diabook-green/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-green/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-green/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-green/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-green/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-green/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-green/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-green/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-green/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-green/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-green/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-green/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-green/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-green/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-green/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-green/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-green/icons/camera.png");}
+.attach        { background-image: url("../diabook-green/icons/attach.png");}
+.video2        { background-image: url("../diabook-green/icons/video.png");}   
+.video         { background-image: url("../diabook-green/icons/video.png");}
+.audio2        { background-image: url("../diabook-green/icons/audio.png");}
+.audio         { background-image: url("../diabook-green/icons/audio.png");}
+.weblink       { background-image: url("../diabook-green/icons/weblink.png");}
+.globe         { background-image: url("../diabook-green/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-green/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-green/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-green/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-green/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
+.attachtype {background-image: url('../../../../images/content-types.png');}
 .icon.border.camera{
-  background-image: url("../diabook-green/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-green/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 1px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  background-color: #fff;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+  background-image: url("../diabook-green/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-green/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+
+.hide-comments-outer {background-color: #fff;}
+
+a {color: #333333;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #2c9936;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
 #saved-search-ul .tool:hover,
 #nets-sidebar .tool:hover,
 #sidebar-group-list .tool:hover ,
 #fileas-sidebar .tool:hover {
        background: aliceBlue;
 }
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
+
 .tool a {
   color: #2c9936;
 }
-.tool a:hover {
-  text-decoration: none;
+
+nav a, nav a:active, nav a:visited, nav a:link, nav a:hover {
+color: #fff;
 }
+
 /* popup notifications */
-div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
-header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
-  background: #5CD65C;
-  background-color: #5CD65C;
-  z-index: 100;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
+div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
 
+
+header {
+  background: #5cd65c;
+  background-color: #5cd65c;
 }
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
-}
+
+header #site-location {display: none;}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
-  color: black;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
+  color: #fff;
   font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
 }
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-}
-/* nav */
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #5CD65C;
+  background: #5cd65c;
   color: #000;
-  z-index: 99;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  
-}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
-  /*color: #1f1f1f;*/
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
 }
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
-}
-
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
 
 
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-nav .nav-menu-icon:hover {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-
-/*color*/
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
-nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
+ nav .nav-notify {
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
+
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;}
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-green/icons/messages.png");
-       }
+       background-image: url("../diabook-green/icons/messages.png");}
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-green/icons/notify.png");
-       }
+       background-image: url("../diabook-green/icons/notify.png");}
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-green/icons/contacts.png");
-       }
+       background-image: url("../diabook-green/icons/contacts.png");}
        
 nav #nav-apps-link.selected {
   background-color: #fff;
@@ -768,1327 +152,66 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #F5FCF5;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #B8EDB8; /*bdcdd4;*/
+  background-color: #b8edb8;
   color: #000;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
+.menu-profile-list:hover{background: #b8edb8;}
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#profile_side a{
-  color: #333;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #B8EDB8; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../diabook-green/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../diabook-green/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../diabook-green/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../diabook-green/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../diabook-green/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../diabook-green/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../diabook-green/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
+.menu-profile-icon.home{background: url("../diabook-green/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{background: url("../diabook-green/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{background: url("../diabook-green/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{background: url("../diabook-green/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{background: url("../diabook-green/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{background: url("../diabook-green/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{background: url("../diabook-green/icons/pscontacts.png") no-repeat;}
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
--moz-border-bottom-colors: #dbdbdb;
-  -moz-border-top-colors: #999;
-  -moz-border-left-colors: #999;
-  -moz-border-right-colors: #dbdbdb;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums ul li a{
-  color: #3465A4;
-}
-.widget .tool.selected {
-  background: url("../diabook-green/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-span.sbox_l  {
-       background: white url('../diabook-green/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
-}
+aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;}
 
-span.sbox_r  {
-       background: white url('../diabook-green/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
-}
+#side-bar-photos-albums li{list-style-type: disc;}
+#side-bar-photos-albums ul li{margin-left: 30px;
+  padding-left: 0px;}
+#side-bar-photos-albums ul li a{color: #3465a4;}
 
-span.sbox input {
-       background: white url('../diabook-green/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: auto;
-  padding: 0px 0px 0px 12px;
-}
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+.widget .tool.selected {background: url("../diabook-green/icons/selected.png") no-repeat left center;}
+span.sbox_l  {background: white url('../diabook-green/icons/srch_l.gif') no-repeat top left;}
+span.sbox_r  {background: white url('../diabook-green/icons/srch_r.gif') no-repeat top left;}
+span.sbox input {background: white url('../diabook-green/icons/srch_bg.gif') repeat-x top left;}
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
-#birthday-wrapper a {
-       color: #3465A4;
-       }
+right_aside a{color: #3465a4;}
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
-right_aside a{color: #3465A4;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
 .close_box             { 
                background-image: url("../diabook-green/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
-               }
-.close_box:hover       { 
-               background-image: url("../diabook-green/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
-               }
+               cursor: pointer;}
 
+.close_box:hover {background-image: url("../diabook-green/icons/close_box.png");}
 
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #2c9936;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
+.tread-wrapper a{color: #2c9936;}
 
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
+.wall-item-comment-wrapper {background-color: #fff;
+  width: 500px;}
 
+.button.creation2 {background-color: #2c9936;}
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
+#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;}
 
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
+#acl-showall {background-image: url("../../../../images/show_all_off.png");}
 
-.wall-item-container .wall-item-content {
+#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");}
 
-  max-width: 420px;
-  word-wrap: break-word;
+.acl-button-show {background-image: url("../../../../images/show_off.png");}
+.acl-button-hide {background-image: url("../../../../images/hide_off.png");}
+.acl-button-show.selected {background-image: url("../../../../images/show_on.png");}
+.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");}
 
+ul.tabs li .active {background-color: #2c9936;}
 
-}
+.field .onoff a {background-image: url("../../../../images/onoff.jpg");}
 
-.wall-item-container .wall-item-content img {
-  max-width: 400px; 
+.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");}
 
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-  background-color: #fff;
-  width: 500px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
-.button.creation2 {
-    background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
-
-.required {
-  display: inline;
-  color: #B20202;
-}
-
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
@@ -2096,498 +219,17 @@ border-radius: 10px;
 height: 145px !important;
 width: 145px !important;
 }
+
 .lframe {
   float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
 }
 
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #3465A4;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
+.event-description:before {content: url('../../../../images/calendar.png');}
 
-.app-title {
-        margin: 10px;
-}
+.calendar.eventcal a {color: #3465a4;}
 
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2595,40 +237,5 @@ list-style-type: disc;
         padding-left: 3px;
         background-color: #EEE;
 }
-.photo-top-album-link{
-  color: #3465A4;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
+.photo-top-album-link{color: #3465a4;}
 
index 2e2e11383a098f1eaa47533444423e9bd465296d..7a9d0d57b8b62a5d64824da07121f09f4110eb4b 100644 (file)
@@ -1,99 +1,10 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../../diabook/style-profile.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
-
-.icon.contacts {
-  background-image: url("../diabook-green/icons/contacts.png");}
-.icon.notifications {
-  background-image: url("../diabook-green/icons/notifications.png");}
-.icon.notify {
-  background-image: url("../diabook-green/icons/notify.png");}
-.icon.messages {
-  background-image: url("../diabook-green/icons/messages.png");}
-.icon.community {
-  background-image: url("../diabook-green/icons/community.png");}
-  
+ .icon.contacts {background-image: url("../diabook-green/icons/contacts.png");}
+.icon.notifications {background-image: url("../diabook-green/icons/notifications.png");}
+.icon.notify {background-image: url("../diabook-green/icons/notify.png");}
+.icon.messages {background-image: url("../diabook-green/icons/messages.png");}
+.icon.community {background-image: url("../diabook-green/icons/community.png");}  
 .icon.drop     { background-image: url("../diabook-green/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-green/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-green/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-green/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-green/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-green/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-green/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-green/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-green/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-green/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-green/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-green/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-green/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-green/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-green/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-green/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-green/icons/camera.png");}
+.attach        { background-image: url("../diabook-green/icons/attach.png");}
+.video2        { background-image: url("../diabook-green/icons/video.png");}   
+.video         { background-image: url("../diabook-green/icons/video.png");}
+.audio2        { background-image: url("../diabook-green/icons/audio.png");}
+.audio         { background-image: url("../diabook-green/icons/audio.png");}
+.weblink       { background-image: url("../diabook-green/icons/weblink.png");}
+.globe         { background-image: url("../diabook-green/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-green/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-green/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-green/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-green/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../diabook-green/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-green/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
+.attachtype {background-image: url('../../../../images/content-types.png');}                     
+.icon.border.camera{background-image: url("../diabook-green/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-green/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+a {color: #333333;}
+
+
+#sidebar-group-list .tool:hover {background: #EEE;}
 
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  border-top: 1px solid #BDCDD4;
-
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #2c9936;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover {
-       background: #EEE;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
 div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
-  background: #5CD65C;
-  background-color: #5CD65C;
-  z-index: 100;
--webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-   
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
+  background: #5cd65c;
+  background-color: #5cd65c;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
-  color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
-  font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-}
-/* nav */
+  color: #ffffff;
+  font-weight: bolder;}
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #5CD65C;
+  background: #5cd65c;
   color: #1f1f1f;
-  z-index: 99;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
-  color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
+  color: #1f1f1f;}
+
 nav #banner a,
 nav #banner a:active,
 nav #banner a:visited,
 nav #banner a:link,
 nav #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
 
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -671,82 +129,10 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-/*color*/
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
   background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
        background-image: url("../diabook-green/icons/messages.png");
@@ -759,7 +145,7 @@ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selecte
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
        background-image: url("../diabook-green/icons/contacts.png");
        }
-       
+
 nav #nav-apps-link.selected {
  background-color: #fff;
   moz-border-radius: 5px 5px 0 0;
@@ -767,169 +153,11 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #F5FCF5;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #B8EDB8; /*bdcdd4;*/
+  background-color: #b8edb8;
   color: #000;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
 
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
-
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  padding-top: 3px;
-  padding-bottom: 3px;
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #B8EDB8;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
 .menu-profile-list.home{
        background: url("../diabook-green/icons/home.png") no-repeat;
        }
@@ -949,172 +177,10 @@ ul.menu-popup .empty {
        background: url("../diabook-green/icons/com_side.png") no-repeat;
        }
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
 aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
   background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 48px;
-  height: 48px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
+ }
+
 #side-bar-photos-albums li{
 list-style-type: disc;
 }
@@ -1123,782 +189,57 @@ list-style-type: disc;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #3465A4;
+  color: #3465a4;
 }
+
 .widget .tool.selected {
   background: url("../diabook-green/icons/selected.png") no-repeat left center;
 }
-/* widget: search */
+
 span.sbox_l  {
        background: white url('../diabook-green/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
 }
 
 span.sbox_r  {
        background: white url('../diabook-green/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
 }
 
 span.sbox input {
        background: white url('../diabook-green/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 611px;
-  padding: 0px 0px 0px 12px;
 }
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
-
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
 #birthday-wrapper a {
        color: #3465A4;
        }
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  /*padding-right: 10px;*/
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
 right_aside a{color: #3465A4;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
+
 .close_box             { 
                background-image: url("../diabook-green/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
                }
 .close_box:hover       { 
                background-image: url("../diabook-green/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
                }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #2c9936;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
 
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px;
-
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
+.tread-wrapper a{
+  color: #2c9936;
 }
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-        font-weight: bolder;
-        cursor: pointer;
-}
 .button.creation2 {
-    background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
+    background-color: #2c9936;}
+
 #acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
+   background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
 }
+
 #acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
+  background-image: url("../../../../images/show_all_off.png");}
+
 #acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
+  background-image: url("../../../../images/show_all_on.png");}
+
 .acl-button-show {
   background-image: url("../../../../images/show_off.png");
 }
@@ -1906,657 +247,37 @@ transition: all 0.2s ease-in-out;
   background-image: url("../../../../images/hide_off.png");
 }
 .acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
   background-image: url("../../../../images/show_on.png");
 }
 .acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
   background-image: url("../../../../images/hide_on.png");
 }
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
 
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.tabs li .active {
+    background-color: #2c9936;}
 
-.required {
-  display: inline;
-  color: #B20202;
+.field .onoff a {
+  background-image: url("../../../../images/onoff.jpg");
 }
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
 .oauthapp img.noicon {
   background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
+ }
+
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 48px;
-        height: 48px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
+margin: 0px;}
 
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
 .event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
+        content: url('../../../../images/calendar.png');}
 
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
   color: #3465A4;      
        }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
 
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2567,37 +288,3 @@ list-style-type: disc;
 .photo-top-album-link{
   color: #3465A4;
        }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
index e1993764e0c5ea0ec114f88a1110dcf1c1b7335f..09393df82b587ed7d2394bc72379a16d71377522 100644 (file)
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../diabook/style.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-        list-style: none;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+/* Why are these paths so long?  They should probably become ../icons/ in the next revision */
 
 .icon.bb-url{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-url.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-url.png");}
 .icon.quote{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/quote.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/quote.png");}
 .icon.bold{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/bold.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/bold.png");}
 .icon.underline{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/underline.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/underline.png");}
 .icon.italic{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/italic.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/italic.png");}
 .icon.bb-image{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-image.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-image.png");}
 .icon.bb-video{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-video.png");
-  float: right;
-  margin-top: 2px;}
-  
-.icon.contacts {
+  background-image: url("../../../view/theme/diabook/diabook-green/icons/bb-video.png");}
+ .icon.contacts {
   background-image: url("../../../view/theme/diabook/diabook-green/icons/contacts.png");}
 .icon.notifications {
   background-image: url("../../../view/theme/diabook/diabook-green/icons/notifications.png");}
 .icon.lock             { background-image: url("../../../view/theme/diabook/diabook-green/icons/lock.png");}
 .icon.unlock           { background-image: url("../../../view/theme/diabook/diabook-green/icons/unlock.png");}
 .icon.language    { background-image: url("../../../view/theme/diabook/diabook-green/icons/language.png");}
-
-
-.camera        { background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../../../view/theme/diabook/diabook-green/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../../../view/theme/diabook/diabook-green/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../../../view/theme/diabook/diabook-green/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../../../view/theme/diabook/diabook-green/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-.icon.block   {background-image: url("../diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
-.icon.block.dim  {background-image: url("../diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
-.icon.ad_drop  { background-image: url("../diabook/icons/drop.png");
-                         display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}                      
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png");}
+.attach        { background-image: url("../../../view/theme/diabook/diabook-green/icons/attach.png");}
+.video2        { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png"); } 
+.video         { background-image: url("../../../view/theme/diabook/diabook-green/icons/video.png");}
+.audio2        { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");}
+.audio         { background-image: url("../../../view/theme/diabook/diabook-green/icons/audio.png");}
+.weblink       { background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png");}
+.globe         { background-image: url("../../../view/theme/diabook/diabook-green/icons/globe.png");}
+.unglobe       { background-image: url("../../../view/theme/diabook/diabook-green/icons/unglobe.png");}
+.edit    {background-image: url("../../../view/theme/diabook/diabook-green/icons/pencil2.png");}
+.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");}                   
 .icon.on             { background-image: url("../../../view/theme/diabook/diabook-green/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../../../view/theme/diabook/diabook-green/icons/toogle_off.png"); background-repeat: no-repeat;}
 .icon.prev           { background-image: url("../../../view/theme/diabook/diabook-green/icons/prev.png"); background-repeat: no-repeat;}
 .icon.next           { background-image: url("../../../view/theme/diabook/diabook-green/icons/next.png"); background-repeat: no-repeat;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 684px;
-  border-bottom: 1px solid #BDCDD4;
-  padding: 8px;
-}
+icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-green/icons/camera.png");}
+.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-green/icons/weblink.png");}
+av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
+       background-image: url("../../../view/theme/diabook/diabook-green/icons/messages.png");}
+.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
+       background-image: url("../../../view/theme/diabook/diabook-green/icons/notify.png");}
+nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-green/icons/contacts.png");}
 
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
+.menu-profile-icon.home{
+       background: url("../../../view/theme/diabook/diabook-green/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{
+       background: url("../../../view/theme/diabook/diabook-green/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{
+       background: url("../../../view/theme/diabook/diabook-green/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{
+       background: url("../../../view/theme/diabook/diabook-green/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{
+       background: url("../../../view/theme/diabook/diabook-green/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{
+       background: url("../../../view/theme/diabook/diabook-green/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{
+       background: url("../../../view/theme/diabook/diabook-green/icons/pscontacts.png") no-repeat;}
 
-#jappix_mini {
-right: 45px !important;
-}
 
 
-h4 {
-  font-size: 1.1em;
-}
 
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
+a {color: #333333;}
 
-.wall-item-name-link {
-/*  float: left;*/
-}
+/*bug?  This is probably supposed to be green, but we'll keep the original for now and fix later if it is wrong. */
 
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+#fileas-sidebar .tool:hover  {background: #aliceBlue;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-/*color*/
-.fakelink {
-  color: #2c9936;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-.intro-end {
-       border-bottom: 1px solid black;
-   clear: both;
-   margin-bottom: 25px;
-   padding-bottom: 25px;
-   width: 75%;
-       }
-.intro-form-end {
-       clear: both;
-       }
-.intro-fullname {
-       padding-bottom: 5px;
-   padding-top: 5px;
-       }
-.intro-wrapper-end {
-       clear: both;
-   padding-bottom: 5px;
-       }
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
-#fileas-sidebar .tool:hover  {
-       background: aliceBlue;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-/*color*/
-.tool a {
-  color: #2c9936;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
-div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
-div.jGrowl div.notice {
-  background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/*color*/
 /* header */
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
-  background: #5CD65C;
-  background-color: #5CD65C;
-  z-index: 100;
--webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: banner;
-  width: 82%;
-  margin-left: 25%;
+  background: #5cd65c;
+  background-color: #5cd65c;
+  border-bottom: 1px;
+  border-bottom-color: black;
+  border-bottom-style: inset;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
 }
+
 header #banner #logo-text {
 font-size: 20px!important;position: relative!important;top: -4px!important;
+ font-size: 20px!important;position: relative!important;top: -4px!important;
 }
-/*color*/
+
 /* messages */
 #message-new {
   background: #2c9936;
   border: 1px solid #333;
-  width: 150px;
-}
-#message-new a {
-  color: #ffffff;
-  text-align: center;
-  display: block;
-  font-weight: bold;
-  padding: 1em 0px;
-    text-decoration: none;
-}
-.mail-list-wrapper {
-  background-color: #f6f7f8;
-  margin-bottom: 5px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-.mail-list-wrapper span {
-  display: block;
-  float: left;
-  width: 20%;
-  overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
-  width: 30%;
-  padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
-  display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
-  font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
-  padding: 4px 4px 0px 4px;
-  text-align: right;
-}
-.mail-list-wrapper .mail-delete {
-  float: right;
-}
-#mail-display-subject {
-  background-color: #f6f7f8;
-  color: #2d2d2d;
-  margin-bottom: 10px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-#mail-display-subject span {
-  float: left;
-  overflow: hidden;
-  padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
-  float: right;
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-#mail-display-subject:hover .mail-delete {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
 }
-/*color*/
+
 /* nav */
-nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #5CD65C;
-  color: #1f1f1f;
-  z-index: 99;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  
+nav { background: #5cd65c;
+  color: #ffffff;
+ border-bottom: 1px;
+  border-bottom-color: black;
+  border-bottom-style: inset;
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -810,95 +144,16 @@ nav .nav-menu-icon:hover {
   -webkit-border-radius: 5px 5px 0 0;
   border-radius: 5px 5px 0 0;
 }
-/*color*/
-nav .nav-menu-icon.selected {
-  background-color: #fff;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
+
 nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
+background-color: #fff;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{
+font-size: 14px;
 }
 
-nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../../../view/theme/diabook/diabook-green/icons/messages.png");
-       }
-       
-/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../../../view/theme/diabook/diabook-green/icons/notify.png");
-       }
-       
-nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../../../view/theme/diabook/diabook-green/icons/contacts.png");
-       }
-       
 nav #nav-apps-link.selected {
  background-color: #fff;
   moz-border-radius: 5px 5px 0 0;
@@ -906,288 +161,18 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-/*color*/
 ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #F5FCF5;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
-/*color*/
+  background: #f5fcf5;}
+
 ul.menu-popup a:hover {
-  background-color: #B8EDB8; /*bdcdd4;*/
+  background-color: #b8edb8; 
   color: #000;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 425px !important;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
 
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
-
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
-       /*color*/
 .menu-profile-list:hover{
-       background: #B8EDB8; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../../../view/theme/diabook/diabook-green/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../../../view/theme/diabook/diabook-green/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../../../view/theme/diabook/diabook-green/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../../../view/theme/diabook/diabook-green/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../../../view/theme/diabook/diabook-green/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../../../view/theme/diabook/diabook-green/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../../../view/theme/diabook/diabook-green/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 180px;
-  padding: 0px 10px 0px 20px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 173px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
+       background: #b8edb8; 
 }
-aside #side-follow-url {
-       width: 173px;
-       }
-aside #side-peoplefind-url {
-       width: 173px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-/*color*/
+
 aside #likes a, a:visited, a:link {
                color: #2c9936;
                text-decoration: none;
@@ -1198,49 +183,16 @@ aside #likes a:hover{
        text-decoration: underline;
        }
 
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;          
-       }
-#login-submit-wrapper{
 
-  margin-bottom: 12px;
-       }
-aside #login-submit-button{
-  margin-left: 0px!important;  
-       }
-aside #login-extra-links{
-  padding-top: 0px!important;  
-       }
+
 .group_selected {
-  background: url("../diabook/icons/selected.png") no-repeat left center;
+  background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
   float: left;
   height: 22px;
   width: 22px;
 }
 .group_unselected {
-  background: url("../diabook/icons/unselected.png") no-repeat left center;
+  background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
   float: left;
   height: 22px;
   width: 22px;
@@ -1277,284 +229,24 @@ transition: all 0.2s ease-in-out;
   float: right;
   height: 10px;
 }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
+
 #side-bar-photos-albums ul li{
   margin-left: 30px;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #3465A4;
-}
-.widget .tool.selected {
-  background: url("../../../view/theme/diabook/diabook-green/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 800px;
-  padding: 0px 0px 0px 12px;
-}
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 775px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+  color: #3465a4;
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
+.widget .tool.selected {
+  background: url("../../../view/theme/diabook/diabook-green/icons/selected.png") no-repeat left center;}
 
 #birthday-wrapper a {
-       color: #3465A4;
+       color: #3465a4;
        }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 775px;
-  padding-top: 10px;
-}
-/*color*/
+
 .tread-wrapper a{
   color: #2c9936;
 }
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 780px;
-}
-.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-.wall-item-photo-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-photo-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-photo-container .wall-item-content {
-
-  max-width: 720px;
-  word-wrap: break-word;
-
-  margin-bottom: 14px;
-}
-.wall-item-photo-container .wall-item-content img {
-  max-width: 700px;
-}
-.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-photo-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-photo-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-photo-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-photo-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-photo-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 40px;
-  width: 650px;
-  border-bottom: 1px solid #D2D2D2;
-}
-.wall-item-photo-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-photo-container {
-  display: table;
-  width: 780px;
-}
-.my-comment-photo {
-  width: 48px;
-  margin-left: 40px;
-  margin-right: 32px;
-       }
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-}
-.comment-edit-text-empty {
-    width: 500px;
-    border: 1px solid #D2D2D2;
-    height: 3.2em;
-    color: #2d2d2d;
-}
-.comment-edit-text-full {
-  font-size: 12.5px;
-  height: 3.3em;
-  
-  border: 1px solid #D2D2D2;
-  width: 500px;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-    display: table-cell;
-}
-
 
 .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
   display: table-row;
@@ -1654,7 +346,7 @@ body .pageheader{
 .wall-item-container .wall-item-actions-tools {
   float: right;
   width: 80px;
-  display: table-cell;done
+  display: table-cell;
 }
 .wall-item-container .wall-item-actions-tools a {
   float: right;
@@ -1669,1264 +361,40 @@ body .pageheader{
   width: 700px;
   border-bottom: 1px solid hsl(198, 21%, 79%);
 }
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
+
 .comment-edit-preview {
   width: 500px;
   margin-top: 10px;
-  background-color:  #fff797;
 }
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
+.button.creation2 {
+    background-color: #2c9936;
+        cursor: pointer;
 }
 
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 785px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 783px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title, #profile-jot-form #jot-category {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 785px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 785px;
-       }
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 785px;
-}
+/*ACL*/
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*color*/
-.button.creation2 {
-    background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-/*color*/
 ul.tabs li .active {
     background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-//settings tabs
-ul.rs_tabs {
-  list-style-type: none;
-  font-size: 11px;
-}
-ul.rs_tabs li {
-  float: left;
-  margin-bottom: 30px;
-  clear: both;
-}
-/*color*/
-ul.rs_tabs li .selected {
-    background-color: #2c9936;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    font-size: 13px;
-}
-.rs_tabs {
-    list-style-type: none;
-    font-size: 11px;
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.rs_tab.button {       
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: bolder;
-    padding: 3px;
-    color:  #333333;
-    text-decoration: none;
-       }
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-.suggest-select {
-width: 500px;
-height: 350px; 
-       }
-.message-to-select {
-       width: 400px;
-   height: 150px;
-       }
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
+    box-shadow: 2px 2px 2px #CFCFCF;}
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.rs_tabs li .selected {
+    background-color: #2c9936;}
 
-.required {
-  display: inline;
-  color: #B20202;
-}
+/*Photo */
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
 border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
 }
 
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-    color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-position: relative;
-width: 400px;
-padding: 20px;
-padding-top: 10px;
-margin: 0 0px;
-margin-bottom: 10px;
-background-color: white;
--webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
--moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-}
-.vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-description {
-margin-left: 10px;
-margin-right: 10px;
-font-size: 1.1em;
-font-weight: bolder;
-}
-.vevent .event-start, .vevent .event-end {
-
-margin-right: 20px;
-margin-bottom: 2px;
-margin-top: 2px;
-font-size: 0.9em;
-text-align: left;
-}
-.event-start .dtstart, .event-end .dtend {
-float: right;
-}
-
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content:   url("../diabook/icons/events2.png") !important;
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
-  color: #3465A4;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
+  color: #3465a4;      
 }
 
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-       float: left;
-   margin-right: 10px;
-       }
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-section .directory-item dl {
-  height: auto;
-  overflow: auto;      
-}
-section .directory-item dt {
-  float: left;
-  margin-left: 0px;
-  text-align: right;
-  color: #999;
-}
-section .directory-item dd {
-  float: left;
-  margin-left: 5px;
-}
-.directory-profile-wrapper {
-  float: left;
-  max-height: 178px;
-  overflow: hidden;
-  width: 635px;
-}
-.directory-copy-wrapper {
-  float: left;
-  overflow: hidden;    
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 800px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-
-section .directory-photo-wrapper {
-  float: left;
-  height: 200px;
-  width: 165px;  
-}
-.contact-name {
-  font-weight: bold;
-  font-size: 18px;
-  margin-bottom: -3px;
-  text-align: left;
-}
-.contact-details {
-  color: #999999;
-}
-.page-type {
-  font-size: 10px;
-  font-style: italic;
-}
-.directory-detailscolumn-wrapper {
-  float: left; 
-  width: 305px;
-  margin-right: 10px;  
-}
-.directory-profile-wrapper dl {
-  margin-top: 3px;
-  margin-bottom: 3px;
-}
-.directory-profile-title {
-  font-weight: bold;
-  margin-bottom: 3px;
-  font-size: 14px;
-}
-#side-bar-photos-albums{
-       margin-top: 15px;       
-}
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2935,39 +403,5 @@ section .directory-photo-wrapper {
         background-color: #EEE;
 }
 .photo-top-album-link{
-  color: #3465A4;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
+  color: #3465a4;
+}
\ No newline at end of file
index 3c236c0e4cc8504dec4bdadd41229e1821228c49..dc100a8885a82b7a5a668bb1502ad540e329eb8b 100644 (file)
@@ -1,88 +1,6 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
-
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+@import url('../../diabook/style-network.css');
 
+/* There seem to be a stupid number of icons.  Can we do this better? Are they all actually used? */ 
 .icon.contacts {
   background-image: url("../diabook-pink/icons/contacts.png");}
 .icon.notifications {
@@ -93,7 +11,6 @@
   background-image: url("../diabook-pink/icons/messages.png");}
 .icon.community {
   background-image: url("../diabook-pink/icons/community.png");}
-  
 .icon.drop     { background-image: url("../diabook-pink/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-pink/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-pink/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-pink/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-pink/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-pink/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-pink/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-pink/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-pink/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-pink/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-pink/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-pink/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-pink/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-pink/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-pink/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-pink/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-pink/icons/camera.png");}
+.attach        { background-image: url("../diabook-pink/icons/attach.png");}
+.video2        { background-image: url("../diabook-pink/icons/video.png");}    
+.video         { background-image: url("../diabook-pink/icons/video.png");}
+.audio2        { background-image: url("../diabook-pink/icons/audio.png");}
+.audio         { background-image: url("../diabook-pink/icons/audio.png");}
+.weblink       { background-image: url("../diabook-pink/icons/weblink.png");}
+.globe         { background-image: url("../diabook-pink/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-pink/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-pink/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-pink/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-pink/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
+.attachtype {background-image: url('../../../../images/content-types.png');}
 .icon.border.camera{
-  background-image: url("../diabook-pink/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-pink/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 1px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  background-color: #fff;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+  background-image: url("../diabook-pink/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-pink/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+
+.hide-comments-outer {background-color: #fff;}
+
+a {color: #333333;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #D02B55;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
 #saved-search-ul .tool:hover,
 #nets-sidebar .tool:hover,
 #sidebar-group-list .tool:hover ,
 #fileas-sidebar .tool:hover {
        background: aliceBlue;
 }
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
+
 .tool a {
-  color: #D02B55;
+  color: #d02b55;
 }
-.tool a:hover {
-  text-decoration: none;
+
+nav a, nav a:active, nav a:visited, nav a:link, nav a:hover {
+color: #fff;
 }
+
 /* popup notifications */
-div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
-header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
-  background: #FFC1CA;
-  background-color: #FFC1CA;
-  z-index: 100;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
+div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
 
+
+header {
+  background: #ffc1ca;
+  background-color: #ffc1ca;
 }
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
-}
+
+header #site-location {display: none;}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: black;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
 }
-/* nav */
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #FFC1CA;
+  background: #ffc1ca;
   color: #000;
-  z-index: 99;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  
-}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
-  /*color: #1f1f1f;*/
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
 
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-nav .nav-menu-icon:hover {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-
-/*color*/
-nav .nav-menu-icon.selected {
-  background-color: #FFE9EC;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
-nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
+ nav .nav-notify {
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
+
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;}
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-pink/icons/messages.png");
-       }
+       background-image: url("../diabook-pink/icons/messages.png");}
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-pink/icons/notify.png");
-       }
+       background-image: url("../diabook-pink/icons/notify.png");}
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-pink/icons/contacts.png");
-       }
+       background-image: url("../diabook-pink/icons/contacts.png");}
        
 nav #nav-apps-link.selected {
   background-color: #fff;
@@ -768,1327 +152,66 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #FFE9EC;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #D02B55; /*bdcdd4;*/
-  color: #fff;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
+  background-color: #d02b55;
+  color: #000;
 }
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
+.menu-profile-list:hover{background: #d02b55;}
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#profile_side a{
-  color: #333;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #FFF4F6; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../diabook-pink/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../diabook-pink/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../diabook-pink/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../diabook-pink/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../diabook-pink/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../diabook-pink/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../diabook-pink/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
+.menu-profile-icon.home{background: url("../diabook-pink/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{background: url("../diabook-pink/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{background: url("../diabook-pink/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{background: url("../diabook-pink/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{background: url("../diabook-pink/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{background: url("../diabook-pink/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{background: url("../diabook-pink/icons/pscontacts.png") no-repeat;}
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
--moz-border-bottom-colors: #dbdbdb;
-  -moz-border-top-colors: #999;
-  -moz-border-left-colors: #999;
-  -moz-border-right-colors: #dbdbdb;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums ul li a{
-  color: #3465A4;
-}
-.widget .tool.selected {
-  background: url("../diabook-pink/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-span.sbox_l  {
-       background: white url('../diabook-pink/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
-}
+aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;}
 
-span.sbox_r  {
-       background: white url('../diabook-pink/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
-}
+#side-bar-photos-albums li{list-style-type: disc;}
+#side-bar-photos-albums ul li{margin-left: 30px;
+  padding-left: 0px;}
+#side-bar-photos-albums ul li a{color: #3465a4;}
 
-span.sbox input {
-       background: white url('../diabook-pink/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: auto;
-  padding: 0px 0px 0px 12px;
-}
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+.widget .tool.selected {background: url("../diabook-pink/icons/selected.png") no-repeat left center;}
+span.sbox_l  {background: white url('../diabook-pink/icons/srch_l.gif') no-repeat top left;}
+span.sbox_r  {background: white url('../diabook-pink/icons/srch_r.gif') no-repeat top left;}
+span.sbox input {background: white url('../diabook-pink/icons/srch_bg.gif') repeat-x top left;}
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
-#birthday-wrapper a {
-       color: #3465A4;
-       }
+right_aside a{color: #3465a4;}
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
-right_aside a{color: #3465A4;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
 .close_box             { 
                background-image: url("../diabook-pink/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
-               }
-.close_box:hover       { 
-               background-image: url("../diabook-pink/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
-               }
-
+               cursor: pointer;}
 
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #D02B55;
-}
+.close_box:hover {background-image: url("../diabook-pink/icons/close_box.png");}
 
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
+.tread-wrapper a{color: #d02b55;}
 
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
+.wall-item-comment-wrapper {background-color: #fff;
+  width: 500px;}
 
+.button.creation2 {background-color: #d02b55;}
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
+#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;}
 
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
+#acl-showall {background-image: url("../../../../images/show_all_off.png");}
 
-.wall-item-container .wall-item-content {
+#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");}
 
-  max-width: 420px;
-  word-wrap: break-word;
+.acl-button-show {background-image: url("../../../../images/show_off.png");}
+.acl-button-hide {background-image: url("../../../../images/hide_off.png");}
+.acl-button-show.selected {background-image: url("../../../../images/show_on.png");}
+.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");}
 
+ul.tabs li .active {background-color: #d02b55;}
 
-}
+.field .onoff a {background-image: url("../../../../images/onoff.jpg");}
 
-.wall-item-container .wall-item-content img {
-  max-width: 400px; 
+.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");}
 
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-  background-color: #fff;
-  width: 500px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
-.button.creation2 {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
-
-.required {
-  display: inline;
-  color: #B20202;
-}
-
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
@@ -2096,498 +219,17 @@ border-radius: 10px;
 height: 145px !important;
 width: 145px !important;
 }
+
 .lframe {
   float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
 }
 
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
+.event-description:before {content: url('../../../../images/calendar.png');}
 
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
+.calendar.eventcal a {color: #3465a4;}
 
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #3465A4;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2595,40 +237,5 @@ list-style-type: disc;
         padding-left: 3px;
         background-color: #EEE;
 }
-.photo-top-album-link{
-  color: #3465A4;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
+.photo-top-album-link{color: #3465a4;}
 
index cf5fd270c8027a6e7ef6dfad3e18c6861561e183..d230f1d68493063db1be0b6a08794181b13b3380 100644 (file)
@@ -1,99 +1,10 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../../diabook/style-profile.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
-
-.icon.contacts {
-  background-image: url("../diabook-pink/icons/contacts.png");}
-.icon.notifications {
-  background-image: url("../diabook-pink/icons/notifications.png");}
-.icon.notify {
-  background-image: url("../diabook-pink/icons/notify.png");}
-.icon.messages {
-  background-image: url("../diabook-pink/icons/messages.png");}
-.icon.community {
-  background-image: url("../diabook-pink/icons/community.png");}
-  
+ .icon.contacts {background-image: url("../diabook-pink/icons/contacts.png");}
+.icon.notifications {background-image: url("../diabook-pink/icons/notifications.png");}
+.icon.notify {background-image: url("../diabook-pink/icons/notify.png");}
+.icon.messages {background-image: url("../diabook-pink/icons/messages.png");}
+.icon.community {background-image: url("../diabook-pink/icons/community.png");}  
 .icon.drop     { background-image: url("../diabook-pink/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-pink/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-pink/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-pink/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-pink/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-pink/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-pink/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-pink/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-pink/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-pink/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-pink/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-pink/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-pink/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-pink/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-pink/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-pink/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-pink/icons/camera.png");}
+.attach        { background-image: url("../diabook-pink/icons/attach.png");}
+.video2        { background-image: url("../diabook-pink/icons/video.png");}    
+.video         { background-image: url("../diabook-pink/icons/video.png");}
+.audio2        { background-image: url("../diabook-pink/icons/audio.png");}
+.audio         { background-image: url("../diabook-pink/icons/audio.png");}
+.weblink       { background-image: url("../diabook-pink/icons/weblink.png");}
+.globe         { background-image: url("../diabook-pink/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-pink/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-pink/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-pink/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-pink/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../diabook-pink/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-pink/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
+.attachtype {background-image: url('../../../../images/content-types.png');}                     
+.icon.border.camera{background-image: url("../diabook-pink/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-pink/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+a {color: #333333;}
+
+
+#sidebar-group-list .tool:hover {background: #EEE;}
 
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  border-top: 1px solid #BDCDD4;
-
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #D02B55;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover {
-       background: #EEE;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
 div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
-  background: #FFC1CA;
-  background-color: #FFC1CA;
-  z-index: 100;
--webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-   
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
+  background: #ffc1ca;
+  background-color: #ffc1ca;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
-  color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
-  font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-}
-/* nav */
+  color: #ffffff;
+  font-weight: bolder;}
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #FFC1CA;
+  background: #ffc1ca;
   color: #1f1f1f;
-  z-index: 99;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
-  color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
+  color: #1f1f1f;}
+
 nav #banner a,
 nav #banner a:active,
 nav #banner a:visited,
 nav #banner a:link,
 nav #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
 
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -671,82 +129,10 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-/*color*/
-nav .nav-menu-icon.selected {
-  background-color: #FFE9EC;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
   background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
-}
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
        background-image: url("../diabook-pink/icons/messages.png");
@@ -759,7 +145,7 @@ nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selecte
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
        background-image: url("../diabook-pink/icons/contacts.png");
        }
-       
+
 nav #nav-apps-link.selected {
  background-color: #fff;
   moz-border-radius: 5px 5px 0 0;
@@ -767,169 +153,11 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #D02B55; /*bdcdd4;*/
-  color: #fff;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
-
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
+  background-color: #d02b55;
+  color: #000;
 }
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  padding-top: 3px;
-  padding-bottom: 3px;
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #FFF4F6;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
 .menu-profile-list.home{
        background: url("../diabook-pink/icons/home.png") no-repeat;
        }
@@ -949,172 +177,10 @@ ul.menu-popup .empty {
        background: url("../diabook-pink/icons/com_side.png") no-repeat;
        }
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
 aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
   background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 48px;
-  height: 48px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
+ }
+
 #side-bar-photos-albums li{
 list-style-type: disc;
 }
@@ -1123,782 +189,57 @@ list-style-type: disc;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #3465A4;
+  color: #3465a4;
 }
+
 .widget .tool.selected {
   background: url("../diabook-pink/icons/selected.png") no-repeat left center;
 }
-/* widget: search */
+
 span.sbox_l  {
        background: white url('../diabook-pink/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
 }
 
 span.sbox_r  {
        background: white url('../diabook-pink/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
 }
 
 span.sbox input {
        background: white url('../diabook-pink/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
 }
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 611px;
-  padding: 0px 0px 0px 12px;
-}
-
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
 #birthday-wrapper a {
        color: #3465A4;
        }
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  /*padding-right: 10px;*/
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
 right_aside a{color: #3465A4;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
+
 .close_box             { 
                background-image: url("../diabook-pink/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
                }
 .close_box:hover       { 
                background-image: url("../diabook-pink/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
                }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: #D02B55;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
-
-
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px;
-
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
 
+.tread-wrapper a{
+  color: #d02b55;
 }
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-        font-weight: bolder;
-        cursor: pointer;
-}
 .button.creation2 {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
+    background-color: #d02b55;}
+
 #acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
+   background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
 }
+
 #acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
+  background-image: url("../../../../images/show_all_off.png");}
+
 #acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
+  background-image: url("../../../../images/show_all_on.png");}
+
 .acl-button-show {
   background-image: url("../../../../images/show_off.png");
 }
@@ -1906,657 +247,37 @@ transition: all 0.2s ease-in-out;
   background-image: url("../../../../images/hide_off.png");
 }
 .acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
   background-image: url("../../../../images/show_on.png");
 }
 .acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
   background-image: url("../../../../images/hide_on.png");
 }
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
 
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.tabs li .active {
+    background-color: #d02b55;}
 
-.required {
-  display: inline;
-  color: #B20202;
+.field .onoff a {
+  background-image: url("../../../../images/onoff.jpg");
 }
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
 .oauthapp img.noicon {
   background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
+ }
+
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 48px;
-        height: 48px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
+margin: 0px;}
 
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
 .event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
+        content: url('../../../../images/calendar.png');}
 
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
   color: #3465A4;      
        }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
 
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2567,37 +288,3 @@ list-style-type: disc;
 .photo-top-album-link{
   color: #3465A4;
        }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
index e9bcd53d042c414a11d907437239a22e8a54b5c1..c958c6028e9dccf21d3bb1ae38277628e402f486 100644 (file)
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../diabook/style.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-        list-style: none;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+/* Why are these paths so long?  They should probably become ../icons/ in the next revision */
 
 .icon.bb-url{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-url.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-url.png");}
 .icon.quote{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/quote.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/quote.png");}
 .icon.bold{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bold.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bold.png");}
 .icon.underline{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/underline.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/underline.png");}
 .icon.italic{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/italic.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/italic.png");}
 .icon.bb-image{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-image.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-image.png");}
 .icon.bb-video{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-video.png");
-  float: right;
-  margin-top: 2px;}
-  
-.icon.contacts {
+  background-image: url("../../../view/theme/diabook/diabook-pink/icons/bb-video.png");}
+ .icon.contacts {
   background-image: url("../../../view/theme/diabook/diabook-pink/icons/contacts.png");}
 .icon.notifications {
   background-image: url("../../../view/theme/diabook/diabook-pink/icons/notifications.png");}
 .icon.lock             { background-image: url("../../../view/theme/diabook/diabook-pink/icons/lock.png");}
 .icon.unlock           { background-image: url("../../../view/theme/diabook/diabook-pink/icons/unlock.png");}
 .icon.language    { background-image: url("../../../view/theme/diabook/diabook-pink/icons/language.png");}
-
-
-.camera        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../../../view/theme/diabook/diabook-pink/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../../../view/theme/diabook/diabook-pink/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../../../view/theme/diabook/diabook-pink/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-.icon.block   {background-image: url("../diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
-.icon.block.dim  {background-image: url("../diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
-.icon.ad_drop  { background-image: url("../diabook/icons/drop.png");
-                         display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}                      
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png");}
+.attach        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/attach.png");}
+.video2        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png"); }  
+.video         { background-image: url("../../../view/theme/diabook/diabook-pink/icons/video.png");}
+.audio2        { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");}
+.audio         { background-image: url("../../../view/theme/diabook/diabook-pink/icons/audio.png");}
+.weblink       { background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png");}
+.globe         { background-image: url("../../../view/theme/diabook/diabook-pink/icons/globe.png");}
+.unglobe       { background-image: url("../../../view/theme/diabook/diabook-pink/icons/unglobe.png");}
+.edit    {background-image: url("../../../view/theme/diabook/diabook-pink/icons/pencil2.png");}
+.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");}                   
 .icon.on             { background-image: url("../../../view/theme/diabook/diabook-pink/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../../../view/theme/diabook/diabook-pink/icons/toogle_off.png"); background-repeat: no-repeat;}
 .icon.prev           { background-image: url("../../../view/theme/diabook/diabook-pink/icons/prev.png"); background-repeat: no-repeat;}
 .icon.next           { background-image: url("../../../view/theme/diabook/diabook-pink/icons/next.png"); background-repeat: no-repeat;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 684px;
-  border-bottom: 1px solid #BDCDD4;
-  padding: 8px;
-}
+icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-pink/icons/camera.png");}
+.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-pink/icons/weblink.png");}
+av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
+       background-image: url("../../../view/theme/diabook/diabook-pink/icons/messages.png");}
+.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
+       background-image: url("../../../view/theme/diabook/diabook-pink/icons/notify.png");}
+nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-pink/icons/contacts.png");}
 
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
+.menu-profile-icon.home{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{
+       background: url("../../../view/theme/diabook/diabook-pink/icons/pscontacts.png") no-repeat;}
 
-#jappix_mini {
-right: 45px !important;
-}
 
 
-h4 {
-  font-size: 1.1em;
-}
 
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
+a {color: #333333;}
 
-.wall-item-name-link {
-/*  float: left;*/
-}
+/*bug?  This is probably supposed to be green, but we'll keep the original for now and fix later if it is wrong. */
 
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+#fileas-sidebar .tool:hover  {background: #aliceBlue;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-/*color*/
-.fakelink {
-  color: #D02B55;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-.intro-end {
-       border-bottom: 1px solid black;
-   clear: both;
-   margin-bottom: 25px;
-   padding-bottom: 25px;
-   width: 75%;
-       }
-.intro-form-end {
-       clear: both;
-       }
-.intro-fullname {
-       padding-bottom: 5px;
-   padding-top: 5px;
-       }
-.intro-wrapper-end {
-       clear: both;
-   padding-bottom: 5px;
-       }
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
-#fileas-sidebar .tool:hover  {
-       background: aliceBlue;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-/*color*/
-.tool a {
-  color: #D02B55;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
-div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
-div.jGrowl div.notice {
-  background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/*color*/
 /* header */
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
-  background: #FFC1CA;
-  background-color: #FFC1CA;
-  z-index: 100;
--webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: banner;
-  width: 82%;
-  margin-left: 25%;
+  background: #ffc1ca;
+  background-color: #ffc1ca;
+  border-bottom: 1px;
+  border-bottom-color: black;
+  border-bottom-style: inset;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
-  margin-left: 3px;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
 }
+
 header #banner #logo-text {
 font-size: 20px!important;position: relative!important;top: -4px!important;
+ font-size: 20px!important;position: relative!important;top: -4px!important;
 }
+
 /* messages */
-/*color*/
 #message-new {
-  background: #D02B55;
+  background: #d02b55;
   border: 1px solid #333;
-  width: 150px;
-}
-#message-new a {
-  color: #ffffff;
-  text-align: center;
-  display: block;
-  font-weight: bold;
-  padding: 1em 0px;
-    text-decoration: none;
-}
-.mail-list-wrapper {
-  background-color: #f6f7f8;
-  margin-bottom: 5px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-.mail-list-wrapper span {
-  display: block;
-  float: left;
-  width: 20%;
-  overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
-  width: 30%;
-  padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
-  display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
-  font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
-  padding: 4px 4px 0px 4px;
-  text-align: right;
-}
-.mail-list-wrapper .mail-delete {
-  float: right;
-}
-#mail-display-subject {
-  background-color: #f6f7f8;
-  color: #2d2d2d;
-  margin-bottom: 10px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-#mail-display-subject span {
-  float: left;
-  overflow: hidden;
-  padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
-  float: right;
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
 }
-#mail-display-subject:hover .mail-delete {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-/*color*/
+
 /* nav */
-nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #FFC1CA;
+nav { background: #ffc1ca;
   color: #1f1f1f;
-  z-index: 99;
-  -webkit-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.7);
-  
+ border-bottom: 1px;
+  border-bottom-color: black;
+  border-bottom-style: inset;
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -810,95 +144,16 @@ nav .nav-menu-icon:hover {
   -webkit-border-radius: 5px 5px 0 0;
   border-radius: 5px 5px 0 0;
 }
-/*color*/
-nav .nav-menu-icon.selected {
-  background-color: #FFE9EC;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
+
 nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
+background-color: #fff;
   border: 1px solid black;
 }
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
+
 nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 14px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+font-size: 14px;
 }
 
-nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../../../view/theme/diabook/diabook-pink/icons/messages.png");
-       }
-       
-/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../../../view/theme/diabook/diabook-pink/icons/notify.png");
-       }
-       
-nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../../../view/theme/diabook/diabook-pink/icons/contacts.png");
-       }
-       
 nav #nav-apps-link.selected {
  background-color: #fff;
   moz-border-radius: 5px 5px 0 0;
@@ -906,290 +161,20 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-/*color*/
 ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #FFE9EC;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
-/*color*/
+  background: #ffe9ec;}
+
 ul.menu-popup a:hover {
-  background-color: #D02B55; /*bdcdd4;*/
+  background-color: #d02b55; 
   color: #fff;
 }
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 425px !important;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
-       /*color*/
 .menu-profile-list:hover{
-       background: #FFF4F6; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../../../view/theme/diabook/diabook-pink/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 180px;
-  padding: 0px 10px 0px 20px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
+       background: #fff4f6; 
 }
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 173px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 173px;
-       }
-aside #side-peoplefind-url {
-       width: 173px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-/*color*/
+
 aside #likes a, a:visited, a:link {
-               color: #D02B55;
+               color: #d02b55;
                text-decoration: none;
                cursor: pointer;
                
@@ -1198,49 +183,16 @@ aside #likes a:hover{
        text-decoration: underline;
        }
 
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;          
-       }
-#login-submit-wrapper{
 
-  margin-bottom: 12px;
-       }
-aside #login-submit-button{
-  margin-left: 0px!important;  
-       }
-aside #login-extra-links{
-  padding-top: 0px!important;  
-       }
+
 .group_selected {
-  background: url("../diabook/icons/selected.png") no-repeat left center;
+  background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
   float: left;
   height: 22px;
   width: 22px;
 }
 .group_unselected {
-  background: url("../diabook/icons/unselected.png") no-repeat left center;
+  background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
   float: left;
   height: 22px;
   width: 22px;
@@ -1277,285 +229,26 @@ transition: all 0.2s ease-in-out;
   float: right;
   height: 10px;
 }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
+
 #side-bar-photos-albums ul li{
   margin-left: 30px;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #3465A4;
+  color: #3465a4;
 }
-.widget .tool.selected {
-  background: url("../../../view/theme/diabook/diabook-pink/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 800px;
-  padding: 0px 0px 0px 12px;
-}
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 775px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
+.widget .tool.selected {
+  background: url("../../../view/theme/diabook/diabook-pink/icons/selected.png") no-repeat left center;}
 
 #birthday-wrapper a {
-       color: #3465A4;
+       color: #3465a4;
        }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 775px;
-  padding-top: 10px;
-}
-/*color*/
-.tread-wrapper a{
-  color: #D02B55;
-}
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 780px;
-}
-.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-.wall-item-photo-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-photo-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-photo-container .wall-item-content {
-
-  max-width: 720px;
-  word-wrap: break-word;
 
-  margin-bottom: 14px;
-}
-.wall-item-photo-container .wall-item-content img {
-  max-width: 700px;
-}
-.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-photo-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-photo-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-photo-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-photo-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-photo-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 40px;
-  width: 650px;
-  border-bottom: 1px solid #D2D2D2;
-}
-.wall-item-photo-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-photo-container {
-  display: table;
-  width: 780px;
-}
-.my-comment-photo {
-  width: 48px;
-  margin-left: 40px;
-  margin-right: 32px;
-       }
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-}
-.comment-edit-text-empty {
-    width: 500px;
-    border: 1px solid #D2D2D2;
-    height: 3.2em;
-    color: #2d2d2d;
-}
-.comment-edit-text-full {
-  font-size: 12.5px;
-  height: 3.3em;
-  
-  border: 1px solid #D2D2D2;
-  width: 500px;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-    display: table-cell;
+.tread-wrapper a{
+  color: #d02b55;
 }
 
-
 .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
   display: table-row;
 }
@@ -1654,7 +347,7 @@ body .pageheader{
 .wall-item-container .wall-item-actions-tools {
   float: right;
   width: 80px;
-  display: table-cell;done
+  display: table-cell;
 }
 .wall-item-container .wall-item-actions-tools a {
   float: right;
@@ -1669,1264 +362,40 @@ body .pageheader{
   width: 700px;
   border-bottom: 1px solid hsl(198, 21%, 79%);
 }
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
+
 .comment-edit-preview {
   width: 500px;
   margin-top: 10px;
-  background-color:  #fff797;
 }
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
+.button.creation2 {
+    background-color: #d02b55;
+        cursor: pointer;
 }
 
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
 
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
+/*ACL*/
+
+ul.tabs li .active {
+    background-color: #d02b55;
+    box-shadow: 2px 2px 2px #CFCFCF;}
+
+ul.rs_tabs li .selected {
+    background-color: #d02b55;}
+
+/*Photo */
+
+.photo {
+box-shadow: 2px 2px 5px 0px #000000;
+margin: 0px;
+border-radius: 10px;
 }
 
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 785px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 783px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title, #profile-jot-form #jot-category {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 785px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 785px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 785px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*color*/
-.button.creation2 {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-/*color*/
-ul.tabs li .active {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-//settings tabs
-ul.rs_tabs {
-  list-style-type: none;
-  font-size: 11px;
-}
-ul.rs_tabs li {
-  float: left;
-  margin-bottom: 30px;
-  clear: both;
-}
-/*color*/
-ul.rs_tabs li .selected {
-    background-color: #D02B55;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    font-size: 13px;
-}
-.rs_tabs {
-    list-style-type: none;
-    font-size: 11px;
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.rs_tab.button {       
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: bolder;
-    padding: 3px;
-    color:  #333333;
-    text-decoration: none;
-       }
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-.suggest-select {
-width: 500px;
-height: 350px; 
-       }
-.message-to-select {
-       width: 400px;
-   height: 150px;
-       }
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
-
-.required {
-  display: inline;
-  color: #B20202;
-}
-
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
-.photo {
-box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-    color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-position: relative;
-width: 400px;
-padding: 20px;
-padding-top: 10px;
-margin: 0 0px;
-margin-bottom: 10px;
-background-color: white;
--webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
--moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-}
-.vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-description {
-margin-left: 10px;
-margin-right: 10px;
-font-size: 1.1em;
-font-weight: bolder;
-}
-.vevent .event-start, .vevent .event-end {
-
-margin-right: 20px;
-margin-bottom: 2px;
-margin-top: 2px;
-font-size: 0.9em;
-text-align: left;
-}
-.event-start .dtstart, .event-end .dtend {
-float: right;
-}
-
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content:   url("../diabook/icons/events2.png") !important;
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #3465A4;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-       float: left;
-   margin-right: 10px;
-       }
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
+.calendar.eventcal a {
+  color: #3465a4;      
 }
 
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-section .directory-item dl {
-  height: auto;
-  overflow: auto;      
-}
-section .directory-item dt {
-  float: left;
-  margin-left: 0px;
-  text-align: right;
-  color: #999;
-}
-section .directory-item dd {
-  float: left;
-  margin-left: 5px;
-}
-.directory-profile-wrapper {
-  float: left;
-  max-height: 178px;
-  overflow: hidden;
-  width: 635px;
-}
-.directory-copy-wrapper {
-  float: left;
-  overflow: hidden;    
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 800px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-
-section .directory-photo-wrapper {
-  float: left;
-  height: 200px;
-  width: 165px;  
-}
-.contact-name {
-  font-weight: bold;
-  font-size: 18px;
-  margin-bottom: -3px;
-  text-align: left;
-}
-.contact-details {
-  color: #999999;
-}
-.page-type {
-  font-size: 10px;
-  font-style: italic;
-}
-.directory-detailscolumn-wrapper {
-  float: left; 
-  width: 305px;
-  margin-right: 10px;  
-}
-.directory-profile-wrapper dl {
-  margin-top: 3px;
-  margin-bottom: 3px;
-}
-.directory-profile-title {
-  font-weight: bold;
-  margin-bottom: 3px;
-  font-size: 14px;
-}
-#side-bar-photos-albums{
-       margin-top: 15px;       
-}
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2935,39 +404,5 @@ section .directory-photo-wrapper {
         background-color: #EEE;
 }
 .photo-top-album-link{
-  color: #3465A4;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
+  color: #3465a4;
+}
\ No newline at end of file
index 80d379dea7136e6464ba5a5fb69c69c3425ec0a4..1f004842be47b6299d7bd9705686f4d014beedd0 100644 (file)
@@ -1,88 +1,6 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
-
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
+@import url('../../diabook/style-network.css');
 
+/* There seem to be a stupid number of icons.  Can we do this better? Are they all actually used? */ 
 .icon.contacts {
   background-image: url("../diabook-red/icons/contacts.png");}
 .icon.notifications {
@@ -93,7 +11,6 @@
   background-image: url("../diabook-red/icons/messages.png");}
 .icon.community {
   background-image: url("../diabook-red/icons/community.png");}
-  
 .icon.drop     { background-image: url("../diabook-red/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-red/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-red/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-red/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-red/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-red/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-red/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-red/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-red/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-red/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-red/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-red/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-red/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-red/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-red/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-red/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-red/icons/camera.png");}
+.attach        { background-image: url("../diabook-red/icons/attach.png");}
+.video2        { background-image: url("../diabook-red/icons/video.png");}     
+.video         { background-image: url("../diabook-red/icons/video.png");}
+.audio2        { background-image: url("../diabook-red/icons/audio.png");}
+.audio         { background-image: url("../diabook-red/icons/audio.png");}
+.weblink       { background-image: url("../diabook-red/icons/weblink.png");}
+.globe         { background-image: url("../diabook-red/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-red/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-red/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-red/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-red/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
+.attachtype {background-image: url('../../../../images/content-types.png');}
 .icon.border.camera{
-  background-image: url("../diabook-red/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-red/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
+  background-image: url("../diabook-red/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-red/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+
+.hide-comments-outer {background-color: #fff;}
+
+a {color: #333333;}
 
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 1px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  background-color: #fff;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #333
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
 #saved-search-ul .tool:hover,
 #nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
+#sidebar-group-list .tool:hover ,
 #fileas-sidebar .tool:hover {
-       background: #FFE499;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
+       background: aliceBlue;
 }
+
 .tool a {
-  color: ##3F8FBA;
+  color: #333333;
 }
-.tool a:hover {
-  text-decoration: none;
+
+nav a, nav a:active, nav a:visited, nav a:link, nav a:hover {
+color: #fff;
 }
+
 /* popup notifications */
-div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+div.jGrowl div.notice {background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #fff4d6 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #ff500f;
   background-color: #ff500f;
-  z-index: 100;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-  background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ad3b0a', endColorstr='#ff4f0f');
-
-background-image: -webkit-gradient(
-       linear,
-       left bottom,
-       left top,
-       color-stop(0, rgb(173,59,10)),
-       color-stop(0.65, rgb(255,79,15))
-);
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
 }
+
+header #site-location {display: none;}
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: black;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
-  
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-  margin-left: 3px;
 }
-/* nav */
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
   background: #ff500f;
   color: #000;
-  z-index: 99;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-  background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-
-background-image: -webkit-gradient(
-       linear,
-       left bottom,
-       left top,
-       color-stop(0, rgb(173,59,10)),
-       color-stop(0.65, rgb(255,79,15))
-);
-}
-nav a,
-nav a:active,
-nav a:visited,
-nav a:link,
-nav a:hover {
-  /*color: #1f1f1f;*/
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
 }
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
-}
-
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
 
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -698,92 +139,20 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff4d6;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
-nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
-}
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 15px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+ nav .nav-notify {
+  border: 1px solid black;
 }
 
+nav #nav-home-link, #nav-directory-link, #nav-apps-link{font-size: 14px;}
+
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-red/icons/messages2.png");
-       }
+       background-image: url("../diabook-red/icons/messages.png");}
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-red/icons/notify2.png");
-       }
+       background-image: url("../diabook-red/icons/notify.png");}
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-red/icons/contacts2.png");
-       }
+       background-image: url("../diabook-red/icons/contacts.png");}
        
 nav #nav-apps-link.selected {
   background-color: #fff4d6;
@@ -792,1323 +161,66 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff4d6;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #ffe499; /*bdcdd4;*/
-  color: #000;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
+  background-color: #ffe499;
+  color: #fff;
 }
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
+.menu-profile-list:hover{background: #ffe499;}
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#profile_side a{
-  color: #333;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #FFE499; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../diabook-red/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../diabook-red/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../diabook-red/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../diabook-red/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../diabook-red/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../diabook-red/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../diabook-red/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
--moz-border-bottom-colors: #dbdbdb;
-  -moz-border-top-colors: #999;
-  -moz-border-left-colors: #999;
-  -moz-border-right-colors: #dbdbdb;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums ul li a{
-  color: #1872A2;
-}
-.widget .tool.selected {
-  background: url("../diabook-red/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-span.sbox_l  {
-       background: white url('../diabook-red/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
-}
+.menu-profile-icon.home{background: url("../diabook-red/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{background: url("../diabook-red/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{background: url("../diabook-red/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{background: url("../diabook-red/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{background: url("../diabook-red/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{background: url("../diabook-red/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{background: url("../diabook-red/icons/pscontacts.png") no-repeat;}
 
-span.sbox_r  {
-       background: white url('../diabook-red/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
-}
+aside #dfrn-request-link {background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;}
 
-span.sbox input {
-       background: white url('../diabook-red/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: auto;
-  padding: 0px 0px 0px 12px;
-}
+#side-bar-photos-albums li{list-style-type: disc;}
+#side-bar-photos-albums ul li{margin-left: 30px;
+  padding-left: 0px;}
+#side-bar-photos-albums ul li a{color: #ff500f;}
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
+.widget .tool.selected {background: url("../diabook-red/icons/selected.png") no-repeat left center;}
+span.sbox_l  {background: white url('../diabook-red/icons/srch_l.gif') no-repeat top left;}
+span.sbox_r  {background: white url('../diabook-red/icons/srch_r.gif') no-repeat top left;}
+span.sbox input {background: white url('../diabook-red/icons/srch_bg.gif') repeat-x top left;}
 
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
 right_aside a{color: red;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
+
 .close_box             { 
                background-image: url("../diabook-red/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
-               }
-.close_box:hover       { 
-               background-image: url("../diabook-red/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
-               }
-               
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: red;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
+               cursor: pointer;}
 
+.close_box:hover {background-image: url("../diabook-red/icons/close_box.png");}
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
+.tread-wrapper a{color: red;}
 
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px; 
-
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-  background-color: #fff;
-  width: 500px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
+.wall-item-comment-wrapper {background-color: #fff;
+  width: 500px;}
 
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
+.button.creation2 {background-color: #ff500f;}
 
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
+#acl-search {background: #ffffff url("../../../../images/search_18.png") no-repeat right center;}
 
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
+#acl-showall {background-image: url("../../../../images/show_all_off.png");}
 
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
+#acl-showall.selected {background-image: url("../../../../images/show_all_on.png");}
 
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
+.acl-button-show {background-image: url("../../../../images/show_off.png");}
+.acl-button-hide {background-image: url("../../../../images/hide_off.png");}
+.acl-button-show.selected {background-image: url("../../../../images/show_on.png");}
+.acl-button-hide.selected {background-image: url("../../../../images/hide_on.png");}
 
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
+ul.tabs li .active {background-color: #535353;}
 
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
+.field .onoff a {background-image: url("../../../../images/onoff.jpg");}
 
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    cursor: pointer;
-    font-weight: bolder;
-}
-.button.creation2 {
-    background-color: #FF500F;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}
-/*input[type="submit"] {
-       background-color: #FF500F;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    cursor: pointer;
-    font-weight: bolder;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #535353;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
-
-.required {
-  display: inline;
-  color: #B20202;
-}
+.oauthapp img.noicon {background-image: url("../../../../images/icons/48/plugin.png");}
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
 margin: 0px;
@@ -2116,498 +228,17 @@ border-radius: 10px;
 height: 145px !important;
 width: 145px !important;
 }
+
 .lframe {
   float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
-
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
 }
 
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
-.event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
+.event-description:before {content: url('../../../../images/calendar.png');}
 
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #1872A2;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
+.calendar.eventcal a {color: #1872a2;}
 
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2615,40 +246,5 @@ list-style-type: disc;
         padding-left: 3px;
         background-color: #EEE;
 }
-.photo-top-album-link{
-  color: #1872A2;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
+.photo-top-album-link{color: #1872a2;}
 
index be9581c2fee585dda427b1c24d8f89c802ebd355..58f299a4ecc73c96c98c6e51f4da1dd6d2559816 100644 (file)
@@ -1,99 +1,10 @@
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../../diabook/style-profile.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
-
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
-
-.icon.contacts {
-  background-image: url("../diabook-red/icons/contacts.png");}
-.icon.notifications {
-  background-image: url("../diabook-red/icons/notifications.png");}
-.icon.notify {
-  background-image: url("../diabook-red/icons/notify.png");}
-.icon.messages {
-  background-image: url("../diabook-red/icons/messages.png");}
-.icon.community {
-  background-image: url("../diabook-red/icons/community.png");}
-  
+ .icon.contacts {background-image: url("../diabook-red/icons/contacts.png");}
+.icon.notifications {background-image: url("../diabook-red/icons/notifications.png");}
+.icon.notify {background-image: url("../diabook-red/icons/notify.png");}
+.icon.messages {background-image: url("../diabook-red/icons/messages.png");}
+.icon.community {background-image: url("../diabook-red/icons/community.png");}  
 .icon.drop     { background-image: url("../diabook-red/icons/drop.png");}
 .icon.drophide         { background-image: url("../diabook-red/icons/drop.png");}
 .icon.dislike  { background-image: url("../diabook-red/icons/dislike.png");}
 .icon.lock             { background-image: url("../diabook-red/icons/lock.png");}
 .icon.unlock           { background-image: url("../diabook-red/icons/unlock.png");}
 .icon.language    { background-image: url("../diabook-red/icons/language.png");}
-
-
-.camera        { background-image: url("../diabook-red/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../diabook-red/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../diabook-red/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../diabook-red/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../diabook-red/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../diabook-red/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../diabook-red/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../diabook-red/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../diabook-red/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../diabook-red/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-                         
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-.block                 { background-position: -90px  0px;}
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../diabook-red/icons/camera.png");}
+.attach        { background-image: url("../diabook-red/icons/attach.png");}
+.video2        { background-image: url("../diabook-red/icons/video.png");}     
+.video         { background-image: url("../diabook-red/icons/video.png");}
+.audio2        { background-image: url("../diabook-red/icons/audio.png");}
+.audio         { background-image: url("../diabook-red/icons/audio.png");}
+.weblink       { background-image: url("../diabook-red/icons/weblink.png");}
+.globe         { background-image: url("../diabook-red/icons/globe.png");}
+.unglobe       { background-image: url("../diabook-red/icons/unglobe.png");}
+.edit    {background-image: url("../diabook-red/icons/pencil2.png");}
 .icon.on             { background-image: url("../diabook-red/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../diabook-red/icons/toogle_off.png"); background-repeat: no-repeat;}
 .prev           { background-position: -90px  -60px;}
 .next           { background-position: -110px -60px;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../diabook-red/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../diabook-red/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../../images/icons/48/unlock.png");
-}
+.attachtype {background-image: url('../../../../images/content-types.png');}                     
+.icon.border.camera{background-image: url("../diabook-red/icons/camera.png");}
+.icon.border.link{background-image: url("../diabook-red/icons/weblink.png");}
+.icon.s10.notify {background-image: url("../../../../images/icons/10/notify_off.png");}
+.icon.s10.gear {background-image: url("../../../../images/icons/10/gear.png");}
+.icon.s10.add {background-image: url("../../../../images/icons/10/add.png");}
+.icon.s10.delete {background-image: url("../../../../images/icons/10/delete.png");}
+.icon.s10.edit {background-image: url("../../../../images/icons/10/edit.png");}
+.icon.s10.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s10.menu {background-image: url("../../../../images/icons/10/menu.png");}
+.icon.s10.link {background-image: url("../../../../images/icons/10/link.png");}
+.icon.s10.lock {background-image: url("../../../../images/icons/10/lock.png");}
+.icon.s10.unlock {background-image: url("../../../../images/icons/10/unlock.png");}
+.icon.s16.notify {background-image: url("../../../../images/icons/16/notify_off.png");}
+.icon.s16.gear {background-image: url("../../../../images/icons/16/gear.png");}
+.icon.s16.add {background-image: url("../../../../images/icons/16/add.png");}
+.icon.s16.delete {background-image: url("../../../../images/icons/16/delete.png");}
+.icon.s16.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s16.menu {background-image: url("../../../../images/icons/16/menu.png");}
+.icon.s16.lock {background-image: url("../../../../images/icons/16/lock.png");}
+.icon.s16.unlock {background-image: url("../../../../images/icons/16/unlock.png");}
+.icon.s22.notify {background-image: url("../../../../images/icons/22/notify_off.png");}
+.icon.s22.gear {background-image: url("../../../../images/icons/22/gear.png");}
+.icon.s22.add {background-image: url("../../../../images/icons/22/add.png");}
+.icon.s22.delete {background-image: url("../../../../images/icons/22/delete.png");}
+.icon.s22.edit {background-image: url("../../../../images/icons/22/edit.png");}
+.icon.s22.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s22.menu {background-image: url("../../../../images/icons/22/menu.png");}
+.icon.s22.link {background-image: url("../../../../images/icons/22/link.png");}
+.icon.s22.lock {background-image: url("../../../../images/icons/22/lock.png");}
+.icon.s22.unlock {background-image: url("../../../../images/icons/22/unlock.png");}
+.icon.s48.notify {background-image: url("../../../../images/icons/48/notify_off.png");}
+.icon.s48.gear {background-image: url("../../../../images/icons/48/gear.png");}
+.icon.s48.add {background-image: url("../../../../images/icons/48/add.png");}
+.icon.s48.delete {background-image: url("../../../../images/icons/48/delete.png");}
+.icon.s48.edit {background-image: url("../../../../images/icons/48/edit.png");}
+.icon.s48.star {background-image: url("../../../../images/star_dummy.png");}
+.icon.s48.menu {background-image: url("../../../../images/icons/48/menu.png");}
+.icon.s48.link {background-image: url("../../../../images/icons/48/link.png");}
+.icon.s48.lock {background-image: url("../../../../images/icons/48/lock.png");}
+.icon.s48.unlock {background-image: url("../../../../images/icons/48/unlock.png");}
+
+a {color: #333333;}
+
+
+#sidebar-group-list .tool:hover {background: #EEE;}
 
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 484px;
-  border-bottom: 1px solid #BDCDD4;
-  border-top: 1px solid #BDCDD4;
-
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
-
-h4 {
-  font-size: 1.1em;
-}
-
-a {
-       color: #333333;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
-
-.wall-item-name-link {
-/*  float: left;*/
-}
-
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: #333;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover {
-       background: #EEE;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
 div.jGrowl div.notice {
-  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-/* header */
+  background: #511919 url("../../../../images/icons/48/notice.png") no-repeat 5px center;}
+div.jGrowl div.info {background: #fff4d6 url("../../../../images/icons/48/info.png") no-repeat 5px center;}
+
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #ff500f;
   background-color: #ff500f;
-  z-index: 100;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-  background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: left;
-  width: 82%%;
-  margin-left: 25%;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
-  font-weight: bolder;
-}
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
-header #banner #logo-text {
-  font-size: 20px;
-  position: absolute;
-  top: 10%;
-  margin-left: 3px;
-}
-/* nav */
+  font-weight: bolder;}
+
 nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
   background: #ff500f;
   color: #1f1f1f;
-  z-index: 99;
-  border-bottom: 1px;
-  border-bottom-color: black;
-  border-bottom-style: inset;
-  background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
-  color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
+  color: #1f1f1f;}
+
 nav #banner a,
 nav #banner a:active,
 nav #banner a:visited,
 nav #banner a:link,
 nav #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
 
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -680,93 +129,23 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff4d6;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
   background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
-}
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
-}
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
-nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 15px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+  border: 1px solid black;
 }
 
 nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../diabook-red/icons/messages2.png");
+       background-image: url("../diabook-red/icons/messages.png");
        }
        
 /*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../diabook-red/icons/notify2.png");
+       background-image: url("../diabook-red/icons/notify.png");
        }
        
 nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../diabook-red/icons/contacts2.png");
+       background-image: url("../diabook-red/icons/contacts.png");
        }
-       
+
 nav #nav-apps-link.selected {
  background-color: #fff4d6;
   moz-border-radius: 5px 5px 0 0;
@@ -774,169 +153,11 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
-ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff4d6;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
 ul.menu-popup a:hover {
-  background-color: #ffe499; /*bdcdd4;*/
-  color: #000;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 400px;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
-}
-
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
+  background-color: #ffe499;
+  color: #fff;
 }
 
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;
-  padding-top: 3px;
-  padding-bottom: 3px;
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-       }
-.menu-profile-list:hover{
-       background: #EEE;
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
 .menu-profile-list.home{
        background: url("../diabook-red/icons/home.png") no-repeat;
        }
@@ -956,172 +177,10 @@ ul.menu-popup .empty {
        background: url("../diabook-red/icons/com_side.png") no-repeat;
        }
 
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 160px;
-  padding: 0px 10px 0px 10px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
-}
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
 aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
   background: #005c94 url('../../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 150px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 150px;
-       }
-aside #side-peoplefind-url {
-       width: 150px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 48px;
-  height: 48px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;  
-       }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
+ }
+
 #side-bar-photos-albums li{
 list-style-type: disc;
 }
@@ -1130,780 +189,53 @@ list-style-type: disc;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #1872A2;
+  color: #1872a2;
 }
+
 .widget .tool.selected {
   background: url("../diabook-red/icons/selected.png") no-repeat left center;
 }
-/* widget: search */
+
 span.sbox_l  {
        background: white url('../diabook-red/icons/srch_l.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-left: 10px;
-       margin-top: 5px;
-       
 }
 
 span.sbox_r  {
        background: white url('../diabook-red/icons/srch_r.gif') no-repeat top left;
-       float: left;
-       width: 19px; height: 19px;
-       margin-top: 5px;
 }
 
 span.sbox input {
        background: white url('../diabook-red/icons/srch_bg.gif') repeat-x top left;
-       float: left;
-       margin-top: 5px;
-       border: 0;
-       height: 13px; width: 100px;
-       padding: 3px;
-       font: 11px/13px arial;
-       color: #000;
-}
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 611px;
-  padding: 0px 0px 0px 12px;
 }
 
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 575px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
-
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
-
-right_aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 170px;
-  /*padding-right: 10px;*/
-  /*border-left: 1px solid #D2D2D2;*/
-  
-  /* background: #F1F1F1; */
-}
 right_aside a{color: red;}
-right_aside h3 {border-bottom: 1px solid #D2D2D2; padding-top: 5px; padding-bottom: 0px; padding-left: 9px; margin-bottom: 0px; 
-margin-top:30px;}
-right_aside .directory-item {  width: 50px; height: 50px; vertical-align: center; text-align: center; }
-right_aside .directory-photo { margin: 0px; }
-right_aside .directory-photo-img { max-width: 45px; max-height: 45px; }
-right_aside #likes { margin: 0px; padding: 0px; list-style: none; }
-right_aside .items-wrapper{ overflow: auto;    width: 100%; }
-right_aside #lastusers-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-right_aside #ra-photos-wrapper { padding-left: 9px; padding-top: 3px; overflow: auto;  width: 100%; }
-#page-sidebar-right_aside{margin-top: 0px; margin-bottom: 30px;}
-#page-sidebar-right_aside ul {margin-top: 0px;}
-#page-sidebar-right_aside .label {max-width: 128px;}
-right_aside .icon {width: 10px; height: 10px;}
+
 .close_box             { 
                background-image: url("../diabook-red/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 0.1;
                }
 .close_box:hover       { 
                background-image: url("../diabook-red/icons/close_box.png");
-               float: right;
-               cursor: pointer;
-               opacity: 1;
--webkit-transition: all 0.2s ease-in-out;
--moz-transition: all 0.2s ease-in-out;
--o-transition: all 0.2s ease-in-out;
--ms-transition: all 0.2s ease-in-out;
-transition: all 0.2s ease-in-out;
                }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 575px;
-  padding-top: 10px;
-}
-.tread-wrapper a{
-  color: red;
-}
-
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 580px;
-}
-
 
-.wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-
-.wall-item-bottom {
-  font-size: 13px;
-}
-.wall-item-container .wall-item-bottom {
-/*  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container:hover .wall-item-bottom {
-/*  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out; */
-}
-.wall-item-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-location {
-  
-  clear: both;
-  overflow: hidden;
-  
-  margin-bottom: 5px;
-}
-
-.wall-item-container .wall-item-content {
-
-  max-width: 420px;
-  word-wrap: break-word;
-
-
-}
-
-.wall-item-container .wall-item-content img {
-  max-width: 400px;
-
-}
-.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-links .icon:hover, .wall-item-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-actions-social a {
-  float: left;
-}
-.wall-item-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 80px;
-  width: 500px;
-  border-bottom: 1px solid hsl(198, 21%, 79%);
-}
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-  background-color:  #fff797;
-}
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../../images/icons/22/user.png) no-repeat center center;*/
-
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
-}
-
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
-
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
-}
-
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 585px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 583px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
 
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 585px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
+.tread-wrapper a{
+  color: red;
 }
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 585px;
-       }
 
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 585px;
-}
 
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-       
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-        font-weight: bolder;
-        cursor: pointer;
-}
 .button.creation2 {
-    background-color: #FF500F;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
+    background-color: #ff500f;}
+
 #acl-search {
-  float: right;
-  background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
+   background: #ffffff url("../../../../images/search_18.png") no-repeat right center;
 }
+
 #acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
+  background-image: url("../../../../images/show_all_off.png");}
+
 #acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
+  background-image: url("../../../../images/show_all_on.png");}
+
 .acl-button-show {
   background-image: url("../../../../images/show_off.png");
 }
@@ -1911,657 +243,37 @@ transition: all 0.2s ease-in-out;
   background-image: url("../../../../images/hide_off.png");
 }
 .acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
   background-image: url("../../../../images/show_on.png");
 }
 .acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
   background-image: url("../../../../images/hide_on.png");
 }
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #535353;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
 
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
 
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
+ul.tabs li .active {
+    background-color: #535353;}
 
-.required {
-  display: inline;
-  color: #B20202;
+.field .onoff a {
+  background-image: url("../../../../images/onoff.jpg");
 }
 
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
 .oauthapp img.noicon {
   background-image: url("../../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
+ }
+
 .photo {
 box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
-}
+margin: 0px;}
 
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 48px;
-        height: 48px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-
-}
-.vevent .event-description, .vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-start {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
+.contact-photo-menu-button {background-image: url("../../../../images/icons/16/menu.png");}
 
 .event-description:before {
-        content: url('../../../../images/calendar.png');
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
+        content: url('../../../../images/calendar.png');}
 
-.calendar {
-        font-family: Courier, monospace;
-}
 .calendar.eventcal a {
-  color: #1872A2;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-        float: left;
-    margin-right: 5px;
-    margin-top: 30px;
-       }
-.comment-edit-text-empty {
-    margin: 10px 0 0;
-    width: 85%;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-}
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
+  color: #ffe499;      
        }
 
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 200px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-.contact-name {
-  text-align: left;
-  font-weight: bold;
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
-#side-bar-photos-albums ul li{
-  margin-left: 30px;
-  padding-left: 0px;
-       }
-#side-bar-photos-albums{
-       margin-top: 15px;       
-       }
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2570,39 +282,5 @@ list-style-type: disc;
         background-color: #EEE;
 }
 .photo-top-album-link{
-  color: #1872A2;
-       }
-.photo-top-album-img{
-       
+  color: #1872a2;
        }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
index 72592168b50a3bd316e7ee9b874e7bcc8bddb5d3..d7f4745b8467a39ffe754726703ce7ab1f918a83 100644 (file)
-/**
- * Fabio Comuni <http://kirgroup.com/profile/fabrixxm>
- * Additional Changes: Michael Vogel <icarus@dabo.de>
- **/
+@import url('../diabook/style.css');
 
-/* ========= */
-/* = Admin = */
-/* ========= */
+/* Why are these paths so long?  They should probably become ../icons/ in the next revision */
 
-#adminpage {
-/*        width: 80%;*/
-}
-
-#pending-update {
-        float:right;
-        color: #ffffff;
-        font-weight: bold;
-        background-color: #FF0000;
-        padding: 0em 0.3em;
-}
-
-.admin.linklist {
-        border: 0px; padding: 0px;
-        list-style: none;
-}
-
-.admin.link {
-        list-style-position: inside;
-        font-size: 1em;
-        padding: 5px;
-        width: 100px;
-        margin: 5px;
-}
-
-#adminpage dl {
-        clear: left;
-        margin-bottom: 2px;
-        padding-bottom: 2px;
-        border-bottom: 1px solid black;
-}
-
-#adminpage dt {
-        width: 200px;
-        float: left;
-        font-weight: bold;
-}
-
-#adminpage dd {
-        margin-left: 200px;
-}
-#adminpage h3 {
-        border-bottom: 1px solid #898989;
-        margin-bottom: 5px;
-        margin-top: 10px;
-}
-
-#adminpage .submit {
-        clear:left;
-}
-
-#adminpage #pluginslist {
-        margin: 0px; padding: 0px;
-}
-
-#adminpage .plugin {
-        list-style: none;
-        display: block;
-       /* border: 1px solid #888888; */
-        padding: 1em;
-        margin-bottom: 5px;
-        clear: left;
-}
-
-#adminpage .toggleplugin {
-        float:left;
-        margin-right: 1em;
-}
-
-#adminpage table {width:100%; border-bottom: 1p solid #000000; margin: 5px 0px;}
-#adminpage table th { text-align: left;}
-#adminpage td .icon { float: left;}
-#adminpage table#users img { width: 16px; height: 16px; }
-#adminpage table tr:hover { background-color: #eeeeee; }
-#adminpage .selectall { text-align: right; }
-/* icons */
 .icon.bb-url{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-url.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-url.png");}
 .icon.quote{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/quote.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/quote.png");}
 .icon.bold{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/bold.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/bold.png");}
 .icon.underline{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/underline.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/underline.png");}
 .icon.italic{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/italic.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/italic.png");}
 .icon.bb-image{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-image.png");
-  float: right;
-  margin-top: 2px;}
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-image.png");}
 .icon.bb-video{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-video.png");
-  float: right;
-  margin-top: 2px;}
-  
-.icon.contacts {
+  background-image: url("../../../view/theme/diabook/diabook-red/icons/bb-video.png");}
+ .icon.contacts {
   background-image: url("../../../view/theme/diabook/diabook-red/icons/contacts.png");}
 .icon.notifications {
   background-image: url("../../../view/theme/diabook/diabook-red/icons/notifications.png");}
 .icon.lock             { background-image: url("../../../view/theme/diabook/diabook-red/icons/lock.png");}
 .icon.unlock           { background-image: url("../../../view/theme/diabook/diabook-red/icons/unlock.png");}
 .icon.language    { background-image: url("../../../view/theme/diabook/diabook-red/icons/language.png");}
-
-
-.camera        { background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.attach        { background-image: url("../../../view/theme/diabook/diabook-red/icons/attach.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.video2        { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }     
-.video         { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png"); 
-                         display: block; width: 100%; height: 140px; background-repeat: no-repeat;
-                         }
-.audio2        { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.audio         { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.weblink       { background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.globe         { background-image: url("../../../view/theme/diabook/diabook-red/icons/globe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.unglobe       { background-image: url("../../../view/theme/diabook/diabook-red/icons/unglobe.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-                         }
-.edit    {background-image: url("../../../view/theme/diabook/diabook-red/icons/pencil2.png"); 
-                         display: block; width: 28px; height: 28px; background-repeat: no-repeat;}
-.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat;}
-.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png"); 
-                         display: block; width: 16px; height: 16px; background-repeat: no-repeat; opacity: 0.3;}
-.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");
-                         display: block; margin-left:5px; width: 16px; height: 16px; background-repeat: no-repeat;}                      
-                         
-
-
-.article       { background-position: -50px  0px;}
-/*.audio               { background-position: -70px  0px;}*/
-/*.drop                { background-position: -110px 0px;}*/
-/*.drophide    { background-position: -130px 0px;}*/
-/*.edit                { background-position: -150px 0px;}*/
-/*.camera      { background-position: -170px 0px;}*/
-/*.dislike     { background-position: -190px 0px;}*/
-/*.like                { background-position: -210px 0px;}*/
-/*.link                { background-position: -230px 0px;}*/
-
-/*.globe               { background-position: -50px  -20px;}*/
-/*.noglobe     { background-position: -70px  -20px;}*/
-.no            { background-position: -90px  -20px;}
-.pause                 { background-position: -110px -20px;}
-.play          { background-position: -130px -20px;}
-/*.pencil      { background-position: -150px -20px;}*/
-.small-pencil  { background-position: -170px -20px;}
-/*.recycle     { background-position: -190px -20px;}*/
-/*.remote-link { background-position: -210px -20px;}*/
-.share                 { background-position: -230px -20px;}
-
-.tools                 { background-position: -50px  -40px;}
-/*.lock                { background-position: -70px  -40px;}*/
-
-/*.video          { background-position: -110px -40px;}*/
-.youtube        { background-position: -130px -40px;}
-
-/*.attach         { background-position: -190px -40px;}*/
-/*.language       { background-position: -210px -40px;}*/
-
-
+.camera        { background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png");}
+.attach        { background-image: url("../../../view/theme/diabook/diabook-red/icons/attach.png");}
+.video2        { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png"); }   
+.video         { background-image: url("../../../view/theme/diabook/diabook-red/icons/video.png");}
+.audio2        { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");}
+.audio         { background-image: url("../../../view/theme/diabook/diabook-red/icons/audio.png");}
+.weblink       { background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png");}
+.globe         { background-image: url("../../../view/theme/diabook/diabook-red/icons/globe.png");}
+.unglobe       { background-image: url("../../../view/theme/diabook/diabook-red/icons/unglobe.png");}
+.edit    {background-image: url("../../../view/theme/diabook/diabook-red/icons/pencil2.png");}
+.icon.block   {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.block.dim  {background-image: url("../../../view/theme/diabook/icons/block.png");}
+.icon.ad_drop  { background-image: url("../../../view/theme/diabook/icons/drop.png");}                   
 .icon.on             { background-image: url("../../../view/theme/diabook/diabook-red/icons/toogle_on.png"); background-repeat: no-repeat;}
 .icon.off            { background-image: url("../../../view/theme/diabook/diabook-red/icons/toogle_off.png"); background-repeat: no-repeat;}
 .icon.prev           { background-image: url("../../../view/theme/diabook/diabook-red/icons/prev.png"); background-repeat: no-repeat;}
 .icon.next           { background-image: url("../../../view/theme/diabook/diabook-red/icons/next.png"); background-repeat: no-repeat;}
-/*.tagged     { background-position: -130px -60px;}*/
-
-.attachtype {
-        display: block; width: 20px; height: 23px;
-        background-image: url('../../../images/content-types.png');
-}
-
-.type-video { background-position: 0px 0px; }
-.type-image { background-position: -20px 0px; }
-.type-audio { background-position: -40px 0px; }
-.type-text  { background-position: -60px 0px; }
-.type-unkn  { background-position: -80px 0px; }
-
-.icon.drop, .icon.drophide {
- float: left;
-}
-
-.icon {
-  display: block;
-  width: 20px;
-  height: 20px;
-  /*background-image: url('icons.png');*/
-}
-
-.icon {
-  background-color: transparent ;
-  background-repeat: no-repeat;
-  /* background-position: left center; */
-  display: block;
-  overflow: hidden;
-  text-indent: -9999px;
-  padding: 1px;
-}
-
-.icon.border.camera{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-       }
-       
-.icon.border.link{
-  background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png"); 
-  display: block; width: 28px; height: 28px; background-repeat: no-repeat;
-  margin-left: 10px;
-       }
-
-.icon.text {
-  text-indent: 0px;
-}
-.icon.s10 {
-  min-width: 10px;
-  height: 10px;
-}
-.icon.s10.notify {
-  background-image: url("../../../images/icons/10/notify_off.png");
-}
-.icon.s10.gear {
-  background-image: url("../../../images/icons/10/gear.png");
-}
-.icon.s10.add {
-  background-image: url("../../../images/icons/10/add.png");
-}
-.icon.s10.delete {
-  background-image: url("../../../images/icons/10/delete.png");
-}
-.icon.s10.edit {
-  background-image: url("../../../images/icons/10/edit.png");
-}
-.icon.s10.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s10.menu {
-  background-image: url("../../../images/icons/10/menu.png");
-}
-.icon.s10.link {
-  background-image: url("../../../images/icons/10/link.png");
-}
-.icon.s10.lock {
-  background-image: url("../../../images/icons/10/lock.png");
-}
-.icon.s10.unlock {
-  background-image: url("../../../images/icons/10/unlock.png");
-}
-.icon.s10.text {
-  padding: 2px 0px 0px 15px;
-  font-size: 10px;
-}
-.icon.s16 {
-  min-width: 16px;
-  height: 16px;
-}
-.icon.s16.notify {
-  background-image: url("../../../images/icons/16/notify_off.png");
-}
-.icon.s16.gear {
-  background-image: url("../../../images/icons/16/gear.png");
-}
-.icon.s16.add {
-  background-image: url("../../../images/icons/16/add.png");
-}
-.icon.s16.delete {
-  background-image: url("../../../images/icons/16/delete.png");
-}
-/*.icon.s16.edit {
-  background-image: url("../../../images/icons/16/edit.png");
-}*/
-.icon.s16.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s16.menu {
-  background-image: url("../../../images/icons/16/menu.png");
-}
-/*.icon.s16.link {
-  background-image: url("../../../images/icons/16/link.png");
-}*/
-.icon.s16.lock {
-  background-image: url("../../../images/icons/16/lock.png");
-}
-.icon.s16.unlock {
-  background-image: url("../../../images/icons/16/unlock.png");
-}
-.icon.s16.text {
-  padding: 4px 0px 0px 20px;
-  font-size: 10px;
-}
-.icon.s22 {
-  min-width: 22px;
-  height: 22px;
-}
-.icon.s22.notify {
-  background-image: url("../../../images/icons/22/notify_off.png");
-}
-.icon.s22.gear {
-  background-image: url("../../../images/icons/22/gear.png");
-}
-.icon.s22.add {
-  background-image: url("../../../images/icons/22/add.png");
-}
-.icon.s22.delete {
-  background-image: url("../../../images/icons/22/delete.png");
-}
-.icon.s22.edit {
-  background-image: url("../../../images/icons/22/edit.png");
-}
-.icon.s22.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s22.menu {
-  background-image: url("../../../images/icons/22/menu.png");
-}
-.icon.s22.link {
-  background-image: url("../../../images/icons/22/link.png");
-}
-.icon.s22.lock {
-  background-image: url("../../../images/icons/22/lock.png");
-}
-.icon.s22.unlock {
-  background-image: url("../../../images/icons/22/unlock.png");
-}
-.icon.s22.text {
-  padding: 10px 0px 0px 25px;
-  width: 200px;
-}
-.icon.s48 {
-  width: 48px;
-  height: 48px;
-}
-.icon.s48.notify {
-  background-image: url("../../../images/icons/48/notify_off.png");
-}
-.icon.s48.gear {
-  background-image: url("../../../images/icons/48/gear.png");
-}
-.icon.s48.add {
-  background-image: url("../../../images/icons/48/add.png");
-}
-.icon.s48.delete {
-  background-image: url("../../../images/icons/48/delete.png");
-}
-.icon.s48.edit {
-  background-image: url("../../../images/icons/48/edit.png");
-}
-.icon.s48.star {
-  background-image: url("../../../images/star_dummy.png");
-}
-.icon.s48.menu {
-  background-image: url("../../../images/icons/48/menu.png");
-}
-.icon.s48.link {
-  background-image: url("../../../images/icons/48/link.png");
-}
-.icon.s48.lock {
-  background-image: url("../../../images/icons/48/lock.png");
-}
-.icon.s48.unlock {
-  background-image: url("../../../images/icons/48/unlock.png");
-}
-
-#contact-edit-links ul {
-  list-style: none;
-  list-style-type: none;
-}
-
-.hide-comments-outer {
-  margin-left: 80px;
-  margin-bottom: 5px;
-  width: 684px;
-  border-bottom: 1px solid #BDCDD4;
-  padding: 8px;
-}
-
-/* global */
-body {
-  font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
-  font-size: 12.5px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  margin: 50px auto auto;
-  display: table;
-}
+icon.border.camera{background-image: url("../../../view/theme/diabook/diabook-red/icons/camera.png");}
+.icon.border.link{background-image: url("../../../view/theme/diabook/diabook-red/icons/weblink.png");}
+av #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
+       background-image: url("../../../view/theme/diabook/diabook-red/icons/messages.png");}
+.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
+       background-image: url("../../../view/theme/diabook/diabook-red/icons/notify.png");}
+nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{background-image: url("../../../view/theme/diabook/diabook-red/icons/contacts.png");}
 
-#jappix_mini {
-right: 45px !important;
-}
+.menu-profile-icon.home{
+       background: url("../../../view/theme/diabook/diabook-red/icons/home.png") no-repeat;}
+.menu-profile-icon.photos{
+       background: url("../../../view/theme/diabook/diabook-red/icons/mess_side.png") no-repeat;}
+.menu-profile-icon.events{
+       background: url("../../../view/theme/diabook/diabook-red/icons/events.png") no-repeat;}
+.menu-profile-icon.notes{
+       background: url("../../../view/theme/diabook/diabook-red/icons/notes.png") no-repeat;}
+.menu-profile-icon.foren{
+       background: url("../../../view/theme/diabook/diabook-red/icons/pubgroups.png") no-repeat;}
+.menu-profile-icon.com_side{
+       background: url("../../../view/theme/diabook/diabook-red/icons/com_side.png") no-repeat;}
+.menu-profile-icon.pscontacts{
+       background: url("../../../view/theme/diabook/diabook-red/icons/pscontacts.png") no-repeat;}
 
 
-h4 {
-  font-size: 1.1em;
-}
 
-a {
-       color: red;
-       /* color: #3e3e8c; */
-       text-decoration: none;
-}
-a:hover {
-       /* color: blue; */
-       text-decoration: underline
-}
 
-.wall-item-name-link {
-/*  float: left;*/
-}
+a {color: #333333;}
 
-.wall-item-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
+#fileas-sidebar .tool:hover  {background: #ffe499;}
 
-.left {
-  float: left;
-}
-.right {
-  float: right;
-}
-.hidden {
-  display: none;
-}
-.clear {
-  clear: both;
-}
-.fakelink {
-  color: red;
-  /* color: #3e3e8c; */
-  text-decoration: none;
-  cursor: pointer;
-}
-.fakelink:hover {
-  /* color: blue; */
-  /*color: #005c94; */
-  text-decoration: underline;
-}
-.intro-end {
-       border-bottom: 1px solid black;
-   clear: both;
-   margin-bottom: 25px;
-   padding-bottom: 25px;
-   width: 75%;
-       }
-.intro-form-end {
-       clear: both;
-       }
-.intro-fullname {
-       padding-bottom: 5px;
-   padding-top: 5px;
-       }
-.intro-wrapper-end {
-       clear: both;
-   padding-bottom: 5px;
-       }
-code {
-  font-family: Courier, monospace;
-  white-space: pre;
-  display: block;
-  overflow: auto;
-  border: 1px solid #444;
-  background: #EEE;
-  color: #444;
-  padding: 10px;
-  margin-top: 20px;
-}
-#panel {
-  position: absolute;
-  width: 12em;
-  background: #ffffff;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 1em;
-  list-style: none;
-  border: 3px solid #364e59;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-/* tool */
-.tool {
-  height: auto;
-  overflow: auto;
-  padding: 3px;
-}
-#saved-search-ul .tool:hover,
-#nets-sidebar .tool:hover,
-#sidebar-group-list .tool:hover,
-#fileas-sidebar .tool:hover {
-       background: #FFE499;
-}
-.tool .label {
-  float: left;
-}
-.tool .action {
-  float: right;
-}
-.tool a {
-  color: ##3F8FBA;
-}
-.tool a:hover {
-  text-decoration: none;
-}
-/* popup notifications */
-div.jGrowl.top-right { top: 30px; /* put it below header/nav bar */ }
-div.jGrowl div.notice {
-  background: #511919 url("../../../images/icons/48/notice.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
-div.jGrowl div.info {
-  background: #364e59 url("../../../images/icons/48/info.png") no-repeat 5px center;
-  color: #ffffff;
-  padding-left: 58px;
-}
 /* header */
 header {
-  position: fixed;
-  left: 0%;
-  right: 80%;
-  top: 0px;
-  margin: 0px;
-  padding: 0px;
-  width: 22%;
-  height: 32px;
   background: #ff500f;
   background-color: #ff500f;
-  z-index: 100;
   border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
-  background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-
-background-image: -webkit-gradient(
-       linear,
-       left bottom,
-       left top,
-       color-stop(0, rgb(173,59,10)),
-       color-stop(0.65, rgb(255,79,15))
-);
-}
-header #site-location {
-  display: none;
-}
-header #banner {
-  overflow: hidden;
-  text-align: banner;
-  width: 82%;
-  margin-left: 25%;
 }
+
 header #banner a,
 header #banner a:active,
 header #banner a:visited,
 header #banner a:link,
 header #banner a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-  vertical-align: middle;
   font-weight: bolder;
 }
-header #banner #logo-img {
-  height: 25px;
-  margin-top: 3px;
-}
+
 header #banner #logo-text {
 font-size: 20px!important;position: relative!important;top: -4px!important;
+ font-size: 20px!important;position: relative!important;top: -4px!important;
 }
+
 /* messages */
 #message-new {
-  background: ;
-  border: 1px solid #333;
-  width: 150px;
-}
-#message-new a {
-  color: #ffffff;
-  text-align: center;
-  display: block;
-  font-weight: bold;
-  padding: 1em 0px;
-  text-decoration: none;
-  background-color: red;
-}
-.mail-list-wrapper {
-  background-color: #f6f7f8;
-  margin-bottom: 5px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-.mail-list-wrapper span {
-  display: block;
-  float: left;
-  width: 20%;
-  overflow: hidden;
-}
-.mail-list-wrapper .mail-subject {
-  width: 30%;
-  padding: 4px 0px 0px 4px;
-}
-.mail-list-wrapper .mail-subject a {
-  display: block;
-}
-.mail-list-wrapper .mail-subject.unseen a {
-  font-weight: bold;
-}
-.mail-list-wrapper .mail-date {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-from {
-  padding: 4px 4px 0px 4px;
-}
-.mail-list-wrapper .mail-count {
-  padding: 4px 4px 0px 4px;
-  text-align: right;
-}
-.mail-list-wrapper .mail-delete {
-  float: right;
-}
-#mail-display-subject {
-  background-color: #f6f7f8;
-  color: #2d2d2d;
-  margin-bottom: 10px;
-  width: 100%;
-  height: auto;
-  overflow: hidden;
-}
-#mail-display-subject span {
-  float: left;
-  overflow: hidden;
-  padding: 4px 0px 0px 10px;
-}
-#mail-display-subject .mail-delete {
-  float: right;
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-#mail-display-subject:hover .mail-delete {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
+    border: 1px solid #333;
 }
+
 /* nav */
-nav {
-  width: 80%;
-  height: 32px;
-  position: fixed;
-  left: 22%;
-  top: 0px;
-  padding: 0px;
-  background: #ff500f;
+nav { background: #ff500f;
   color: #1f1f1f;
-  z-index: 99;
-  border-bottom: 1px;
+ border-bottom: 1px;
   border-bottom-color: black;
   border-bottom-style: inset;
-  background-image: linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -o-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -moz-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -webkit-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-background-image: -ms-linear-gradient(bottom, rgb(173,59,10) 0%, rgb(255,79,15) 65%);
-
-background-image: -webkit-gradient(
-       linear,
-       left bottom,
-       left top,
-       color-stop(0, rgb(173,59,10)),
-       color-stop(0.65, rgb(255,79,15))
-);
 }
+
 nav a,
 nav a:active,
 nav a:visited,
 nav a:link,
 nav a:hover {
   color: #1f1f1f;
-  text-decoration: none;
-  outline: none;
-}
-nav #banner {
-  overflow: hidden;
-  /*text-align: center;*/
-  width: 100%;
-}
-nav #banner a,
-nav #banner a:active,
-nav #banner a:visited,
-nav #banner a:link,
-nav #banner a:hover {
-  color: #ffffff;
-  text-decoration: none;
-  outline: none;
-  vertical-align: bottom;
-}
-nav #banner #logo-img {
-  height: 22px;
-  margin-top: 5px;
-}
-nav #banner #logo-text {
-  font-size: 22px;
-}
-nav #navbar{
-       }
-nav ul {
-  margin: 0px;
-  padding: 0px 20px;
-}
-nav ul li {
-  list-style: none;
-  margin: 0px;
-  /* padding: 1px 1px 3px 1px; */
-  float: left;
-}
-nav ul li .menu-popup {
-  left: 0px;
-  right: auto;
-}
-
-nav #logo-img {
-  height: 25px;
-  margin-top: 4px;
-  margin-left: 30px;
-}
-
-nav #logo-text {
-    font-size: 22px;
-    margin-top: 3px;
-    margin-right: 15px;
-}
-nav .nav-menu-search {
-  position: relative;
-
-  margin: 4px 17px;
-  margin-right: 0px;
-  height: 17px;
-  width: 180px;
-  
 }
 
-nav #search-box #search-text {
-  background-image:  url('icons/lupe.png');
-  background-repeat:no-repeat;
-  padding-left:20px;
-  border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-       }
-
-
-nav .nav-menu-icon {
-  position: relative;
-  height: 22px;
-  padding: 5px;
-  margin: 0px 5px;
-  -moz-border-radius: 5px 5px 0 0;
-  -webkit-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
 nav .nav-menu-icon:hover {
   position: relative;
   height: 22px;
@@ -830,93 +142,15 @@ nav .nav-menu-icon:hover {
   border-radius: 5px 5px 0 0;
 }
 
-nav .nav-menu-icon.selected {
-  background-color: #fff4d6;
-}
-nav .nav-menu-icon img {
-  width: 22px;
-  height: 22px;
-}
-nav .nav-menu-icon .nav-notify {
-  top: 3px;
-}
-nav .nav-menu {
-  position: relative;
-  height: 16px;
-  padding: 5px;
-  margin: 3px 15px 0px;
-  font-size: 13px;
-  /*border-bottom: 3px solid #364A84;*/
-}
-nav .nav-menu.selected {
-  /*border-bottom: 3px solid #9eabb0;*/
-}
 nav .nav-notify {
-  display: none;
-  position: absolute;
-  background-color: #fff;
-  /* background-color: #19aeff; */
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  font-size: 10px;
-  font-weight: 900;
-  padding: 1px 4px;
-  top: 0px;
-  right: -6px;
-  min-width: 10px;
-  text-align: center;
-}
-nav .nav-notify.show {
-  display: block;
-}
-nav #nav-help-link,
-nav #nav-search-link,
-nav #nav-directory-link,
-nav #nav-apps-link,
-nav #nav-site-linkmenu, 
-nav #nav-home-link,
-nav #nav-user-linkmenu
-{
-  float: right;
+background-color: #fff;
+  border: 1px solid black;
 }
-nav #nav-user-linkmenu{
-       margin-right: 0px;
-       }
+
 nav #nav-home-link, #nav-directory-link, #nav-apps-link{
-       margin-left: 0px;
-       margin-right: 0px;
-       font-weight: bold;
-       margin: 3px 5px;
-       font-size: 15px;
-       }
-nav #nav-directory-link{
-  margin-right: 0px;   
-       }
-nav #nav-home-link{
-  margin-left: 0px;    
-       }
-nav #nav-help-link .menu-popup,
-nav #nav-search-link .menu-popup,
-nav #nav-directory-link .menu-popup,
-nav #nav-apps-link .menu-popup,
-nav #nav-site-linkmenu .menu-popup {
-  right: 0px;
-  left: auto;
+font-size: 14px;
 }
 
-nav #nav-messages-linkmenu.on .icon.messages, nav #nav-messages-linkmenu.selected .icon.messages{
-       background-image: url("../../../view/theme/diabook/diabook-red/icons/messages2.png");
-       }
-       
-/*nav #nav-notifications-linkmenu.on .icon.notify,*/ nav #nav-notifications-linkmenu.selected .icon.notify{
-       background-image: url("../../../view/theme/diabook/diabook-red/icons/notify2.png");
-       }
-       
-nav #nav-contacts-linkmenu.on .icon.contacts, nav #nav-contacts-linkmenu.selected .icon.contacts{
-       background-image: url("../../../view/theme/diabook/diabook-red/icons/contacts2.png");
-       }
-       
 nav #nav-apps-link.selected {
  background-color: #fff4d6;
   moz-border-radius: 5px 5px 0 0;
@@ -924,320 +158,18 @@ nav #nav-apps-link.selected {
 border-radius: 5px 5px 0 0;
 }
 
-#nav-notifications-mark-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-#nav-notifications-see-all {
-       /* padding: 1px 1px 2px 26px; */
-       /* border-bottom: 1px solid #364E59; */
-       /* margin: 0px 0px 2px 0px;
-       padding: 5px 10px; */
-}
-
-.notify-seen {
-       background: none repeat scroll 0 0 #DDDDDD;
-       }
-
 ul.menu-popup {
-  position: absolute;
-  display: none;
-  width: 11em;
-  background: #fff4d6;
-  color: #2d2d2d;
-  margin: 0px;
-  padding: 0px;
-  list-style: none;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-ul.menu-popup a {
-  display: block;
-  color: #2d2d2d;
-  padding: 5px 10px;
-  text-decoration: none;
-}
+  background: #fff4d6;}
+
 ul.menu-popup a:hover {
   background-color: #ffe499; /*bdcdd4;*/
-  color: #000;
-}
-ul.menu-popup .menu-sep {
-  border-top: 1px solid #9eabb0;
-}
-ul.menu-popup li {
-  float: none;
-  overflow: auto;
-  height: auto;
-  display: block;
-}
-ul.menu-popup li img {
-  float: left;
-  width: 16px;
-  height: 16px;
-  padding-right: 5px;
-}
-ul.menu-popup .empty {
-  padding: 5px;
-  text-align: center;
-  color: #9eabb0;
-}
-/* autocomplete popup */
-.acpopup {
-  max-height: 150px;
-  background-color: #ffffff;
-  color: #2d2d2d;
-  border: 1px solid #MenuBorder;
-  overflow: auto;
-  z-index: 100000;
-  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
-}
-.acpopupitem {
-  color: #2d2d2d;
-  padding: 4px;
-  clear: left;
-}
-.acpopupitem img {
-  float: left;
-  margin-right: 4px;
-}
-.acpopupitem.selected {
-  background-color: #bdcdd4;
-}
-#nav-notifications-menu {
-  width: 425px !important;
-  max-height: 550px;
-  overflow: auto;
-}
-/* #nav-notifications-menu a {
-       display: inline;
-       padding: 5px 0px;
-       margin: 0px 0px 2px 0px;
-}
-#nav-notifications-menu li:hover {
-  background-color: #bdcdd4;
-}*/
-
-#nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
-}
-#nav-notifications-menu .contactname {
-  font-weight: bold;
-}
-#nav-notifications-menu .notif-when {
-  font-size: 10px;
-  color: #9eabb0;
-  display: block;
+  color: #fff;
 }
 
-.notif-image {
-        width: 32px;
-        height: 32px;
-        padding: 7px 7px 0px 0px;
-}
-
-/*profile_side*/
-#profile_side {
-  margin-bottom: 30px;
-}
-#ps-usericon{
-       height: 25px    
-       }
-#ps-username{
-  font-size: 1.17em;
-  font-weight: bold;
-  vertical-align: top;
-  position: absolute;
-  padding-top: 4px;
-  padding-left: 5px;   
-  word-wrap: break-word;
-  width: 130px;
-       }
-#ps-username:hover{
-  text-decoration: none;       
-       }
-.menu-profile-side{
-  list-style: none;    
-  padding-left: 0px;
-  min-height: 0px;
-       }
-.menu-profile-list{
-  height: auto;
-  overflow: auto;  
-  min-height: 16px;
-  list-style: none;
-       }
 .menu-profile-list:hover{
-       background: #FFE499; 
-       }
-.menu-profile-list-item{
-       padding-left: 5px;
-       vertical-align: middle;
-       }       
-.menu-profile-list-item:hover{ 
-       text-decoration: none;
-   }
-/*http://prothemedesign.com/circular-icons/*/
-.menu-profile-icon.home{
-       background: url("../../../view/theme/diabook/diabook-red/icons/home.png") no-repeat;
-       float: left;
-       height: 22px;
-       width: 22px;
-       }
-.menu-profile-icon.photos{
-       background: url("../../../view/theme/diabook/diabook-red/icons/mess_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.events{
-       background: url("../../../view/theme/diabook/diabook-red/icons/events.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.notes{
-       background: url("../../../view/theme/diabook/diabook-red/icons/notes.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.foren{
-       background: url("../../../view/theme/diabook/diabook-red/icons/pubgroups.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.com_side{
-       background: url("../../../view/theme/diabook/diabook-red/icons/com_side.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-.menu-profile-icon.pscontacts{
-       background: url("../../../view/theme/diabook/diabook-red/icons/pscontacts.png") no-repeat;
-       float: left;
-       height: 22px;
-   width: 22px;}
-/* aside */
-aside {
-  display: table-cell;
-  vertical-align: top;
-  width: 180px;
-  padding: 0px 10px 0px 20px;
-  border-right: 1px solid #D2D2D2;
-  float: left;
-  /* background: #F1F1F1; */
-}
-aside #page-sidebar{display: none;}
-aside .vcard .fn {
-  font-size: 18px;
-  font-weight: bold;
-  margin-bottom: 5px;
-}
-aside .vcard .title {
-  margin-bottom: 5px;
-}
-aside .vcard dl {
-  height: auto;
-  overflow: auto;
-}
-aside .vcard dt {
-  float: left;
-  margin-left: 0px;
-  /*width: 35%;*/
-  text-align: right;
-  color: #999999;
+       background: #ffe499; 
 }
-aside .vcard dd {
-  float: left;
-  margin-left: 5px;
-  /*width: 60%;*/
-}
-aside #profile-extra-links ul {
-  padding: 0px;
-  margin: 0px;
-}
-aside #profile-extra-links li {
-  padding: 0px;
-  margin: 0px;
-  list-style: none;
-}
-aside #dfrn-request-link {
-  display: block;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-  color: #ffffff;
-  background: #005c94 url('../../../images/connect-bg.png') no-repeat left center;
-  font-weight: bold;
-  text-transform: uppercase;
-  padding: 4px 2px 2px 35px;
-}
-aside #dfrn-request-link:hover {
-  text-decoration: none;
-  background-color: #36c;
-  /* background-color: #19aeff; */
-}
-aside #profiles-menu {
-  width: 20em;
-}
-aside #search-text {
-       width: 173px;
-       height: 17px;
-       padding-left: 10px;
-       border-top-left-radius: 15px;
-border-top-right-radius: 15px;
-border-bottom-right-radius: 15px;
-border-bottom-left-radius: 15px;
-}
-aside #side-follow-url {
-       width: 173px;
-       }
-aside #side-peoplefind-url {
-       width: 173px;
-       }
-#contact-block {
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-h4 {
-  float: left;
-  margin: 5px 0px;
-}
-#contact-block .allcontact-link {
-  float: right;
-  margin: 5px 0px;
-}
-#contact-block .contact-block-content {
-  clear: both;
-  overflow: auto;
-  height: auto;
-}
-#contact-block .contact-block-link {
-  float: left;
-  margin: 0px 2px 2px 0px;
-}
-#contact-block .contact-block-link img {
-  widht: 55px;
-  height: 55px;
-}
-#lost-password-link {
-  float: left;
-  margin-right: 20px;          
-       }
-#login-submit-wrapper{
 
-  margin-bottom: 12px;
-       }
-aside #login-submit-button{
-  margin-left: 0px!important;  
-       }
-aside #login-extra-links{
-  padding-top: 0px!important;  
-       }
 .group_selected {
   background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
   float: left;
@@ -1282,281 +214,21 @@ transition: all 0.2s ease-in-out;
   float: right;
   height: 10px;
 }
-/* widget */
-.widget {
-  margin-bottom: 2em;
-  /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;}
-       .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/
-/*  font-size: 12px; */
-}
-.widget h3 {
-  padding: 0px;
-  margin: 2px;
-}
-.widget .action {
-  opacity: 0.1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget input.action {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget:hover .title .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget .tool:hover .action.ticked {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.widget ul {
-  padding: 0px;
-}
-.widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
-  list-style: none;
-}
-#side-bar-photos-albums li{
-list-style-type: disc;
-}
+
 #side-bar-photos-albums ul li{
   margin-left: 30px;
   padding-left: 0px;
        }
 #side-bar-photos-albums ul li a{
-  color: #1872A2;
+  color: #055580;
 }
 .widget .tool.selected {
-  background: url("../../../view/theme/diabook/diabook-red/icons/selected.png") no-repeat left center;
-}
-/* widget: search */
-#add-search-popup {
-  width: 200px;
-  top: 18px;
-}
-/* section */
-section {
-  display: table-cell;
-  vertical-align: top;
-  width: 800px;
-  padding: 0px 0px 0px 12px;
-}
-body .pageheader{
-  text-align: center;
-  font-size: 20px;
-  margin-bottom: 20px;
-  margin-top: 0px;
-  max-width: 775px;
-       }
-.qcomment{
-  max-width: 122px;    
-       }
-#id_username {
-  width: 173px;        
-       }
-#id_password {
-  width: 173px;                
-       }
-#id_openid_url {
-  width: 173px;        
-       }
-#contact-edit-end {
-       }
-.pager {
-   padding: 10px;
-       text-align: center;
-       font-size: 1.0em;
-       clear: both;
-       display: block;
-}      
+  background: url("../../../view/theme/diabook/diabook-red/icons/selected.png") no-repeat left center;}
 
-.tabs {
-    
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.tab.button {
-    margin-left: 5px;  
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: normal;
-    padding: 3px;
-    color:  #333333;
-       }
-       
-#birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
-       }
-/* wall item */
-.tread-wrapper {
-  border-bottom: 1px solid #D2D2D2;
-  position: relative;
-  padding: 5px;
-  margin-bottom: 0px;
-  width: 775px;
-  padding-top: 10px;
-}
 .tread-wrapper a{
   color: red;
 }
 
-.wall-item-decor {
-  position: absolute;
-  left: 790px;
-  top: -10px;
-  width: 16px;
-}
-
-.wall-item-container {
-  display: table;
-  width: 780px;
-}
-.wall-item-photo-container .wall-item-item, .wall-item-container .wall-item-bottom {
-  display: table-row;
-}
-.wall-item-photo-container .wall-item-info {
-  display: table-cell;
-  vertical-align: top;
-  text-align: left;
-  width: 80px;
-}
-.wall-item-photo-container .wall-item-location {
-  padding-right: 40px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-ago {
-  word-wrap: break-word;
-  width: 50px;
-  margin-left: 10px;
-  color: #999;
-}
-.wall-item-photo-container .wall-item-content {
-
-  max-width: 720px;
-  word-wrap: break-word;
-
-  margin-bottom: 14px;
-}
-.wall-item-photo-container .wall-item-content img {
-  max-width: 700px;
-}
-.wall-item-photo-container .wall-item-links, .wall-item-photo-container .wall-item-actions {
-  display: table-cell;
-  vertical-align: middle;
-}
-.wall-item-photo-container .wall-item-links .icon, .wall-item-photo-container .wall-item-actions .icon {
-  opacity: 0.5;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-links .icon:hover, .wall-item-photo-container .wall-item-actions .icon:hover {
-  opacity: 1;
-  -webkit-transition: all 0.2s ease-in-out;
-  -moz-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  -ms-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-}
-.wall-item-photo-container .wall-item-name {
-  font-weight: bold;
-}
-.wall-item-photo-container .wall-item-actions-author {
-  width: 100%;
-  margin-bottom: 0.3em;
-}
-.wall-item-photo-container .wall-item-actions-social {
-  float: left;
-  margin-bottom: 1px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-social a {
-  margin-right: 1em;
-}
-.wall-item-photo-container .wall-item-actions-tools {
-  float: right;
-  width: 80px;
-  display: table-cell;
-}
-.wall-item-photo-container .wall-item-actions-tools a {
-  float: right;
-}
-.wall-item-photo-container .wall-item-actions-tools input {
-  float: right;
-}
-.wall-item-photo-container.comment {
-  margin-top: 5px;
-  margin-bottom: 5px;
-  margin-left: 40px;
-  width: 650px;
-  border-bottom: 1px solid #D2D2D2;
-}
-.wall-item-photo-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-photo-container {
-  display: table;
-  width: 780px;
-}
-.my-comment-photo {
-  width: 48px;
-  margin-left: 40px;
-  margin-right: 32px;
-       }
-.comment-edit-preview {
-  width: 500px;
-  margin-top: 10px;
-}
-.comment-edit-text-empty {
-    width: 500px;
-    border: 1px solid #D2D2D2;
-    height: 3.2em;
-    color: #2d2d2d;
-}
-.comment-edit-text-full {
-  font-size: 12.5px;
-  height: 3.3em;
-  
-  border: 1px solid #D2D2D2;
-  width: 500px;
-}
-.comment-edit-photo {
-    margin: 10px 0 0;
-    display: table-cell;
-}
-
-
 .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
   display: table-row;
 }
@@ -1670,1261 +342,40 @@ body .pageheader{
   width: 700px;
   border-bottom: 1px solid hsl(198, 21%, 79%);
 }
-.wall-item-container.comment .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.wall-item-container.comment {
-  top: 15px !important;
-  left: 15px !important;
-}
-.wall-item-container.comment .wall-item-links {
-  padding-left: 12px;
-}
-.wall-item-comment-wrapper {
-  margin: 1px 5px 5px 80px;
-}
-.wall-item-comment-wrapper .comment-edit-photo {
-  display: none;
-}
-.wall-item-comment-wrapper textarea {
-  height: 2.0em;
-  width: 100%;
-  font-size: 10px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  font-size: 14px;
-}
-.wall-item-comment-wrapper .comment-edit-text-full {
-  font-size: 14px;
-  height: 4em;
-  color: #2d2d2d;
-  border: 1px solid #2d2d2d;
-}
+
 .comment-edit-preview {
   width: 500px;
   margin-top: 10px;
-  background-color:  #fff797;
 }
-.comment-edit-preview .contact-photo {
-  width: 32px;
-  height: 32px;
-  margin-left: 16px;
-  /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/
 
-}
-.comment-edit-preview {
-  top: 15px !important;
-  left: 15px !important;
-}
-.comment-edit-preview .wall-item-links {
-  padding-left: 12px;
-}
-.comment-edit-preview .wall-item-container {
-  width: 700px;
-}
-.comment-edit-preview .tread-wrapper {
-  width: 700px;
-  padding: 0;
-  margin: 10px 0;
+.button.creation2 {
+    background-color: #ff500f;
+        cursor: pointer;
 }
 
-.shiny {
-  /* border-right: 10px solid #fce94f; */
-       border-right: 1px solid #A7C7F7;
-       padding-right: 12px;
-}
 
-#jot-preview-content{
-       margin-top: 30px;}
-       
-#jot-preview-content .tread-wrapper {
-  background-color: #fff797;
+/*ACL*/
+
+ul.tabs li .active {
+    background-color: #535353;
+    box-shadow: 2px 2px 2px #CFCFCF;}
+
+ul.rs_tabs li .selected {
+    background-color: #535353;}
+
+/*Photo */
+
+.photo {
+box-shadow: 2px 2px 5px 0px #000000;
+margin: 0px;
+border-radius: 10px;
 }
 
-.wall-item-tags {
-  padding-top: 1px;
-  padding-bottom: 2px;
-}
-.tag {
-  /*background: url("../../../images/tag_b.png") repeat-x center left;*/
-  color: #999;
-  padding-left: 3px;
-  font-size: 12px;
-}
-.tag a {
-  padding-right: 5px;
-  /*background: url("../../../images/tag.png") no-repeat center right;*/
-  color: #999;
-}
-.wwto {
-  position: absolute !important;
-  width: 25px;
-  height: 25px;
-  background: #FFFFFF;
-  border: 2px solid #364e59;
-  height: 25px;
-  width: 25px;
-  overflow: hidden;
-  padding: 1px;
-  position: absolute !important;
-  top: 40px;
-  left: 30px;
-  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
-}
-.wwto .contact-photo {
-  width: auto;
-  height: 25px;
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-  width: 80px;
-}
-
-.contact-photo-wrapper.wwto {
-  width: 25px;
-}
-
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper {
-  left: 0px;
-  top: 63px;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-name {
-  /* text-align: center; */
-  /*font-weight: bold;*/
-  font-size: 12px;
-}
-.contact-details {
-  color: #999999;
-}
-/* editor */
-.jothidden {
-  display: none;
-}
-#jot {
-  width: 785px;
-  margin: 0px 2em 20px 0px;
-}
-#profile-jot-form #profile-jot-text {
-  height: 2.0em;
-  width: 99%;
-  font-size: 15px;
-  color: #999999;
-  border: 1px solid #DDD;
-  padding: 0.3em;
-  margin-bottom: 10px;
-}
-.grey
-{
-  display: inline;
-  float: right;        
-       }
-#jot #jot-tools {
-  margin: 0px;
-  padding: 0px;
-  height: 40px;
-  overflow: none;
-  width: 783px;
-  background-color: #fff;
-  border-bottom: 2px solid #9eabb0;
-}
-
-#jot #jot-tools li {
-  list-style: none;
-  float: left;
-  width: 80px;
-  height: 40px;
-  border-bottom: 2px solid #9eabb0;
-}
-#jot #jot-tools li a {
-  display: block;
-  color: #cccccc;
-  width: 100%;
-  height: 40px;
-  text-align: center;
-  line-height: 40px;
-  overflow: hidden;
-}
-#jot #jot-tools li:hover {
-  background-color: #364e59;
-  border-bottom: 2px solid #bdcdd4;
-}
-#jot #jot-tools li.perms {
-  float: right;
-  width: 40px;
-}
-#jot #jot-tools li.perms a.unlock {
-  width: 30px;
-  border-left: 10px solid #cccccc;
-  background-color: #cccccc;
-  background-position: left center;
-}
-#jot #jot-tools li.perms a.lock {
-  width: 30px;
-  border-left: 10px solid #666666;
-  background-color: #666666;
-}
-#jot #jot-tools li.submit {
-  float: right;
-  background-color: #cccccc;
-  border-bottom: 2px solid #cccccc;
-  border-right: 1px solid #666666;
-  border-left: 1px solid #666666;
-}
-#jot #jot-tools li.submit input {
-  border: 0px;
-  margin: 0px;
-  padding: 0px;
-  background-color: #cccccc;
-  color: #666666;
-  width: 80px;
-  height: 40px;
-  line-height: 40px;
-}
-#jot #jot-tools li.submit input:hover {
-  background-color: #bdcdd4;
-  color: #666666;
-}
-#jot #jot-tools li.loading {
-  float: right;
-  background-color: #ffffff;
-  width: 20px;
-  vertical-align: center;
-  text-align: center;
-  border-top: 2px solid #9eabb0;
-  height: 38px;
-}
-#jot #jot-tools li.loading img {
-  margin-top: 10px;
-}
-#profile-jot-form #jot-title, #profile-jot-form #jot-category {
-    
-        border-radius: 5px 5px 5px 5px;
-    font-weight: bold;
-    height: 20px;
-    margin: 0 0 5px;
-    width: 60%;
-    border: 1px solid #d2d2d2;
-}
-#profile-jot-form #jot-title:-webkit-input-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #jot-title:-moz-placeholder {
-  font-weight: normal;
-}
-#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
-       width: 785px;
-       height: 100px;
-       }
-#jot #jot-title:hover {
-  border: 1px solid #999999;
-}
-#jot #jot-title:focus {
-  border: 1px solid #999999;
-}
-#jot #character-counter {
-  width: 80px;
-  float: right;
-  text-align: right;
-  height: 20px;
-  line-height: 20px;
-  padding-right: 20px;
-}
-#jot-perms-icon, 
-#profile-location,
-#profile-nolocation,
-#profile-youtube, 
-#profile-video, 
-#profile-audio,
-#profile-link,
-#profile-title, 
-#wall-image-upload,
-#wall-file-upload,
-#wall-image-upload-div,
-#wall-file-upload-div,
-.hover, .focus {
-       cursor: pointer;
-       margin-top: 2px;
-}
-#profile-jot-wrapper{
-       margin: 0 2em 20px 0;
-   width: 785px;
-       }
-
-#profile-jot-submit-wrapper {
-       margin-bottom: 50px;
-       width: 785px;
-}
-
-#profile-jot-submit {
-       float: right;
-       margin-top: 2px;
-       font-size: 14px;
-}
-#profile-upload-wrapper {
-       float: left;
-       margin-top: 2px;
-       margin-left: 10px;
-       
-}
-#profile-attach-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-rotator {
-       float: left;
-       margin-left: 30px;
-       margin-top: 2px;
-}
-#profile-link-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-youtube-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-video-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-audio-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-location-wrapper {
-       float: left;
-       margin-left: 15px;
-       margin-top: 2px;
-}
-#profile-jot-perms {
-       float: left;
-       margin-left: 45px;
-       margin-top: 2px;
-}
-#jot-preview-link {
-       float: right;
-       margin-left: 10px;
-       margin-top: 2px;
-       font-size: 9px;
-       font-weight: bolder;
-       cursor: pointer;
-}
-#profile-jot-perms{
-   float: right;
-       margin-left: 10px;
-       margin-top: 2px;        
-       }
-/** buttons **/
-.button.creation1 {
-    background-color: #fff;
-    border: 1px solid #777777;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    font-weight: bolder;
-        cursor: pointer;
-}
-.button.creation2 {
-    background-color: #FF500F;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 0 1px 1px #CFCFCF;
-    margin-left: 5px;
-    font-weight: bolder;
-        cursor: pointer;
-}
-/*input[type="submit"] {
-       border: 0px;
-    background-color: @ButtonBackgroundColor;
-    color: @ButtonColor;
-    padding: 0px 10px;
-       .rounded(5px);
-    height: 18px;
-}*/
-/** acl **/
-#photo-edit-perms-select, #photos-upload-permissions-wrapper, #profile-jot-acl-wrapper {
-  display: block!important;
-}
-#acl-wrapper {
-  width: 690px;
-  float: left;
-}
-#acl-search {
-  float: right;
-  background: #ffffff url("../../../images/search_18.png") no-repeat right center;
-  padding-right: 20px;
-}
-#acl-showall {
-  float: left;
-  display: block;
-  width: auto;
-  height: 18px;
-  background-color: #cccccc;
-  background-image: url("../../../images/show_all_off.png");
-  background-position: 7px 7px;
-  background-repeat: no-repeat;
-  padding: 7px 5px 0px 30px;
-  color: #999999;
-  -moz-border-radius: 5px 5px 5px 5px;
-  -webkit-border-radius: 5px 5px 5px 5px;
-  border-radius: 5px 5px 5px 5px;
-}
-#acl-showall.selected {
-  color: #000000;
-  background-color: #ff9900;
-  background-image: url("../../../images/show_all_on.png");
-}
-#acl-list {
-  height: 210px;
-  border: 1px solid #cccccc;
-  clear: both;
-  margin-top: 30px;
-  overflow: auto;
-}
-.acl-list-item {
-  display: block;
-  width: 150px;
-  height: 30px;
-  border: 1px solid #cccccc;
-  margin: 5px;
-  float: left;
-}
-.acl-list-item img {
-  width: 22px;
-  height: 22px;
-  float: left;
-  margin: 4px;
-}
-.acl-list-item p {
-  height: 12px;
-  font-size: 10px;
-  margin: 0px;
-  padding: 2px 0px 1px;
-  overflow: hidden;
-}
-.acl-list-item a {
-  font-size: 8px;
-  display: block;
-  width: 40px;
-  height: 10px;
-  float: left;
-  color: #999999;
-  background-color: #cccccc;
-  background-position: 3px 3px;
-  background-repeat: no-repeat;
-  margin-right: 5px;
-  -webkit-border-radius: 2px ;
-  -moz-border-radius: 2px;
-  border-radius: 2px;
-  padding-left: 15px;
-}
-#acl-wrapper a:hover {
-  text-decoration: none;
-  color: #000000;
-}
-.acl-button-show {
-  background-image: url("../../../images/show_off.png");
-}
-.acl-button-hide {
-  background-image: url("../../../images/hide_off.png");
-}
-.acl-button-show.selected {
-  color: #000000;
-  background-color: #9ade00;
-  background-image: url("../../../images/show_on.png");
-}
-.acl-button-hide.selected {
-  color: #000000;
-  background-color: #ff4141;
-  background-image: url("../../../images/hide_on.png");
-}
-.acl-list-item.groupshow {
-  border-color: #9ade00;
-}
-.acl-list-item.grouphide {
-  border-color: #ff4141;
-}
-/** /acl **/
-/** tab buttons 14618a**/
-ul.tabs {
-  list-style-type: none;
-  padding-bottom: 10px;
-  font-size: 13px;
-}
-ul.tabs li {
-  float: left;
-  margin-left: 5px;
-}
-ul.tabs li .active {
-    background-color: #535353;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    margin-left: 5px;
-}
-//settings tabs
-ul.rs_tabs {
-  list-style-type: none;
-  font-size: 11px;
-}
-ul.rs_tabs li {
-  float: left;
-  margin-bottom: 30px;
-  clear: both;
-}
-ul.rs_tabs li .selected {
-    background-color: #535353;
-    border: 1px solid #777777;
-    color: white;
-    border-radius: 3px 3px 3px 3px;
-    box-shadow: 2px 2px 2px #CFCFCF;
-    font-size: 13px;
-}
-.rs_tabs {
-    list-style-type: none;
-    font-size: 11px;
-    background-position: 0 -20px;
-    background-repeat: repeat-x;
-    height: 27px;
-    padding: 0;
- }
-.rs_tab.button {       
-    /*background: none repeat scroll 0 0 #F8F8F8;*/
-    border: 1px solid #CCCCCC;
-    border-radius: 3px 3px 3px 3px;
-    font-weight: bolder;
-    padding: 3px;
-    color:  #333333;
-    text-decoration: none;
-       }
-/**
- * Form fields
- */
-.field {
-  margin-bottom: 10px;
-  padding-bottom: 10px;
-  overflow: auto;
-  width: 100%;
-}
-.field label {
-  float: left;
-  width: 200px;
-}
-.field input, .field textarea {
-  width: 400px;
-}
-.field textarea {
-  height: 100px;
-}
-.field .field_help {
-  display: block;
-  margin-left: 200px;
-  color: #666666;
-}
-.field .onoff {
-  float: left;
-  width: 80px;
-}
-.field .onoff a {
-  display: block;
-  border: 1px solid #666666;
-  background-image: url("../../../images/onoff.jpg");
-  background-repeat: no-repeat;
-  padding: 4px 2px 2px 2px;
-  height: 16px;
-  text-decoration: none;
-}
-.field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
-  background-position: left center;
-  background-color: #cccccc;
-  color: #666666;
-  text-align: right;
-}
-.field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
-  background-position: right center;
-  background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
-}
-.field .hidden {
-  display: none!important;
-}
-.field.radio .field_help {
-  margin-left: 0px;
-}
-.suggest-select {
-width: 500px;
-height: 350px; 
-       }
-.message-to-select {
-       width: 400px;
-   height: 150px;
-       }
-#directory-search-form{
-       margin-bottom: 50px;
-       }
-#profile-edit-links-end {
-        clear: both;
-        margin-bottom: 15px;
-}
-
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
-
-#profile-edit-links li {
-  float: left;
-  list-style: none;
-  margin-left: 10px;
-}
-
-.profile-edit-side-div {
-  display: none;
-}
-
-#register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
-}
-
-.required {
-  display: inline;
-  color: #B20202;
-}
-
-/* oauth */
-.oauthapp {
-  height: auto;
-  overflow: auto;
-  border-bottom: 2px solid #cccccc;
-  padding-bottom: 1em;
-  margin-bottom: 1em;
-}
-.oauthapp img {
-  float: left;
-  width: 48px;
-  height: 48px;
-  margin: 10px;
-}
-.oauthapp img.noicon {
-  background-image: url("../../../images/icons/48/plugin.png");
-  background-position: center center;
-  background-repeat: no-repeat;
-}
-.oauthapp a {
-  float: left;
-}
-/* contacts */
-.contact-entry-wrapper {
-  width: 120px;
-  height: 120px;
-  float: left;
-}
-/* photo */
-.photo {
-box-shadow: 2px 2px 5px 0px #000000;
-margin: 0px;
-border-radius: 10px;
-height: 145px !important;
-width: 145px !important;
-}
-.lframe {
-  float: left;
-  /*margin: 0px 10px 10px 0px;*/
-}
-/* profile match wrapper */
-.profile-match-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 20px;
-}
-.profile-match-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.profile-match-wrapper {
-  left: 0px;
-  top: 63px;
+.calendar.eventcal a {
+  color: #1872a2;      
 }
 
-.contact-photo-menu-button {
-        position: relative;
-        background-image: url("../../../images/icons/16/menu.png");
-        background-position: top left; 
-        background-repeat: no-repeat;
-        margin: 0px 0px -16px 0px; 
-       padding: 0px;
-        width: 16px;
-        height: 16px;
-        top: -16px; left:0px;
-        overflow: hidden;
-        text-indent: 40px;
-        display: none;
-        
-}
-.contact-photo-menu {
-        width: 11em;
-        border: 3px solid #364e59;
-       color: #2d2d2d;
-        background: #FFFFFF;
-/*        position: absolute;*/
-        position: relative;
-        left: 0px; top: 0px;
-        display: none;
-        z-index: 10000;
-}
-.contact-photo-menu ul { margin:0px; padding: 0px; list-style: none }
-.contact-photo-menu li a {
-       display: block; 
-       padding: 5px 10px; 
-       color: #2d2d2d;
-       text-decoration: none;
-}
-.contact-photo-menu li a:hover {
-       background-color: #bdcdd4; 
-}
-
-/* page footer */
-footer {
-  height: 100px;
-  display: table-row;
-}
-
-blockquote {
-    border-left: 1px solid #D2D2D2;
-    padding-left: 9px;
-    margin: 0 0 0 .8ex;
-        color: #777;
-}
-.oembed {
-       
-       font-weight: bold;
-}
-.aprofile dt{
-box-shadow: 1px 1px 5px 0;
-    color: #666666;
-    margin: 15px 0 5px;
-    padding-left: 5px; 
-       }
-/* ================== */
-/* = Contacts Block = */
-/* ================== */
-
-.contact-block-img {
-        width: 55px;
-        height: 55px;
-        padding-right: 3px;
-}
-.contact-block-div {
-        float: left;
-}
-
-.contact-block-textdiv { width: 150px; height: 34px; float: left; }
-#contact-block-end { clear: both; } 
-
-#group-edit-wrapper {
-        margin-bottom: 10px;
-}
-
-#group-members-end {
-        clear: both;
-}
-#group-edit-desc {
- margin-top: 15px;
-}
-
-/*
-#group-separator,
-#prof-separator { display: none;}
-*/
-#prof-members-end{
-       clear: both;
-       }
-
-#prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
-       margin-bottom: 10px;
-       margin-top: 20px;
-}
-
-#prvmail-submit {
-       float: right;
-       margin-top: 10px;
-}
-
-#prvmail-subject
-{
-background: none repeat scroll 0 0 #FFFFFF;
-border: 1px solid #CCCCCC;
-border-radius: 5px 5px 5px 5px;
-font-weight: bold;
-height: 20px;
-margin: 0 0 5px;
-vertical-align: middle;
-}
-#prvmail-form{
- width: 597px; 
-       }
-       
-#prvmail-upload-wrapper,
-#prvmail-link-wrapper,
-#prvmail-rotator-wrapper {
-       float: left;
-       margin-top: 10px;
-       margin-right: 10px;
-       width: 24px;
-}
-
-#prvmail-end {
-       clear: both;
-}
-
-.mail-list-sender,
-.mail-list-detail {
-       float: left;
-}
-.mail-list-detail {
-       margin-left: 20px;
-}
-
-.mail-list-subject {
-       font-size: 1.1em;
-       margin-top: 10px;
-}
-a.mail-list-link {
-    display: block;
-    font-size: 1.3em;
-    padding: 4px 0;
-}
-
-/*
-*a.mail-list-link:hover {
-*      background-color: #15607B;
-*      color: #F5F6FB;
-*}
-*/
-
-.mail-list-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-list-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-list-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-
-.mail-list-delete-icon {
-       border: none;
-}
-
-.mail-conv-sender,
-.mail-conv-detail {
-       float: left;
-}
-.mail-conv-detail {
-       margin-left: 20px;
-       width: 500px;
-}
-
-.mail-conv-subject {
-    font-size: 1.4em;
-    margin: 10px 0;
-}
-
-.mail-conv-outside-wrapper-end {
-       clear: both;
-}
-
-.mail-conv-outside-wrapper {
-       margin-top: 30px;
-}
-
-.mail-conv-delete-wrapper {
-       float: right;
-       margin-right: 30px;
-       margin-top: 15px;
-}
-.mail-conv-break {
-       clear: both;
-}
-
-.mail-conv-delete-icon {
-       border: none;
-}
-
-/* ========== */
-/* = Events = */
-/* ========== */
-.eventcal {
-        float: left;
-        font-size: 20px;
-}
-
-.vevent {
-position: relative;
-width: 400px;
-padding: 20px;
-padding-top: 10px;
-margin: 0 0px;
-margin-bottom: 10px;
-background-color: white;
--webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
--moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-}
-.vevent .event-location {
-        margin-left: 10px;
-        margin-right: 10px;
-}
-.vevent .event-description {
-margin-left: 10px;
-margin-right: 10px;
-font-size: 1.1em;
-font-weight: bolder;
-}
-.vevent .event-start, .vevent .event-end {
-
-margin-right: 20px;
-margin-bottom: 2px;
-margin-top: 2px;
-font-size: 0.9em;
-text-align: left;
-}
-.event-start .dtstart, .event-end .dtend {
-float: right;
-}
-
-
-#new-event-link {
-        margin-bottom: 10px;
-}
-
-.edit-event-link, .plink-event-link {
-        float: left;
-        margin-top: 4px;
-        margin-right: 4px;
-        margin-bottom: 15px;
-}
-
-.event-description:before {
-        content:   url("../../../view/theme/diabook/icons/events2.png") !important;
-        margin-right: 15px;
-}
-
-.event-start, .event-end {
-        margin-left: 10px;
-        width: 330px;
-        clear: both;
-}
-
-.event-start .dtstart, .event-end .dtend {
-        float: right;
-}
-
-.event-list-date {
-        margin-bottom: 10px;
-}
-
-.prevcal, .nextcal {
-        float: left;
-        margin-left: 32px;
-        margin-right: 32px;
-        margin-top: 64px;
-}
-.event-calendar-end {
-        clear: both;
-}
-
-.calendar {
-        font-family: Courier, monospace;
-}
-.calendar.eventcal a {
-  color: #1872A2;      
-       }
-.today {
-        font-weight: bold;
-        color: #FF0000;
-}
-
-.settings-block {
-        border: 1px solid #AAA;
-        margin: 10px;
-        padding: 10px;
-}
-
-.app-title {
-        margin: 10px;
-}
-
-#identity-manage-desc {
-        margin-top:15px;
-        margin-bottom: 15px;
-}
-
-#identity-manage-choose {
-        margin-bottom: 15px;
-}
-
-#identity-submit {
-        margin-top: 20px;
-}
-
-#photo-prev-link, #photo-next-link {
-        padding: 10px;
-        float: left;
-}
-.lightbox{
-       float: left;
-       }
-#photo-photo {
-        float: left;
-}
-#photo-like-div .wall-item-like-buttons {
-       float: left;
-   margin-right: 10px;
-       }
-.wall-item-like-buttons .icon.like {
-float: left;
-}
-
-#photo-photo-end {
-        clear: both;
-}
-
-.tabs .comment-wwedit-wrapper {
-       display: block;
-   margin-top: 30px;
-   margin-left: 50px;
-       }
-
-.profile-match-photo {
-        float: left;
-        text-align: center;
-        width: 120px;
-}
-
-.profile-match-name {
-        float: left;
-        text-align: center;
-        width: 120px;
-        overflow: hidden;
-}
-
-.profile-match-break,
-.profile-match-end {
-        clear: both;
-}
-
-.profile-match-connect {
-        text-align: center;
-        font-weight: bold;
-}
-
-.profile-match-wrapper {
-        float: left;
-        padding: 10px;
-        width: 120px;
-        height: 120px;
-        scroll: auto;
-}
-#profile-match-wrapper-end {
-        clear: both;
-}
-
-/* ============= */
-/* = Directory = */
-/* ============= */
-section .directory-item dl {
-  height: auto;
-  overflow: auto;      
-}
-section .directory-item dt {
-  float: left;
-  margin-left: 0px;
-  text-align: right;
-  color: #999;
-}
-section .directory-item dd {
-  float: left;
-  margin-left: 5px;
-}
-.directory-profile-wrapper {
-  float: left;
-  max-height: 178px;
-  overflow: hidden;
-  width: 635px;
-}
-.directory-copy-wrapper {
-  float: left;
-  overflow: hidden;    
-}
-/* contacts menu */
-.contact-photo-wrapper {
-  position: relative;
-}
-.contact-photo {
-  width: 48px;
-  height: 48px;
-  overflow: hidden;
-  display: block;
-}
-.contact-photo img {
-  width: 48px;
-  height: 48px;
-}
-.contact-photo-menu-button {
-  display: none;
-  /* position: absolute; */
-  /* position: absolute; */
-  left: 0px;
-  top: -16px;
-}
-.contact-wrapper {
-  float: left;
-  width: 90px;
-  height: 90px;
-  margin-bottom: 15px;
-}
-.contact-wrapper .contact-photo {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo img {
-  width: 80px;
-  height: 80px;
-}
-.contact-wrapper .contact-photo-menu-button {
-  left: 0px;
-  top: 63px;
-}
-.directory-item {
-  float: left;
-  width: 800px;
-  height: 200px;
-}
-.directory-item .contact-photo {
-  width: 175px;
-  height: 175px;
-}
-.directory-item .contact-photo img {
-  width: 175px;
-  height: 175px;
-}
-
-section .directory-photo-wrapper {
-  float: left;
-  height: 200px;
-  width: 165px;  
-}
-.contact-name {
-  font-weight: bold;
-  font-size: 18px;
-  margin-bottom: -3px;
-  text-align: left;
-}
-.contact-details {
-  color: #999999;
-}
-.page-type {
-  font-size: 10px;
-  font-style: italic;
-}
-.directory-detailscolumn-wrapper {
-  float: left; 
-  width: 305px;
-  margin-right: 10px;  
-}
-.directory-profile-wrapper dl {
-  margin-top: 3px;
-  margin-bottom: 3px;
-}
-.directory-profile-title {
-  font-weight: bold;
-  margin-bottom: 3px;
-  font-size: 14px;
-}
-#side-bar-photos-albums{
-       margin-top: 15px;       
-}
-.photo-top-photo, .photo-album-photo {
-  -webkit-border-radius: 5px 5px 0 0;
-  -moz-border-radius: 5px 5px 0 0;
-  border-radius: 5px 5px 0 0;
-}
-.photo-album-image-wrapper, .photo-top-image-wrapper {
-  float: left;
-   -moz-box-shadow: 0 0 5px #888;
-   -webkit-box-shadow: 0 0 5px #888;
-   box-shadow: 0 0 5px #888;
-  background-color: #000;
-   -webkit-border-radius: 5px;
-   -moz-border-radius: 5px;
-  border-radius: 5px;
-  padding-bottom: 20px;
-  position: relative;
-  margin: 0 10px 10px 0;
-  width: 200px; height: 140px;
-  overflow: hidden;  
-}
 .photo-top-album-name {
         width: 100%;
         position: absolute; 
@@ -2933,39 +384,5 @@ section .directory-photo-wrapper {
         background-color: #EEE;
 }
 .photo-top-album-link{
-  color: #1872A2;
-       }
-.photo-top-album-img{
-       
-       }
-/*.photo-top-image-wrapper {
-        position: relative;
-        float: left;
-        margin-top: 15px;
-        margin-right: 15px;
-        width: 200px; height: 200px; 
-        overflow: hidden; 
-}
-.photo-top-album-name {
-        width: 100%;
-        min-height: 2em;
-        position: absolute; 
-        bottom: 0px; 
-        padding: 0px 3px;
-        padding-top: 0.5em;
-        background-color: rgb(255, 255, 255);
-}*/
-#photo-top-end {
-        clear: both;
-}
-
-#photo-top-links {
-        margin-bottom: 30px;
-        margin-left: 30px;
-}
-
-#photos-upload-newalbum-div {
-        float: left;
-        width: 175px;
-}
-
+  color: #1872a2;
+}
\ No newline at end of file
index 729893013ba1c810b24f515ba5a9c9e4ca139bc0..888b5b6c7fae80dd289806c1904498b8db60683c 100644 (file)
@@ -1211,7 +1211,11 @@ body .pageheader{
        }
        
 #birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
+       background-color: lightblue;
+       border: think solid black;
+       margin: 2px;
+       padding: 5px;
+       width: 95%;
        }
 
 right_aside {
index 927549fa33f7bd48a53cd1c106eafcf1cdb1fb45..b7d4da59c4abd500c909d78d1a9f2f4161fecfec 100644 (file)
@@ -1186,7 +1186,11 @@ body .pageheader{
        }
        
 #birthday-notice, #event-notice, #birthday-wrapper, #event-wrapper{
-       margin-bottom: 10px;
+       background-color: lightblue;
+       border: think solid black;
+       margin: 2px;
+       padding: 5px;
+       width: 95%;
        }
 
 right_aside {
index c0ca82b41c96bbcf6d08ecc9b5df434ebc257c70..b4d7de1796e61615476f408c7910ec32d89c3210 100644 (file)
@@ -37,6 +37,7 @@ load_config("diabook");
 load_pconfig(local_user(), "diabook");
 
 //get statuses of boxes at right-hand-column
+$close_pages      = get_diabook_config( "close_pages", 0 );
 $close_profiles   = get_diabook_config( "close_profiles", 0 );
 $close_helpers    = get_diabook_config( "close_helpers", 0 );
 $close_services   = get_diabook_config( "close_services", 0 );
@@ -301,6 +302,11 @@ if ($color=="dark") $color_path = "/diabook-dark/";
                document.getElementById( "close_mapquery" ).style.display = "none";
                        };
 
+       if('.$close_pages.')
+               {
+               document.getElementById( "close_pages" ).style.display = "none";
+                       };
+
        if('.$close_profiles.')
                {
                document.getElementById( "close_profiles" ).style.display = "none";
@@ -362,6 +368,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
  function diabook_community_info() {
        $a = get_app();
 
+       $close_pages      = get_diabook_config( "close_pages", 0 );
        $close_profiles   = get_diabook_config( "close_profiles", 0 );
        $close_helpers    = get_diabook_config( "close_helpers", 0 );
        $close_services   = get_diabook_config( "close_services", 0 );
@@ -372,6 +379,43 @@ if ($color=="dark") $color_path = "/diabook-dark/";
        $close_twitter    = get_diabook_config( "close_twitter", 1 );
        $close_mapquery   = get_diabook_config( "close_mapquery", 1 );
 
+       //Community_Pages at right_aside
+       if($close_pages != "1") {
+               if(local_user()) {
+                       $page = '
+                        <h3 style="margin-top:0px;">'.t("Community Pages").'<a id="closeicon" href="#boxsettings" onClick="open_boxsettings(); return false;" style="text-decorat
+ion:none;" class="icon close_box" title="'.t("Settings").'"></a></h3>
+                        <div id=""><ul style="margin-left: 7px;margin-top: 0px;padding-left: 0px;padding-top: 0px;">';
+
+                       $pagelist = array();
+
+                       $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact`
+                               WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d
+                               ORDER BY `name` ASC",
+                               intval($a->user['uid'])
+                               );
+
+                       $pageD = array();
+
+                       // Look if the profile is a community page
+                       foreach($contacts as $contact) {
+                               $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
+                       };
+
+
+                       $contacts = $pageD;
+
+                       foreach($contacts as $contact) {
+                               $page .= '<li style="list-style-type: none;" class="tool"><img height="20" width="20" style="float: left; margin-right: 3px;" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" style="margin-top: 2px; word-wrap: break-word; width: 132px;" title="' . $contact['url'] . '" class="label" target="external-link">'.
+                                       $contact["name"]."</a></li>";
+                       }
+                       $page .= '</ul></div>';
+                       //if (sizeof($contacts) > 0)
+                               $aside['$page'] = $page;
+               }
+       }
+       //END Community Page
+
        // comunity_profiles
        if($close_profiles != "1") {
        $aside['$comunity_profiles_title'] = t('Community Profiles');
@@ -575,6 +619,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
        }
    //end twitter
    if($ccCookie != "10") {
+       $close_pages      = get_diabook_config( "close_pages", 0 );
        $close_profiles   = get_diabook_config( "close_profiles", 0 );
        $close_helpers    = get_diabook_config( "close_helpers", 0 );
        $close_services   = get_diabook_config( "close_services", 0 );
@@ -587,6 +632,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
        $close_or_not = array('1'=>t("don't show"),     '0'=>t("show"),);
        $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", "");
        $aside['$boxsettings'] = $boxsettings;
+       $aside['$close_pages'] = array('diabook_close_pages', t('Community Pages'), $close_pages, '', $close_or_not);
        $aside['$close_mapquery'] = array('diabook_close_mapquery', t('Earth Layers'), $close_mapquery, '', $close_or_not);
        $aside['$close_profiles'] = array('diabook_close_profiles', t('Community Profiles'), $close_profiles, '', $close_or_not);
        $aside['$close_helpers'] = array('diabook_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not);
@@ -600,6 +646,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
    $baseurl = $a->get_baseurl($ssl_state);
    $aside['$baseurl'] = $baseurl;
    if (isset($_POST['diabook-settings-box-sub']) && $_POST['diabook-settings-box-sub']!=''){
+               set_pconfig(local_user(), 'diabook', 'close_pages', $_POST['diabook_close_pages']);
                set_pconfig(local_user(), 'diabook', 'close_mapquery', $_POST['diabook_close_mapquery']);
                set_pconfig(local_user(), 'diabook', 'close_profiles', $_POST['diabook_close_profiles']);
                set_pconfig(local_user(), 'diabook', 'close_helpers', $_POST['diabook_close_helpers']);
diff --git a/view/theme/vier/css/font-awesome-ie7.css b/view/theme/vier/css/font-awesome-ie7.css
new file mode 100644 (file)
index 0000000..c1dc3ac
--- /dev/null
@@ -0,0 +1,645 @@
+[class^="icon-"],
+[class*=" icon-"] {
+  font-family: FontAwesome;
+  font-style: normal;
+  font-weight: normal;
+}
+.btn.dropdown-toggle [class^="icon-"],
+.btn.dropdown-toggle [class*=" icon-"] {
+  /* keeps button heights with and without icons the same */
+
+  line-height: 1.4em;
+}
+.icon-large {
+  font-size: 1.3333em;
+}
+.icon-glass {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf000;&nbsp;');
+}
+.icon-music {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf001;&nbsp;');
+}
+.icon-search {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf002;&nbsp;');
+}
+.icon-envelope {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf003;&nbsp;');
+}
+.icon-heart {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf004;&nbsp;');
+}
+.icon-star {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf005;&nbsp;');
+}
+.icon-star-empty {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf006;&nbsp;');
+}
+.icon-user {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf007;&nbsp;');
+}
+.icon-film {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf008;&nbsp;');
+}
+.icon-th-large {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf009;&nbsp;');
+}
+.icon-th {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00a;&nbsp;');
+}
+.icon-th-list {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00b;&nbsp;');
+}
+.icon-ok {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00c;&nbsp;');
+}
+.icon-remove {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00d;&nbsp;');
+}
+.icon-zoom-in {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf00e;&nbsp;');
+}
+.icon-zoom-out {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf010;&nbsp;');
+}
+.icon-off {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf011;&nbsp;');
+}
+.icon-signal {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf012;&nbsp;');
+}
+.icon-cog {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf013;&nbsp;');
+}
+.icon-trash {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf014;&nbsp;');
+}
+.icon-home {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf015;&nbsp;');
+}
+.icon-file {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf016;&nbsp;');
+}
+.icon-time {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf017;&nbsp;');
+}
+.icon-road {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf018;&nbsp;');
+}
+.icon-download-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf019;&nbsp;');
+}
+.icon-download {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01a;&nbsp;');
+}
+.icon-upload {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01b;&nbsp;');
+}
+.icon-inbox {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01c;&nbsp;');
+}
+.icon-play-circle {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01d;&nbsp;');
+}
+.icon-repeat {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf01e;&nbsp;');
+}
+.icon-refresh {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf021;&nbsp;');
+}
+.icon-list-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf022;&nbsp;');
+}
+.icon-lock {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf023;&nbsp;');
+}
+.icon-flag {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf024;&nbsp;');
+}
+.icon-headphones {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf025;&nbsp;');
+}
+.icon-volume-off {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf026;&nbsp;');
+}
+.icon-volume-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf027;&nbsp;');
+}
+.icon-volume-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf028;&nbsp;');
+}
+.icon-qrcode {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf029;&nbsp;');
+}
+.icon-barcode {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02a;&nbsp;');
+}
+.icon-tag {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02b;&nbsp;');
+}
+.icon-tags {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02c;&nbsp;');
+}
+.icon-book {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02d;&nbsp;');
+}
+.icon-bookmark {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02e;&nbsp;');
+}
+.icon-print {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf02f;&nbsp;');
+}
+.icon-camera {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf030;&nbsp;');
+}
+.icon-font {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf031;&nbsp;');
+}
+.icon-bold {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf032;&nbsp;');
+}
+.icon-italic {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf033;&nbsp;');
+}
+.icon-text-height {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf034;&nbsp;');
+}
+.icon-text-width {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf035;&nbsp;');
+}
+.icon-align-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf036;&nbsp;');
+}
+.icon-align-center {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf037;&nbsp;');
+}
+.icon-align-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf038;&nbsp;');
+}
+.icon-align-justify {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf039;&nbsp;');
+}
+.icon-list {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03a;&nbsp;');
+}
+.icon-indent-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03b;&nbsp;');
+}
+.icon-indent-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03c;&nbsp;');
+}
+.icon-facetime-video {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03d;&nbsp;');
+}
+.icon-picture {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf03e;&nbsp;');
+}
+.icon-pencil {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf040;&nbsp;');
+}
+.icon-map-marker {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf041;&nbsp;');
+}
+.icon-adjust {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf042;&nbsp;');
+}
+.icon-tint {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf043;&nbsp;');
+}
+.icon-edit {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf044;&nbsp;');
+}
+.icon-share {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf045;&nbsp;');
+}
+.icon-check {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf046;&nbsp;');
+}
+.icon-move {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf047;&nbsp;');
+}
+.icon-step-backward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf048;&nbsp;');
+}
+.icon-fast-backward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf049;&nbsp;');
+}
+.icon-backward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04a;&nbsp;');
+}
+.icon-play {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04b;&nbsp;');
+}
+.icon-pause {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04c;&nbsp;');
+}
+.icon-stop {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04d;&nbsp;');
+}
+.icon-forward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf04e;&nbsp;');
+}
+.icon-fast-forward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf050;&nbsp;');
+}
+.icon-step-forward {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf051;&nbsp;');
+}
+.icon-eject {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf052;&nbsp;');
+}
+.icon-chevron-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf053;&nbsp;');
+}
+.icon-chevron-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf054;&nbsp;');
+}
+.icon-plus-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf055;&nbsp;');
+}
+.icon-minus-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf056;&nbsp;');
+}
+.icon-remove-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf057;&nbsp;');
+}
+.icon-ok-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf058;&nbsp;');
+}
+.icon-question-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf059;&nbsp;');
+}
+.icon-info-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05a;&nbsp;');
+}
+.icon-screenshot {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05b;&nbsp;');
+}
+.icon-remove-circle {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05c;&nbsp;');
+}
+.icon-ok-circle {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05d;&nbsp;');
+}
+.icon-ban-circle {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf05e;&nbsp;');
+}
+.icon-arrow-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf060;&nbsp;');
+}
+.icon-arrow-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf061;&nbsp;');
+}
+.icon-arrow-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf062;&nbsp;');
+}
+.icon-arrow-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf063;&nbsp;');
+}
+.icon-share-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf064;&nbsp;');
+}
+.icon-resize-full {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf065;&nbsp;');
+}
+.icon-resize-small {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf066;&nbsp;');
+}
+.icon-plus {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf067;&nbsp;');
+}
+.icon-minus {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf068;&nbsp;');
+}
+.icon-asterisk {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf069;&nbsp;');
+}
+.icon-exclamation-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06a;&nbsp;');
+}
+.icon-gift {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06b;&nbsp;');
+}
+.icon-leaf {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06c;&nbsp;');
+}
+.icon-fire {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06d;&nbsp;');
+}
+.icon-eye-open {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf06e;&nbsp;');
+}
+.icon-eye-close {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf070;&nbsp;');
+}
+.icon-warning-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf071;&nbsp;');
+}
+.icon-plane {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf072;&nbsp;');
+}
+.icon-calendar {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf073;&nbsp;');
+}
+.icon-random {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf074;&nbsp;');
+}
+.icon-comment {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf075;&nbsp;');
+}
+.icon-magnet {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf076;&nbsp;');
+}
+.icon-chevron-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf077;&nbsp;');
+}
+.icon-chevron-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf078;&nbsp;');
+}
+.icon-retweet {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf079;&nbsp;');
+}
+.icon-shopping-cart {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07a;&nbsp;');
+}
+.icon-folder-close {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07b;&nbsp;');
+}
+.icon-folder-open {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07c;&nbsp;');
+}
+.icon-resize-vertical {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07d;&nbsp;');
+}
+.icon-resize-horizontal {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf07e;&nbsp;');
+}
+.icon-bar-chart {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf080;&nbsp;');
+}
+.icon-twitter-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf081;&nbsp;');
+}
+.icon-facebook-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf082;&nbsp;');
+}
+.icon-camera-retro {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf083;&nbsp;');
+}
+.icon-key {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf084;&nbsp;');
+}
+.icon-cogs {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf085;&nbsp;');
+}
+.icon-comments {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf086;&nbsp;');
+}
+.icon-thumbs-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf087;&nbsp;');
+}
+.icon-thumbs-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf088;&nbsp;');
+}
+.icon-star-half {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf089;&nbsp;');
+}
+.icon-heart-empty {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08a;&nbsp;');
+}
+.icon-signout {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08b;&nbsp;');
+}
+.icon-linkedin-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08c;&nbsp;');
+}
+.icon-pushpin {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08d;&nbsp;');
+}
+.icon-external-link {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf08e;&nbsp;');
+}
+.icon-signin {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf090;&nbsp;');
+}
+.icon-trophy {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf091;&nbsp;');
+}
+.icon-github-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf092;&nbsp;');
+}
+.icon-upload-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf093;&nbsp;');
+}
+.icon-lemon {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf094;&nbsp;');
+}
+.icon-phone {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf095;&nbsp;');
+}
+.icon-check-empty {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf096;&nbsp;');
+}
+.icon-bookmark-empty {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf097;&nbsp;');
+}
+.icon-phone-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf098;&nbsp;');
+}
+.icon-twitter {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf099;&nbsp;');
+}
+.icon-facebook {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09a;&nbsp;');
+}
+.icon-github {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09b;&nbsp;');
+}
+.icon-unlock {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09c;&nbsp;');
+}
+.icon-credit-card {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09d;&nbsp;');
+}
+.icon-rss {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf09e;&nbsp;');
+}
+.icon-hdd {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a0;&nbsp;');
+}
+.icon-bullhorn {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a1;&nbsp;');
+}
+.icon-bell {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a2;&nbsp;');
+}
+.icon-certificate {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a3;&nbsp;');
+}
+.icon-hand-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a4;&nbsp;');
+}
+.icon-hand-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a5;&nbsp;');
+}
+.icon-hand-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a6;&nbsp;');
+}
+.icon-hand-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a7;&nbsp;');
+}
+.icon-circle-arrow-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a8;&nbsp;');
+}
+.icon-circle-arrow-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0a9;&nbsp;');
+}
+.icon-circle-arrow-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0aa;&nbsp;');
+}
+.icon-circle-arrow-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ab;&nbsp;');
+}
+.icon-globe {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ac;&nbsp;');
+}
+.icon-wrench {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ad;&nbsp;');
+}
+.icon-tasks {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ae;&nbsp;');
+}
+.icon-filter {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b0;&nbsp;');
+}
+.icon-briefcase {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b1;&nbsp;');
+}
+.icon-fullscreen {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0b2;&nbsp;');
+}
+.icon-group {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c0;&nbsp;');
+}
+.icon-link {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c1;&nbsp;');
+}
+.icon-cloud {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c2;&nbsp;');
+}
+.icon-beaker {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c3;&nbsp;');
+}
+.icon-cut {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c4;&nbsp;');
+}
+.icon-copy {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c5;&nbsp;');
+}
+.icon-paper-clip {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c6;&nbsp;');
+}
+.icon-save {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c7;&nbsp;');
+}
+.icon-sign-blank {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c8;&nbsp;');
+}
+.icon-reorder {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0c9;&nbsp;');
+}
+.icon-list-ul {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ca;&nbsp;');
+}
+.icon-list-ol {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cb;&nbsp;');
+}
+.icon-strikethrough {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cc;&nbsp;');
+}
+.icon-underline {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0cd;&nbsp;');
+}
+.icon-table {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ce;&nbsp;');
+}
+.icon-magic {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d0;&nbsp;');
+}
+.icon-truck {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d1;&nbsp;');
+}
+.icon-pinterest {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d2;&nbsp;');
+}
+.icon-pinterest-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d3;&nbsp;');
+}
+.icon-google-plus-sign {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d4;&nbsp;');
+}
+.icon-google-plus {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d5;&nbsp;');
+}
+.icon-money {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d6;&nbsp;');
+}
+.icon-caret-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d7;&nbsp;');
+}
+.icon-caret-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d8;&nbsp;');
+}
+.icon-caret-left {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0d9;&nbsp;');
+}
+.icon-caret-right {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0da;&nbsp;');
+}
+.icon-columns {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0db;&nbsp;');
+}
+.icon-sort {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dc;&nbsp;');
+}
+.icon-sort-down {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0dd;&nbsp;');
+}
+.icon-sort-up {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0de;&nbsp;');
+}
+.icon-envelope-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e0;&nbsp;');
+}
+.icon-linkedin {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e1;&nbsp;');
+}
+.icon-undo {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e2;&nbsp;');
+}
+.icon-legal {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e3;&nbsp;');
+}
+.icon-dashboard {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e4;&nbsp;');
+}
+.icon-comment-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e5;&nbsp;');
+}
+.icon-comments-alt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e6;&nbsp;');
+}
+.icon-bolt {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e7;&nbsp;');
+}
+.icon-sitemap {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e8;&nbsp;');
+}
+.icon-umbrella {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0e9;&nbsp;');
+}
+.icon-paste {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf0ea;&nbsp;');
+}
+.icon-user-md {
+  *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xf200;&nbsp;');
+}
diff --git a/view/theme/vier/css/font-awesome.css b/view/theme/vier/css/font-awesome.css
new file mode 100644 (file)
index 0000000..4697599
--- /dev/null
@@ -0,0 +1,303 @@
+/*  Font Awesome
+    the iconic font designed for use with Twitter Bootstrap
+    -------------------------------------------------------
+    The full suite of pictographic icons, examples, and documentation
+    can be found at: http://fortawesome.github.com/Font-Awesome/
+
+    License
+    -------------------------------------------------------
+    The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
+    http://creativecommons.org/licenses/by/3.0/ A mention of
+    'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
+    source code is considered acceptable attribution (most common on the web).
+    If human readable source code is not available to the end user, a mention in
+    an 'About' or 'Credits' screen is considered acceptable (most common in desktop
+    or mobile software).
+
+    Contact
+    -------------------------------------------------------
+    Email: dave@davegandy.com
+    Twitter: http://twitter.com/fortaweso_me
+    Work: http://lemonwi.se co-founder
+
+    */
+@font-face {
+  font-family: "FontAwesome";
+  src: url('../font/fontawesome-webfont.eot');
+  src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');
+  font-weight: normal;
+  font-style: normal;
+}
+
+/*  Font Awesome styles
+    ------------------------------------------------------- */
+[class^="icon-"]:before, [class*=" icon-"]:before {
+  font-family: FontAwesome;
+  font-weight: normal;
+  font-style: normal;
+  display: inline-block;
+  text-decoration: inherit;
+}
+a [class^="icon-"], a [class*=" icon-"] {
+  display: inline-block;
+  text-decoration: inherit;
+}
+/* makes the font 33% larger relative to the icon container */
+.icon-large:before {
+  vertical-align: top;
+  font-size: 1.3333333333333333em;
+}
+.btn [class^="icon-"], .btn [class*=" icon-"] {
+  /* keeps button heights with and without icons the same */
+
+  line-height: .9em;
+}
+li [class^="icon-"], li [class*=" icon-"] {
+  display: inline-block;
+  width: 1.25em;
+  text-align: center;
+}
+li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
+  /* 1.5 increased font size for icon-large * 1.25 width */
+
+  width: 1.875em;
+}
+li[class^="icon-"], li[class*=" icon-"] {
+  margin-left: 0;
+  list-style-type: none;
+}
+li[class^="icon-"]:before, li[class*=" icon-"]:before {
+  text-indent: -2em;
+  text-align: center;
+}
+li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
+  text-indent: -1.3333333333333333em;
+}
+/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+    readers do not read off random characters that represent icons */
+.icon-glass:before                { content: "\f000"; }
+.icon-music:before                { content: "\f001"; }
+.icon-search:before               { content: "\f002"; }
+.icon-envelope:before             { content: "\f003"; }
+.icon-heart:before                { content: "\f004"; }
+.icon-star:before                 { content: "\f005"; }
+.icon-star-empty:before           { content: "\f006"; }
+.icon-user:before                 { content: "\f007"; }
+.icon-film:before                 { content: "\f008"; }
+.icon-th-large:before             { content: "\f009"; }
+.icon-th:before                   { content: "\f00a"; }
+.icon-th-list:before              { content: "\f00b"; }
+.icon-ok:before                   { content: "\f00c"; }
+.icon-remove:before               { content: "\f00d"; }
+.icon-zoom-in:before              { content: "\f00e"; }
+
+.icon-zoom-out:before             { content: "\f010"; }
+.icon-off:before                  { content: "\f011"; }
+.icon-signal:before               { content: "\f012"; }
+.icon-cog:before                  { content: "\f013"; }
+.icon-trash:before                { content: "\f014"; }
+.icon-home:before                 { content: "\f015"; }
+.icon-file:before                 { content: "\f016"; }
+.icon-time:before                 { content: "\f017"; }
+.icon-road:before                 { content: "\f018"; }
+.icon-download-alt:before         { content: "\f019"; }
+.icon-download:before             { content: "\f01a"; }
+.icon-upload:before               { content: "\f01b"; }
+.icon-inbox:before                { content: "\f01c"; }
+.icon-play-circle:before          { content: "\f01d"; }
+.icon-repeat:before               { content: "\f01e"; }
+
+/* \f020 doesn't work in Safari. all shifted one down */
+.icon-refresh:before              { content: "\f021"; }
+.icon-list-alt:before             { content: "\f022"; }
+.icon-lock:before                 { content: "\f023"; }
+.icon-flag:before                 { content: "\f024"; }
+.icon-headphones:before           { content: "\f025"; }
+.icon-volume-off:before           { content: "\f026"; }
+.icon-volume-down:before          { content: "\f027"; }
+.icon-volume-up:before            { content: "\f028"; }
+.icon-qrcode:before               { content: "\f029"; }
+.icon-barcode:before              { content: "\f02a"; }
+.icon-tag:before                  { content: "\f02b"; }
+.icon-tags:before                 { content: "\f02c"; }
+.icon-book:before                 { content: "\f02d"; }
+.icon-bookmark:before             { content: "\f02e"; }
+.icon-print:before                { content: "\f02f"; }
+
+.icon-camera:before               { content: "\f030"; }
+.icon-font:before                 { content: "\f031"; }
+.icon-bold:before                 { content: "\f032"; }
+.icon-italic:before               { content: "\f033"; }
+.icon-text-height:before          { content: "\f034"; }
+.icon-text-width:before           { content: "\f035"; }
+.icon-align-left:before           { content: "\f036"; }
+.icon-align-center:before         { content: "\f037"; }
+.icon-align-right:before          { content: "\f038"; }
+.icon-align-justify:before        { content: "\f039"; }
+.icon-list:before                 { content: "\f03a"; }
+.icon-indent-left:before          { content: "\f03b"; }
+.icon-indent-right:before         { content: "\f03c"; }
+.icon-facetime-video:before       { content: "\f03d"; }
+.icon-picture:before              { content: "\f03e"; }
+
+.icon-pencil:before               { content: "\f040"; }
+.icon-map-marker:before           { content: "\f041"; }
+.icon-adjust:before               { content: "\f042"; }
+.icon-tint:before                 { content: "\f043"; }
+.icon-edit:before                 { content: "\f044"; }
+.icon-share:before                { content: "\f045"; }
+.icon-check:before                { content: "\f046"; }
+.icon-move:before                 { content: "\f047"; }
+.icon-step-backward:before        { content: "\f048"; }
+.icon-fast-backward:before        { content: "\f049"; }
+.icon-backward:before             { content: "\f04a"; }
+.icon-play:before                 { content: "\f04b"; }
+.icon-pause:before                { content: "\f04c"; }
+.icon-stop:before                 { content: "\f04d"; }
+.icon-forward:before              { content: "\f04e"; }
+
+.icon-fast-forward:before         { content: "\f050"; }
+.icon-step-forward:before         { content: "\f051"; }
+.icon-eject:before                { content: "\f052"; }
+.icon-chevron-left:before         { content: "\f053"; }
+.icon-chevron-right:before        { content: "\f054"; }
+.icon-plus-sign:before            { content: "\f055"; }
+.icon-minus-sign:before           { content: "\f056"; }
+.icon-remove-sign:before          { content: "\f057"; }
+.icon-ok-sign:before              { content: "\f058"; }
+.icon-question-sign:before        { content: "\f059"; }
+.icon-info-sign:before            { content: "\f05a"; }
+.icon-screenshot:before           { content: "\f05b"; }
+.icon-remove-circle:before        { content: "\f05c"; }
+.icon-ok-circle:before            { content: "\f05d"; }
+.icon-ban-circle:before           { content: "\f05e"; }
+
+.icon-arrow-left:before           { content: "\f060"; }
+.icon-arrow-right:before          { content: "\f061"; }
+.icon-arrow-up:before             { content: "\f062"; }
+.icon-arrow-down:before           { content: "\f063"; }
+.icon-share-alt:before            { content: "\f064"; }
+.icon-resize-full:before          { content: "\f065"; }
+.icon-resize-small:before         { content: "\f066"; }
+.icon-plus:before                 { content: "\f067"; }
+.icon-minus:before                { content: "\f068"; }
+.icon-asterisk:before             { content: "\f069"; }
+.icon-exclamation-sign:before     { content: "\f06a"; }
+.icon-gift:before                 { content: "\f06b"; }
+.icon-leaf:before                 { content: "\f06c"; }
+.icon-fire:before                 { content: "\f06d"; }
+.icon-eye-open:before             { content: "\f06e"; }
+
+.icon-eye-close:before            { content: "\f070"; }
+.icon-warning-sign:before         { content: "\f071"; }
+.icon-plane:before                { content: "\f072"; }
+.icon-calendar:before             { content: "\f073"; }
+.icon-random:before               { content: "\f074"; }
+.icon-comment:before              { content: "\f075"; }
+.icon-magnet:before               { content: "\f076"; }
+.icon-chevron-up:before           { content: "\f077"; }
+.icon-chevron-down:before         { content: "\f078"; }
+.icon-retweet:before              { content: "\f079"; }
+.icon-shopping-cart:before        { content: "\f07a"; }
+.icon-folder-close:before         { content: "\f07b"; }
+.icon-folder-open:before          { content: "\f07c"; }
+.icon-resize-vertical:before      { content: "\f07d"; }
+.icon-resize-horizontal:before    { content: "\f07e"; }
+
+.icon-bar-chart:before            { content: "\f080"; }
+.icon-twitter-sign:before         { content: "\f081"; }
+.icon-facebook-sign:before        { content: "\f082"; }
+.icon-camera-retro:before         { content: "\f083"; }
+.icon-key:before                  { content: "\f084"; }
+.icon-cogs:before                 { content: "\f085"; }
+.icon-comments:before             { content: "\f086"; }
+.icon-thumbs-up:before            { content: "\f087"; }
+.icon-thumbs-down:before          { content: "\f088"; }
+.icon-star-half:before            { content: "\f089"; }
+.icon-heart-empty:before          { content: "\f08a"; }
+.icon-signout:before              { content: "\f08b"; }
+.icon-linkedin-sign:before        { content: "\f08c"; }
+.icon-pushpin:before              { content: "\f08d"; }
+.icon-external-link:before        { content: "\f08e"; }
+
+.icon-signin:before               { content: "\f090"; }
+.icon-trophy:before               { content: "\f091"; }
+.icon-github-sign:before          { content: "\f092"; }
+.icon-upload-alt:before           { content: "\f093"; }
+.icon-lemon:before                { content: "\f094"; }
+.icon-phone:before                { content: "\f095"; }
+.icon-check-empty:before          { content: "\f096"; }
+.icon-bookmark-empty:before       { content: "\f097"; }
+.icon-phone-sign:before           { content: "\f098"; }
+.icon-twitter:before              { content: "\f099"; }
+.icon-facebook:before             { content: "\f09a"; }
+.icon-github:before               { content: "\f09b"; }
+.icon-unlock:before               { content: "\f09c"; }
+.icon-credit-card:before          { content: "\f09d"; }
+.icon-rss:before                  { content: "\f09e"; }
+
+.icon-hdd:before                  { content: "\f0a0"; }
+.icon-bullhorn:before             { content: "\f0a1"; }
+.icon-bell:before                 { content: "\f0a2"; }
+.icon-certificate:before          { content: "\f0a3"; }
+.icon-hand-right:before           { content: "\f0a4"; }
+.icon-hand-left:before            { content: "\f0a5"; }
+.icon-hand-up:before              { content: "\f0a6"; }
+.icon-hand-down:before            { content: "\f0a7"; }
+.icon-circle-arrow-left:before    { content: "\f0a8"; }
+.icon-circle-arrow-right:before   { content: "\f0a9"; }
+.icon-circle-arrow-up:before      { content: "\f0aa"; }
+.icon-circle-arrow-down:before    { content: "\f0ab"; }
+.icon-globe:before                { content: "\f0ac"; }
+.icon-wrench:before               { content: "\f0ad"; }
+.icon-tasks:before                { content: "\f0ae"; }
+
+.icon-filter:before               { content: "\f0b0"; }
+.icon-briefcase:before            { content: "\f0b1"; }
+.icon-fullscreen:before           { content: "\f0b2"; }
+
+.icon-group:before                { content: "\f0c0"; }
+.icon-link:before                 { content: "\f0c1"; }
+.icon-cloud:before                { content: "\f0c2"; }
+.icon-beaker:before               { content: "\f0c3"; }
+.icon-cut:before                  { content: "\f0c4"; }
+.icon-copy:before                 { content: "\f0c5"; }
+.icon-paper-clip:before           { content: "\f0c6"; }
+.icon-save:before                 { content: "\f0c7"; }
+.icon-sign-blank:before           { content: "\f0c8"; }
+.icon-reorder:before              { content: "\f0c9"; }
+.icon-list-ul:before              { content: "\f0ca"; }
+.icon-list-ol:before              { content: "\f0cb"; }
+.icon-strikethrough:before        { content: "\f0cc"; }
+.icon-underline:before            { content: "\f0cd"; }
+.icon-table:before                { content: "\f0ce"; }
+
+.icon-magic:before                { content: "\f0d0"; }
+.icon-truck:before                { content: "\f0d1"; }
+.icon-pinterest:before            { content: "\f0d2"; }
+.icon-pinterest-sign:before       { content: "\f0d3"; }
+.icon-google-plus-sign:before     { content: "\f0d4"; }
+.icon-google-plus:before          { content: "\f0d5"; }
+.icon-money:before                { content: "\f0d6"; }
+.icon-caret-down:before           { content: "\f0d7"; }
+.icon-caret-up:before             { content: "\f0d8"; }
+.icon-caret-left:before           { content: "\f0d9"; }
+.icon-caret-right:before          { content: "\f0da"; }
+.icon-columns:before              { content: "\f0db"; }
+.icon-sort:before                 { content: "\f0dc"; }
+.icon-sort-down:before            { content: "\f0dd"; }
+.icon-sort-up:before              { content: "\f0de"; }
+
+.icon-envelope-alt:before         { content: "\f0e0"; }
+.icon-linkedin:before             { content: "\f0e1"; }
+.icon-undo:before                 { content: "\f0e2"; }
+.icon-legal:before                { content: "\f0e3"; }
+.icon-dashboard:before            { content: "\f0e4"; }
+.icon-comment-alt:before          { content: "\f0e5"; }
+.icon-comments-alt:before         { content: "\f0e6"; }
+.icon-bolt:before                 { content: "\f0e7"; }
+.icon-sitemap:before              { content: "\f0e8"; }
+.icon-umbrella:before             { content: "\f0e9"; }
+.icon-paste:before                { content: "\f0ea"; }
+
+.icon-user-md:before              { content: "\f200"; }
diff --git a/view/theme/vier/font/fontawesome-webfont.eot b/view/theme/vier/font/fontawesome-webfont.eot
new file mode 100755 (executable)
index 0000000..89070c1
Binary files /dev/null and b/view/theme/vier/font/fontawesome-webfont.eot differ
diff --git a/view/theme/vier/font/fontawesome-webfont.svg b/view/theme/vier/font/fontawesome-webfont.svg
new file mode 100755 (executable)
index 0000000..1245f92
--- /dev/null
@@ -0,0 +1,255 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="FontAwesomeRegular" horiz-adv-x="1843" >
+<font-face units-per-em="2048" ascent="1536" descent="-512" />
+<missing-glyph horiz-adv-x="512" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="0" />
+<glyph unicode="&#xd;" horiz-adv-x="512" />
+<glyph unicode=" "  horiz-adv-x="512" />
+<glyph unicode="&#x09;" horiz-adv-x="512" />
+<glyph unicode="&#xa0;" horiz-adv-x="512" />
+<glyph unicode="o" horiz-adv-x="1591" />
+<glyph unicode="&#xa8;" horiz-adv-x="2048" />
+<glyph unicode="&#xa9;" horiz-adv-x="2048" />
+<glyph unicode="&#xae;" horiz-adv-x="2048" />
+<glyph unicode="&#xb4;" horiz-adv-x="2048" />
+<glyph unicode="&#xc6;" horiz-adv-x="2048" />
+<glyph unicode="&#xcd;" horiz-adv-x="2048" />
+<glyph unicode="&#x2000;" horiz-adv-x="784" />
+<glyph unicode="&#x2001;" horiz-adv-x="1569" />
+<glyph unicode="&#x2002;" horiz-adv-x="784" />
+<glyph unicode="&#x2003;" horiz-adv-x="1569" />
+<glyph unicode="&#x2004;" horiz-adv-x="523" />
+<glyph unicode="&#x2005;" horiz-adv-x="392" />
+<glyph unicode="&#x2006;" horiz-adv-x="261" />
+<glyph unicode="&#x2007;" horiz-adv-x="261" />
+<glyph unicode="&#x2008;" horiz-adv-x="196" />
+<glyph unicode="&#x2009;" horiz-adv-x="313" />
+<glyph unicode="&#x200a;" horiz-adv-x="87" />
+<glyph unicode="&#x202f;" horiz-adv-x="313" />
+<glyph unicode="&#x203a;" horiz-adv-x="2048" />
+<glyph unicode="&#x205f;" horiz-adv-x="392" />
+<glyph unicode="&#x2122;" horiz-adv-x="2048" />
+<glyph unicode="&#x221e;" horiz-adv-x="2048" />
+<glyph unicode="&#xe000;" horiz-adv-x="1024" d="M0 0z" />
+<glyph unicode="&#xf000;" horiz-adv-x="1536" d="M6 1489q20 47 70 47h1382q51 0 72 -47q20 -47 -17 -84l-610 -610v-641h248q33 0 55.5 -22.5t22.5 -53.5q0 -33 -22.5 -55.5t-55.5 -22.5h-768q-31 0 -53.5 22.5t-22.5 55.5q0 31 22.5 53.5t53.5 22.5h250v641l-610 610q-37 37 -17 84z" />
+<glyph unicode="&#xf001;" horiz-adv-x="1488" d="M0 213q0 57 27.5 103t72.5 77t98.5 47.5t106.5 16.5q25 0 50.5 -4t50.5 -11v779q0 27 16 48t43 29q23 6 99.5 29t178 52.5t215 62.5t211 60.5t164 46t74.5 18.5q35 0 58.5 -23.5t23.5 -58.5v-1028q0 -59 -27.5 -104.5t-73 -76t-99.5 -47t-105 -16.5t-105.5 16.5t-98.5 47 t-71.5 75.5t-27.5 105q0 57 27.5 103t71.5 77t98.5 47t105.5 16q27 0 52.5 -4t49.5 -10v537l-678 -195v-815q0 -59 -27.5 -104.5t-71.5 -76t-98.5 -47t-105.5 -16.5q-53 0 -106.5 16.5t-98.5 47t-72.5 76t-27.5 104.5z" />
+<glyph unicode="&#xf002;" horiz-adv-x="1597" d="M0 901q0 137 52 258t143.5 212t212 143.5t258.5 52.5q137 0 257.5 -52.5t212 -143.5t143.5 -212t52 -258q0 -98 -28.5 -191.5t-81.5 -174.5l358 -359q18 -18 18 -47q0 -16 -18 -43t-45 -53.5t-53.5 -45t-42.5 -18.5q-29 0 -47 19l-359 358q-82 -53 -175 -81.5t-191 -28.5 q-137 0 -258 52t-212.5 143t-143.5 212t-52 258zM266 901q0 -84 32 -156.5t86 -126t127 -85t155 -31.5t154.5 31.5t126.5 85t86 126t32 156.5q0 82 -32 154.5t-86 127t-126.5 86t-154.5 31.5t-155 -31.5t-127 -86t-86 -127t-32 -154.5zM414 901q0 51 19.5 97t54 81t80 54.5 t98.5 19.5q20 0 34.5 -14.5t14.5 -36.5q0 -20 -14.5 -34.5t-34.5 -14.5q-63 0 -107.5 -44t-44.5 -108q0 -20 -14.5 -34.5t-34.5 -14.5q-23 0 -37 14.5t-14 34.5z" />
+<glyph unicode="&#xf003;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h1536v852q-31 -31 -58 -50q-106 -80 -212.5 -159.5t-211.5 -163.5q-61 -49 -131.5 -94t-156.5 -45q-82 0 -153 45t-132 94 q-104 84 -211 164t-213 159q-27 18 -57 50v-852zM154 1317q0 -31 14 -65.5t35.5 -66.5t47 -59.5t50.5 -46.5q100 -76 199.5 -150.5t199.5 -152.5q20 -16 48 -37.5t58 -42t59.5 -35t54.5 -14.5h2h2q25 0 54.5 14.5t59 35t57 42t48.5 37.5q100 78 199.5 153t199.5 150 q25 18 50.5 46t47 60t36 66.5t14.5 65.5v65h-1536v-65z" />
+<glyph unicode="&#xf004;" horiz-adv-x="1802" d="M0 1073q0 113 34 205t97.5 155.5t153.5 98.5t202 35q59 0 117 -18.5t110 -48.5t99 -68.5t88 -77.5q39 39 87 77.5t100.5 68.5t109 48.5t115.5 18.5q113 0 204 -35t154.5 -98.5t97 -155.5t33.5 -205q0 -66 -18.5 -130t-51 -124.5t-74.5 -115t-87 -99.5l-615 -612 q-23 -23 -55 -23q-31 0 -57 23l-615 614q-45 45 -87 99.5t-73.5 114t-50 124t-18.5 129.5z" />
+<glyph unicode="&#xf005;" horiz-adv-x="1675" d="M1 959.5q9 27.5 54 33.5l506 74l227 459q20 41 49 41t50 -41l227 -459l506 -74q45 -6 54 -33.5t-23 -60.5l-367 -356l86 -504q8 -45 -15.5 -62.5t-64.5 5.5l-452 237l-453 -237q-41 -23 -64.5 -5.5t-15.5 62.5l86 504l-364 356q-35 33 -26 60.5z" />
+<glyph unicode="&#xf006;" horiz-adv-x="1675" d="M0 948q0 23 18.5 32t36.5 13l506 74l227 459q6 14 20 27.5t30 13.5q18 0 30.5 -13.5t18.5 -27.5l227 -459l506 -74q18 -4 36.5 -13t18.5 -32q0 -14 -7 -26.5t-17 -22.5l-367 -356l86 -504q0 -4 1 -9t1 -12q0 -20 -9 -34.5t-32 -14.5t-41 13l-452 237l-453 -237 q-18 -12 -39 -13q-23 0 -33 14.5t-10 34.5q0 6 1 11.5t1 9.5l86 504l-364 356q-10 10 -18.5 22.5t-8.5 26.5zM289 866l274 -268l-65 -377l340 178l340 -178l-66 377l274 268l-378 56l-170 344l-170 -344z" />
+<glyph unicode="&#xf007;" horiz-adv-x="1566" d="M0 57v387q0 37 18.5 82t48 86t65.5 74t71 43q18 6 66 13.5t102.5 14.5t104.5 13t77 10q-92 59 -144.5 153.5t-52.5 205.5q0 88 34 165.5t91.5 136t135 92.5t165.5 34t166 -34t136.5 -92.5t92 -136t33.5 -165.5q0 -109 -52 -204.5t-144 -154.5q27 -4 77 -10t104 -13 t101 -14.5t68 -13.5q35 -10 70.5 -42t65.5 -74t48.5 -87t18.5 -82v-387q-10 -4 -22.5 -14t-27 -19.5t-27.5 -16.5t-22 -7h-1370q-35 0 -53 21.5t-45 35.5z" />
+<glyph unicode="&#xf008;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM115 154q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11t11.5 28v153q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11t-11.5 -28v-153zM115 512 q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11.5t11.5 27.5v154q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11.5t-11.5 -27.5v-154zM115 870q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11.5t11.5 27.5v154q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11.5t-11.5 -27.5v-154z M115 1229q0 -16 11 -27.5t28 -11.5h153q16 0 27.5 11t11.5 28v153q0 16 -11 27.5t-28 11.5h-153q-16 0 -27.5 -11t-11.5 -28v-153zM461 154q0 -16 11 -27.5t28 -11.5h843q16 0 27.5 11t11.5 28v512q0 16 -11 27.5t-28 11.5h-843q-16 0 -27.5 -11.5t-11.5 -27.5v-512z M461 870q0 -16 11 -27.5t28 -11.5h843q16 0 27.5 11.5t11.5 27.5v512q0 16 -11 27.5t-28 11.5h-843q-16 0 -27.5 -11t-11.5 -28v-512zM1497 154q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11t11.5 28v153q0 16 -11.5 27.5t-27.5 11.5h-154q-16 0 -27.5 -11t-11.5 -28v-153 zM1497 512q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11.5t11.5 27.5v154q0 16 -11.5 27.5t-27.5 11.5h-154q-16 0 -27.5 -11.5t-11.5 -27.5v-154zM1497 870q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11.5t11.5 27.5v154q0 16 -11.5 27.5t-27.5 11.5h-154 q-16 0 -27.5 -11.5t-11.5 -27.5v-154zM1497 1229q0 -16 11.5 -27.5t27.5 -11.5h154q16 0 27.5 11t11.5 28v153q0 16 -11.5 27.5t-27.5 11.5h-154q-16 0 -27.5 -11t-11.5 -28v-153z" />
+<glyph unicode="&#xf009;" d="M0 78v536q0 33 22.5 55.5t55.5 22.5h690q33 0 55.5 -22.5t22.5 -55.5v-536q0 -33 -22.5 -55.5t-55.5 -22.5h-690q-33 0 -55.5 22.5t-22.5 55.5zM0 922v538q0 31 22.5 53.5t55.5 22.5h690q33 0 55.5 -22.5t22.5 -53.5v-538q0 -33 -22.5 -54.5t-55.5 -21.5h-690 q-33 0 -55.5 21.5t-22.5 54.5zM999 78v536q0 33 21.5 55.5t54.5 22.5h692q31 0 53.5 -22.5t22.5 -55.5v-536q0 -33 -22.5 -55.5t-53.5 -22.5h-692q-33 0 -54.5 22.5t-21.5 55.5zM999 922v538q0 31 21.5 53.5t54.5 22.5h692q31 0 53.5 -22.5t22.5 -53.5v-538 q0 -33 -22.5 -54.5t-53.5 -21.5h-692q-33 0 -54.5 21.5t-21.5 54.5z" />
+<glyph unicode="&#xf00a;" d="M0 78v270q0 33 22.5 54.5t55.5 21.5h358q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5zM0 655v226q0 33 22.5 54t55.5 21h358q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-358q-33 0 -55.5 22.5 t-22.5 54.5zM0 1188v272q0 31 22.5 53.5t55.5 22.5h358q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5zM666 78v270q0 33 22.5 54.5t54.5 21.5h359q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5 h-359q-33 0 -55 22.5t-22 55.5zM666 655v226q0 33 22.5 54t54.5 21h359q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-359q-33 0 -55 22.5t-22 54.5zM666 1188v272q0 31 22.5 53.5t54.5 22.5h359q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5 t-53.5 -22.5h-359q-33 0 -55 22.5t-22 55.5zM1331 78v270q0 33 22.5 54.5t55.5 21.5h358q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5zM1331 655v226q0 33 22.5 54t55.5 21h358q31 0 53.5 -21.5t22.5 -53.5v-226 q0 -33 -22.5 -55t-53.5 -22h-358q-33 0 -55.5 22.5t-22.5 54.5zM1331 1188v272q0 31 22.5 53.5t55.5 22.5h358q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5t-53.5 -22.5h-358q-33 0 -55.5 22.5t-22.5 55.5z" />
+<glyph unicode="&#xf00b;" d="M0 78v270q0 33 22.5 54.5t55.5 21.5h297q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5h-297q-33 0 -55.5 22.5t-22.5 55.5zM0 655v226q0 33 22.5 54t55.5 21h297q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-297q-33 0 -55.5 22.5 t-22.5 54.5zM0 1188v272q0 31 22.5 53.5t55.5 22.5h297q31 0 53.5 -22.5t22.5 -53.5v-272q0 -33 -22.5 -55.5t-53.5 -22.5h-297q-33 0 -55.5 22.5t-22.5 55.5zM604 78v270q0 33 22.5 54.5t55.5 21.5h1085q31 0 53.5 -21.5t22.5 -54.5v-270q0 -33 -22.5 -55.5t-53.5 -22.5 h-1085q-33 0 -55.5 22.5t-22.5 55.5zM604 655v226q0 33 22.5 54t55.5 21h1085q31 0 53.5 -21.5t22.5 -53.5v-226q0 -33 -22.5 -55t-53.5 -22h-1085q-33 0 -55.5 22.5t-22.5 54.5zM604 1188v272q0 31 22.5 53.5t55.5 22.5h1085q31 0 53.5 -22.5t22.5 -53.5v-272 q0 -33 -22.5 -55.5t-53.5 -22.5h-1085q-33 0 -55.5 22.5t-22.5 55.5z" />
+<glyph unicode="&#xf00c;" d="M0 732.5q0 33.5 23 55.5l174 175q23 23 56.5 22.5t55.5 -22.5l365 -365q23 -23 56.5 -23t55.5 23l746 745q23 23 56.5 23t56.5 -23l174 -174q23 -23 22.5 -56.5t-22.5 -55.5l-910 -910q-23 -23 -62.5 -39t-72.5 -16h-88q-35 0 -75 16.5t-62 38.5l-526 529 q-23 23 -23 56.5z" />
+<glyph unicode="&#xf00d;" horiz-adv-x="1536" d="M0 192.5q0 38.5 29 67.5l508 510l-508 500q-29 29 -29 67.5t29 67.5l100 100q29 29 68 29t67 -29l504 -504l504 504q29 29 67.5 29t67.5 -29l100 -100q29 -29 29 -68t-29 -67l-508 -510l508 -500q29 -29 29 -66.5t-29 -66.5l-100 -102q-29 -29 -68 -29t-67 29l-504 505 l-506 -505q-29 -29 -66.5 -29t-66.5 29l-100 100q-29 29 -29 67.5z" />
+<glyph unicode="&#xf00e;" horiz-adv-x="1597" d="M0 901q0 137 52 258t143.5 212t212 143.5t258.5 52.5q137 0 259 -52.5t212 -143.5t142 -212t52 -258q0 -102 -28.5 -195.5t-81.5 -170.5l358 -359q18 -18 18 -46t-18 -48l-94 -94q-20 -18 -48 -18.5t-46 18.5l-359 358q-78 -53 -171 -81.5t-195 -28.5q-137 0 -258 52 t-212.5 142t-143.5 211t-52 260zM266 901q0 -84 32 -156.5t86 -126t127 -85t155 -31.5t155.5 31.5t126.5 85t85 126t32 156.5q0 82 -32 154.5t-85 127t-126.5 86t-155.5 31.5t-155 -31.5t-127 -86t-86 -127t-32 -154.5zM399 868v66q0 33 33 33h168v168q0 33 33 32h65 q14 0 24.5 -9t10.5 -23v-168h166q33 0 33 -33v-66q0 -14 -9.5 -24t-23.5 -10h-166v-166q0 -14 -10 -23.5t-25 -9.5h-65q-33 0 -33 33v166h-168q-14 0 -23.5 10t-9.5 24z" />
+<glyph unicode="&#xf010;" horiz-adv-x="1597" d="M0 901q0 137 52 258t143.5 212t212 143.5t258.5 52.5q137 0 259 -52.5t212 -143.5t142 -212t52 -258q0 -102 -28.5 -195.5t-81.5 -170.5l358 -359q18 -18 18 -46t-18 -48l-94 -94q-20 -18 -48 -18.5t-46 18.5l-359 358q-78 -53 -171 -81.5t-195 -28.5q-137 0 -258 52 t-212.5 142t-143.5 211t-52 260zM266 901q0 -84 32 -156.5t86 -126t127 -85t155 -31.5t155.5 31.5t126.5 85t85 126t32 156.5q0 82 -32 154.5t-85 127t-126.5 86t-155.5 31.5t-155 -31.5t-127 -86t-86 -127t-32 -154.5zM399 868v66q0 33 33 33h467q33 0 33 -33v-66 q0 -14 -9.5 -24t-23.5 -10h-467q-14 0 -23.5 10t-9.5 24z" />
+<glyph unicode="&#xf011;" horiz-adv-x="1488" d="M0 713q0 186 86 349t240 267q12 10 28 6q18 -4 25 -16l90 -131q10 -12 6 -27.5t-16 -25.5q-106 -72 -164.5 -182.5t-58.5 -239.5q0 -104 39.5 -197.5t108.5 -162t162 -108.5t197 -40t197.5 40t163.5 108.5t109.5 161.5t39.5 198q0 129 -59 239.5t-164 182.5 q-14 10 -16 24q-4 16 6 29l88 131q10 12 25.5 15t29.5 -5q154 -104 240 -267t86 -349q0 -154 -58.5 -289t-160 -236.5t-237.5 -160t-290 -58.5t-289 58.5t-236 160t-159.5 236.5t-58.5 289zM627 793v704q0 16 11 27.5t28 11.5h157q16 0 27.5 -11.5t11.5 -27.5v-704 q0 -16 -11 -27.5t-28 -11.5h-157q-16 0 -27.5 11t-11.5 28z" />
+<glyph unicode="&#xf012;" d="M0 39v260q0 16 11.5 27.5t27.5 11.5h192q16 0 26.5 -11.5t10.5 -27.5v-260q0 -16 -10 -27.5t-27 -11.5h-192q-39 0 -39 39zM393 39v434q0 16 11.5 27.5t27.5 11.5h193q16 0 26.5 -11.5t10.5 -27.5v-434q0 -16 -10.5 -27.5t-26.5 -11.5h-193q-16 0 -27.5 11.5t-11.5 27.5z M786 39v676q0 16 11.5 27.5t27.5 11.5h193q16 0 27.5 -11.5t11.5 -27.5v-676q0 -16 -11.5 -27.5t-27.5 -11.5h-193q-16 0 -27.5 11.5t-11.5 27.5zM1182 39v995q0 16 10 27.5t27 11.5h192q16 0 27.5 -11t11.5 -28v-995q0 -16 -11.5 -27.5t-27.5 -11.5h-192q-16 0 -26.5 11.5 t-10.5 27.5zM1575 39v1458q0 39 39 39h190q39 0 39 -39v-1458q0 -39 -39 -39h-190q-39 0 -39 39z" />
+<glyph unicode="&#xf013;" horiz-adv-x="1593" d="M0 651v236q0 12 30.5 21.5t68.5 15.5t74 9t48 5q18 61 49 117q-55 82 -120 157l-7 15q0 8 28 38.5t62.5 65.5t66.5 62.5t40 27.5q2 0 26.5 -18.5t54.5 -41t56.5 -43t32.5 -24.5q29 16 58.5 26.5t60.5 20.5q0 12 3 49t9 75t15.5 69t21.5 31h237q14 0 19 -15 q12 -49 17 -103t14 -106q31 -8 59.5 -19t56.5 -28q8 6 34 26.5t55.5 43t53 40t29.5 17.5t37 -27.5t65 -62.5t61.5 -65.5t27.5 -38.5q0 -4 -17.5 -28.5t-39 -53.5t-42 -55.5t-24.5 -32.5q33 -55 51 -123q49 -10 103.5 -13t101.5 -20q16 -4 16 -18v-236q0 -12 -29.5 -21.5 t-68.5 -15.5t-76 -9t-49 -5q-14 -57 -47 -117q55 -82 121 -157l6 -15q0 -8 -27.5 -38.5t-62.5 -65.5t-66.5 -62.5t-40.5 -27.5q-2 0 -26.5 18.5t-54 41t-56 43t-33.5 24.5q-29 -16 -58.5 -27.5t-59.5 -19.5q-2 -12 -5.5 -49.5t-9.5 -76t-14 -69.5t-21 -31h-237q-14 0 -19 17 q-14 49 -19 103t-11 103q-61 18 -117 50q-41 -31 -81 -60.5t-79 -62.5l-12 -4q-6 0 -37 27.5t-64.5 62.5t-61 65.5t-27.5 38.5q0 2 16 26.5t37.5 53.5t42 55.5t26.5 34.5q-33 55 -51 123q-51 10 -104.5 13t-100.5 20q-16 4 -16 18zM557 768q0 -49 18.5 -93t51 -77t77 -52.5 t93.5 -19.5t93 19.5t75.5 52.5t51 77t19.5 93t-19.5 92t-51 76t-75.5 51.5t-93 18.5t-93.5 -18.5t-77 -51.5t-51 -76t-18.5 -92z" />
+<glyph unicode="&#xf014;" horiz-adv-x="1304" d="M0 1175.5v34.5v36t2 36q25 14 71 23.5t98 15.5t102.5 9t78.5 5q-8 82 11.5 128t59.5 68.5t98.5 29t131.5 6.5q55 0 109.5 -3t97.5 -20.5t68.5 -54.5t25.5 -105v-24t-2 -25q29 -2 79 -5t102.5 -9t99.5 -15.5t72 -23.5v-72v-69q-37 -20 -123 -32.5t-185.5 -19t-193.5 -7.5 t-150 -1q-55 0 -150 1t-194.5 7.5t-184.5 18.5t-122 33q-2 16 -2 34.5zM133 154v837q123 -16 244 -21t244 -5h32q129 2 258 6t258 20v-837q0 -63 -44 -108.5t-107 -45.5h-731q-63 0 -108.5 45t-45.5 109zM303 199q0 -16 10.5 -26.5t26.5 -10.5h39q16 0 27.5 10t11.5 27v614 q0 16 -11.5 27.5t-27.5 11.5h-39q-16 0 -26.5 -11.5t-10.5 -27.5v-614zM504 1384q0 -10 1 -22t3 -23q144 2 291 0q0 12 2 23.5t0 21.5v15q-35 10 -74 11t-74 1q-37 0 -75.5 -1t-73.5 -11v-15zM596 199q0 -16 10 -26.5t27 -10.5h39q16 0 27.5 10t11.5 27v614q0 16 -11.5 27.5 t-27.5 11.5h-39q-16 0 -26.5 -11.5t-10.5 -27.5v-614zM887 199q0 -16 11 -26.5t28 -10.5h39q16 0 27.5 10t11.5 27v614q0 16 -11.5 27.5t-27.5 11.5h-39q-16 0 -27.5 -11.5t-11.5 -27.5v-614z" />
+<glyph unicode="&#xf015;" horiz-adv-x="1880" d="M0 809.5q2 15.5 14 26.5l867 710q27 20 59 21q33 0 59 -21l240 -196v102q0 16 11.5 27.5t27.5 11.5h223q16 0 26.5 -11.5t10.5 -27.5v-348l328 -268q12 -10 14 -25.5t-8 -28.5l-45 -53q-10 -14 -29 -14h-65q-16 0 -25 8l-743 608q-25 20 -50 0l-743 -608q-8 -8 -25 -8 h-65q-18 0 -29 14l-45 53q-10 12 -8 27.5zM266 76v622l674 553l674 -553v-622q0 -33 -21.5 -54.5t-54.5 -21.5h-422v498h-352v-498h-422q-33 0 -54.5 21.5t-21.5 54.5z" />
+<glyph unicode="&#xf016;" horiz-adv-x="1228" d="M0 78v1382q0 31 22.5 53.5t55.5 22.5h614q33 0 71 -16.5t60 -38.5l351 -351q23 -23 39 -60.5t16 -70.5v-921q0 -33 -22.5 -55.5t-53.5 -22.5h-1075q-33 0 -55.5 22.5t-22.5 55.5zM154 154h921v692h-459q-31 0 -53 22.5t-22 55.5v458h-387v-1228zM268 326v116h693v-116 h-693zM268 596v115h693v-115h-693zM694 999h381q0 4 -4 13.5t-6 11.5l-350 348q-2 4 -9.5 6t-11.5 4v-383z" />
+<glyph unicode="&#xf017;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM635 608v465q0 33 23.5 56.5t56.5 23.5h80q35 0 57 -23.5t22 -56.5v-305h201q33 0 56.5 -23.5t23.5 -56.5v-80q0 -33 -23.5 -56.5t-56.5 -23.5h-360q-33 0 -56.5 23.5 t-23.5 56.5z" />
+<glyph unicode="&#xf018;" d="M2 35l594 1466q6 14 21.5 24.5t31.5 10.5h195l-8 -170h172l-9 170h195q16 0 31.5 -10t21.5 -25l594 -1466q6 -14 -1 -24.5t-23 -10.5h-740l-26 512h-258l-27 -512h-739q-16 0 -23.5 10t-1.5 25zM807 797h229l-20 413h-189z" />
+<glyph unicode="&#xf019;" d="M0 39v614q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-346h1229v346q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-614q0 -39 -39 -39h-1765q-39 0 -39 39zM345.5 944.5q6.5 16.5 39.5 16.5h307v499q0 31 21.5 53.5t54.5 22.5h307q33 0 55.5 -22.5 t22.5 -53.5v-499h307q31 0 37 -16.5t-16 -39.5l-504 -506q-23 -23 -55.5 -22.5t-55.5 22.5l-504 506q-23 23 -16.5 39.5z" />
+<glyph unicode="&#xf01a;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM414 743q10 25 37 25h208v358q0 16 11.5 28.5t27.5 12.5h201q16 0 27.5 -12t11.5 -29v-358h209q27 0 37 -25t-10 -43l-347 -346q-14 -10 -28 -10t-29 10l-346 346 q-20 18 -10 43z" />
+<glyph unicode="&#xf01b;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177 120t-218 44t-218.5 -44t-177 -120t-119.5 -177t-44 -218zM414 793q-10 25 10 43l346 346q14 10 29 10q14 0 28 -10l347 -346q20 -18 10 -43t-37 -25h-209v-360q0 -16 -11.5 -27.5t-27.5 -11.5h-201q-16 0 -27.5 11t-11.5 28v360h-208 q-27 0 -37 25z" />
+<glyph unicode="&#xf01c;" d="M0 78v577q0 33 9 76t22 72l284 663q12 29 44 49.5t63 20.5h999q31 0 63 -20.5t44 -49.5l284 -663q12 -29 21.5 -72t9.5 -76v-577q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM238 694h387l114 -231h383l117 231h367q-2 4 -2 9.5t-2 9.5l-256 594 h-848l-256 -596q-2 -2 -2 -7.5t-2 -9.5z" />
+<glyph unicode="&#xf01d;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM582 453v628q0 18 16 29q20 8 31 0l545 -315q16 -6 16 -27q0 -20 -16 -27l-545 -315q-8 -4 -15 -4q-8 0 -16 4q-16 10 -16 27z" />
+<glyph unicode="&#xf01e;" horiz-adv-x="1591" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5q141 0 271 -48.5t239 -140.5l161 162q35 35 58.5 24.5t23.5 -57.5v-463q0 -33 -22 -55q-10 -10 -23.5 -16t-29.5 -6h-463q-47 0 -58.5 23.5t23.5 58.5l160 159q-72 57 -159 88t-181 31q-117 0 -218.5 -44t-177 -120 t-119.5 -177t-44 -218t44 -218t119.5 -177t177 -120t218.5 -44q104 0 198.5 37t169 101.5t123.5 153.5t64 191q0 16 14 27q14 10 31 8l157 -20q16 -4 26.5 -16.5t8.5 -28.5q-20 -147 -89.5 -274.5t-176 -220.5t-242 -145.5t-284.5 -52.5q-166 0 -311.5 62.5t-254 171 t-171 254t-62.5 311.5z" />
+<glyph unicode="&#xf021;" horiz-adv-x="1916" d="M6 311l150 437q10 33 39 45t59 4l438 -150q45 -16 46 -40.5t-42 -47.5l-202 -100q53 -78 123.5 -134.5t160.5 -86.5q111 -37 221.5 -28t207 56t170 129t110.5 193q6 16 20.5 22t30.5 2l152 -51q16 -6 23 -20.5t1 -30.5q-53 -158 -159.5 -274.5t-243.5 -184t-296 -81 t-315 39.5q-135 47 -241.5 134t-179.5 208l-205 -100q-43 -23 -63.5 -5.5t-4.5 64.5zM203 1024q53 156 159.5 273.5t243.5 185t295 81t316 -39.5q133 -47 240.5 -134t180.5 -208l205 100q43 23 63.5 5.5t4.5 -62.5l-150 -439q-10 -33 -39 -45t-59 -4l-438 150 q-45 16 -46 40.5t40 47.5l202 100q-51 78 -122.5 134.5t-159.5 86.5q-111 37 -221.5 28t-207 -56t-170 -129t-110.5 -193q-6 -16 -20.5 -22t-30.5 -2l-152 51q-16 6 -23 20.5t-1 30.5z" />
+<glyph unicode="&#xf022;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h1536v1075h-1536v-1075zM307 346v76q0 39 39 39h154q16 0 27.5 -11.5t11.5 -27.5v-76q0 -16 -11.5 -27.5t-27.5 -11.5h-154q-39 0 -39 39 zM307 653v76q0 39 39 39h154q16 0 27.5 -11.5t11.5 -27.5v-76q0 -16 -11.5 -27.5t-27.5 -11.5h-154q-39 0 -39 39zM307 961v75q0 39 39 39h154q16 0 27.5 -11t11.5 -28v-75q0 -16 -11.5 -27.5t-27.5 -11.5h-154q-39 0 -39 39zM692 346v76q0 16 10.5 27.5t26.5 11.5h768 q39 0 39 -39v-76q0 -39 -39 -39h-768q-16 0 -26.5 11.5t-10.5 27.5zM692 653v76q0 16 10.5 27.5t26.5 11.5h768q39 0 39 -39v-76q0 -39 -39 -39h-768q-16 0 -26.5 11.5t-10.5 27.5zM692 961v75q0 16 10.5 27.5t26.5 11.5h768q39 0 39 -39v-75q0 -39 -39 -39h-768 q-16 0 -26.5 11t-10.5 28z" />
+<glyph unicode="&#xf023;" horiz-adv-x="1253" d="M0 117v626q0 39 21.5 69t56.5 42v164q0 113 43 213t117.5 175t175 118t213.5 43t213 -43t175 -118t118 -175.5t43 -212.5v-164q35 -12 56 -42t21 -69v-626q0 -47 -34.5 -82t-81.5 -35h-1020q-47 0 -82 35t-35 82zM313 862h627v156q0 66 -24.5 123t-67.5 99t-100.5 66.5 t-120.5 24.5q-66 0 -122 -24.5t-99.5 -66.5t-68 -99.5t-24.5 -122.5v-156zM494 164h266l-66 285q29 18 47.5 48.5t18.5 65.5q0 55 -39 95t-94 40t-94 -40t-39 -95q0 -35 18 -65.5t47 -46.5z" />
+<glyph unicode="&#xf024;" d="M0 1382q0 63 45 108.5t109 45.5q63 0 108 -45.5t45 -108.5q0 -41 -20.5 -74.5t-55.5 -56.5v-1212q0 -16 -11 -27.5t-27 -11.5h-78q-16 0 -26.5 11.5t-10.5 27.5v1212q-35 23 -56.5 56.5t-21.5 74.5zM307 416v745q0 33 19.5 66t48.5 49q104 55 188 86t144 45q70 16 124 18 q68 0 124.5 -11t107.5 -29.5t99 -43t100 -51.5q63 -29 145 -33q70 -4 164 15.5t207 87.5q29 16 47 6t18 -43v-748q0 -31 -18.5 -64.5t-46.5 -49.5q-113 -68 -207 -87.5t-164 -15.5q-82 4 -145 33q-51 27 -99.5 51.5t-99.5 43t-107.5 29.5t-124.5 11q-55 -2 -124 -18 q-59 -14 -143.5 -45t-188.5 -88q-29 -16 -48.5 -4t-19.5 45z" />
+<glyph unicode="&#xf025;" horiz-adv-x="1916" d="M0 729q0 172 85 324.5t221 266.5t307 180.5t345 66.5t345.5 -66.5t307.5 -180.5t221 -266.5t85 -326.5q0 -182 -78 -350l-27 -60l-174 -26q-27 -104 -110.5 -173t-196.5 -69v-41q0 -16 -12 -27.5t-29 -11.5h-80q-16 0 -27.5 11.5t-11.5 27.5v719q0 16 11.5 28.5 t27.5 12.5h80q16 0 28.5 -12.5t12.5 -28.5v-39q88 0 161 -44t114 -116l39 7q33 90 32 192q0 125 -65.5 233.5t-170 190.5t-232.5 129t-251 47t-250.5 -47t-232 -128t-170 -190.5t-65.5 -232.5q0 -104 32 -194l39 -7q41 72 114 116t161 44v39q0 16 12 28.5t29 12.5h80 q16 0 27 -12.5t11 -28.5v-719q0 -16 -11 -27.5t-27 -11.5h-80q-16 0 -28.5 11.5t-12.5 27.5v41q-55 0 -106.5 18.5t-91.5 50.5t-68.5 76t-40.5 97l-175 26l-26 60q-78 168 -78 352z" />
+<glyph unicode="&#xf026;" horiz-adv-x="905" d="M0 578v380q0 16 11.5 27.5t27.5 11.5h420l325 326q49 51 84 37t35 -86v-1012q0 -72 -34.5 -86t-84.5 37l-325 326h-420q-16 0 -27.5 11t-11.5 28z" />
+<glyph unicode="&#xf027;" horiz-adv-x="1277" d="M0 578v380q0 16 11.5 27.5t27.5 11.5h420l325 326q49 51 84 37t35 -86v-1012q0 -72 -34.5 -86t-84.5 37l-325 326h-420q-16 0 -27.5 11t-11.5 28zM1027 406q-9 32 7 61q84 145 84 301t-84 301q-16 29 -7 61t38 48t60.5 8t48.5 -37q104 -182 104 -381q0 -201 -104 -381 q-23 -41 -70 -41q-20 0 -39 12q-29 16 -38 48z" />
+<glyph unicode="&#xf028;" horiz-adv-x="1916" d="M0 578v380q0 16 11.5 27.5t27.5 11.5h420l325 326q49 51 84 37t35 -86v-1012q0 -72 -34.5 -86t-84.5 37l-325 326h-420q-16 0 -27.5 11t-11.5 28zM1027 406q-9 32 7 61q84 145 84 301t-84 301q-16 29 -7 61t38 48t60.5 8t48.5 -37q104 -182 104 -381q0 -201 -104 -381 q-23 -41 -70 -41q-20 0 -39 12q-29 16 -38 48zM1285 219q-7 33 11 62q141 225 142 487q0 262 -142 487q-18 29 -11 62t36 49q29 18 61 11t50 -36q82 -131 123.5 -275t41.5 -298q0 -309 -167 -573q-10 -18 -29 -27.5t-37 -9.5q-25 0 -43 12q-29 16 -36 49zM1540 33 q-6 33 12 59q100 154 152.5 325t52.5 351t-52 351t-153 323q-18 29 -12 61.5t35 50.5q29 16 61 10.5t50 -32.5q115 -174 173 -366.5t58 -397.5t-58.5 -397.5t-172.5 -364.5q-10 -18 -29 -27.5t-37 -9.5q-25 0 -45 13q-29 18 -35 51z" />
+<glyph unicode="&#xf029;" horiz-adv-x="1536" d="M0 0v698h698v-698h-698zM0 838v698h698v-698h-698zM139 139h420v420h-420v-420zM139 977h420v420h-420v-420zM279 279v141h141v-141h-141zM279 1116v139h141v-139h-141zM838 0v698h417v-139h142v139h139v-419h-420v139h-139v-418h-139zM838 838v698h698v-698h-698z M977 977h420v420h-420v-420zM1116 0v139h139v-139h-139zM1116 1116v139h139v-139h-139zM1397 0v139h139v-139h-139z" />
+<glyph unicode="&#xf02a;" d="M0 0v1536h154v-1536h-154zM227 0v1536h37v-1536h-37zM356 0v1536h117v-1536h-117zM545 0v1536h78v-1536h-78zM715 0v1536h76v-1536h-76zM903 0v1536h37v-1536h-37zM1014 0v1536h153v-1536h-153zM1221 0v1536h77v-1536h-77zM1409 0v1536h39v-1536h-39zM1579 0v1536h37 v-1536h-37zM1690 0v1536h153v-1536h-153z" />
+<glyph unicode="&#xf02b;" horiz-adv-x="1488" d="M0 961v454q0 49 35 85t86 36h454q51 0 113 -24.5t94 -61.5l672 -748q33 -39 34 -88t-34 -84l-526 -526q-35 -35 -86 -36t-86 36l-670 750q-35 37 -60.5 96t-25.5 111zM197 1223q0 -49 33.5 -83t82.5 -34t83 34t34 83t-34 82.5t-83 33.5t-82.5 -33.5t-33.5 -82.5z" />
+<glyph unicode="&#xf02c;" horiz-adv-x="1875" d="M0 961v454q0 49 35 85t86 36h454q25 0 53.5 -6t57.5 -18.5t54.5 -28t41.5 -33.5l670 -748q33 -37 34 -86t-34 -84l-526 -524q-35 -35 -86.5 -37t-83.5 37l-670 746q-35 39 -60.5 98t-25.5 109zM195 1223q0 -47 34.5 -82t83.5 -35q47 0 82 35t35 82q0 49 -35 83.5 t-82 34.5q-49 0 -83.5 -34.5t-34.5 -83.5zM791 1534h174q51 0 112.5 -24.5t93.5 -61.5l670 -748q35 -37 35 -87t-35 -85l-524 -524q-35 -35 -86 -36t-86 36l-12 14l514 514q35 35 34.5 84.5t-34.5 85.5l-670 748q-31 35 -84 56.5t-102 27.5z" />
+<glyph unicode="&#xf02d;" horiz-adv-x="1710" d="M10 311q2 16 4 31.5t4 34.5q0 10 -4 20.5t-2 20.5q2 16 15.5 31.5t25.5 35.5q23 37 45.5 90.5t32.5 92.5q4 16 -1 30.5t-1 26.5q4 16 16.5 27.5t20.5 23.5q10 18 21.5 42t21.5 49.5t16 50t8 40.5t-2 33t0 29q6 16 20.5 26.5t24.5 24.5q10 12 21.5 34.5t23 49.5t19.5 52.5 t10 45.5q2 12 -4 24.5t-2 27.5q4 14 18.5 29.5t26.5 31.5q16 25 28.5 58.5t30 61t46 43t77.5 1.5l-2 -4q31 10 54 10h780q78 0 119 -57q41 -53 18 -129l-283 -906q-18 -63 -77.5 -107t-126.5 -44h-893q-10 0 -20.5 -2t-18.5 -12q-12 -20 0 -56q16 -43 60 -75.5t87 -32.5h946 q29 0 57.5 21.5t37.5 47.5l309 987q4 16 5 29.5t-1 28.5q41 -14 61 -43q41 -53 19 -129l-283 -905q-18 -66 -77.5 -109t-127.5 -43h-946q-41 0 -79.5 14.5t-73.5 39t-61.5 58t-41.5 72.5q-25 68 -2 127zM500 961q-10 -39 26 -39h615q16 0 30.5 11t18.5 28l24 75 q4 16 -3 27.5t-23 11.5h-615q-16 0 -31.5 -11t-19.5 -28zM569 1190q-4 -16 3.5 -26.5t23.5 -10.5h614q16 0 30.5 10.5t21.5 26.5l22 78q4 16 -3 27.5t-24 11.5h-614q-16 0 -30.5 -11.5t-20.5 -27.5z" />
+<glyph unicode="&#xf02e;" horiz-adv-x="1253" d="M0 84v1337q0 47 34 81t81 34h1024q47 0 80.5 -34t33.5 -81v-1337q0 -47 -33.5 -81t-80.5 -34t-80 33l-432 432l-432 -432q-33 -33 -80 -33t-81 34t-34 81z" />
+<glyph unicode="&#xf02f;" d="M0 39v346q0 47 18.5 89t50 73t73.5 49t89 18h1383q47 0 89 -18t72.5 -49t49 -73t18.5 -89v-346q0 -39 -39 -39h-1765q-39 0 -39 39zM268 193q0 -16 11.5 -26.5t27.5 -10.5h1229q16 0 27.5 10t11.5 27v38q0 16 -11.5 27.5t-27.5 11.5h-1229q-16 0 -27.5 -11t-11.5 -28v-38 zM307 729v731q0 31 22.5 53.5t55.5 22.5h651v-383q0 -49 34 -83t81 -34h385v-307h-1229zM1151 1153v383l385 -383h-385z" />
+<glyph unicode="&#xf030;" d="M0 115v1075q0 47 34 82t81 35h366l58 125q18 43 66 73.5t95 30.5h443q47 0 95 -30.5t67 -73.5l57 -125h367q47 0 80.5 -35t33.5 -82v-1075q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM442 653q0 -100 38 -187t102.5 -152.5t153 -103.5t186.5 -38t186 38 t152.5 103.5t102.5 152.5t38 187q0 98 -38 186.5t-102.5 153t-152.5 102.5t-186 38t-186.5 -38t-153 -102.5t-102.5 -152.5t-38 -187zM596 653q0 68 25.5 127.5t69.5 103.5t103.5 69.5t127.5 25.5t127 -25.5t103 -69.5t69.5 -103.5t25.5 -127.5t-25.5 -127t-69.5 -104 t-103.5 -70.5t-126.5 -25.5q-68 0 -127.5 25.5t-103.5 70.5t-69.5 104.5t-25.5 126.5z" />
+<glyph unicode="&#xf031;" horiz-adv-x="1644" d="M0 0l2 80q10 4 29.5 8t48.5 8q92 18 108 33q16 10 50 68l233 614l277 725h73h53l11 -20l202 -482q33 -78 64 -151.5t59 -145.5q29 -72 52.5 -130t42.5 -103q12 -29 28.5 -70t36.5 -94q23 -66 64 -150q25 -49 34 -57q20 -18 68 -24q25 -2 49.5 -9.5t52.5 -17.5 q6 -37 7 -55v-10.5t-3 -16.5q-43 0 -90 2t-98 6q-53 4 -99 6t-87 2h-80t-53 -2l-199 -10l-57 -2q0 20 1 39.5t3 38.5l129 26q57 14 67 25q12 8 13 27q0 14 -7 30l-47 115l-90 227l-446 2q-12 -29 -37 -96t-66 -178q-23 -63 -22 -84q0 -27 16 -43q14 -10 40 -17.5t63 -13.5 q14 -4 84 -12v-59q0 -16 -2 -27q-35 0 -121 5t-224 16l-49 -9q-43 -8 -83 -11t-81 -3h-20zM549 655q135 -2 216 -4t105 0l29 2q-18 51 -40.5 111.5t-51.5 130.5t-51.5 122t-38.5 87z" />
+<glyph unicode="&#xf032;" horiz-adv-x="1419" d="M0 0l2 94q27 6 68 12q39 6 69.5 13.5t55.5 17.5q8 14 13 26.5t7 24.5q6 33 8 81t2 112l-2 498q-2 39 -3 139t-5 266q-4 88 -12 109q-4 8 -13 10q-20 14 -69 16q-23 0 -115 13l-4 84l262 6l383 12h45q8 2 15.5 2h13.5t21.5 -1t39.5 -1h76q92 0 193 -27q18 -4 42.5 -13 t53.5 -26q63 -31 104 -75q45 -47 66 -105q10 -29 15 -58.5t5 -62.5q0 -72 -32 -129q-31 -57 -95 -104q-16 -12 -54 -30.5t-97 -47.5q178 -41 268 -145q92 -104 92 -236q0 -72 -28 -162q-23 -66 -72 -116q-66 -72 -141 -109q-78 -35 -205 -59q-70 -12 -199 -11l-199 5 q-63 2 -138 -2.5t-163 -10.5q-25 -2 -93 -4t-181 -6zM537 1419q0 -12 1 -31.5t3 -44.5q2 -51 4 -119.5t0 -158.5v-98v-78q25 -4 52.5 -6t57.5 -2q176 0 267 65q90 66 90 225q0 113 -86 187q-84 76 -258 76q-53 0 -131 -15zM545 457l4 -271q0 -16 10 -43q74 -33 141 -32 q131 0 220 41q82 39 122 112q18 37 28.5 82t10.5 100q0 113 -43 181q-59 94 -141 125q-80 33 -250 32q-37 0 -61.5 -3t-40.5 -7v-143v-174z" />
+<glyph unicode="&#xf033;" horiz-adv-x="1054" d="M0 0l18 84q12 4 32 9t46 11q41 10 71 19.5t50 19.5q29 39 41 103l29 137l57 268l12 64q23 119 41.5 178t18.5 63l30 156l17 64l22 135l9 49v39q-45 23 -148 28q-14 0 -23.5 1.5t-17.5 1.5l21 104l325 -14q31 -2 49.5 -2h26.5q35 0 89 2t132 6q41 4 68.5 6t38.5 2 q-2 -10 -3 -19.5t-3 -19.5q-4 -10 -7.5 -22.5t-7.5 -28.5q-49 -16 -110 -31q-66 -16 -105 -31q-12 -33 -24 -88q-6 -25 -9.5 -45t-5.5 -37q-23 -100 -40 -175.5t-27 -129.5l-64 -311l-39 -158l-43 -235l-14 -45v-10.5t2 -16.5q35 -8 64.5 -13t58.5 -9q4 0 21.5 -2.5 l45.5 -6.5q-2 -18 -3 -32.5t-3 -26.5q-2 -6 -4 -16.5t-6 -22.5q-8 0 -14 -1t-10 -1q-18 -2 -28.5 -2h-14.5h-11.5t-17.5 4q-8 0 -45 4t-105 12l-202 2q-61 0 -181 -12q-39 -4 -63.5 -6t-36.5 -2z" />
+<glyph unicode="&#xf034;" d="M0 1151q14 37 34.5 110.5t45.5 184.5q8 33 13 54.5t9 31.5h58q4 -6 6 -10t4 -9q29 -57 41 -71q16 -4 129 -4q35 0 66.5 1t60.5 1l20 2l113 2l213 -2h289l55 10q10 8 27 53q2 6 4 12.5t6 16.5l43 2h10.5t16.5 -2q2 -39 1 -97.5t1 -138.5v-100v-57q0 -14 -1 -27.5t-3 -23.5 q-20 -8 -37 -11.5t-31 -7.5q-27 51 -53 129q-29 82 -37 92q-12 14 -27 21q-10 4 -60 4h-138h-31t-35 -4q-6 -43 -6 -72l2 -151v-334l2 -359v-147q0 -72 10 -117q8 -4 21.5 -8t34.5 -8q4 0 21 -4t50 -13q27 -10 49 -18q4 -20 4 -33.5v-17.5v-11.5t-2 -17.5h-34q-47 0 -88 2 t-76 6t-95.5 6t-148.5 2q-16 0 -57 -4t-109 -10q-29 -2 -45 -3t-24 -1q0 10 -1.5 16.5t-1.5 10.5l-2 24v10q18 31 80 50q94 27 135 49q4 10 6.5 25.5t4.5 31.5q4 68 6 176.5t0 255.5l-4 428q-2 90 -2 142.5t-4 72.5q0 8 -7 15q-4 6 -12 6q-16 4 -63 4h-127q-90 0 -119 -21 q-41 -29 -121 -153q-23 -35 -35 -35q-23 12 -36 23.5t-19 19.5zM1383 1305.5q-5 13.5 14 33.5l184 185q14 12 33 12q14 0 31 -12l184 -185q18 -20 13 -33.5t-34 -13.5h-118v-1048h118q29 0 34 -13.5t-13 -31.5l-184 -187q-16 -12 -33 -12q-16 0 -31 12l-184 187 q-18 18 -13 31.5t31 13.5h121v1048h-121q-27 0 -32 13.5z" />
+<glyph unicode="&#xf035;" horiz-adv-x="1536" d="M0 233q0 18 12 31l187 185q18 20 31.5 14t13.5 -33v-121h1048v121q0 27 13.5 33t33.5 -14l185 -185q12 -12 12 -31q0 -18 -12 -30l-185 -187q-20 -18 -33.5 -13t-13.5 34v119h-1048v-119q0 -29 -13.5 -34t-31.5 13l-187 187q-12 12 -12 30zM0 1233q14 29 33.5 87 t44.5 146q6 27 11 43.5t9 26.5h56q8 -12 10 -14q27 -47 37 -58q2 0 35.5 -1t77.5 -1h90.5h74.5h123l19 2h108h203h416l53 6q12 10 24 46l4.5 9l6.5 13h39h28v-188v-80v-45q0 -12 -1 -21.5t-3 -19.5q-33 -10 -63 -15q-25 37 -52 103q-27 59 -34 74q-12 10 -27 14q-6 2 -42 3 t-85 1h-103.5h-97.5h-28.5t-34.5 -2q-2 -18 -3 -32.5t-1 -24.5l4 -445l-2 -119q0 -61 12 -92q12 -6 53 -12q4 0 20.5 -4t45.5 -10q14 -4 26.5 -7.5t22.5 -7.5q2 -16 3 -25.5t1 -13.5t-1 -10t-1 -14h-33q-94 0 -157 6q-66 6 -236 6q-14 0 -53 -3t-105 -7q-27 -2 -43 -3 t-24 -1q0 16 -2 20v21v8q20 27 73 39q90 20 132 41q4 8 6 19t4 26q0 18 1 70.5t1 120t-1 142t-2 139t-2 107.5t-1 47q0 8 -6 13q-2 2 -13 6q-14 2 -59 2h-123q-20 0 -62 -1t-85 -2t-78 -4t-41 -7q-41 -25 -117 -123q-20 -29 -33 -29q-23 10 -35 19.5t-18 15.5z" />
+<glyph unicode="&#xf036;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t55.5 22.5h1075q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1075 q-33 0 -55.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t55.5 22.5h1536q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1536q-33 0 -55.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t55.5 22.5h921q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-921q-33 0 -55.5 22.5t-22.5 52.5z" />
+<glyph unicode="&#xf037;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM78 922v114q0 33 21.5 55.5t54.5 22.5h1536q33 0 55 -22.5t22 -55.5v-114q0 -33 -22.5 -54.5t-54.5 -21.5h-1536 q-33 0 -54.5 21.5t-21.5 54.5zM307 500v114q0 33 22.5 55.5t55.5 22.5h1075q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1075q-33 0 -55.5 22.5t-22.5 55.5zM385 1343v117q0 31 21.5 53.5t54.5 22.5h921q33 0 55.5 -22.5t22.5 -53.5v-117 q0 -31 -22.5 -53t-55.5 -22h-921q-33 0 -54.5 22.5t-21.5 52.5z" />
+<glyph unicode="&#xf038;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM154 922v114q0 33 22.5 55.5t54.5 22.5h1536q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1536 q-33 0 -55 21.5t-22 54.5zM614 500v114q0 33 22.5 55.5t55.5 22.5h1075q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1075q-33 0 -55.5 22.5t-22.5 55.5zM768 1343v117q0 31 22.5 53.5t55.5 22.5h921q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-921q-33 0 -55.5 22.5t-22.5 52.5z" />
+<glyph unicode="&#xf039;" d="M0 78v115q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1689 q-33 0 -55.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1689q-33 0 -55.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-117 q0 -31 -22.5 -53t-53.5 -22h-1689q-33 0 -55.5 22.5t-22.5 52.5z" />
+<glyph unicode="&#xf03a;" d="M0 78v115q0 31 22.5 53t55.5 22h153q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-153q-33 0 -55.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t55.5 22.5h153q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-153 q-33 0 -55.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t55.5 22.5h153q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-153q-33 0 -55.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t55.5 22.5h153q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-153q-33 0 -55.5 22.5t-22.5 52.5zM461 78v115q0 31 22.5 53t55.5 22h1228q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-1228q-33 0 -55.5 22.5t-22.5 55.5zM461 500v114q0 33 22.5 55.5t55.5 22.5h1228q31 0 53.5 -22.5t22.5 -55.5v-114 q0 -33 -22.5 -55.5t-53.5 -22.5h-1228q-33 0 -55.5 22.5t-22.5 55.5zM461 922v114q0 33 22.5 55.5t55.5 22.5h1228q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1228q-33 0 -55.5 21.5t-22.5 54.5zM461 1343v117q0 31 22.5 53.5t55.5 22.5h1228 q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53t-53.5 -22h-1228q-33 0 -55.5 22.5t-22.5 52.5z" />
+<glyph unicode="&#xf03b;" d="M0 756v75q0 39 39 39h213v154q0 31 16.5 37t38.5 -17l215 -215q16 -16 17 -36q0 -18 -17 -35l-215 -215q-23 -23 -39 -17t-16 39v152h-213q-39 0 -39 39zM614 39v1458q0 39 39 39h76q39 0 39 -39v-1458q0 -39 -39 -39h-76q-39 0 -39 39zM922 78v115q0 31 22.5 53t54.5 22 h768q31 0 53.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-53.5 -22.5h-768q-33 0 -55 22.5t-22 55.5zM922 500v114q0 33 22.5 55.5t54.5 22.5h615q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-615q-33 0 -55 22.5t-22 55.5zM922 922v114 q0 33 22.5 55.5t54.5 22.5h691q33 0 55 -22.5t22 -55.5v-114q0 -33 -22.5 -54.5t-54.5 -21.5h-691q-33 0 -55 21.5t-22 54.5zM922 1343v117q0 31 22.5 53.5t54.5 22.5h537q33 0 55.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53t-55.5 -22h-537q-33 0 -55 22.5t-22 52.5z" />
+<glyph unicode="&#xf03c;" d="M0 78v115q0 31 22.5 53t53.5 22h768q33 0 55.5 -22.5t22.5 -52.5v-115q0 -33 -22.5 -55.5t-55.5 -22.5h-768q-31 0 -53.5 22.5t-22.5 55.5zM0 500v114q0 33 22.5 55.5t53.5 22.5h614q33 0 55.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-55.5 -22.5h-614 q-31 0 -53.5 22.5t-22.5 55.5zM0 922v114q0 33 22.5 55.5t53.5 22.5h692q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-692q-31 0 -53.5 21.5t-22.5 54.5zM0 1343v117q0 31 22.5 53.5t53.5 22.5h538q31 0 53.5 -22.5t22.5 -53.5v-117q0 -31 -22.5 -53 t-53.5 -22h-538q-31 0 -53.5 22.5t-22.5 52.5zM1075 39v1458q0 39 39 39h76q16 0 27.5 -11.5t11.5 -27.5v-1458q0 -16 -11.5 -27.5t-27.5 -11.5h-76q-39 0 -39 39zM1305 743q0 16 14 35l217 215q23 23 38 17t15 -39v-152h215q16 0 27.5 -11t11.5 -28v-75q0 -16 -11 -27.5 t-28 -11.5h-215v-154q0 -31 -15 -38t-38 15l-217 218q-14 18 -14 36z" />
+<glyph unicode="&#xf03d;" d="M0 324v768q0 47 18.5 89t50 72.5t73.5 49t89 18.5h768q47 0 89 -18.5t73 -49t49.5 -72.5t18.5 -89v-240l483 471q23 23 55 23q13 -1 29 -7q47 -20 47 -69v-1127q0 -49 -47 -69q-16 -6 -29 -6q-33 0 -55 22l-483 471v-237q0 -47 -18.5 -89t-49.5 -74t-72.5 -50.5 t-89.5 -18.5h-768q-47 0 -89 18.5t-73.5 50.5t-50 73.5t-18.5 89.5z" />
+<glyph unicode="&#xf03e;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h1536v1228h-1536v-1228zM307 307v105l277 360l188 -156l354 537l410 -424v-422h-1229zM307 1073q0 66 45 111t111 45q63 0 108 -45 t45 -111q0 -63 -45 -108t-108 -45q-66 0 -111 45t-45 108z" />
+<glyph unicode="&#xf040;" horiz-adv-x="1536" d="M0 0l137 418l867 866l280 -280l-866 -867zM287 407.5q0 -12.5 10 -22.5q8 -8 22 -8q12 0 21 8l690 690q20 20 0 43q-10 10 -22.5 10t-20.5 -10l-690 -688q-10 -10 -10 -22.5zM1102 1382l119 119q35 35 84 35t84 -35l57 -55l55 -57q35 -35 35 -84.5t-35 -83.5l-119 -119z " />
+<glyph unicode="&#xf041;" horiz-adv-x="1128" d="M0 1001q0 117 44 220.5t121 180.5t180.5 121t219.5 44q117 0 219.5 -44t179 -121t120.5 -180.5t44 -220.5q0 -84 -24.5 -159.5t-65.5 -143.5l-379 -661q-41 -68 -95 -68t-93 68l-381 663q-41 68 -65.5 143t-24.5 158zM285 1001q0 -57 21.5 -108t60.5 -89t89 -59.5 t109 -21.5q57 0 108.5 21.5t89.5 59.5t59.5 89t21.5 108t-21.5 108.5t-59.5 90.5t-89 60.5t-109 21.5q-59 0 -109 -21.5t-89 -60.5t-60.5 -90t-21.5 -109z" />
+<glyph unicode="&#xf042;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44v1118q-117 0 -218.5 -44 t-177 -120t-119.5 -177t-44 -218z" />
+<glyph unicode="&#xf043;" horiz-adv-x="1130" d="M0 535q0 86 23.5 161.5t66.5 141.5q20 33 69.5 99.5t108 154.5t113.5 193.5t90 217.5q10 35 37 51.5t57 12.5q31 4 57.5 -12.5t36.5 -51.5q33 -113 89.5 -218t115 -193t107.5 -154.5t69 -99.5q43 -66 66.5 -141.5t23.5 -161.5q0 -117 -44 -220.5t-120.5 -180.5t-180 -121 t-220.5 -44t-220 44t-180 121t-121 180.5t-44 220.5zM248 410q0 -59 41 -100.5t100 -41.5t100 41t41 101q0 43 -22 75q-6 8 -18.5 24.5t-26.5 39t-28.5 48.5t-22.5 54q-4 20 -23 17q-18 4 -24 -17q-8 -29 -21.5 -54.5t-28 -48t-27 -38.5t-18.5 -25q-23 -33 -22 -75z" />
+<glyph unicode="&#xf044;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h1075q4 0 10.5 -1t10.5 -1l-191 -191h-905q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v445l193 192v-637q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5 h-1075q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM631 324l108 329l652 652l221 -222l-651 -651zM866 629q6 -8 17 -8q10 0 16 8l512 510q18 18 0 35q-18 16 -35 0l-510 -510q-18 -18 0 -35zM1501 1415l92 94q29 29 68 29t65 -29l46 -45l45 -45 q27 -29 27.5 -66.5t-27.5 -66.5l-95 -92z" />
+<glyph unicode="&#xf045;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h836q-6 -31 -6 -63v-52q-164 -20 -310 -78h-520q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v111q16 10 31.5 21.5t32.5 27.5l129 127v-287q0 -63 -25 -118.5 t-67 -97.5t-97 -66.5t-119 -24.5h-1075q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM385 388.5v37.5q0 166 56.5 312.5t173 256t293.5 173t419 65.5v231q0 57 28.5 69.5t69.5 -28.5l392 -391q27 -25 26 -65q0 -39 -26 -64l-392 -391q-41 -41 -69.5 -28.5 t-28.5 69.5v260q-207 0 -364.5 -43t-266 -116.5t-170 -174t-77.5 -215.5q-4 -27 -31 -27q-25 0 -29 27q-4 23 -4 42.5z" />
+<glyph unicode="&#xf046;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h1075q27 0 52 -6l-187 -187h-940q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v326l193 192v-518q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5h-1075 q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM385 966.5q0 32.5 23 55.5l98 98q23 23 55.5 23t54.5 -23l340 -340l654 656q23 23 56.5 22.5t55.5 -22.5l99 -99q23 -23 22.5 -55.5t-22.5 -54.5l-711 -711l-98 -98q-23 -23 -55.5 -23t-55.5 23l-100 98l-393 395 q-23 23 -23 55.5z" />
+<glyph unicode="&#xf047;" horiz-adv-x="1597" d="M0 768q0 25 18 43l256 256q27 27 45.5 19.5t18.5 -46.5v-170h360v359h-172q-37 0 -45 18.5t19 44.5l256 256q18 18 43 19q25 0 43 -19l256 -256q27 -27 19.5 -45t-46.5 -18h-172v-359h361v170q0 39 18 46.5t45 -19.5l256 -256q18 -18 18 -43t-18 -43l-256 -256 q-27 -27 -45 -19.5t-18 46.5v176h-361v-365h172q39 0 47 -18.5t-20 -44.5l-256 -256q-18 -18 -43 -19q-25 0 -43 19l-256 256q-27 27 -20 45t46 18h172v365h-360v-176q0 -39 -18.5 -46.5t-45.5 19.5l-256 256q-18 18 -18 43z" />
+<glyph unicode="&#xf048;" horiz-adv-x="1075" d="M0 76q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5v-1382zM307.5 768q-0.5 27 16.5 43l653 707q14 18 41 18q6 0 22 -4q35 -18 35 -59v-1412q0 -41 -35 -57q-39 -14 -63 14l-653 705 q-16 18 -16.5 45z" />
+<glyph unicode="&#xf049;" d="M0 76q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5v-1382zM307.5 768q-0.5 27 16.5 43l653 707q14 18 41 18q6 0 22 -4q35 -18 35 -59v-1412q0 -41 -35 -57q-39 -14 -63 14l-653 705 q-16 18 -16.5 45zM1075.5 768q-0.5 27 16.5 43l653 707q14 18 41 18q6 0 22 -4q35 -18 35 -59v-1412q0 -41 -35 -57q-39 -14 -63 14l-653 705q-16 18 -16.5 45z" />
+<glyph unicode="&#xf04a;" horiz-adv-x="1536" d="M0 767q0 26 16 44l654 707q14 18 41 18q10 0 22 -6q35 -14 35 -57v-1412q0 -41 -35 -57q-37 -16 -63 14l-654 705q-16 18 -16 44zM768 767q0 26 16 44l654 707q14 18 41 18q10 0 22 -6q35 -14 35 -57v-1412q0 -41 -35 -57q-37 -16 -63 14l-654 705q-16 18 -16 44z" />
+<glyph unicode="&#xf04b;" horiz-adv-x="1349" d="M0 70v1396q0 39 35 60q37 23 69 0l1211 -697q35 -25 35 -61q0 -37 -35 -61l-1211 -697q-16 -10 -34 -10t-35 10q-35 20 -35 60z" />
+<glyph unicode="&#xf04c;" horiz-adv-x="1536" d="M0 70v1396q0 29 20.5 49.5t49.5 20.5h489q29 0 49.5 -20.5t20.5 -49.5v-1396q0 -29 -20.5 -49.5t-49.5 -20.5h-489q-29 0 -49.5 20.5t-20.5 49.5zM907 70v1396q0 29 20.5 49.5t49.5 20.5h489q29 0 49.5 -20.5t20.5 -49.5v-1396q0 -29 -20.5 -49.5t-49.5 -20.5h-489 q-29 0 -49.5 20.5t-20.5 49.5z" />
+<glyph unicode="&#xf04d;" horiz-adv-x="1536" d="M0 70v1396q0 29 20.5 49.5t49.5 20.5h1396q29 0 49.5 -20.5t20.5 -49.5v-1396q0 -29 -20.5 -49.5t-49.5 -20.5h-1396q-29 0 -49.5 20.5t-20.5 49.5z" />
+<glyph unicode="&#xf04e;" horiz-adv-x="1536" d="M0 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM768 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57z" />
+<glyph unicode="&#xf050;" d="M0 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM768 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM1536 76 q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5v-1382z" />
+<glyph unicode="&#xf051;" horiz-adv-x="1075" d="M0 61v1414q0 39 35 57q39 14 63 -14l654 -705q16 -18 16 -45t-16 -45l-654 -705q-16 -18 -41 -18q-6 0 -22 4q-35 16 -35 57zM768 76q0 -31 22.5 -53.5t53.5 -22.5h153q33 0 55.5 22.5t22.5 53.5v1382q0 33 -22.5 55.5t-55.5 22.5h-153q-31 0 -53.5 -22.5t-22.5 -55.5 v-1382z" />
+<glyph unicode="&#xf052;" horiz-adv-x="1536" d="M0 70v198q0 29 20.5 49.5t49.5 20.5h1396q29 0 49.5 -20.5t20.5 -49.5v-198q0 -29 -20.5 -49.5t-49.5 -20.5h-1396q-29 0 -49.5 20.5t-20.5 49.5zM6 594q-18 43 14 76l699 698q20 20 49 20.5t49 -20.5l699 -698q33 -33 14 -76q-16 -43 -64 -43h-1396q-47 0 -64 43z" />
+<glyph unicode="&#xf053;" horiz-adv-x="964" d="M0 765q0 38 29 66l671 674q29 29 68 29t68 -29l100 -100q29 -29 29 -68t-29 -67l-508 -510l508 -500q29 -29 29 -66.5t-29 -66.5l-100 -102q-29 -29 -68 -29t-68 29l-671 673q-29 29 -29 67z" />
+<glyph unicode="&#xf054;" horiz-adv-x="964" d="M0 194.5q0 38.5 29 67.5l508 508l-508 502q-29 29 -29 66.5t29 66.5l100 102q29 29 68 29t67 -29l672 -673q29 -29 29 -68t-29 -68l-672 -671q-29 -29 -67.5 -29t-67.5 29l-100 100q-29 29 -29 67.5z" />
+<glyph unicode="&#xf055;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM338 688q0 -33 33 -33h313v-344q0 -33 33 -32h164q33 0 32 32v344h314 q12 0 22.5 9.5t10.5 23.5v158q0 14 -10.5 23.5t-22.5 9.5h-314v346q0 33 -32 32h-164q-33 0 -33 -32v-346h-313q-33 0 -33 -33v-158z" />
+<glyph unicode="&#xf056;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM338 688q0 -33 33 -33h856q12 0 22.5 9.5t10.5 23.5v158q0 14 -10.5 23.5 t-22.5 9.5h-856q-33 0 -33 -33v-158z" />
+<glyph unicode="&#xf057;" horiz-adv-x="1597" d="M0 770q0 154 58.5 301.5t174.5 263.5q117 117 264.5 175.5t301 58.5t301 -58.5t264.5 -175.5t175 -264t58 -301t-58 -301t-175 -264t-264.5 -175.5t-301 -58.5t-301 58.5t-264.5 175.5t-175 264t-58 301zM385 505q0 -13 10 -24l115 -116q10 -10 23.5 -10.5t23.5 10.5 l244 243l219 -221q10 -10 23.5 -10t23.5 10l113 113q23 23 0 47l-222 219l246 246q23 23 0 47l-117 115q-25 25 -47 0l-243 -244l-222 221q-10 10 -23 10t-24 -10l-110 -113q-25 -23 0 -47l219 -219l-242 -244q-10 -10 -10 -23z" />
+<glyph unicode="&#xf058;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 718q0 -20 14 -34l319 -319q14 -14 38 -24.5t44 -10.5h56q20 0 43.5 10 t38.5 25l550 550q14 14 14.5 34t-14.5 34l-104 107q-16 14 -35.5 14t-34.5 -14l-452 -453q-14 -14 -33.5 -14t-34.5 14l-221 221q-14 14 -33.5 14t-36.5 -14l-104 -106q-14 -14 -14 -34z" />
+<glyph unicode="&#xf059;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM532 1100l95 -115q4 -8 20 -12q12 0 23 6l10 8t27.5 17.5t39 16.5t46.5 7 q41 0 69.5 -22.5t28.5 -57.5q0 -37 -24.5 -64.5t-61.5 -60.5q-23 -18 -46.5 -40.5t-43 -51.5t-31.5 -63.5t-12 -79.5v-64q0 -12 9 -21t21 -9h164q12 0 20.5 9t8.5 21v51q0 39 25.5 66.5t62.5 60.5q25 20 49.5 46t46 57t34.5 69.5t13 90.5q0 68 -27.5 121t-73.5 87.5 t-103.5 53t-114.5 18.5q-63 0 -113.5 -16.5t-85.5 -35.5t-53 -35.5t-20 -18.5q-16 -16 -3 -39zM672 252q0 -12 9 -21.5t21 -9.5h164q12 0 20.5 9.5t8.5 21.5v156q0 12 -8 21t-21 9h-164q-12 0 -21 -9t-9 -21v-156z" />
+<glyph unicode="&#xf05a;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM573 858q0 -29 29 -29h86v-409h-78q-12 0 -21 -8.5t-9 -20.5v-139q0 -12 9 -21.5 t21 -9.5h402q12 0 20 9.5t8 21.5v139q0 29 -28 29h-78v577q0 12 -8 21.5t-21 9.5h-303q-12 0 -20.5 -9t-8.5 -22v-139zM686 1151q0 -12 9.5 -21.5t21.5 -9.5h188q12 0 20.5 9.5t8.5 21.5v166q0 29 -29 29h-188q-12 0 -21.5 -8.5t-9.5 -20.5v-166z" />
+<glyph unicode="&#xf05b;" horiz-adv-x="1536" d="M0 692v154q0 16 11.5 26.5t27.5 10.5h164q18 84 59 158.5t99.5 133t133 99.5t158.5 59v164q0 39 39 39h154q16 0 26.5 -11.5t10.5 -27.5v-164q84 -18 158.5 -59t133 -99.5t99.5 -133t59 -158.5h164q16 0 27.5 -10.5t11.5 -26.5v-154q0 -39 -39 -39h-164 q-18 -84 -59 -158.5t-99.5 -133t-133 -99.5t-158.5 -59v-164q0 -16 -10.5 -27.5t-26.5 -11.5h-154q-39 0 -39 39v164q-84 18 -158.5 59t-133 99.5t-99.5 133t-59 158.5h-164q-39 0 -39 39zM365 653q29 -106 105.5 -183t182.5 -105v174q0 16 11.5 26t27.5 10h154 q16 0 26.5 -10t10.5 -26v-174q106 29 183 105.5t105 182.5h-172q-39 0 -38 39v154q0 16 11 26.5t27 10.5h172q-29 106 -105.5 183t-182.5 105v-172q0 -16 -10.5 -27t-26.5 -11h-154q-39 0 -39 38v172q-106 -29 -183 -105.5t-105 -182.5h174q16 0 26 -10.5t10 -26.5v-154 q0 -16 -10 -27.5t-26 -11.5h-174z" />
+<glyph unicode="&#xf05c;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM451 573.5q0 16.5 12 28.5l166 166l-166 166q-12 12 -12 28.5t12 28.5l112 113q29 29 58 0l166 -166l166 166q29 29 57 0l113 -113q29 -29 0 -57l-166 -166l166 -166 q29 -29 0 -57l-113 -113q-12 -12 -28.5 -12t-28.5 12l-166 166l-166 -166q-12 -12 -28.5 -12t-29.5 12l-112 113q-12 12 -12 28.5z" />
+<glyph unicode="&#xf05d;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -117 44 -218t119.5 -177t177 -120t218.5 -44t218 44t177 120t120 177 t44 218t-44 218t-120 177t-177.5 120t-217.5 44q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM332 717.5q0 17.5 10 27.5l115 115q10 10 27.5 10t27.5 -10l178 -180q29 -25 58 0l337 340q10 10 27.5 10t28.5 -10l114 -115q10 -10 10.5 -27.5t-10.5 -27.5l-409 -410 q-12 -12 -32.5 -20t-37.5 -8h-114q-16 0 -37 8t-33 20l-250 250q-10 10 -10 27.5z" />
+<glyph unicode="&#xf05e;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -84 23.5 -160t66.5 -141l770 770q-66 43 -141.5 66.5t-159.5 23.5 q-117 0 -218.5 -44t-177 -120t-119.5 -177t-44 -218zM498 297q66 -41 141.5 -64.5t159.5 -23.5q117 0 218 44t177 120t120 177t44 218q0 84 -23.5 160t-64.5 141z" />
+<glyph unicode="&#xf060;" horiz-adv-x="1536" d="M0 768q0 39 29 68l671 673q29 29 68 29t68 -29l100 -100q29 -29 29 -67.5t-29 -67.5l-338 -338h842q41 0 68.5 -27.5t27.5 -68.5v-144q0 -39 -27.5 -66.5t-66.5 -27.5h-844l338 -338q29 -29 29 -67.5t-29 -67.5l-100 -100q-29 -29 -68 -29t-68 29l-671 671q-29 29 -29 68 z" />
+<glyph unicode="&#xf061;" horiz-adv-x="1536" d="M0 698v144q0 39 27.5 66.5t66.5 27.5h844l-338 338q-29 29 -29 67.5t29 67.5l100 100q29 29 68 29t68 -29l671 -673q29 -29 29 -67t-29 -67l-671 -673q-29 -29 -68 -29t-68 29l-100 100q-29 29 -29 68t29 67l338 338h-844q-39 0 -66.5 27.5t-27.5 68.5z" />
+<glyph unicode="&#xf062;" horiz-adv-x="1536" d="M-1 768q-1 39 28 68l673 671q29 29 68 29t68 -29l671 -671q29 -29 29 -68t-29 -68l-100 -100q-29 -29 -66.5 -29t-66.5 29l-340 338v-844q0 -39 -27.5 -66.5t-66.5 -27.5h-144q-41 0 -67.5 27.5t-26.5 66.5v844l-338 -338q-29 -29 -67.5 -29t-67.5 29l-100 100 q-29 29 -30 68z" />
+<glyph unicode="&#xf063;" horiz-adv-x="1536" d="M0 766q0 39 29 68l100 100q29 29 68 29t67 -29l338 -338v844q0 39 27.5 66.5t66.5 27.5h144q41 0 67.5 -27.5t26.5 -66.5v-844l340 338q29 29 66.5 29t66.5 -29l102 -100q29 -29 29 -68t-29 -68l-673 -671q-29 -29 -68 -29t-68 29l-671 671q-29 29 -29 68z" />
+<glyph unicode="&#xf064;" d="M0 135q0 209 71.5 393.5t218 322.5t371 219t531.5 83v293q0 72 36 87t89 -36l491 -493q35 -33 35 -82q0 -47 -35 -82l-491 -494q-51 -51 -88 -35.5t-37 86.5v330q-262 -2 -461 -56.5t-336 -147.5t-215 -219t-98 -271q-4 -33 -37 -33h-2q-33 0 -37 33q-6 51 -6 102z" />
+<glyph unicode="&#xf065;" horiz-adv-x="1536" d="M0 86v522q0 53 26.5 64.5t65.5 -25.5l166 -166l274 275q12 12 31 12t33 -12l160 -160q12 -14 12 -32.5t-12 -31.5l-275 -274l166 -166q39 -39 27 -65.5t-66 -26.5h-520q-37 0 -61 25q-27 27 -27 61zM768 972.5q0 18.5 12 31.5l275 274l-166 166q-39 39 -27 65.5t66 26.5 h520q37 0 61 -25q27 -27 27 -61v-522q0 -53 -26.5 -64.5t-65.5 25.5l-166 166l-274 -273q-12 -14 -31 -14t-33 14l-160 158q-12 14 -12 32.5z" />
+<glyph unicode="&#xf066;" horiz-adv-x="1536" d="M0 202.5q0 18.5 12 33.5l275 272l-166 166q-39 39 -27 65.5t66 26.5h520q38 0 61 -25q27 -27 27 -61v-522q0 -53 -26.5 -64.5t-65.5 27.5l-166 166l-274 -275q-12 -14 -31 -14t-33 14l-160 160q-12 12 -12 30.5zM768 854v522q0 53 26.5 64.5t65.5 -27.5l166 -166l274 275 q12 14 31 14t33 -14l160 -160q12 -12 12 -30.5t-12 -33.5l-275 -272l166 -166q39 -39 27 -65.5t-66 -26.5h-520q-41 0 -61 25q-27 27 -27 61z" />
+<glyph unicode="&#xf067;" horiz-adv-x="1536" d="M0 696v144q0 39 27.5 66.5t66.5 27.5h508v506q0 41 26.5 68.5t67.5 27.5h144q39 0 66.5 -27.5t27.5 -66.5v-508h508q39 0 66.5 -27.5t27.5 -66.5v-144q0 -39 -27.5 -66.5t-66.5 -27.5h-508v-506q0 -41 -27.5 -68.5t-66.5 -27.5h-144q-39 0 -66.5 27.5t-27.5 66.5v508 h-506q-41 0 -68.5 26.5t-27.5 67.5z" />
+<glyph unicode="&#xf068;" horiz-adv-x="1536" d="M0 696v144q0 39 27.5 66.5t66.5 27.5h1348q39 0 66.5 -27.5t27.5 -66.5v-144q0 -39 -27.5 -66.5t-66.5 -27.5h-1346q-41 0 -68.5 26.5t-27.5 67.5z" />
+<glyph unicode="&#xf069;" horiz-adv-x="1427" d="M2 1018q-10 37 10 72l72 124q20 35 58 44.5t73 -9.5l332 -192v383q0 41 27.5 68.5t68.5 27.5h141q41 0 69 -27.5t28 -66.5v-385l331 192q35 18 73 9t58 -44l70 -124q20 -35 11 -72t-44 -57l-333 -193l333 -193q35 -20 44.5 -57t-9.5 -72l-72 -124q-20 -35 -58 -44.5 t-73 9.5l-331 192v-383q0 -41 -28 -68.5t-69 -27.5h-141q-41 0 -68.5 27.5t-27.5 66.5v385l-332 -192q-35 -20 -73 -10t-58 45l-72 124q-18 35 -9 72t44 57l334 193l-334 193q-35 20 -45 57z" />
+<glyph unicode="&#xf06a;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM672 1274l14 -739q4 -29 31 -29h162q12 0 21 8t9 21l17 739q0 10 -8 22q-8 8 -23 9 h-193q-14 0 -22 -9q-8 -12 -8 -22zM680 236q0 -12 8 -21.5t21 -9.5h180q12 0 21.5 9t9.5 22v174q0 12 -9.5 21t-21.5 9h-180q-12 0 -20.5 -9t-8.5 -21v-174z" />
+<glyph unicode="&#xf06b;" horiz-adv-x="1880" d="M0 588v391q0 16 11.5 27.5t27.5 11.5h539q-57 0 -107.5 21.5t-87.5 58.5t-58.5 87t-21.5 107t21.5 107.5t58.5 87.5t87 58.5t108 21.5q61 0 115.5 -24.5t88.5 -69.5l158 -203l158 203q35 45 89 69.5t116 24.5q57 0 107 -21.5t87 -58.5t58.5 -87t21.5 -108 q0 -57 -21.5 -107t-58.5 -87t-87 -58.5t-107 -21.5h538q16 0 27.5 -11.5t11.5 -27.5v-391q0 -16 -11 -27.5t-28 -11.5h-117v-432q0 -47 -34.5 -82t-83.5 -35h-1332q-49 0 -82.5 35t-33.5 82v432h-119q-16 0 -27.5 11t-11.5 28zM461 1292q0 -49 33.5 -82.5t83.5 -33.5h237 l-151 196q-10 10 -32 24.5t-54 14.5q-49 0 -83 -35t-34 -84zM743 221q0 -33 24 -56.5t56 -23.5h234q33 0 56.5 23.5t23.5 56.5v797h-394v-797zM1065 1176h238q49 0 82.5 33.5t33.5 82.5t-33.5 84t-82.5 35q-33 0 -54.5 -14.5t-31.5 -24.5z" />
+<glyph unicode="&#xf06c;" horiz-adv-x="1916" d="M6 135q20 53 56 89t71 65q29 23 50.5 43t27.5 43q2 6 0 12t-10 25q-6 12 -11.5 27.5t-9.5 35.5q-25 160 13 295t120 242.5t195 185.5t235 121q82 29 179.5 34t203.5 7q61 0 127 2t127.5 11t113.5 28.5t85 54.5q20 20 38.5 41t38 36t43 24.5t58.5 9.5q23 0 42.5 -11.5 t29.5 -31.5q66 -133 83 -281.5t-18 -322.5q-90 -487 -579 -740q-231 -123 -467 -123q-154 0 -307 54q-23 8 -45.5 20t-44.5 25q-29 16 -57.5 30.5t-49.5 14.5q-10 -2 -23.5 -17.5t-27.5 -35t-26.5 -41t-20.5 -33.5q-14 -23 -26.5 -41.5t-22.5 -32.5q-25 -31 -64 -31h-4 q-29 2 -49.5 12.5t-33.5 24.5t-20.5 28.5t-9.5 22.5q-27 37 -10 78zM401 507.5q2 -32.5 29 -54.5q20 -18 51 -19q37 0 62 27q90 102 181 175t191.5 117t212 62t242.5 14q33 -4 57.5 19.5t26.5 56.5q2 35 -20.5 58.5t-57.5 25.5q-147 6 -277 -16.5t-247 -73.5t-223.5 -133 t-206.5 -199q-23 -27 -21 -59.5z" />
+<glyph unicode="&#xf06d;" horiz-adv-x="1445" d="M0 442q0 123 63.5 254t174.5 238q10 16 33.5 13t31.5 -21q4 -16 0 -29q-8 -35 -14 -84t-4 -101.5t13 -101.5t38 -84q31 -37 78 -49q-49 154 -40 293t49 259t101.5 217t118.5 167t98 106.5t43 39.5q25 18 47 0q10 -8 13.5 -21.5t-0.5 -24.5q0 -2 -15.5 -42.5t-21.5 -102 t7 -134.5t71 -136q37 -43 67.5 -85t52 -93.5t34 -120t12.5 -162.5q0 -33 -31 -39q-12 -2 -24.5 4t-16.5 19q-14 31 -42 49t-63 18q-47 0 -79.5 -33.5t-32.5 -81.5q0 -121 156 -120q98 0 153 63q37 43 53.5 101.5t20.5 114.5t2 102.5t-4 62.5q-6 12 0 29q8 18 31.5 21 t35.5 -13q111 -106 173.5 -237.5t62.5 -254.5q0 -109 -51.5 -195.5t-145.5 -148t-228 -95.5t-298 -34t-298 34t-228.5 95.5t-145.5 148.5t-51 195z" />
+<glyph unicode="&#xf06e;" d="M0 722q0 44 25 83q78 125 178 224t216 168t242.5 104.5t260.5 35.5q135 0 262 -35.5t241.5 -103.5t215 -167t180.5 -226q23 -39 22.5 -83t-22.5 -81q-80 -127 -180.5 -226.5t-215 -167t-241.5 -103t-262 -35.5q-133 0 -260 35.5t-243 104t-216.5 168t-177.5 224.5 q-25 37 -25 81zM154 723q66 -104 149.5 -190.5t182 -145.5t208 -92t228.5 -33t228.5 33t207.5 92t182 145t150 191q-80 129 -187.5 226.5t-236.5 156.5q51 -59 79.5 -133t28.5 -160q0 -96 -35.5 -179t-99 -146.5t-147.5 -99.5t-179 -36q-96 0 -179 36t-146.5 99.5t-99 146.5 t-35.5 179q0 78 25.5 148.5t68.5 128.5q-117 -59 -217.5 -152.5t-175.5 -214.5zM614 813q0 -23 16.5 -40t41.5 -17t41 17.5t16 39.5q0 78 53.5 131t130.5 53q25 0 41.5 17.5t16.5 40.5q0 25 -16.5 41t-41.5 16q-61 0 -116.5 -23.5t-95 -63.5t-63.5 -95.5t-24 -116.5z" />
+<glyph unicode="&#xf070;" d="M0 767q0 44 25 83q78 125 178 224.5t216 168t242.5 104t260.5 35.5q53 0 105 -7t103 -17l89 158q8 14 24 18q12 6 29 -2l133 -76q14 -8 19.5 -23.5t-3.5 -29.5l-774 -1383q-6 -14 -22 -18q-4 -2 -11 -2q-6 0 -18 4l-135 76q-14 8 -18.5 23.5t3.5 29.5l66 115 q-145 68 -269 178.5t-218 259.5q-25 37 -25 81zM154 768q82 -131 191.5 -229.5t240.5 -157.5l57 104q-86 63 -138 159.5t-52 213.5q0 78 25.5 148.5t68.5 130.5q-117 -61 -217.5 -153.5t-175.5 -215.5zM614 858q0 -23 16.5 -40t41.5 -17t41 17.5t16 39.5q0 78 53.5 131 t130.5 53q25 0 41.5 17.5t16.5 40.5q0 25 -16.5 41t-41.5 16q-61 0 -116.5 -23.5t-95 -63.5t-63.5 -95.5t-24 -116.5zM928 154l88 159q209 25 382 145t292 310q-109 170 -263 283l76 137q92 -66 172 -150t146 -188q23 -39 22.5 -83t-22.5 -81q-160 -254 -392.5 -392 t-500.5 -140zM1081 430l285 510q4 -20 6 -39.5t2 -42.5q0 -74 -21.5 -140.5t-60.5 -121.5t-93 -98t-118 -68z" />
+<glyph unicode="&#xf071;" horiz-adv-x="1775" d="M0 92q0 20 6 39t17 35l768 1331q16 27 39.5 48.5t56.5 21.5t56.5 -21.5t39.5 -48.5l770 -1331q10 -16 16.5 -34.5t6.5 -39.5q0 -49 -38 -70.5t-81 -21.5h-1538q-43 0 -81 21.5t-38 70.5zM770 1114l12 -633q0 -14 10.5 -24.5t24.5 -10.5h139q14 0 24.5 10.5t10.5 24.5 l15 633q0 14 -10.5 24.5t-24.5 10.5h-166q-16 0 -25.5 -10.5t-9.5 -24.5zM776 168q0 -16 10.5 -25.5t24.5 -9.5h154q35 0 34 35v147q0 16 -9 26.5t-25 10.5h-154q-14 0 -24.5 -10t-10.5 -27v-147z" />
+<glyph unicode="&#xf072;" horiz-adv-x="1597" d="M0 541v4q0 31 23 57l30 29q20 25 56 24q8 0 10 -2l280 -32q39 63 93.5 134.5t125.5 151.5l-583 457q-31 25 -31 59v4q0 31 23 58l57 57q27 23 57 23h13.5t13.5 -4l803 -293l151 149q70 70 161 110t167 40q72 0 109 -37q20 -18 28 -46t8 -63q0 -76 -38.5 -167t-110.5 -160 l-150 -152l293 -803q6 -12 6 -26q0 -33 -24 -58l-58 -57q-23 -25 -57 -25h-4q-35 4 -59 31l-455 586q-82 -72 -153.5 -126t-135.5 -93l35 -281v-10q0 -33 -22 -55l-31 -31q-23 -23 -58 -23h-4q-39 4 -59 31l-205 272l-274 207q-29 25 -31 60z" />
+<glyph unicode="&#xf073;" horiz-adv-x="1566" d="M0 117v1147q0 47 35 81.5t82 34.5h39v13q0 31 10 62.5t32.5 56t59.5 40t90 15.5t90 -15.5t59.5 -40t33 -56.5t10.5 -62v-13h49v13q0 31 10 62.5t32.5 56t59.5 40t90 15.5t90 -15.5t60.5 -40t34 -56.5t10.5 -62v-13h49v13q0 31 10.5 62.5t33 56t59 40t90.5 15.5 q53 0 90 -15.5t59.5 -40t32.5 -56.5t10 -62v-13h39q47 0 82 -34.5t35 -81.5v-1147q0 -47 -35 -82t-82 -35h-1333q-47 0 -82 35t-35 82zM158 158h282v250h-282v-250zM158 446h282v252h-282v-252zM158 737h282v252h-282v-252zM272 1165q0 -57 76 -57t76 57v228q0 57 -76 57 t-76 -57v-228zM479 158h285v250h-285v-250zM479 446h285v252h-285v-252zM479 737h285v252h-285v-252zM709 1165q0 -31 16 -44t57 -13t58.5 13.5t17.5 43.5v228q0 29 -17.5 43t-58.5 14t-57 -14.5t-16 -42.5v-228zM803 158h284v250h-284v-250zM803 446h284v252h-284v-252z M803 737h284v252h-284v-252zM1126 158h283v250h-283v-250zM1126 446h283v252h-283v-252zM1126 737h283v252h-283v-252zM1143 1165q0 -57 76 -57t75 57v228q0 57 -75 57q-76 0 -76 -57v-228z" />
+<glyph unicode="&#xf074;" d="M0 252v154q0 16 11.5 27t27.5 11h219q51 0 99.5 31t93.5 83t90 119.5t90 139.5q55 88 114.5 175t127 156t147.5 110.5t180 41.5h203v185q0 41 24.5 49t59.5 -21l334 -278q23 -18 22 -45q0 -29 -22 -47l-334 -277q-35 -29 -59.5 -20.5t-24.5 49.5v174h-203 q-53 0 -100 -31.5t-93 -84t-91.5 -120t-90.5 -139.5q-55 -88 -113.5 -174t-126 -154.5t-148.5 -110.5t-179 -42h-219q-16 0 -27.5 11.5t-11.5 27.5zM0 1108v154q0 39 39 38h219q68 0 127 -20t111.5 -56t97.5 -84t88 -104q-61 -90 -117 -178q-4 -8 -9 -14t-9 -15 q-70 102 -139.5 172t-149.5 70h-219q-16 0 -27.5 10.5t-11.5 26.5zM778 481q29 41 56.5 85t56.5 87q4 10 10 17.5t10 17.5q70 -102 139.5 -170.5t149.5 -68.5h203v190q0 41 24.5 49t59.5 -20l334 -277q23 -18 22 -47q0 -27 -22 -45l-334 -279q-35 -29 -59.5 -20.5 t-24.5 49.5v168h-203q-68 0 -127 20.5t-110.5 56.5t-97.5 84t-87 103z" />
+<glyph unicode="&#xf075;" horiz-adv-x="1916" d="M0 866q0 145 76 272.5t206 222.5t303.5 150.5t372.5 55.5t373 -55.5t304 -150.5t206 -222t76 -273q0 -145 -76 -272t-206 -222.5t-304 -150.5t-373 -55q-92 0 -180 12q-176 -139 -411 -192q-25 -4 -50.5 -8.5t-54.5 -8.5q-16 -2 -27.5 6.5t-15.5 24.5t5 26.5t20 20.5 q23 23 43 44.5t36.5 51t30 69.5t23.5 97q-174 98 -275.5 241.5t-101.5 315.5z" />
+<glyph unicode="&#xf076;" horiz-adv-x="1566" d="M0 621v288q0 16 11.5 27.5t27.5 11.5h391q16 0 28.5 -11t12.5 -28v-288q0 -29 22.5 -60t63.5 -58.5t98.5 -45t128.5 -17.5q70 0 128.5 17.5t99.5 45t63.5 58.5t22.5 60v288q0 39 39 39h391q16 0 27.5 -11t11.5 -28v-288q0 -135 -61.5 -254t-168 -207t-249 -139.5 t-304.5 -51.5q-164 0 -306 51.5t-248.5 139.5t-168 206.5t-61.5 254.5zM0 1106v391q0 16 11.5 27.5t27.5 11.5h391q16 0 28.5 -11.5t12.5 -27.5v-391q0 -16 -12.5 -27.5t-28.5 -11.5h-391q-16 0 -27.5 11.5t-11.5 27.5zM1098 1106v391q0 16 11 27.5t28 11.5h391 q16 0 27.5 -11.5t11.5 -27.5v-391q0 -16 -11.5 -27.5t-27.5 -11.5h-391q-39 0 -39 39z" />
+<glyph unicode="&#xf077;" horiz-adv-x="1536" d="M-1 355.5q-1 37.5 28 66.5l673 674q29 29 68 28.5t68 -28.5l671 -674q29 -29 29 -67t-29 -66l-100 -103q-29 -29 -68 -28.5t-67 28.5l-508 510l-500 -510q-29 -29 -67.5 -28.5t-67.5 28.5l-100 103q-29 29 -30 66.5z" />
+<glyph unicode="&#xf078;" horiz-adv-x="1536" d="M0 918.5q0 37.5 29 66.5l100 102q29 29 68 29t67 -29l508 -509l500 509q29 29 67.5 29t67.5 -29l100 -102q29 -29 30 -66.5t-28 -66.5l-673 -674q-29 -29 -68 -28.5t-68 28.5l-671 674q-29 29 -29 66.5z" />
+<glyph unicode="&#xf079;" horiz-adv-x="1916" d="M2.5 1038.5q-12.5 30.5 28.5 75.5l385 424q25 29 63 29q39 0 64 -29l385 -424q41 -45 28.5 -75.5t-67.5 -30.5h-250v-680h174q6 -10 12 -19.5t17 -19.5l252 -281h-695q-33 0 -56.5 23.5t-23.5 56.5v920h-249q-55 0 -67.5 30.5zM823 1526h695q33 0 56 -22.5t23 -57.5v-918 h250q55 0 67.5 -30.5t-28.5 -75.5l-385 -424q-25 -29 -63 -29q-39 0 -64 29l-385 424q-41 45 -28.5 75.5t67.5 30.5h250v678h-174q-6 10 -12.5 20.5t-14.5 20.5z" />
+<glyph unicode="&#xf07a;" d="M0 1421v76q0 39 39 39h231q16 0 38 -4t36 -8q6 -4 14.5 -14.5t15.5 -23.5t12 -26.5t7 -21.5l27 -125h1347q35 0 58 -27t16 -59l-108 -578q-6 -25 -26.5 -42t-49.5 -17h-1084l35 -168q4 -16 17.5 -26.5t29.5 -10.5h856q16 0 27.5 -11.5t11.5 -27.5v-78q0 -16 -11 -26.5 t-28 -10.5h-163h-652h-104q-16 0 -36.5 3.5t-35.5 9.5q-6 2 -14 13t-15.5 24.5t-12.5 27t-7 21.5l-215 1016q-4 16 -17.5 26t-29.5 10h-170q-39 0 -39 39zM582 115q0 47 33.5 81.5t80.5 34.5q49 0 83 -34.5t34 -81.5t-34 -81t-83 -34q-47 0 -80.5 34t-33.5 81zM1233 115 q0 47 33.5 81.5t81.5 34.5q47 0 80.5 -34.5t33.5 -81.5t-33.5 -81t-80.5 -34t-81 34t-34 81z" />
+<glyph unicode="&#xf07b;" d="M0 115v1306q0 47 34 81t81 34h692q47 0 81 -34t34 -81t33.5 -80.5t80.5 -33.5h693q47 0 80.5 -35t33.5 -82v-1075q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81z" />
+<glyph unicode="&#xf07c;" d="M0 379v1042q0 47 34 81t81 34h692q47 0 81 -34t34 -81t33.5 -80.5t80.5 -33.5h443q47 0 80.5 -35t33.5 -82v-221h-1228q-37 0 -72 -12.5t-65.5 -34t-53 -51t-35.5 -64.5zM43 0l246 760q6 23 30.5 39t47.5 16h1476l-260 -758q-6 -23 -30.5 -40t-47.5 -17h-1462z" />
+<glyph unicode="&#xf07d;" horiz-adv-x="798" d="M2 368.5q10 22.5 57 22.5h203v754h-203q-47 0 -57 22.5t25 57.5l319 319q23 23 53 23q31 0 54 -23l321 -319q33 -35 22.5 -57.5t-57.5 -22.5h-202v-754h202q47 0 57.5 -22.5t-24.5 -57.5l-319 -319q-23 -23 -54 -23t-53 23l-321 319q-33 35 -23 57.5z" />
+<glyph unicode="&#xf07e;" horiz-adv-x="1597" d="M0 729q0 31 23 53l319 322q35 33 57.5 23.5t22.5 -56.5v-205h754v203q0 47 22.5 57.5t56.5 -22.5l320 -322q23 -23 22 -53q0 -31 -22 -53l-320 -322q-35 -33 -57 -22.5t-22 57.5v203h-754v-203q0 -47 -22.5 -57t-57.5 24l-319 320q-23 23 -23 53z" />
+<glyph unicode="&#xf080;" d="M0 115v1306q0 47 35 81t82 34h1612q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1612q-47 0 -82 34t-35 81zM154 154h1536v1228h-1536v-1228zM307 264v363h203v-363h-203zM649 264v776h201v-776h-201zM993 264v592h203v-592h-203zM1333 264v922h203v-922 h-203z" />
+<glyph unicode="&#xf081;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t73 15.5h1153q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1153q-39 0 -73.5 15.5t-60 41t-41 60.5t-15.5 76zM201 559q80 -111 198.5 -169t259.5 -58q96 0 184.5 26.5t160 73.5 t124 112.5t76.5 143.5q82 6 129 57q14 14 4 33q-8 18 -30 15h-4q23 23 30 45q8 20 -8 32q-14 14 -33 2q-8 -4 -29.5 -10t-45.5 -6q-4 0 -7.5 1t-7.5 1q0 2 -1 4t-1 4q-16 61 -57 110.5t-94 72.5q4 4 6 8t6 8q6 16 0 33q-2 6 -12.5 16t-34.5 8q-2 4 -6 8q-12 12 -25 9 q-25 -4 -49 -13l-2 2q-14 8 -31 -2q-59 -37 -98 -100t-68 -135q-35 31 -57 41q-61 35 -129 63.5t-154 61.5q-14 4 -24 -4q-10 -6 -15 -21q-2 -27 8.5 -58.5t38.5 -62.5q-25 -6 -20 -32q12 -68 68 -101l-13 -12q-14 -14 -4 -33q4 -12 26.5 -37.5t65.5 -38.5q-6 -12 -6 -22 t2 -14q6 -33 39 -50q-37 -25 -79 -34t-85 -5.5t-83 20.5t-70 46q-8 8 -19.5 8t-19.5 -8q-23 -18 -4 -39z" />
+<glyph unicode="&#xf082;" horiz-adv-x="1536" d="M2 193v1150q0 39 15.5 75t41 61.5t60.5 41t74 15.5h1153q80 0 136 -56.5t56 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-74 -15.5h-486v643h172q12 0 21.5 8t9.5 21l12 168q0 14 -8 24q-10 10 -23 10h-184v74q0 41 10.5 54.5t53.5 13.5q25 0 55.5 -4t58.5 -11 q6 0 13.5 1.5t11.5 5.5q10 6 14 22l23 162q4 29 -25 35q-90 25 -188 24q-301 0 -301 -293v-84h-103q-33 0 -32 -32v-168q0 -12 9 -21.5t23 -9.5h103v-643h-393q-39 0 -74 15.5t-60.5 41t-41 60.5t-15.5 76z" />
+<glyph unicode="&#xf083;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 160h1536v114h-1536v-114zM154 1145h1536v231h-957l-14 -92h-565v-139zM266 1341h316v93h-316v-93zM557 709q0 -76 28.5 -142.5t78 -116 t116 -78t142.5 -28.5t142 28.5t115.5 78t78 116t28.5 142.5t-28.5 142.5t-78 115.5t-116 77.5t-141.5 28.5q-76 0 -142.5 -28.5t-116 -77.5t-78 -115.5t-28.5 -142.5zM672 709q0 51 19.5 97t53 80t79.5 53t98 19q51 0 97 -19t80 -53t53 -80t19 -97t-19 -97.5t-53 -80 t-80 -53t-97 -19.5t-97.5 19.5t-80 53t-53 79.5t-19.5 98zM743 709q0 -16 12.5 -28.5t28.5 -12.5q18 0 30.5 12.5t12.5 28.5q0 41 28 67.5t67 26.5v2q18 0 30.5 12t12.5 29q0 18 -12.5 30.5t-30.5 12.5q-74 0 -126.5 -53.5t-52.5 -126.5z" />
+<glyph unicode="&#xf084;" horiz-adv-x="1916" d="M0 803.5q-6 111.5 30 230.5t113 228q78 109 179.5 180t209 102t213 17.5t191.5 -74.5q76 -53 121 -134t59 -176.5t-4 -199t-68 -203.5l414 -297l101 139l-105 74q-14 10 -17 27.5t7 32.5l51 69q10 14 26.5 17.5t32.5 -7.5l344 -247q16 -10 18.5 -27.5t-7.5 -32.5l-49 -69 q-10 -14 -27.5 -17.5t-32.5 6.5l-102 76l-101 -139l248 -178q43 -31 52.5 -83t-21.5 -95q-33 -43 -84 -51.5t-94 22.5l-803 573q-78 -80 -170 -130t-186.5 -68.5t-185.5 -2t-167 71.5q-86 61 -133 157.5t-53 208zM230.5 766q7.5 -41 30 -78t58.5 -63q37 -27 79 -36t83 -2 t78 29.5t64 59.5q39 53 41 114.5t-27 114.5q59 -10 116.5 11.5t96.5 74.5q27 37 36 79t2 84t-29.5 79t-59.5 63q-37 27 -79 36t-84 2t-79 -29.5t-63 -59.5q-37 -53 -39 -114.5t26 -114.5q-59 10 -116.5 -12.5t-96.5 -75.5q-27 -37 -36 -79t-1.5 -83z" />
+<glyph unicode="&#xf085;" horiz-adv-x="1916" d="M0 801v180q0 8 22.5 15.5t52 11.5t56.5 7t37 3q12 49 37 88q-23 31 -45.5 61.5t-46.5 59.5l-4 10q0 6 20.5 29.5t47 50t50 47t29.5 20.5q2 0 20.5 -13t41 -30.5t43 -34t24.5 -20.5q43 25 90 37q0 8 3 37t7 57.5t10.5 52t16.5 23.5h178q8 0 15.5 -23.5t11.5 -52t7 -57.5 t5 -37q45 -12 86 -35q31 23 62.5 45.5t60.5 46.5l8 4q4 0 27.5 -21.5t49.5 -47t47.5 -49t21.5 -29.5q0 -4 -13.5 -22.5t-30 -40t-32 -41t-19.5 -25.5q23 -39 39 -92q10 -2 37 -5t55.5 -8.5t51 -11.5t22.5 -14v-178q0 -10 -22.5 -16.5t-51 -11.5t-56.5 -7t-36 -4 q-14 -43 -37 -88q23 -31 44.5 -60.5t48.5 -58.5l2 -10q0 -6 -20.5 -30t-47.5 -50.5t-50.5 -47t-29.5 -20.5q-2 0 -20.5 13.5t-41 31t-42 32.5t-25.5 20q-45 -23 -88 -37q0 -10 -3 -37t-8 -56.5t-12.5 -52t-15.5 -22.5h-178q-8 0 -15.5 22.5t-11.5 52t-7 56t-3 37.5 q-45 12 -88 37q-31 -23 -61.5 -46.5t-59.5 -48.5l-10 -2q-4 0 -27.5 20.5t-49 47t-46 50.5t-20.5 30q0 2 13 20.5t29.5 40t31 41t18.5 25.5q-23 43 -39 94q-10 2 -37 5t-55.5 7t-51 10.5t-22.5 14.5zM420 889q0 -37 14.5 -70t39 -57.5t58 -38.5t70.5 -14t70 14t57.5 38.5 t38.5 57.5t14 70t-14 70.5t-38.5 58t-57.5 39t-70 14.5q-76 0 -129 -53t-53 -129zM1114 373q0 6 13.5 13t31 14.5t33.5 12.5t22 7q4 23 9.5 39t15.5 37q-4 4 -13 17t-18.5 27.5t-16.5 28t-7 17.5t18.5 23.5t43 41t47 40t28.5 24.5l8 4q4 0 16.5 -8.5t25.5 -19.5t25.5 -21.5 t16.5 -14.5q35 12 76 19q2 6 9 21.5t16.5 30.5t17.5 27.5t14 12.5q4 0 34 -7t63.5 -18.5t60.5 -23.5t27 -23q0 -23 -5.5 -47t-9.5 -47q16 -12 28.5 -26.5t22.5 -30.5q25 2 49.5 3t47.5 1q8 0 18 -26.5t17.5 -60.5t12.5 -64.5t5 -39.5q0 -6 -13.5 -13t-29.5 -13t-32.5 -12.5 t-22.5 -8.5q-9 -38 -23 -71q2 -6 11.5 -18.5t18.5 -27t16 -27.5t7 -18q0 -4 -18.5 -23.5t-43 -41t-47 -40.5t-28.5 -26l-8 -4q-4 0 -16.5 8.5t-25.5 19.5t-25.5 21.5t-16.5 14.5q-37 -12 -78 -19q-2 -6 -9 -21.5t-15.5 -30.5t-16.5 -27.5t-14 -12.5t-35 7.5t-62.5 18.5 t-60 23.5t-26.5 22.5q0 23 5 47.5t9 46.5q-16 12 -28.5 26.5t-22.5 30.5q-23 -2 -45.5 -3t-44.5 -1h-14.5t-8.5 11q-2 8 -8 35.5t-13.5 58t-12.5 55.5t-5 29zM1192 1264q0 6 12.5 12t29.5 10t33.5 6t22.5 4q10 33 31 64q-2 4 -8 17.5t-12.5 27.5t-11.5 25.5t-5 15.5 q0 6 21.5 22.5t49 35t51.5 32.5t28 14t13 -9t20.5 -21.5t20.5 -23.5t13 -15q14 4 28.5 6t29.5 0h14q2 4 11 16.5t18.5 25.5t17.5 23.5t12 10.5t30 -11.5t55.5 -26t53 -28.5t23.5 -20q0 -4 -4 -15.5t-8 -26t-8.5 -27.5t-6.5 -17q20 -25 39 -60q51 -4 74 -7t29 -18.5t5 -52 t3 -106.5q0 -6 -12.5 -12.5t-28.5 -10.5t-32.5 -6t-22.5 -4q-13 -36 -31 -63q2 -4 8 -16.5t13.5 -27t12.5 -26.5t5 -14q0 -6 -22.5 -23.5t-50 -36t-51.5 -33t-26 -14.5q-4 0 -14 9.5t-21.5 21.5t-20.5 23.5t-13 15.5q-14 -4 -28.5 -6t-29.5 0h-14q-4 -4 -12 -16.5t-17.5 -26 t-18.5 -23.5t-13 -10t-30 11t-54.5 25.5t-52 29t-23.5 20.5q0 2 3 14.5t8 26.5t9 27.5t6 17.5q-23 23 -38 59q-53 2 -75 5t-29 18.5t-5 52.5t-4 109zM1397 367q0 -49 34.5 -85t84.5 -36q49 0 84.5 34.5t35.5 86.5q0 49 -34.5 83.5t-85.5 34.5q-49 0 -84 -34.5t-35 -83.5z M1446 1206q0 -47 31.5 -78.5t76.5 -31.5q47 0 79 31.5t32 76.5q0 47 -31.5 79t-77.5 32q-47 0 -78.5 -32t-31.5 -77z" />
+<glyph unicode="&#xf086;" horiz-adv-x="1916" d="M0 997q0 119 61.5 222.5t167 180.5t246.5 122t303 45t303.5 -45t247 -122t166.5 -180.5t61 -222.5q0 -117 -61 -221t-166.5 -181t-247 -122t-303.5 -45q-37 0 -73.5 3t-71.5 7q-147 -113 -336 -155q-20 -4 -40.5 -7.5t-43.5 -7.5q-12 -2 -21.5 6.5t-13.5 18.5v2 q-4 12 3 19.5t18 17.5q18 18 34.5 36.5t29.5 42t24.5 55.5t19.5 79q-141 78 -224 195.5t-83 256.5zM649 258q6 4 13.5 8t13.5 8q51 -6 102 -6q197 0 369 56.5t298 155t198.5 231.5t72.5 286q0 41 -6 84q96 -78 151.5 -175t55.5 -208q0 -139 -83 -256.5t-224 -195.5 q8 -47 19 -79t25.5 -55.5t30 -42t33.5 -36.5q10 -10 17.5 -18.5t3.5 -18.5v-2q-2 -12 -12.5 -19.5t-22.5 -5.5q-23 4 -43.5 7.5t-40.5 7.5q-96 20 -180 60t-156 95q-35 -4 -71.5 -7t-73.5 -3q-141 0 -265 35t-225 94z" />
+<glyph unicode="&#xf087;" horiz-adv-x="1597" d="M0 193v643q0 49 35 83.5t84 34.5h348q27 14 43 30.5t35 39.5q16 20 32.5 38.5t34.5 37.5q33 35 76 68.5t66 74.5q16 29 23 64.5t12.5 71.5t12.5 70t23.5 60.5t47 42t81.5 15.5q61 0 111.5 -25.5t85.5 -68.5t54.5 -98.5t19.5 -112.5q0 -59 -17.5 -112.5t-42.5 -107.5 q35 2 70 4.5t70 2.5q55 0 107 -10.5t93 -35t66.5 -67.5t25.5 -109q0 -29 -5 -57t-15 -57q18 -43 18 -90q0 -78 -41 -142q10 -59 -7 -118.5t-58 -104.5q-4 -84 -45 -139.5t-102.5 -89t-135 -47t-143.5 -13.5q-72 0 -144.5 10.5t-142.5 28.5q-70 20 -139.5 43t-142.5 23h-375 q-49 0 -84 34.5t-35 84.5zM236 276q0 -35 22 -57t57 -22q33 0 56.5 22.5t23.5 56.5q0 33 -23.5 56.5t-56.5 23.5q-35 0 -57 -23.5t-22 -56.5zM492 193q70 0 136 -16.5t133.5 -35t141.5 -35t160 -16.5q45 0 98 6t99.5 26.5t78 56.5t31.5 95q0 10 -1 18.5t-3 18.5 q35 16 53.5 53t18.5 74q0 39 -21 68q60 49 60 123q0 23 -12.5 43t-26.5 35q16 29 28.5 57.5t12.5 62.5q0 35 -17.5 55.5t-43 31t-56.5 12.5t-57 2q-45 0 -90.5 -3t-90.5 -3q-31 0 -61.5 3t-58.5 15q0 41 16 78t35.5 74.5t35 78.5t15.5 91q0 33 -10.5 65.5t-29.5 59t-47 44 t-65 17.5h-11t-11 -2q-8 -4 -9 -8t-3 -13q-12 -59 -22.5 -123.5t-39.5 -117.5q-29 -51 -74 -88t-86 -78q-29 -31 -49 -56.5t-41.5 -48t-48.5 -42t-65 -35.5h-2v-643z" />
+<glyph unicode="&#xf088;" horiz-adv-x="1597" d="M0 309q0 29 5 57.5t15 57.5q-18 43 -18 90q0 78 41 141q-10 59 7.5 119t58.5 105q4 84 45 139t102 89t135 47t144 13q72 0 144.5 -10t141.5 -29q70 -20 139.5 -42.5t143.5 -22.5h375q49 0 83.5 -35t34.5 -84v-643q0 -49 -34.5 -84t-83.5 -35h-349q-27 -14 -43 -30.5 t-34 -38.5q-16 -20 -32.5 -39t-35.5 -37q-33 -35 -76 -69t-65 -74q-25 -43 -31 -99.5t-18.5 -106.5t-44 -84t-107.5 -34q-61 0 -111.5 25.5t-85 68.5t-54 98.5t-19.5 112.5q0 59 17.5 112.5t41.5 106.5q-35 -2 -69.5 -4t-69.5 -2q-55 0 -107.5 10.5t-93.5 35t-66.5 67.5 t-25.5 108zM119 309q0 -35 17.5 -55.5t43 -30.5t56 -12t57.5 -2q47 0 91 3t89 3q31 0 61.5 -3t59.5 -15q0 -41 -16.5 -78t-36 -75t-34.5 -79t-15 -90q0 -33 10 -65.5t29.5 -59t47 -43t64.5 -16.5q4 0 11.5 -1t11.5 1q8 4 9 8l3 12q12 59 22.5 124t38.5 118q29 51 74 88 t86 78q29 31 49.5 56.5t42 48t47 42t66.5 35.5h2v643q-72 0 -137.5 16.5t-133 36t-141 36t-159.5 16.5q-45 0 -98.5 -7.5t-99.5 -27t-78 -56t-32 -96.5q0 -10 1 -18t3 -19q-35 -16 -53 -53t-18 -74q0 -39 20 -67q-59 -49 -59 -123q0 -23 12 -43.5t27 -34.5 q-16 -29 -28.5 -57.5t-12.5 -63.5zM1202 860q0 -33 23.5 -56.5t56.5 -23.5q35 0 57.5 23.5t22.5 56.5q0 35 -22.5 57.5t-57.5 22.5q-33 0 -56.5 -22.5t-23.5 -57.5z" />
+<glyph unicode="&#xf089;" horiz-adv-x="837" d="M1 959.5q9 27.5 54 33.5l506 74l227 459q23 41 50 41v-1348l-453 -237q-41 -23 -64.5 -6.5t-15.5 63.5l86 504l-364 356q-35 33 -26 60.5z" />
+<glyph unicode="&#xf08a;" horiz-adv-x="1802" d="M0 1073q0 137 43 231.5t112.5 153t156.5 84t177 25.5q63 0 125 -21.5t115 -53.5t97 -70t75 -68q31 31 76 68.5t98 69.5t113.5 53.5t126.5 21.5q88 0 175 -25.5t156.5 -84t112.5 -153t43 -231.5q0 -94 -34.5 -177t-76.5 -146.5t-79 -102.5t-39 -43l-615 -612 q-26 -23 -57 -23q-33 0 -55 23l-617 614q-4 2 -39.5 41t-77.5 102.5t-77 146.5t-35 177zM160 1073q0 -68 27.5 -131t61.5 -112.5t63 -79.5l28 -29l561 -559l561 559l29 29q29 30 62.5 79.5t61 113t27.5 130.5q0 104 -29.5 169t-77.5 101.5t-106.5 50t-113.5 13.5 q-53 0 -107.5 -25.5t-102.5 -61.5t-86 -74t-56 -60q-25 -31 -62 -31t-61 31q-18 23 -56.5 60.5t-86.5 73.5t-102.5 61.5t-105.5 25.5q-57 0 -115.5 -13.5t-106.5 -50t-77.5 -101t-29.5 -169.5z" />
+<glyph unicode="&#xf08b;" horiz-adv-x="1689" d="M0 307v922q0 63 24.5 118.5t66.5 97.5t97.5 66.5t118.5 24.5h461v-193h-461q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h461v-193h-461q-63 0 -118.5 24.5t-97.5 66.5t-66.5 97.5t-24.5 118.5zM508 584v368q0 33 22.5 54.5t55.5 21.5h428v293 q0 41 39 57q39 14 65 -14l553 -553q18 -18 18.5 -44t-18.5 -42l-553 -553q-18 -18 -43 -18q-10 0 -22 4q-39 16 -39 57v291h-428q-33 0 -55.5 22.5t-22.5 55.5z" />
+<glyph unicode="&#xf08c;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1150q-80 0 -136.5 56.5t-56.5 136.5zM207 1192q0 -57 40 -97t95 -40q57 0 97 40t40 97q0 55 -40 95t-97 40q-55 0 -95 -40 t-40 -95zM213 240q0 -10 9 -19.5t20 -9.5h200q12 0 20.5 9t8.5 20v706q0 29 -29 29h-200q-10 0 -19.5 -8.5t-9.5 -20.5v-706zM580 240q0 -10 9 -19.5t19 -9.5h201q12 0 20.5 9t8.5 20v383q0 68 26.5 113.5t102.5 45.5q59 0 79.5 -28.5t20.5 -81.5v-432q0 -10 8 -19.5 t21 -9.5h204q10 0 19.5 9t9.5 20v477q0 141 -81 208.5t-216 67.5q-55 0 -107.5 -15t-93.5 -56q0 16 -3 34.5t-25 18.5h-195q-10 0 -19 -8.5t-9 -20.5v-706z" />
+<glyph unicode="&#xf08d;" horiz-adv-x="1916" d="M2 950q8 82 45 172t100 176t139 147.5t152 92.5t145.5 30t121.5 -40q53 -41 73.5 -107.5t12.5 -148.5l301 -225q111 63 215 73t180 -47q55 -41 80.5 -108.5t23.5 -150.5t-30.5 -177t-83.5 -188l428 -410q25 -25 4 -53q-12 -16 -33 -17q-10 0 -18 6l-517 293 q-74 -80 -155.5 -135t-161.5 -80.5t-151.5 -19.5t-127.5 47q-76 55 -95 158.5t9 228.5l-303 223q-76 -33 -145.5 -32t-122.5 40q-51 39 -72.5 104.5t-13.5 147.5zM171 858.5q3 -16.5 15 -27.5q21 -14 50 -14q31 0 65.5 17.5t71.5 46t72.5 66.5t66.5 79q10 14 7 30.5 t-15 26.5q-14 10 -30.5 8.5t-27.5 -16.5q-78 -104 -138 -143t-72 -35q-14 10 -31 7t-27 -15q-10 -14 -7 -30.5zM465 754l364 -271q8 -8 23 -8q20 0 33 17q10 14 8 29.5t-16 25.5l-347 258q-16 -14 -32.5 -27.5t-32.5 -23.5zM829.5 239.5q1.5 -16.5 16.5 -26.5q29 -23 69 -23 q41 0 88.5 21.5t95.5 57.5t94 84.5t87 101.5q10 12 8 28.5t-16 26.5q-12 10 -28.5 8t-26.5 -16q-51 -68 -102.5 -116t-95.5 -75.5t-78 -36t-48 4.5q-14 10 -29.5 7t-25.5 -18q-10 -12 -8.5 -28.5z" />
+<glyph unicode="&#xf08e;" d="M0 307v922q0 63 24.5 119.5t65.5 97.5t97.5 65.5t119.5 24.5h582q-2 -14 -4 -27.5t-2 -29.5v-88q0 -23 6 -48h-582q-47 0 -80.5 -33.5t-33.5 -80.5v-922q0 -47 33.5 -80.5t80.5 -33.5h1075q47 0 81 33.5t34 80.5v340q41 -31 90 -49t103 -20v-271q0 -63 -25 -118.5 t-67 -97.5t-97 -66.5t-119 -24.5h-1075q-63 0 -119.5 24.5t-97.5 66.5t-65.5 97.5t-24.5 118.5zM692.5 522q-0.5 25 16.5 41l770 772h-269q-25 0 -41 16.5t-16 41.5v86q-2 23 15.5 40t41.5 17h576q23 0 40 -17.5t17 -39.5v-86v-490q0 -25 -17.5 -42t-39.5 -15h-86 q-25 0 -41.5 16.5t-16.5 40.5v268l-772 -770q-16 -16 -40.5 -16t-41.5 16l-79 80q-16 16 -16.5 41z" />
+<glyph unicode="&#xf090;" horiz-adv-x="1689" d="M0 584v368q0 33 22.5 54.5t55.5 21.5h428v293q0 41 37 57q39 14 67 -14l553 -553q16 -18 16.5 -44t-16.5 -42l-553 -553q-18 -18 -43 -18q-8 0 -24 4q-37 16 -37 57v291h-428q-33 0 -55.5 22.5t-22.5 55.5zM922 0v193h460q47 0 81 33.5t34 80.5v922q0 47 -33.5 80.5 t-81.5 33.5h-460v193h460q63 0 118.5 -24.5t97.5 -65.5t67 -97.5t25 -119.5v-922q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5h-460z" />
+<glyph unicode="&#xf091;" horiz-adv-x="1689" d="M0 1042v187q0 33 22.5 54.5t55.5 21.5h323q-2 12 -2 25v24v4q0 53 4.5 88t15.5 54.5t31.5 27.5t55.5 8h678q33 0 54.5 -8t32.5 -27.5t15 -54.5t4 -88v-25.5t-2 -27.5h324q33 0 55.5 -21.5t22.5 -54.5v-187q0 -63 -45.5 -130.5t-122 -128t-180 -106.5t-222.5 -65 q-51 -10 -91 -41.5t-40 -70.5q0 -35 17.5 -51.5t39 -31t40 -31.5t22.5 -52q4 -23 -2 -47q-4 -14 23.5 -23.5t67.5 -18.5t82 -22.5t64 -34.5q12 -10 19.5 -39.5t9.5 -64.5q2 -33 -6 -58.5t-29 -25.5h-985q-20 0 -28.5 25.5t-6.5 58.5q2 35 9.5 64.5t19.5 39.5q23 20 64 34 t80.5 23t68.5 18t25 24q-4 14 -4 25.5v21.5q2 35 21.5 52t42 31.5t39.5 31t17 51.5q0 39 -39.5 70.5t-93.5 41.5q-117 20 -220 66.5t-180 106t-122 127t-45 130.5zM154 1042q0 -20 23.5 -54t67.5 -70.5t106.5 -71.5t140.5 -60q-25 80 -44.5 175.5t-33.5 189.5h-260v-109z M1198 786q78 25 140.5 60t106.5 71.5t67.5 70.5t23.5 54v109h-262q-12 -94 -31.5 -189.5t-44.5 -175.5z" />
+<glyph unicode="&#xf092;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-337v25q0 39 2 97t-3.5 115.5t-24.5 104.5t-65 66q188 20 290 110t102 287q0 66 -22.5 128t-67.5 114q6 23 8 45t2 45 q0 41 -9.5 91t-31.5 85h-12q-43 2 -79 -8.5t-68 -27.5t-62.5 -37.5t-65.5 -39.5q-33 4 -65.5 6t-65.5 2t-65.5 -2t-65.5 -6q-35 18 -65.5 39t-62.5 38t-67.5 27.5t-79.5 8.5h-12q-23 -35 -32 -85t-9 -91q0 -23 2 -45.5t8 -44.5q-45 -51 -66.5 -114t-21.5 -128 q0 -193 95.5 -283t281.5 -112q-39 -16 -59.5 -50t-32.5 -75q-27 -8 -49.5 -15.5t-50.5 -7.5q-55 0 -88 28.5t-59.5 62.5t-56.5 62.5t-79 28.5q-4 0 -20.5 -2t-16.5 -12q0 -23 19.5 -32t31.5 -19q39 -31 56.5 -71t39 -76.5t62.5 -62.5t127 -26q35 0 80 11q0 -10 -1 -18.5 t-1 -16.5q0 -29 2 -59.5t-2 -59.5h-317q-80 0 -136.5 56.5t-56.5 136.5z" />
+<glyph unicode="&#xf093;" d="M0 39v614q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-346h1229v346q0 16 11.5 27.5t27.5 11.5h229q16 0 27.5 -11t11.5 -28v-614q0 -39 -39 -39h-1765q-39 0 -39 39zM346 969.5q-6 15.5 16 38.5l504 505q23 23 55.5 23t55.5 -23l506 -505q23 -23 15.5 -38.5 t-38.5 -15.5h-307v-499q0 -33 -22.5 -55.5t-55.5 -22.5h-307q-33 0 -54.5 22.5t-21.5 55.5v499h-307q-33 0 -39 15.5z" />
+<glyph unicode="&#xf094;" horiz-adv-x="1609" d="M2 514q-2 35 1 68.5t7 74.5q4 35 7 72t10 66q14 66 30.5 128t44.5 117q20 41 45 81t54 79q10 14 21 24.5t24 20.5q23 23 45 45.5t49 42.5t57.5 36.5t65.5 33.5q33 16 67.5 29.5t71.5 27.5q70 29 156 51l2 2q45 12 85 17.5t79 5.5q59 0 112.5 -9t106.5 -20q41 -8 85 -15 t93 -7h2q29 0 62.5 5t66.5 5q25 0 45.5 -6t32.5 -25q23 -31 26 -71.5t-2 -75.5q-4 -35 -8 -71t2 -72q4 -23 11.5 -39.5t15.5 -36.5q8 -18 11 -40t7 -42q18 -104 15.5 -195.5t-23 -170.5t-56.5 -148.5t-81 -132.5q-37 -49 -79 -97.5t-92 -91.5t-110.5 -77.5t-134.5 -59.5 q-76 -27 -158.5 -34t-158.5 -11h-31q-104 0 -194.5 16.5t-192.5 16.5h-4q-35 0 -77 -10.5t-83 -12.5h-2q-37 0 -65.5 17.5t-42.5 42.5q-20 35 -17.5 72.5t12.5 68.5t10.5 66.5t-5 75.5t-12.5 81t-9 82z" />
+<glyph unicode="&#xf095;" horiz-adv-x="1597" d="M0 1169q0 55 14.5 114.5t43 114t68.5 98.5t93 69q12 -2 26.5 0t26.5 2q10 0 30 -1l40 -2t38.5 -4.5t27.5 -7.5q8 -6 15 -18t12 -26.5t9.5 -30t8.5 -25.5q6 -18 23.5 -65.5t35.5 -97.5t32.5 -93t14.5 -53q0 -37 -24.5 -68t-54 -57.5t-54.5 -50t-25 -45.5q0 -20 16.5 -49 t26.5 -46q84 -145 188.5 -248.5t252.5 -187.5q18 -10 45.5 -27.5t50.5 -17.5t52.5 32t60 70.5t62 70.5t58.5 32q10 0 51.5 -22.5t89.5 -50t93 -55.5t61 -36q16 -10 46 -25.5t40 -35.5q2 -6 2 -23q0 -16 -3 -36.5t-8 -43t-12 -43t-13 -35.5q-18 -39 -59.5 -71.5t-92.5 -55 t-104.5 -36t-92.5 -13.5q-80 0 -153.5 25.5t-145.5 54.5q-123 45 -232.5 118t-203.5 164t-175 196.5t-144 215.5q-25 41 -52.5 95.5t-51 112t-39 113.5t-15.5 105z" />
+<glyph unicode="&#xf096;" d="M0 307v922q0 63 24.5 118.5t66.5 97.5t97.5 66.5t118.5 24.5h1075q63 0 118.5 -24.5t97.5 -66.5t67 -97.5t25 -118.5v-922q0 -63 -25 -118.5t-67 -97.5t-97 -66.5t-119 -24.5h-1075q-63 0 -118.5 24.5t-97.5 66.5t-66.5 97.5t-24.5 118.5zM193 307q0 -47 33.5 -80.5 t80.5 -33.5h1075q47 0 81 33.5t34 80.5v922q0 47 -34 80.5t-81 33.5h-1075q-47 0 -80.5 -33.5t-33.5 -80.5v-922z" />
+<glyph unicode="&#xf097;" horiz-adv-x="1253" d="M0 84v1337q0 47 34 81t81 34h1024q47 0 80.5 -34t33.5 -81v-1337q0 -47 -33.5 -81t-80.5 -34t-80 33l-432 432l-432 -432q-33 -33 -80 -33t-81 34t-34 81zM158 186l469 471l469 -471v1194h-938v-1194z" />
+<glyph unicode="&#xf098;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1150q-80 0 -136.5 56.5t-56.5 136.5zM193 1040q2 -35 15 -76.5t30 -78.5q16 -37 33.5 -72t33.5 -63q74 -129 176.5 -241 t225.5 -190q31 -18 67.5 -36.5t75.5 -32.5q41 -16 83 -31.5t81 -21.5q63 -10 112.5 2t90.5 34q27 12 57.5 33.5t44.5 52.5q4 8 9 27t9 38t6.5 37.5t-2.5 29.5q-4 12 -24.5 22t-36.5 21q-43 25 -71.5 41t-67.5 38q-16 10 -36 23.5t-38 13.5q-23 0 -46.5 -27.5t-37.5 -43.5 q-12 -14 -36.5 -43t-47.5 -31q-14 -2 -32.5 10t-37.5 23q-106 59 -182 136t-135 177q-10 16 -21.5 37.5t-7.5 38.5q2 18 24.5 33.5t35.5 29.5q14 16 31.5 37t19.5 43q4 16 -5 38t-16 42q-16 43 -28.5 76t-26.5 76q-6 16 -12 40.5t-21 30.5q-8 4 -26.5 7t-39 4.5t-37.5 0 t-24 -1.5h-8q-33 -16 -62.5 -45.5t-51 -69.5t-34 -88t-9.5 -100z" />
+<glyph unicode="&#xf099;" d="M0 399q0 20 13.5 33.5t33.5 13.5q14 0 31 -12q123 -109 287 -108q59 0 117.5 15t107.5 48q-29 16 -47.5 42t-18.5 58q0 23 8 39q-18 6 -44.5 20.5t-51 34t-41 43t-16.5 46.5q0 16 10 28.5t25 22.5q-41 25 -76 74t-35 98q0 33 33 43q-35 35 -55.5 81t-20.5 95 q0 23 9.5 41.5t37.5 18.5q18 0 84 -27t142.5 -60.5t146.5 -67.5t98 -48q25 -14 47.5 -31.5t44.5 -36.5q20 51 47 106.5t60 106.5t73 96t89 74q8 6 24 6q18 0 27 -8q16 6 41.5 13.5t42.5 7.5q29 0 43 -27q31 0 56.5 -15.5t25.5 -50.5q0 -31 -27 -53q96 -43 159.5 -125 t90.5 -182q6 -2 23 -2q47 0 88 16.5t57 16.5q18 0 31.5 -14.5t13.5 -32.5q0 -23 -19.5 -48.5t-33.5 -39.5q23 4 42 -7.5t19 -38.5q0 -29 -26.5 -50t-61.5 -37.5t-72.5 -25.5t-58.5 -11q-43 -139 -133 -246t-210 -178.5t-258 -109.5t-275 -38q-219 0 -415 93.5t-325 273.5 q-8 16 -8 26z" />
+<glyph unicode="&#xf09a;" horiz-adv-x="790" d="M0 862v203q0 16 11.5 28.5t27.5 12.5h125v102q0 358 366 359q123 0 232 -31q33 -10 29 -43l-27 -199q-4 -16 -16 -26q-16 -10 -31 -6q-35 8 -72.5 12t-66.5 4q-53 0 -65.5 -16.5t-12.5 -67.5v-88h223q14 0 29 -14q10 -10 10 -29l-17 -205q0 -16 -11 -25.5t-27 -9.5h-207 v-784q0 -16 -11.5 -27.5t-27.5 -11.5h-258q-16 0 -27.5 11.5t-11.5 27.5v784h-125q-16 0 -27.5 11.5t-11.5 27.5z" />
+<glyph unicode="&#xf09b;" horiz-adv-x="1847" d="M0 743q0 115 37 222.5t113 193.5l-3 4l3 2q-16 39 -21.5 81t-5.5 85q0 25 2 56.5t8 65.5t15.5 63.5t23.5 50.5h8q61 0 110.5 -12.5t94.5 -35t87 -52t91 -60.5q86 25 178.5 33t182.5 8t182 -8t180 -33q47 31 90 60.5t87 52t93.5 35t110.5 12.5h10q12 -20 21.5 -50 t15.5 -64t9 -65.5t3 -56.5q0 -43 -6 -85t-20 -81v-2l-2 -4q76 -86 112.5 -193.5t36.5 -222.5q0 -233 -66.5 -383.5t-188.5 -236.5t-292 -120t-376 -34q-207 0 -378 34t-292 120t-187.5 236.5t-66.5 383.5zM250 483q0 -145 64.5 -224t165 -116t219 -43t227.5 -6q74 0 152.5 2 t153.5 12.5t142.5 34t117.5 67.5t80 111.5t30 165.5q0 84 -27 147.5t-75 106.5t-114.5 64.5t-146.5 21.5q-78 0 -156.5 -7t-156.5 -7t-157 7t-157 7q-162 0 -262 -87t-100 -257zM494 524q0 66 26.5 113t65.5 47t66.5 -47t27.5 -113t-27.5 -112.5t-66.5 -46.5t-65.5 46.5 t-26.5 112.5zM795 258q-6 16 12 25q16 6 24 -13q27 -76 93 -75q31 0 56.5 20.5t35.5 54.5q8 20 26 13q16 -6 13 -25q-16 -47 -51 -75.5t-80 -28.5q-43 0 -78 28.5t-51 75.5zM864 369q0 -12 17.5 -21.5t42.5 -9.5t42 9.5t17 21.5t-17.5 21t-41.5 9q-25 0 -42.5 -9t-17.5 -21z M1167 524q0 -66 28 -112.5t67 -46.5t65.5 46.5t26.5 112.5t-27 113t-65 47q-39 0 -67 -47t-28 -113z" />
+<glyph unicode="&#xf09c;" horiz-adv-x="1880" d="M0 117v626q0 49 35 84t82 35h665v156q0 113 43 213t118 175t175 118t213 43t213.5 -43t175 -118t117.5 -175.5t43 -212.5v-152q0 -33 -22.5 -55.5t-55.5 -22.5h-80q-33 0 -55 23t-22 55v152q0 66 -25 123t-67 99t-99 66.5t-123 24.5t-122 -24.5t-99 -66.5t-67.5 -99.5 t-24.5 -122.5v-156h119q47 0 81.5 -34.5t34.5 -84.5v-626q0 -47 -34.5 -82t-81.5 -35h-1020q-47 0 -82 35t-35 82zM494 164h266l-66 285q29 18 47.5 48.5t18.5 65.5q0 55 -39 95t-94 40t-94 -40t-39 -95q0 -35 18 -65.5t47 -46.5z" />
+<glyph unicode="&#xf09d;" d="M0 154v1228q0 63 45 108.5t109 45.5h1536q63 0 108 -45t45 -109v-1228q0 -63 -45 -108.5t-108 -45.5h-1536q-63 0 -108.5 45t-45.5 109zM154 154h1536v575h-1536v-575zM154 1114h1536v268h-1536v-268zM260 250v115h307v-115h-307zM676 250v115h446v-115h-446z" />
+<glyph unicode="&#xf09e;" horiz-adv-x="1566" d="M0 236q0 49 18.5 91t50 74.5t75 51t92.5 18.5t91 -18.5t74.5 -51t51 -74.5t18.5 -91t-18.5 -92.5t-51 -75t-74.5 -50t-91 -18.5t-92.5 18.5t-75 50t-50 74.5t-18.5 93zM0 819v158q0 35 25 57q23 23 53 23q2 0 3 -1t3 -1q193 -14 362.5 -95t301 -212.5t212 -301.5 t95.5 -362q4 -35 -21 -59q-23 -25 -57 -25h-158q-29 0 -51.5 20.5t-26.5 51.5q-12 133 -68.5 249.5t-145.5 205.5t-205.5 145.5t-249.5 68.5q-31 4 -51.5 27t-20.5 51zM0 1331v158q0 33 25 55q23 23 53 23h4q301 -16 565 -137t463 -320t319.5 -463t137.5 -565q4 -31 -23 -57 q-23 -25 -55 -25h-158q-31 0 -53.5 21.5t-24.5 52.5q-14 238 -110 446.5t-255 367.5t-368 255t-446 110q-31 2 -52.5 24.5t-21.5 53.5z" />
+<glyph unicode="&#xf0a0;" d="M0 193v382q0 23 6 45.5t12 45.5l238 727q20 63 75.5 103t121.5 40h938q66 0 121 -40t75 -103l238 -727q6 -23 12 -45.5t6 -45.5v-382q0 -41 -15.5 -76t-41 -60.5t-61 -41t-74.5 -15.5h-1458q-80 0 -136.5 56.5t-56.5 136.5zM154 193q0 -16 11 -27.5t28 -11.5h1458 q16 0 27.5 11t11.5 28v382q0 16 -11.5 27.5t-27.5 11.5h-1458q-16 0 -27.5 -11t-11.5 -28v-382zM213 768h1417l-188 578q-4 16 -19.5 26t-31.5 10h-938q-16 0 -31.5 -10t-20.5 -26zM1057 385q0 39 27.5 66.5t68.5 27.5q39 0 66.5 -27.5t27.5 -66.5q0 -41 -27.5 -68.5 t-66.5 -27.5q-41 0 -68.5 27.5t-27.5 68.5zM1364 385q0 39 27.5 66.5t68.5 27.5q39 0 66.5 -27.5t27.5 -66.5q0 -41 -27.5 -68.5t-66.5 -27.5q-41 0 -68.5 27.5t-27.5 68.5z" />
+<glyph unicode="&#xf0a1;" d="M0 754v229q0 63 45 108.5t109 45.5h499q115 0 245 33.5t255 90t235.5 128t186.5 147.5q63 0 108.5 -45t45.5 -109v-368q49 -12 81.5 -52.5t32.5 -93.5t-32.5 -93t-81.5 -52v-369q0 -63 -45.5 -108t-108.5 -45q-68 68 -164 132t-206.5 117.5t-227.5 91.5t-227 50 q-43 -12 -70 -40t-37 -62.5t-2 -70.5t37 -65q-25 -41 -23 -75.5t20.5 -66.5t49.5 -61.5t66 -58.5q-20 -43 -69.5 -65.5t-106 -25.5t-110.5 10.5t-85 43.5q-18 61 -40 125t-36 130.5t-14 138t24 151.5h-200q-63 0 -108.5 45t-45.5 109zM807 741q102 -16 206.5 -49t205 -78 t191.5 -99t165 -112v930q-76 -59 -166 -113.5t-190.5 -98.5t-205 -77.5t-206.5 -48.5v-254z" />
+<glyph unicode="&#xf0a2;" horiz-adv-x="1759" d="M0 317q104 78 172 172.5t109 201t60 224t28 240.5q6 84 56 159t126 131t163 89t167 33q74 0 163 -33t165.5 -88t129 -129t52.5 -158q6 -121 27.5 -239.5t63.5 -227t109.5 -204t167.5 -171.5q-4 -70 -56 -114.5t-120 -44.5h-469q-18 -82 -82.5 -135.5t-150.5 -53.5 t-151.5 53.5t-84.5 135.5h-469q-68 0 -120 45t-56 114zM238 317h1284q-78 86 -129.5 183.5t-84 202t-50 214t-25.5 222.5q-4 55 -41 104t-89 86t-111.5 57.5t-110.5 20.5q-47 0 -107.5 -21.5t-114 -56.5t-91.5 -83t-40 -99q-6 -111 -23.5 -222.5t-51 -218t-87 -205 t-128.5 -184.5zM713 209q0 -70 49 -119t119 -49q18 0 18 20t-18 21q-53 0 -91 37t-38 90q0 20 -19 20q-20 0 -20 -20z" />
+<glyph unicode="&#xf0a3;" horiz-adv-x="1597" d="M0 573q0 33 23 56l143 139l-143 139q-23 23 -23 56q0 25 16.5 45t40.5 26l195 49q-6 18 -15.5 48t-18.5 61t-16 59.5t-7 46.5q0 31 21.5 52.5t51.5 21.5q18 0 47 -7t60 -16.5t60.5 -18.5t47.5 -15l49 194q6 25 27 41.5t45 16.5q35 0 53 -23l142 -143l139 143q23 23 53 23 q27 0 47.5 -15.5t26.5 -42.5l49 -194q18 6 48 15t60.5 18.5t59.5 16.5t47 7q29 0 51.5 -21.5t22.5 -52.5q0 -18 -7 -46.5t-16.5 -59.5t-18.5 -60.5t-15 -48.5l194 -49q25 -6 41 -26.5t16 -44.5q0 -33 -22 -56l-145 -139l145 -139q23 -23 22 -56q0 -25 -16 -45t-41 -26 l-194 -49q6 -18 15 -48t18.5 -61t16.5 -59.5t7 -46.5q0 -29 -21.5 -51.5t-52.5 -22.5q-18 0 -47 7t-59.5 16.5t-60 18.5t-48.5 15l-49 -194q-6 -25 -26.5 -41.5t-45.5 -16.5q-33 0 -55 23l-139 143l-142 -143q-18 -23 -53 -23q-25 0 -45 16.5t-27 41.5l-49 194 q-18 -6 -47.5 -15t-60.5 -18.5t-59.5 -16.5t-47.5 -7q-31 0 -52 22.5t-21 51.5q0 18 7 46.5t16 59.5t18.5 60.5t15.5 48.5l-195 49q-25 6 -41 26.5t-16 44.5z" />
+<glyph unicode="&#xf0a4;" horiz-adv-x="1916" d="M0 193v643q0 49 35 83.5t84 34.5h348q27 14 42 30.5t34 39.5q16 20 33.5 38.5t33.5 37.5q35 35 77 68.5t65 74.5q25 43 29.5 99.5t17 106.5t44 84t109.5 34q61 0 111.5 -25.5t85.5 -68.5t54.5 -98.5t19.5 -112.5q0 -53 -15.5 -104.5t-38.5 -98.5h134l376 -2 q49 0 93.5 -17.5t76 -49.5t50 -75t18.5 -94q0 -49 -18.5 -92t-50 -74.5t-75.5 -49t-94 -17.5h-200q-10 -59 -39 -107q10 -59 -7.5 -117.5t-56.5 -103.5q0 -76 -28.5 -131t-75.5 -90t-109.5 -52.5t-132.5 -17.5q-78 0 -148.5 16.5t-136 36t-128 36t-123.5 16.5h-375 q-49 0 -84 34.5t-35 84.5zM233 276q0 -35 22.5 -57t57.5 -22q33 0 56.5 22.5t23.5 56.5q0 33 -23.5 56.5t-56.5 23.5q-35 0 -57.5 -23.5t-22.5 -56.5zM489 193q70 0 136.5 -16.5t133 -35t133 -35t138.5 -16.5q43 0 84 8t72 27.5t50 52.5t19 82q0 14 -1 26.5t-3 24.5 q35 16 53.5 53t18.5 74q0 39 -20 68q59 49 59 123q0 23 -12.5 43.5t-26.5 34.5q90 0 178 1t178 1q51 0 84 30.5t33 81.5q0 53 -32.5 85t-84.5 32q-172 0 -340 1t-338 1q0 41 16.5 78t35 74.5t34 78.5t15.5 91q0 33 -10.5 65.5t-29 59t-46 44t-64.5 17.5h-11t-11 -2 q-8 -4 -9 -8t-3 -13q-12 -59 -22.5 -123.5t-39.5 -117.5q-29 -51 -73 -88t-85 -78q-29 -31 -49 -56.5t-41.5 -48t-48.5 -42t-65 -35.5h-5v-643z" />
+<glyph unicode="&#xf0a5;" horiz-adv-x="1916" d="M0 821q0 51 18.5 94t50 75t75.5 49.5t94 17.5l376 2h134q-23 47 -38.5 98t-15.5 105q0 57 19.5 112.5t54.5 98.5t85 68.5t112 25.5q78 0 109.5 -34t43.5 -84t17.5 -106.5t29.5 -99.5q23 -41 65 -74.5t77 -68.5q16 -18 33.5 -37t33.5 -39q18 -23 33.5 -39t42.5 -31h348 q49 0 84 -34.5t35 -83.5v-643q0 -49 -35 -84t-84 -35h-375q-61 0 -123.5 -16.5t-128 -36t-136 -36t-148.5 -16.5q-70 0 -132.5 17.5t-109.5 52.5t-75.5 90t-28.5 131q-39 45 -56.5 103.5t-7.5 117.5q-29 47 -39 107h-200q-49 0 -93.5 17.5t-76 49t-50 74.5t-18.5 92z M121 821q0 -51 32.5 -81.5t84.5 -30.5q90 0 178 -1t178 -1q-14 -14 -26.5 -35t-12.5 -43q0 -74 59 -123q-20 -29 -20 -68q0 -37 18.5 -73.5t53.5 -53.5q-2 -12 -3 -24.5t-1 -26.5q0 -49 19 -82t50 -52.5t72 -27.5t84 -8q70 0 137.5 16.5t134 35t133 35t135.5 16.5v643h-4 q-41 16 -66.5 35.5t-47 42t-42 48t-48.5 56.5q-41 41 -85 78t-73 88q-29 53 -39 117.5t-23 123.5q-2 8 -3 12.5t-9 8.5q-4 2 -11 2h-11q-37 0 -65 -17.5t-46 -44t-28.5 -59.5t-10.5 -65q0 -49 15.5 -90.5t34 -79t34.5 -74.5t16 -78q-170 0 -337.5 -1t-339.5 -1 q-51 0 -84 -32t-33 -85zM1524 276q0 -35 23.5 -57t56.5 -22q35 0 57 22.5t22 56.5q0 33 -22.5 56.5t-56.5 23.5q-33 0 -56.5 -23.5t-23.5 -56.5z" />
+<glyph unicode="&#xf0a6;" horiz-adv-x="1597" d="M0 602q0 61 25.5 111.5t68.5 85.5t98.5 54t112.5 19q53 0 104.5 -15t98.5 -38v133l2 377q0 49 17.5 93t49 76t74.5 50.5t94 18.5q49 0 92.5 -18.5t75 -50.5t49 -76t17.5 -93v-201q59 -10 106 -38q59 10 118 -7.5t104 -56.5q76 0 131 -28.5t90 -76t52 -109.5t17 -132 q0 -78 -16 -148.5t-35.5 -136t-36 -128t-16.5 -124.5v-374q0 -49 -35 -84t-84 -35h-643q-49 0 -84 34.5t-35 84.5v348q-14 27 -30.5 42t-38.5 34q-20 16 -39 33.5t-37 33.5q-35 35 -68.5 77t-74.5 64q-43 25 -99.5 30t-106.5 17.5t-84 44t-34 109.5zM120 591q-1 -7 1 -11 q4 -8 8 -9.5t12 -3.5q59 -12 124 -22t118 -39q51 -29 88 -73t78 -85q31 -29 56.5 -49t48 -41.5t42 -48.5t35.5 -66v-4h643q0 70 16.5 136.5t35 133t35 133t16.5 138.5q0 43 -8.5 84t-28 71.5t-52 50t-81.5 19.5q-14 0 -26.5 -1t-25.5 -3q-16 35 -53 53.5t-74 18.5 q-39 0 -67 -21q-49 59 -123 60q-23 0 -43.5 -12.5t-34.5 -26.5q0 90 -1 178t-1 178q0 51 -30.5 84t-82.5 33q-53 0 -84.5 -33t-31.5 -84q0 -172 -1 -340t-1 -338q-41 0 -78 16.5t-75 35t-79 34t-90 15.5q-33 0 -65.5 -10.5t-59 -29t-43 -46t-16.5 -64.5q0 -4 -1 -11z M1210 -37q0 -35 23.5 -57.5t56.5 -22.5q35 0 57.5 22.5t22.5 57.5q0 33 -22.5 56.5t-57.5 23.5q-33 0 -56.5 -23.5t-23.5 -56.5z" />
+<glyph unicode="&#xf0a7;" horiz-adv-x="1597" d="M0 584q0 78 34 109.5t84 44t106.5 17.5t99.5 29q41 23 74.5 65t68.5 77q18 16 36.5 33.5t39.5 33.5q23 18 39 33.5t30 42.5v348q0 49 35 84t84 35h643q49 0 84 -35t35 -84v-375q0 -61 16.5 -123.5t36 -128t35.5 -136t16 -148.5q0 -70 -17 -132.5t-52 -109.5t-90.5 -75.5 t-130.5 -28.5q-45 -39 -103.5 -56.5t-118.5 -7.5q-47 -29 -106 -39v-200q0 -49 -17.5 -93.5t-49 -76t-74.5 -50t-93 -18.5q-51 0 -94 18.5t-74.5 50t-49 75.5t-17.5 94l-2 376v134q-47 -23 -98.5 -38.5t-104.5 -15.5q-57 0 -112.5 19.5t-98.5 54.5t-68.5 85t-25.5 112z M120 595q1 -7 1 -11q0 -37 16.5 -64.5t43 -46t59 -29t65.5 -10.5q49 0 90 15.5t79 34t75 35t78 16.5q0 -170 1 -338t1 -340q0 -51 31.5 -84t84.5 -33q51 0 82 32.5t31 84.5q0 90 1 178t1 178q14 -14 34.5 -26.5t43.5 -12.5q74 0 123 59q29 -20 67 -20q37 0 74 18.5t53 53.5 q12 -2 24.5 -3t27.5 -1q49 0 81.5 19t52 50t28 72t8.5 84q0 70 -16.5 137.5t-35 134t-35 133t-16.5 136.5h-643v-5q-16 -41 -35.5 -66.5t-42 -47t-48 -42t-56.5 -48.5q-41 -41 -78 -85t-88 -73q-53 -29 -117.5 -39t-124.5 -23l-12 -3t-8 -9q-2 -4 -1 -11zM1210 1223 q0 -33 23.5 -56.5t56.5 -23.5q35 0 57.5 23.5t22.5 56.5q0 35 -22.5 57.5t-57.5 22.5q-33 0 -56.5 -23t-23.5 -57z" />
+<glyph unicode="&#xf0a8;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -29 20 -49l490 -490q20 -20 48.5 -20t49.5 20l74 74q20 20 20 48 t-20 50l-246 246h612q29 0 49.5 19.5t20.5 48.5v104q0 29 -20.5 49.5t-49.5 20.5h-612l246 246q20 20 20 48.5t-20 49.5l-74 74q-20 20 -48 20t-50 -20l-490 -490q-20 -20 -20 -49z" />
+<glyph unicode="&#xf0a9;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 717q0 -29 20.5 -49.5t48.5 -20.5h613l-246 -246q-20 -20 -20.5 -48.5 t20.5 -49.5l74 -74q20 -20 47.5 -20t50.5 20l489 490q20 20 20.5 49t-20.5 49l-489 490q-20 20 -49 20t-49 -20l-74 -74q-20 -20 -20.5 -48t20.5 -50l246 -246h-613q-29 0 -49 -19.5t-20 -48.5v-104z" />
+<glyph unicode="&#xf0aa;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 768q0 -29 20 -49l74 -74q20 -20 48 -20t50 20l246 246v-612q0 -29 19.5 -49.5 t47.5 -20.5h105q29 0 49.5 20.5t20.5 49.5v612l245 -246q20 -20 49 -20t50 20l73 74q20 20 20.5 48t-20.5 50l-489 490q-20 20 -49 20t-49 -20l-490 -490q-20 -20 -20 -49z" />
+<glyph unicode="&#xf0ab;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5t-311.5 62.5t-254 171t-171 254t-62.5 311.5zM240 769q0 -28 20 -50l490 -490q20 -20 48.5 -20t49.5 20l489 490q20 20 20.5 49 t-20.5 49l-73 74q-20 20 -48 20t-51 -20l-245 -246v612q0 29 -19.5 49.5t-48.5 20.5h-104q-29 0 -49.5 -20.5t-20.5 -49.5v-612l-246 246q-20 20 -49 20t-49 -20l-74 -74q-20 -20 -20 -48z" />
+<glyph unicode="&#xf0ac;" horiz-adv-x="1597" d="M0 768q0 162 63.5 307.5t173 255t254 173t308.5 63.5q162 0 307 -63.5t254.5 -173t173 -255t63.5 -307.5q0 -164 -63.5 -308.5t-173 -254t-254.5 -173t-307 -63.5q-164 0 -308.5 63.5t-254 173t-173 254t-63.5 308.5zM186 1141h4q4 0 12.5 3t8.5 -9q0 -4 -3 -10.5 t11 -6.5q4 0 5 6t3 0l4 -16v-2q0 -4 -5 -6t-3 -6q4 -4 9.5 -4h9.5l4 2l2 2q0 -6 6 -8.5t10 -2.5h2q0 -2 -4 -4t0 -6l23 -4v-2l14 -29q0 -4 -3 -10t-7 -6t-3 3t1 7t-2 7t-15 3q-2 0 -5 -1t-1 -5l12 -26l3 -2l2 -2q-10 0 -13.5 -24t-3.5 -34l4 -18l2 -6v-4l-4 -19l29 -43h6 q2 -4 -2 -8t-2 -8l8 -8q0 -10 4 -14.5t13 -12.5q-2 -12 20.5 -22.5t28.5 -14.5q8 -23 20 -45.5t29 -38.5l2 -14q0 -2 -5 -4t-1 -6l16 -7q4 4 10.5 -8t10.5 -16l-2 -6l12 -17l6 -2l4 8q-4 10 -14 26.5t-20.5 32t-17.5 28t-7 14.5t-2 16t-4 17q6 -4 15 -7.5t15 -7.5 q4 -25 19.5 -40t27.5 -34q-4 -4 0 -5t7 -1q4 -4 4 -14q14 -16 36.5 -44t22.5 -44v-2l-4 -14q6 -16 20.5 -25.5t28.5 -15.5h4q20 -10 41 -21.5t43 -19.5l23 14q8 -2 17 -10t20.5 -18.5t27 -19.5t35.5 -11q14 10 14 -5v-4l25 -30l4 -15q10 -6 20.5 -15t16.5 -20h4 q10 0 16.5 -9t16.5 -9q6 0 6 6q0 14 2 18.5t5 5.5t6 1t3 4l-4 6q-4 0 -6 -5t-6 -1l-14 -8l-17 4l-24 41l8 57q2 4 -7.5 9t-5.5 10q-14 8 -34 8q-4 0 -20.5 -3t-16.5 3t3 16t7 21.5t6 19.5t2 10l13 27l-3 4l-16 4q-4 0 -13 -6t-17.5 -14.5t-14.5 -16.5t-6 -14l-45 -10 q-14 0 -23 12q-4 16 -17 35.5t-13 34.5q0 23 8 43t-6 43q2 0 5 2t1 6l12 14l2 2l2 -2q14 10 37 7t29 14l16 -13q4 -2 9 4.5t5 10.5l-8 4l39 10l2 -6l19 2l22 -14q4 0 8 5t9 1l20 -21q-4 -8 -1 -12t3 -8q0 -6 10.5 -27.5t18.5 -21.5q10 0 9 13t-1 17q0 20 -8 39t-15 39v6 q0 10 12.5 17.5t12.5 9.5q10 8 22.5 16t18.5 19l8 16v10h6t4 6q0 2 -3 3.5t-7 5.5q-4 2 -8 6l6 4q4 6 6 15t-2 16l15 8q-2 -6 4 -8t10 0l10 16q-4 10 -5 7t5 7q10 4 19.5 9.5t19.5 5.5q2 -2 4 -2q6 0 6 2q0 10 -4 12l12 25q14 0 21 12l18 2q6 2 6 8v2l35 10l4 11l-10 14 q2 0 2 4t-4 6t-7 4t-7 4l-4 -2l4 2h6h13t9 9q0 12 -14 12q-18 0 -41.5 -8.5t-32.5 -28.5l-14 -8l18 18l3 6q0 4 -9.5 5.5t-5.5 1.5q18 0 27.5 4t15.5 9t12.5 10t18.5 9q23 -4 44 -2t44 2q6 4 12 8.5t8 10.5l23 4q4 -4 12 2t8 10q0 10 -11 13t-11 14q0 2 1 6t-3 4 q-6 0 -19.5 -6t-19.5 -10q-4 -2 -5 1t-1 7l2 -2l8 4l23 8l4 4q0 6 -7.5 8t-11.5 2t-12 -3t-8 3l2 4q-12 10 -21.5 22.5t-9.5 16.5t1 8.5t-5 4.5q-4 0 -7 -1t-3 5q0 4 -5 17t-14 13l-8 -8q0 -6 -6 -9t-6 -7h-4l-21 -12q-2 4 -5 2t-7 -2h-2l-2 -2q8 0 7 9t-7 9l-16 -4 q-4 0 -4.5 1t2 4t4.5 7t0 8t-6.5 1t-4.5 1h6l5 5q2 2 -1.5 7t-5.5 7l-22 4l-14 12q-2 -2 -7.5 3t-9.5 7l-16 -6l-39 9q-4 0 -8 -2.5t-4 -6.5t4 -6t4 -6t3 -21.5t-5 -13.5l-10 -14q2 -4 7 -7t10 -7.5t9 -10.5t2 -18l-45 -31v-4q0 -8 4 -15t8 -18q10 -4 9.5 -7t-7 -6t-12.5 -6 t-6 -5t-4 -2h-8h-4q0 2 2 3t2 5l-19 12v-2l-8 16q4 10 1 14.5t-3 10.5q0 16 -14.5 16t-30.5 -4q4 2 -1 6.5t-7 4.5q-16 0 -38 14t-36 14q-6 0 -14 -2t-15 -4q4 2 5 10l-13 23l-2 2q-6 0 -14 -5t-8 9q0 2 2 4t0 4q-2 12 5 20.5t11 18.5q4 4 4 8t4 4q8 0 15.5 4.5t17.5 6.5 l2 6q0 4 -21.5 7t-21.5 7l2 2q20 -6 30.5 -7t17.5 2t16.5 8t29.5 14q0 4 -21.5 8t-27.5 8h12q4 0 10.5 -2t10.5 -4q0 -4 6 -5t10 -1l15 10v6l-4 6l22 4q-2 2 1 4t5 2q6 0 12.5 -6t8.5 -6l20 8q-2 2 5.5 3t4.5 6l-14 16q-2 0 -3 3t1 3q10 0 6 10q-8 4 -17 9.5t-20 5.5 q-4 0 -9 -2t-5 -7q0 -4 5 -4t7 -4q4 -4 -2 -4t-6 -2q-8 0 -15 -12t-18 -17q-4 0 -3 2.5t-1 4.5q-2 4 -7 5t-5 5t5 13t-13 9q-8 0 -11.5 -6t-7.5 -12l-22 25l-17 2q0 8 3.5 14t-9.5 16q-6 4 -11 7.5t-11 3.5q-2 0 -9.5 -4.5t-13.5 -8.5t-6 -8t10 -4h-2q-6 0 -6 -8 q0 -2 9.5 -5t13.5 -3q4 2 6 -1.5t6 -3.5l8 3v-5q-2 -2 -2 -4l2 -8l-20 -10q-2 -2 -4 -2t-5 -2q0 -6 5.5 -12.5t-11.5 -6.5l-6 4q0 8 -16.5 13.5t-40 7.5t-47 3t-35.5 1l-33 -10l8 -19q-4 0 -5 -3t3 -5q-4 4 -15 14.5t-15 10.5l-17 4q-35 -2 -78 -33t-84 -72t-75.5 -84 t-53.5 -71zM471 674h2h-2zM487 1413q14 2 25.5 8t24.5 6l6 -4q6 -2 11 -2t9 -4q8 2 17 -2l6 4v8l-2 5l6 -2q6 0 12 10l-2 4q-4 2 -10 4t-10 2t-16.5 -5t-28 -11.5t-29.5 -12.5t-19 -8zM918 86q0 -4 3 -9t3 -9q0 -5 -2 -7q115 20 217 74.5t182 140.5h-2q-8 -4 -14 0l-5 -4 l-12 4h-4l-4 -8l2 8q-6 8 -14 15l-4 2q-4 0 -4 -8q2 16 -8.5 27.5t-26.5 11.5q0 -2 -2 -2h-4l-5 4h7l4 12l-11 8l-2 -2q-14 2 -20 16l-4 2l-2 -2l-4 -2q-12 -4 -21 -8q-12 4 -18 10l-27 -2q0 6 -4 12.5t-12 6.5q-10 0 -20.5 -2t-14.5 -13q0 -4 2 -8t4 -6v-8l-2 -6l-4 -2h-2 l-6 16l6 10q-2 4 -2 10.5t-2 10.5l-2 4h-6l-15 -10h-8l-4 -4q-2 -2 -2 -4t-2 -3l-2 3h-8q-8 -8 -9 -19l3 -4l-9 -6l-2 -4l-6 -4q0 -2 -1 -2t-1 -2v-2v-9l-2 -2v4l-2 2q-2 12 -23 21h-6v-4q2 -6 8.5 -10.5t10.5 -8.5q-2 2 -5 1t-3 -3v-4l14 -20v-39l4 -10q-4 -16 -16 -27v2 l-4 -2l-3 -2l-2 -10l2 -2v-2l-4 4l-2 -13l-12 -4q-6 -4 -5 -11t-5 -11l2 -4l-6 -6q0 -4 -1 -6.5t-1 -6.5l2 -14l6 -4l4 4l2 6l2 -12q0 -4 -4 -8q-6 -4 -12 -9.5t-6 -15.5z" />
+<glyph unicode="&#xf0ad;" horiz-adv-x="1593" d="M8 242q0 33 12.5 62.5t34.5 51.5l609 609q-16 66 -17 122q0 98 38 186.5t102.5 153t151.5 102.5t185 38q94 0 181.5 -36t154.5 -101l-442 -162l-43 -236l184 -153l443 159q-10 -92 -50.5 -171t-104 -137t-145 -91t-174.5 -33q-61 0 -127 17l-606 -607q-47 -47 -112 -47 q-68 0 -115 47q-23 23 -50.5 47.5t-52 52t-41 58.5t-16.5 68zM203 242q0 -33 22.5 -56.5t57.5 -23.5q33 0 56 23.5t23 56.5q0 35 -23.5 57.5t-55.5 22.5q-35 0 -57.5 -23t-22.5 -57z" />
+<glyph unicode="&#xf0ae;" d="M0 76v217q0 31 22.5 53.5t53.5 22.5h1689q33 0 55.5 -22.5t22.5 -53.5v-217q0 -31 -22.5 -53.5t-55.5 -22.5h-1689q-31 0 -53.5 22.5t-22.5 53.5zM0 662v215q0 31 22.5 53t53.5 22h1689q33 0 55.5 -22.5t22.5 -52.5v-215q0 -33 -22.5 -55.5t-55.5 -22.5h-1689 q-31 0 -53.5 22.5t-22.5 55.5zM0 1243v217q0 31 22.5 53.5t53.5 22.5h1689q33 0 55.5 -22.5t22.5 -53.5v-217q0 -31 -22.5 -53.5t-55.5 -22.5h-1689q-31 0 -53.5 22.5t-22.5 53.5zM752 692h999v154h-999v-154zM1059 109h692v153h-692v-153zM1366 1274h385v153h-385v-153z " />
+<glyph unicode="&#xf0b0;" horiz-adv-x="1566" d="M0 1458q0 33 22.5 55.5t55.5 22.5h1411q33 0 55.5 -22.5t22.5 -55.5t-23 -55l-565 -565v-791q0 -33 -22.5 -55.5t-55.5 -22.5t-55 23l-236 235q-23 23 -22 56v555l-565 565q-23 23 -23 55z" />
+<glyph unicode="&#xf0b1;" d="M0 115v512h713q-2 -6 -2 -19v-153q0 -55 38.5 -95.5t96.5 -40.5h153q55 0 94.5 40t39.5 96v153q0 12 -3 19h713v-512q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM0 743v371q0 47 34 81t81 34h424v231q0 31 21.5 53.5t53.5 22.5h615q33 0 55.5 -22.5 t22.5 -53.5v-231h422q47 0 80.5 -34t33.5 -81v-371h-1843zM692 1229h461v153h-461v-153zM825 455v153q0 18 21 19h153q18 0 19 -19v-153q0 -18 -19 -19h-153q-20 0 -21 19z" />
+<glyph unicode="&#xf0b2;" horiz-adv-x="1536" d="M0 80v477q0 51 24.5 61.5t59.5 -24.5l162 -162l340 338l-338 338l-164 -164q-35 -35 -59.5 -25.5t-24.5 60.5v477q0 31 23 57q27 23 57 23h477q51 0 61.5 -24.5t-24.5 -59.5l-160 -158l338 -338l332 334l-162 162q-35 35 -24.5 59.5t61.5 24.5h477q33 0 55 -23 q25 -25 25 -57v-477q0 -51 -24.5 -61.5t-59.5 24.5l-162 162l-334 -334l338 -336l158 160q35 35 59.5 24.5t24.5 -61.5v-477q0 -35 -25 -55q-23 -25 -55 -25h-477q-51 0 -61.5 24.5t24.5 59.5l166 166l-336 336l-340 -340l162 -162q35 -35 24.5 -59.5t-61.5 -24.5h-477 q-31 0 -55 25q-25 20 -25 55z" />
+<glyph unicode="&#xf0c0;" horiz-adv-x="1880" d="M0 852v152q0 18 1 47.5t10 56.5t29.5 46.5t57.5 19.5q-45 29 -71.5 75.5t-26.5 104.5q0 43 16.5 82t46 68.5t68.5 46t82 16.5q45 0 84 -16.5t67.5 -46t46 -68.5t17.5 -82q0 -57 -27.5 -104t-72.5 -76q37 0 57.5 -19.5t29.5 -46.5t11 -56.5t2 -47.5v-152 q-14 -8 -23.5 -18.5t-27.5 -10.5h-328q-16 0 -26.5 10.5t-22.5 18.5zM158 57v387q0 78 45 138.5t98 109.5q10 10 25.5 21.5t33.5 15.5q18 6 41 7t45 5q61 10 130 19.5t135 19.5q-90 57 -144.5 151.5t-54.5 207.5q0 88 34 166.5t92 136t136 91.5t166 34t166 -34t136 -91.5 t92 -136t34 -166.5q0 -113 -54 -207t-145 -152q66 -10 134.5 -19t130.5 -20q23 -4 45 -5t41 -7q18 -4 33.5 -15.5t27.5 -21.5q66 -59 103.5 -116.5t37.5 -131.5v-387q-12 -6 -20 -13t-18.5 -14t-23.5 -14.5t-36 -15.5h-1368q-35 0 -54.5 22.5t-43.5 34.5zM1452 852v152 q0 18 2 47.5t11.5 56.5t30 46.5t56.5 19.5q-45 29 -72.5 75.5t-27.5 104.5q0 43 16.5 82t46 68.5t68.5 46t84 16.5q43 0 82 -16.5t68.5 -46t46 -68.5t16.5 -82q0 -57 -26.5 -104t-71.5 -76q37 0 56.5 -19.5t28.5 -46.5t11 -56.5t2 -47.5v-152q-12 -8 -22.5 -18.5 t-26.5 -10.5h-328q-18 0 -27.5 10.5t-23.5 18.5z" />
+<glyph unicode="&#xf0c1;" horiz-adv-x="1597" d="M0 1137q0 88 34 166.5t92 137t136 92.5t168 34q86 0 166 -33t139 -92q8 -8 21.5 -20.5t26 -25t21.5 -25.5t9 -25q0 -18 -12 -31q-6 -8 -25 -12q-47 -10 -88 -22.5t-86 -31.5q-4 -4 -16 -4t-25.5 10.5t-31 21.5t-42 21.5t-57.5 10.5q-35 0 -66.5 -13.5t-54 -37t-36 -54 t-13.5 -67.5q0 -41 17.5 -75t43 -63.5t56.5 -56.5t57 -53l180 -178q23 -25 54.5 -37t66.5 -12q43 0 73 16t46 16q12 0 39 -21.5t55.5 -49t50 -55t21.5 -42.5q0 -29 -36 -51t-83 -38.5t-94 -26t-72 -9.5q-86 0 -164.5 33t-140.5 92l-303 305q-61 59 -94 139.5t-33 166.5z M578 1010q0 29 35.5 51t82.5 38.5t94 26t72 9.5q86 0 166 -33t139 -92l303 -305q61 -59 94 -139.5t33 -166.5q0 -90 -33.5 -167.5t-92 -136t-137.5 -92.5t-167 -34q-86 0 -165.5 34t-139.5 93q-8 8 -21.5 19.5t-25.5 25t-21.5 26.5t-9.5 26q0 18 13 28q6 8 24 12 q47 10 88 22.5t86 33.5q12 4 17 4q12 0 25.5 -10.5t30.5 -21.5t41 -21.5t58 -10.5q72 0 121 49.5t49 120.5q0 41 -17 76t-44 63.5t-56.5 55.5t-56.5 53l-178 180q-53 49 -123 50q-43 0 -72.5 -17.5t-46.5 -17.5q-12 0 -38.5 21.5t-55 49t-50 56t-21.5 41.5z" />
+<glyph unicode="&#xf0c2;" horiz-adv-x="1880" d="M0 391q0 70 23.5 132.5t64.5 113.5t96.5 86t120.5 51q-33 41 -51 90t-18 105q0 66 24.5 123t66.5 99t99 66.5t123 24.5q113 0 196 -72q18 76 61.5 141.5t103 113.5t133 75t157.5 27q96 0 182 -37t149.5 -100.5t100.5 -149.5t37 -182q0 -57 -13 -109.5t-36 -99.5 q117 -59 188.5 -170t71.5 -248q0 -98 -37 -183t-101.5 -149.5t-149.5 -101.5t-183 -37h-1018q-80 0 -151.5 30.5t-125 84t-84 125t-30.5 151.5z" />
+<glyph unicode="&#xf0c3;" horiz-adv-x="1536" d="M16 72q-39 72 7 141l516 803v366h-78q-33 0 -54.5 22.5t-21.5 55.5q0 31 21.5 53.5t54.5 22.5h614q33 0 55.5 -22.5t22.5 -53.5q0 -33 -22.5 -55.5t-55.5 -22.5h-76v-368l514 -801q45 -70 7 -141q-18 -35 -51 -53.5t-70 -18.5h-1262q-37 0 -69.5 18.5t-51.5 53.5z M377 479h782l-313 490v413h-154v-411z" />
+<glyph unicode="&#xf0c4;" horiz-adv-x="1916" d="M0 180q0 86 44 168t113.5 146.5t154.5 103.5t169 39h13q18 25 57 60.5t63 58.5v12v12q-12 12 -28.5 27.5t-35 32t-33.5 32t-23 27.5q-84 -6 -172.5 33t-160 105.5t-116.5 150.5t-45 168q0 98 62.5 154.5t160.5 56.5q82 0 168 -39t155.5 -103.5t114 -146.5t44.5 -168 q0 -10 -1.5 -21.5t-3.5 -21.5l86 -76l34 17q34 18 90.5 46.5t129 65.5t148.5 76t150.5 77t135 69.5t102.5 52t52 26.5q16 8 37 9q14 0 39 -4.5t52.5 -9.5t53 -11t41.5 -8q29 -4 47.5 -26.5t18.5 -51.5q0 -43 -35 -66l-700 -485l700 -485q35 -23 35 -66q0 -29 -18.5 -51.5 t-47.5 -26.5q-16 -4 -41.5 -9t-53 -10t-52.5 -9.5t-39 -4.5q-10 0 -18.5 2.5t-18.5 6.5l-842 430l-86 -76q2 -10 3.5 -21.5t1.5 -21.5q0 -86 -44.5 -168t-114 -146.5t-155.5 -103.5t-168 -39q-98 0 -160.5 56.5t-62.5 154.5zM197 1358q0 -23 11 -49.5t27.5 -51t35 -45 t34.5 -34.5q35 -29 82 -54.5t94 -25.5q10 0 27 4v6q0 23 -11.5 48.5t-27.5 50t-34.5 46t-35.5 35.5q-35 29 -82 54.5t-94 25.5q-14 0 -26 -4v-6zM199 180q0 -6 2 -10q6 0 11 -1t11 -1q41 0 90 24.5t92.5 61.5t72 83t28.5 89q0 4 -1 5t-1 5q-8 2 -23 2q-41 0 -90 -24.5 t-92 -61.5t-71.5 -83t-28.5 -89zM586 616q53 -25 82 -69l108 96l45 -27l1016 703l-172 31l-975 -498l6 -127zM586 920l35 -35q12 29 36.5 41t53.5 26l-43 37q-29 -45 -82 -69zM741 768q0 35 23.5 57.5t58.5 22.5q33 0 55.5 -22.5t22.5 -57.5q0 -33 -22.5 -56.5t-57.5 -23.5 q-33 0 -56.5 23.5t-23.5 56.5zM903 575l762 -389l172 31l-727 502z" />
+<glyph unicode="&#xf0c5;" horiz-adv-x="1597" d="M0 385v707q0 33 16.5 70.5t38.5 60.5l258 258q23 23 61 39t70 16h463q31 0 53.5 -22.5t22.5 -53.5v-250q16 8 35.5 13.5t40.5 5.5h463q31 0 53 -22.5t22 -53.5v-1075q0 -33 -22.5 -55.5t-52.5 -22.5h-830q-33 0 -55.5 22.5t-22.5 55.5v229h-536q-33 0 -55.5 22.5 t-22.5 55.5zM154 461h460v293q0 45 10.5 87t45.5 74l159 162v305h-278v-321q0 -31 -22.5 -53.5t-53.5 -22.5h-321v-524zM186 1139h211v211zM768 154h676v921h-279v-321q0 -31 -22.5 -53.5t-52.5 -22.5h-322v-524zM801 831h211v211z" />
+<glyph unicode="&#xf0c6;" horiz-adv-x="1470" d="M0 1128q0 90 35 170t94 139.5t139 94.5t170 35q88 0 169 -34t143 -95l655 -656q12 -12 12 -28q0 -10 -11 -26.5t-26.5 -32t-32 -27t-26.5 -11.5q-16 0 -29 13l-655 655q-41 41 -92 61.5t-107 20.5q-57 0 -108 -21.5t-89 -59.5t-59.5 -89t-21.5 -109q0 -55 20.5 -106 t61.5 -92l745 -746q55 -55 133 -55q39 0 74 15.5t60.5 41t41 60.5t15.5 73q0 78 -56 134l-563 563q-29 29 -69 28q-41 0 -71 -29.5t-30 -70.5t29 -70l475 -475q12 -12 12 -28q0 -10 -11 -26.5t-26.5 -32t-32 -27t-26.5 -11.5q-16 0 -29 13l-475 473q-35 37 -55.5 85 t-20.5 99q0 53 20.5 100.5t55.5 83t83.5 56t101.5 20.5q51 0 99 -20.5t85 -55.5l561 -563q102 -102 102 -246q0 -74 -27.5 -137t-74.5 -110t-110.5 -75t-137.5 -28q-143 0 -246 103l-745 745q-61 61 -95 142t-34 169z" />
+<glyph unicode="&#xf0c7;" horiz-adv-x="1536" d="M0 154v1228q0 63 45 108.5t109 45.5h1075q63 0 108 -45l154 -154q45 -45 45 -108v-1075q0 -63 -45 -108.5t-109 -45.5h-1228q-63 0 -108.5 45t-45.5 109zM154 846h1075v536h-1075v-536zM846 922v385h190v-385h-190z" />
+<glyph unicode="&#xf0c8;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-1150q-80 0 -136.5 56.5t-56.5 136.5z" />
+<glyph unicode="&#xf0c9;" d="M0 78v215q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-215q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM0 659v218q0 31 22.5 53t55.5 22h1689q31 0 53.5 -22.5t22.5 -52.5v-218q0 -31 -22.5 -53t-53.5 -22h-1689 q-33 0 -55.5 22.5t-22.5 52.5zM0 1243v217q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-217q0 -31 -22.5 -53.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 53.5z" />
+<glyph unicode="&#xf0ca;" d="M0 211q0 39 15.5 75t41 61.5t60.5 40.5t76 15q39 0 73.5 -15t61 -40.5t42 -61.5t15.5 -75q0 -41 -15.5 -76t-42 -60.5t-61.5 -41t-73 -15.5q-80 0 -136.5 56.5t-56.5 136.5zM0 768q0 39 15.5 75t41 61.5t60.5 41t76 15.5q39 0 73.5 -15.5t61 -41t42 -61.5t15.5 -75 q0 -41 -15.5 -76t-42 -60.5t-61.5 -41t-73 -15.5q-41 0 -76 15.5t-60.5 41t-41 60.5t-15.5 76zM0 1325q0 39 15.5 75t41 61.5t60.5 41t76 15.5q39 0 73.5 -15.5t61 -41t42 -61.5t15.5 -75q0 -41 -15.5 -76t-42 -60.5t-61.5 -40.5t-73 -15q-41 0 -76 15t-60.5 40.5t-41 60.5 t-15.5 76zM522 154v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1167q-33 0 -55.5 21.5t-22.5 54.5zM522 711v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5 h-1167q-33 0 -55.5 22.5t-22.5 55.5zM522 1268v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1167q-33 0 -55.5 22.5t-22.5 55.5z" />
+<glyph unicode="&#xf0cb;" d="M0 594q0 55 30.5 90t68.5 61.5t69 50t31 56.5q0 29 -17.5 44t-46.5 15q-25 0 -44 -15t-34 -36l-53 37q23 39 58.5 60.5t78.5 21.5q55 0 96.5 -32t41.5 -91q0 -49 -30 -80t-67 -55.5t-67.5 -47t-30.5 -55.5h143v54h66v-115h-289q-2 10 -3 18.5t-1 18.5zM4 55l37 54 q6 -4 12 -10.5t15 -10.5q12 -8 29.5 -14t37.5 -6q35 0 55.5 18t20.5 47q0 31 -23.5 48.5t-58.5 17.5h-23l-16 37l90 108l6 6t7 6l4 6h-9q-4 -2 -14 -2h-92v-49h-66v111h263v-53l-97 -115q41 -6 74 -35t33 -82t-38 -95t-110 -42q-35 0 -60.5 9t-41.5 20q-25 14 -35 26z M14 1434l105 102h67v-360h93v-62h-259v62h93v258v8h-2q-10 -16 -22.5 -28.5t-29.5 -27.5zM522 154v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -54.5t-53.5 -21.5h-1167q-33 0 -55.5 21.5t-22.5 54.5zM522 711v114q0 33 22.5 55.5 t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1167q-33 0 -55.5 22.5t-22.5 55.5zM522 1268v114q0 33 22.5 55.5t55.5 22.5h1167q31 0 53.5 -22.5t22.5 -55.5v-114q0 -33 -22.5 -55.5t-53.5 -22.5h-1167q-33 0 -55.5 22.5t-22.5 55.5z " />
+<glyph unicode="&#xf0cc;" horiz-adv-x="1536" d="M0 692v152h1536v-152h-1536zM268 1114q0 117 44 202t118 141t170 83t203 27q88 0 176 -20.5t172 -49.5q20 -72 27.5 -156t7.5 -157q0 -10 -1 -22.5t-3 -24.5l-13 -2q-23 2 -50 2t-50 6q-18 59 -44 114.5t-62.5 98.5t-88 68.5t-122.5 25.5q-49 0 -94.5 -13.5t-80 -40 t-56 -66.5t-21.5 -93q0 -59 28.5 -102t75.5 -75t105.5 -54.5t118 -42t113.5 -39t93 -41.5h-696q-33 53 -51.5 110.5t-18.5 120.5zM285 310v63v45l110 2q31 -72 64 -134.5t76 -108.5t104 -71.5t152 -25.5q55 0 110 16.5t100.5 48t74 78.5t28.5 109q0 76 -49 128t-119 88 t-146.5 59.5t-132.5 45.5h617q8 -16 15 -38.5t10.5 -48t5.5 -50t2 -43.5q0 -131 -47.5 -226t-127 -156.5t-186 -91.5t-225.5 -30q-53 0 -93 4t-78 12.5t-78 20.5t-93 29q-12 4 -38 12t-36 16q-8 6 -12 50.5t-6 96.5t-2 100z" />
+<glyph unicode="&#xf0cd;" horiz-adv-x="1536" d="M0 0v154h1536v-154h-1536zM0 1532q10 2 19.5 2h19.5q72 0 140.5 -5t137.5 -5q100 0 200.5 2t199.5 6q-4 -16 -1 -36.5t3 -37.5v-8q-66 -10 -108 -7t-65.5 -5t-32.5 -39t-9 -109q0 -137 4 -272t10 -273q8 -147 88 -237t238 -90q125 0 207 29.5t131 88t69.5 146.5t20.5 203 q0 20 -2 65t-5 102.5t-8.5 119t-11.5 113.5t-13 89t-15 45q-33 33 -78 33q-6 0 -23.5 -1t-36 -1t-34 1t-21.5 3l2 82q82 4 163 -3t165 -7q39 0 77.5 5t79.5 5q4 0 9.5 -1t9.5 -1q2 -12 4 -24.5t2 -24.5t-4 -29q-23 -6 -52.5 -8t-58 -7t-48 -16.5t-19.5 -38.5q0 -14 1 -27 t3 -28q2 -6 5 -38.5t5 -79t4 -101.5t4 -103t3 -85t1 -50q0 -37 -2 -80.5t-8 -89t-17.5 -87.5t-29.5 -74q-41 -68 -104.5 -114t-137 -72.5t-153.5 -38t-154 -11.5q-72 0 -144.5 9.5t-140.5 35.5q-96 35 -151 88.5t-84 121t-36 148.5t-7 173v321v42t-1 62.5t-5 60.5t-10 38 q-12 16 -37 23.5t-53.5 10.5t-56.5 3t-44 4z" />
+<glyph unicode="&#xf0ce;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h460v335h-460v-335zM154 565h460v332h-460v-332zM154 975h460v332h-460v-332zM692 154h461v335h-461v-335zM692 565h461v332h-461v-332z M692 975h461v332h-461v-332zM1229 154h461v335h-461v-335zM1229 565h461v332h-461v-332zM1229 975h461v332h-461v-332z" />
+<glyph unicode="&#xf0d0;" d="M0 197q0 39 29 61l1579 1247q20 17 47 17q35 0 59 -29q10 -12 29.5 -33.5t38 -44t32 -47.5t13.5 -43q0 -39 -29 -61l-1579 -1248q-20 -16 -47 -16q-37 0 -59 29q-10 12 -30 33.5t-38 44t-31.5 47t-13.5 43.5zM256 922l117 36l37 117l34 -117l119 -36l-119 -37l-34 -117 l-37 117zM373 1229l235 71l72 236l72 -236l235 -71l-235 -72l-72 -235l-72 235zM942 1382l117 37l37 117l37 -117l116 -37l-116 -36l-37 -117l-37 117zM1286 1153l94 -121l369 291l-94 121zM1536 885l117 35l37 118l36 -118l117 -35l-117 -37l-36 -117l-37 117z" />
+<glyph unicode="&#xf0d1;" d="M0 358v404q0 25 6 51.5t17.5 53t27 51t31.5 40.5l223 222q16 16 41 31.5t51.5 26.5t53 17.5t51.5 6.5h80v198q0 31 22.5 53.5t52.5 22.5h1108q33 0 55.5 -22.5t22.5 -53.5v-1102q0 -31 -22.5 -53t-55.5 -22h-75v-7q0 -63 -25 -119.5t-65.5 -97.5t-97 -65.5t-120.5 -24.5 q-63 0 -119.5 24.5t-97.5 65.5t-65.5 97.5t-24.5 119.5v7h-307v-7q0 -63 -24.5 -119.5t-65.5 -97.5t-97.5 -65.5t-119.5 -24.5t-119.5 24.5t-97.5 65.5t-65.5 97.5t-24.5 119.5v7h-78q-31 0 -53.5 22.5t-22.5 52.5zM193 700h387v369h-78q-10 0 -31.5 -8t-30.5 -17l-223 -221 q-8 -8 -16 -29.5t-8 -31.5v-62zM346 276q0 -47 34 -80.5t81 -33.5t80.5 33.5t33.5 80.5t-33.5 81t-80.5 34t-81 -33.5t-34 -81.5zM1268 276q0 -47 33.5 -80.5t80.5 -33.5t81 33.5t34 80.5t-33.5 81t-81.5 34q-47 0 -80.5 -33.5t-33.5 -81.5z" />
+<glyph unicode="&#xf0d2;" horiz-adv-x="1597" d="M0 768q0 166 62.5 311.5t171 254t254 171t311.5 62.5t311 -62.5t254 -171t171 -254t62 -311.5t-62 -311.5t-171 -254t-254 -171t-311 -62.5q-59 0 -115.5 8.5t-112.5 24.5q23 35 46.5 80t35.5 92l11 41q6 23 16 66t29 112q23 -41 76 -70.5t118 -29.5q96 0 176 41 t136.5 114.5t88 174t31.5 217.5q0 88 -35.5 171t-102.5 147.5t-160 102t-208 37.5q-141 0 -248.5 -46t-179 -118.5t-107.5 -160.5t-36 -174q0 -104 40 -187.5t124 -117.5q31 -10 41 20q2 10 7 31.5t9 32.5q4 16 1 23t-13 22q-53 59 -53 155q0 76 27.5 145.5t78.5 122t124 84 t163 31.5q80 0 142.5 -23.5t105.5 -64.5t64.5 -96t21.5 -121q0 -86 -18.5 -164t-52.5 -136t-80 -92t-103 -34q-31 0 -57.5 12.5t-45 34t-25.5 49t1 60.5q18 76 44.5 151.5t26.5 130.5q0 49 -26.5 84t-81.5 35q-66 0 -110 -58.5t-44 -146.5q-2 -23 2 -45q2 -18 7.5 -40.5 t15.5 -41.5q-33 -141 -53.5 -225t-30.5 -131q-12 -55 -18 -80q-10 -45 -13.5 -93t-1.5 -89q-104 45 -192 119.5t-151.5 169t-98.5 207t-35 235.5z" />
+<glyph unicode="&#xf0d3;" horiz-adv-x="1536" d="M0 193v1150q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5t-61.5 -41t-75 -15.5h-829q27 39 59.5 95.5t49.5 117.5l10 41q6 25 17.5 68t29.5 112q20 -41 75.5 -70.5t121.5 -29.5q96 0 176 42t137 115.5 t89 175t32 220.5q0 90 -37 173t-103.5 147.5t-161 102.5t-208.5 38q-143 0 -251 -46.5t-180.5 -120t-108.5 -162.5t-36 -175q0 -104 40 -188.5t124 -118.5q14 -6 25.5 -1t15.5 21q4 10 8 31.5t8 34.5q8 23 -12 43q-23 29 -37 67.5t-14 91.5q0 76 27.5 145.5t79 123t124 85 t164.5 31.5q82 0 144.5 -23.5t105.5 -64.5t64.5 -97t21.5 -124q0 -86 -18.5 -164t-52 -136t-81 -93t-104.5 -35q-31 0 -57.5 12.5t-45 34t-25.5 49t1 60.5q18 78 45 154.5t27 131.5q0 49 -26.5 85t-82.5 36q-66 0 -110.5 -59t-44.5 -150q-2 -23 2 -45q4 -43 22 -84 q-35 -141 -54.5 -226t-29.5 -132q-12 -55 -18 -80q-16 -70 -14 -142.5t6 -117.5h-260q-80 0 -136.5 56.5t-56.5 136.5z" />
+<glyph unicode="&#xf0d4;" horiz-adv-x="1536" d="M0 342v438q55 -68 120.5 -96.5t153.5 -28.5h36t34 4q-8 -23 -14 -42t-6 -42q0 -41 18 -77.5t43 -67.5q-104 -4 -198.5 -22.5t-186.5 -65.5zM0 1214v129q0 39 15.5 75t41 61.5t60.5 41t76 15.5h1150q80 0 136.5 -56.5t56.5 -136.5v-1150q0 -41 -15.5 -76t-41 -60.5 t-61.5 -41t-75 -15.5h-583q23 39 36 81t13 89q0 70 -21.5 121t-54.5 90t-70.5 69.5t-70.5 57.5t-54.5 53.5t-21.5 59.5q0 49 34 81.5t76 72.5t75.5 99.5t33.5 163.5q0 78 -39 157t-106 122h131l133 76h-428q-129 0 -237.5 -36t-188.5 -143zM2 170q14 57 55 96t96.5 61.5 t115 33t110.5 10.5h31.5t31.5 -2q37 -27 78 -54.5t75 -61.5t55.5 -75t21.5 -92q0 -47 -19 -86h-460q-72 0 -126.5 49t-64.5 121zM102 1094q0 43 11.5 85t35 73.5t59.5 51t85 19.5q68 0 118 -41t81.5 -100.5t47 -128t15.5 -123.5q0 -45 -9 -84t-30.5 -68.5t-56.5 -47 t-84 -17.5q-66 0 -116 39t-85 96t-53.5 123.5t-18.5 122.5zM854 1051h223v-224h109v224h223v108h-223v225h-109v-225h-223v-108z" />
+<glyph unicode="&#xf0d5;" horiz-adv-x="1536" d="M0 262q0 100 56.5 166t139.5 105.5t179 56t174 18.5q-23 29 -41.5 64t-18.5 76q0 23 6.5 41t14.5 40q-16 -4 -33.5 -4h-34.5q-68 0 -130 23.5t-108 66.5t-74 101.5t-28 130.5q0 68 25 128t67 109.5t98 84t120 49.5q88 18 176 18h411l-127 -74h-127q72 -43 107 -120.5 t35 -157.5q0 -94 -33 -149.5t-73 -94.5t-72.5 -70.5t-32.5 -78.5q0 -45 44 -82t97 -82t97 -107.5t44 -161.5q0 -102 -50 -175.5t-126.5 -121t-170 -70t-181.5 -22.5q-66 0 -141.5 15.5t-140 50.5t-106.5 90t-42 137zM174 307q0 -68 35 -116t87 -78.5t114.5 -44t117.5 -13.5 q51 0 104.5 11.5t96.5 38t69.5 68.5t26.5 103q0 49 -21.5 89.5t-53 72t-70.5 59t-76 52.5q-14 2 -29.5 3t-29.5 1q-57 0 -123 -12.5t-121 -41t-91 -75.5t-36 -117zM276 1247q0 -53 17.5 -117.5t51.5 -120t82.5 -92t111.5 -36.5q96 0 134 61.5t38 147.5q0 53 -14.5 118.5 t-45 124t-78 97t-112.5 38.5q-47 0 -82 -18t-57.5 -49t-34 -71t-11.5 -83zM999 1206h215v-215h107v215h215v105h-215v217h-107v-217h-215v-105z" />
+<glyph unicode="&#xf0d6;" d="M0 78v1382q0 31 22.5 53.5t55.5 22.5h1689q31 0 53.5 -22.5t22.5 -53.5v-1382q0 -33 -22.5 -55.5t-53.5 -22.5h-1689q-33 0 -55.5 22.5t-22.5 55.5zM154 461q63 0 119.5 -24.5t97.5 -65.5t65.5 -97.5t24.5 -119.5h921q0 63 25 119.5t65.5 97.5t97 65.5t120.5 24.5v614 q-63 0 -120 24.5t-97.5 65.5t-65.5 97.5t-25 119.5h-921q0 -63 -24.5 -119.5t-65.5 -97.5t-97.5 -65.5t-119.5 -24.5v-614zM539 768q0 104 29.5 195.5t81.5 159t122 106.5t150 39t149.5 -39t121.5 -106.5t83 -159t31 -195.5t-31 -195.5t-83 -159t-122 -106.5t-149 -39 q-80 0 -150 39t-122 106.5t-81.5 159t-29.5 195.5zM692 969l94 -99l39 35q8 6 11.5 13.5t7.5 11.5q4 2 8 10h2v-16q0 -8 -1 -16.5t-1 -18.5v-283h-139v-129h438v129h-141v529h-140z" />
+<glyph unicode="&#xf0d7;" horiz-adv-x="1228" d="M6 967q20 47 72 47h1075q50 0 70 -47t-17 -84l-536 -537q-27 -23 -56 -22q-29 0 -55 22l-536 537q-37 37 -17 84z" />
+<glyph unicode="&#xf0d8;" horiz-adv-x="1228" d="M6 371q-20 47 17 84l536 536q23 23 55 23q31 0 54 -23l538 -536q37 -37 17 -84t-70 -47h-1077q-50 0 -70 47z" />
+<glyph unicode="&#xf0d9;" horiz-adv-x="692" d="M0 768q0 33 23 55l538 537q16 16 38 21t44 -5q23 -8 36 -27.5t13 -41.5v-1076q0 -25 -13 -43t-36 -28t-44 -5t-38 21l-538 539q-23 23 -23 53z" />
+<glyph unicode="&#xf0da;" horiz-adv-x="692" d="M0 231v1076q0 49 47 69t84 -16l539 -537q23 -23 22 -55q0 -31 -22 -53l-539 -539q-37 -37 -84 -16q-47 20 -47 71z" />
+<glyph unicode="&#xf0db;" d="M0 115v1306q0 47 34 81t81 34h1614q47 0 80.5 -34t33.5 -81v-1306q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34t-34 81zM154 154h692v1153h-692v-1153zM999 154h691v1153h-691v-1153z" />
+<glyph unicode="&#xf0dc;" horiz-adv-x="1228" d="M0 584q0 31 22.5 54.5t53.5 23.5h1075q33 0 55.5 -23t22.5 -55q0 -33 -23 -56l-536 -536q-23 -23 -56 -23t-55 23l-536 536q-23 23 -23 56zM0 952q0 33 23 56l536 536q23 23 55 23q33 0 56 -23l536 -536q23 -23 23 -56q0 -31 -22.5 -54.5t-55.5 -23.5h-1075 q-31 0 -53.5 23t-22.5 55z" />
+<glyph unicode="&#xf0dd;" horiz-adv-x="1228" d="M0 584q0 31 22.5 54.5t53.5 23.5h1077q31 0 53.5 -23t22.5 -55q0 -33 -23 -56l-536 -536q-23 -23 -56 -23q-35 0 -53 23l-538 536q-23 23 -23 56z" />
+<glyph unicode="&#xf0de;" horiz-adv-x="1228" d="M0 952q0 33 23 56l536 536q23 23 55 23q33 0 56 -23l536 -536q23 -23 23 -56q0 -31 -22.5 -54.5t-53.5 -23.5h-1077q-31 0 -53.5 23t-22.5 55z" />
+<glyph unicode="&#xf0e0;" d="M0 115v905q10 -10 20.5 -17.5t20.5 -15.5q129 -96 256 -191.5t252 -195.5q39 -31 82 -62.5t89 -57t96.5 -41t103.5 -15.5q55 0 105 15.5t96 40t89 56t84 64.5q125 100 252 195.5t256 191.5q10 8 20.5 15.5t20.5 17.5v-905q0 -47 -33.5 -81t-80.5 -34h-1614q-47 0 -81 34 t-34 81zM2 1434q0 41 36 71.5t77 30.5h1614q41 0 76.5 -30.5t35.5 -71.5q0 -31 -18.5 -69t-45 -75t-57 -67.5t-53.5 -48.5q-123 -92 -241.5 -182.5t-239.5 -182.5q-25 -18 -57.5 -45t-67.5 -51.5t-71 -42t-66 -17.5h-2h-2q-31 0 -67 17.5t-70.5 42t-67.5 51.5t-58 45 q-121 92 -239.5 182t-241.5 183q-23 18 -53.5 48.5t-57 67.5t-45 75t-18.5 69z" />
+<glyph unicode="&#xf0e1;" horiz-adv-x="1576" d="M0 1376q0 39 15.5 74t41 60.5t60 41t73.5 15.5t74 -15.5t61.5 -41t41 -60.5t14.5 -74t-14.5 -73.5t-41 -60t-61.5 -41t-74 -15.5t-73.5 15.5t-60 41t-41 60t-15.5 73.5zM10 41v991q0 16 12.5 28.5t28.5 12.5h281q16 0 28.5 -12t12.5 -29v-991q0 -16 -12.5 -28.5 t-28.5 -12.5h-281q-16 0 -28.5 12.5t-12.5 28.5zM524 41v991q0 16 12.5 28.5t28.5 12.5h273q33 0 37 -25.5t4 -48.5q57 53 129.5 76t150.5 23q190 0 304 -95.5t114 -293.5v-668q0 -16 -12.5 -28.5t-28.5 -12.5h-289q-16 0 -27.5 12.5t-11.5 28.5v604q0 76 -27.5 116 t-111.5 40q-53 0 -89 -17.5t-56.5 -47t-28.5 -70.5t-8 -88v-537q0 -16 -12.5 -28.5t-28.5 -12.5h-281q-16 0 -28.5 12.5t-12.5 28.5z" />
+<glyph unicode="&#xf0e2;" horiz-adv-x="1591" d="M0 662q-4 39 35 45l158 20q12 2 30 -8q12 -8 15 -27q14 -102 63 -191t123 -153.5t169 -101.5t200 -37q115 0 217 44t178 120t120 177t44 218t-44 218t-120 177t-178.5 120t-216.5 44q-94 0 -181.5 -30.5t-158.5 -88.5l159 -159q35 -35 24 -58.5t-58 -23.5h-463 q-16 0 -29.5 6t-24.5 16q-25 25 -24 55v463q0 47 24.5 57.5t59.5 -24.5l162 -162q109 92 238.5 140.5t271.5 48.5q166 0 311 -62.5t253.5 -171t171 -254t62.5 -311.5t-62.5 -311.5t-171 -254t-254 -171t-310.5 -62.5q-150 0 -285 52.5t-241.5 145.5t-176.5 220t-90 275z" />
+<glyph unicode="&#xf0e3;" horiz-adv-x="1916" d="M0 651q0 49 37 91t88 42q35 0 68 -22q-20 14 -21 37q0 8 8 24l334 502q14 20 37 21q16 0 24 -9q-25 18 -40 43t-15 56q0 49 38 90t87 41q33 0 62 -19l514 -342q23 -16 36 -40.5t13 -53.5q0 -25 -10.5 -48.5t-26.5 -41.5t-40 -29.5t-48 -11.5q-33 0 -68 23q20 -14 21 -37 q0 -14 -8 -25l-105 -158l227 -151q14 4 28 6t28 2q53 0 94 -29l475 -315q37 -27 58.5 -65.5t21.5 -84.5q0 -74 -52.5 -126t-125.5 -52q-55 0 -99 31l-475 315q-70 47 -75 131l-228 152l-106 -158q-14 -20 -37 -20q-14 0 -25 8q55 -39 56 -100q0 -25 -10.5 -47.5t-28 -41 t-40 -29.5t-46.5 -11q-35 0 -62 18l-514 342q-49 33 -49 92z" />
+<glyph unicode="&#xf0e4;" horiz-adv-x="1880" d="M0 627q0 195 73.5 365.5t201.5 298.5t299 202t366 74t366 -74t299 -202t201.5 -299t73.5 -365q0 -78 -14.5 -159t-42 -159t-68.5 -149.5t-92 -130.5q-23 -29 -59 -29h-1328q-37 0 -59 29q-53 59 -93 130.5t-67.5 149.5t-42 159t-14.5 159zM158 627q0 -49 33.5 -83 t82.5 -34t83 34t34 83t-34.5 82.5t-82.5 33.5q-49 0 -82.5 -33.5t-33.5 -82.5zM352 1098q0 -49 35 -84t82 -35q49 0 84 35t35 84t-35 82.5t-84 33.5q-47 0 -82 -33.5t-35 -82.5zM743 313q0 -82 57.5 -139t139.5 -57t139.5 57t57.5 139q0 49 -26 91t-67 71q4 14 15.5 55 t27 95.5t33 114t30.5 110.5t22.5 88t9.5 43q0 23 -17.5 40t-40.5 17q-20 0 -35.5 -12t-21.5 -31l-135 -487q-39 -2 -74 -17.5t-60.5 -42t-40 -61.5t-14.5 -74zM823 1292q0 -49 34 -82.5t83 -33.5t83 33.5t34 82.5t-34 83t-83 34t-83 -34t-34 -83zM1292 1098q0 -49 35 -83 t84 -34t83 34t34 83t-34 82.5t-83 33.5t-84 -33.5t-35 -82.5zM1489 627q0 -49 34 -83t83 -34t82.5 34t33.5 83t-33.5 82.5t-82.5 33.5t-83 -33.5t-34 -82.5z" />
+<glyph unicode="&#xf0e5;" horiz-adv-x="1916" d="M0 866q0 123 49 225.5t130 183.5t184.5 139.5t209.5 92.5q94 31 190.5 45.5t194.5 14.5t194.5 -14.5t190.5 -45.5q106 -35 210 -93t185 -139t130 -183.5t49 -225.5t-49 -225t-130 -183t-184.5 -140.5t-210.5 -92.5q-94 -31 -190 -45t-195 -14q-92 0 -180 12 q-92 -72 -195.5 -119t-215.5 -73q-27 -4 -55.5 -10.5t-53.5 -6.5q-16 0 -27.5 11.5t-11.5 27.5q0 12 8.5 21.5t16.5 17.5q31 33 53 60.5t37.5 57.5t25 64.5t17.5 79.5q-78 43 -145.5 100.5t-120 128t-82 153.5t-29.5 175zM160 866q0 -72 24.5 -133t65.5 -113.5t94 -95.5 t111 -75q27 -14 51 -27.5t49 -28.5q-10 -47 -17.5 -94t-19.5 -94q59 29 111.5 64.5t105.5 76.5q55 -8 110.5 -14t112.5 -6q156 0 308 43q84 25 171 68.5t158.5 107t116.5 143.5t45 178t-45 178t-116.5 143.5t-158.5 107.5t-171 69q-152 43 -308 43q-158 0 -307 -43 q-84 -25 -171 -69t-158.5 -107.5t-116.5 -143t-45 -178.5z" />
+<glyph unicode="&#xf0e6;" horiz-adv-x="1916" d="M0 997q0 98 40 182.5t106.5 151t150.5 113.5t170 76q76 25 154.5 36t156.5 11q80 0 159 -11.5t155 -35.5q86 -29 170 -76t149.5 -113.5t105 -150.5t39.5 -183q0 -98 -39.5 -182t-105 -149.5t-149.5 -113.5t-170 -77q-154 -47 -314 -47q-37 0 -72.5 3t-72.5 7 q-150 -115 -336 -155q-20 -4 -43 -9.5t-45 -5.5q-12 0 -21.5 9.5t-9.5 23.5q0 10 7.5 17.5l13.5 13.5q51 51 72.5 96t35.5 117q-63 35 -118.5 82t-97.5 104t-66.5 124t-24.5 142zM160 997q0 -72 30.5 -127t77.5 -99t104.5 -78t112.5 -64l-20 -111q33 18 63.5 42t59.5 46 q47 -6 95 -12t95 -6q135 0 264 41q61 18 124 52t114 81t84 105.5t33 129.5q0 72 -33 131.5t-84 105.5t-113.5 80t-124.5 52q-63 23 -129.5 32t-134.5 9q-66 0 -132 -9t-132 -32q-59 -18 -122.5 -52t-115 -80t-84 -105.5t-32.5 -131.5zM649 258l27 16q51 -6 102 -6 q197 0 381 62q111 37 211 99.5t177 147.5t123 190t46 230q0 41 -6 84q90 -72 148.5 -169t58.5 -214q0 -76 -24.5 -142.5t-66.5 -123.5t-97.5 -104t-118.5 -82q14 -72 35.5 -117t72.5 -96q6 -6 13.5 -14.5t7.5 -18.5q0 -16 -10.5 -23.5t-24.5 -7.5q-20 0 -43 5.5t-41 9.5 q-186 41 -336 155q-37 -4 -72.5 -7t-72.5 -3q-129 0 -254 32t-236 97z" />
+<glyph unicode="&#xf0e7;" horiz-adv-x="933" d="M0 557q0 8 2 10l209 932q4 16 16.5 26.5t28.5 10.5h344q18 0 31.5 -13.5t13.5 -33.5q0 -6 -1 -10t-3 -11l-180 -524q12 4 47 13.5t81 21.5t95 26.5t93 25.5t75 18.5t37 7.5q18 0 31.5 -13.5t13.5 -33.5q0 -12 -2 -19l-565 -1306q-10 -29 -43 -29q-18 0 -33 13.5t-15 33.5 q0 6 3 10l204 914q-12 -4 -48 -14.5t-82 -22.5t-97 -26.5t-95 -27t-76 -19.5t-38 -7q-20 0 -33.5 14.5t-13.5 32.5z" />
+<glyph unicode="&#xf0e8;" d="M0 78v383q0 33 22.5 55.5t55.5 22.5h133v153q0 55 40 94t95 39h518v174h-135q-31 0 -53.5 21.5t-22.5 54.5v385q0 31 22.5 53.5t53.5 22.5h385q31 0 53.5 -22.5t22.5 -53.5v-385q0 -33 -22.5 -54.5t-53.5 -21.5h-135v-174h518q55 0 95 -38.5t40 -94.5v-153h135 q31 0 53.5 -22.5t22.5 -55.5v-383q0 -33 -22.5 -55.5t-53.5 -22.5h-385q-33 0 -54 22.5t-21 55.5v383q0 33 21.5 55.5t53.5 22.5h136v153q0 18 -21 19h-518v-172h135q31 0 53.5 -22.5t22.5 -55.5v-383q0 -33 -22.5 -55.5t-53.5 -22.5h-385q-31 0 -53.5 22.5t-22.5 55.5v383 q0 33 22.5 55.5t53.5 22.5h135v172h-518q-20 0 -20 -19v-153h135q33 0 55.5 -22.5t22.5 -55.5v-383q0 -33 -22.5 -55.5t-55.5 -22.5h-383q-33 0 -55.5 22.5t-22.5 55.5z" />
+<glyph unicode="&#xf0e9;" horiz-adv-x="1884" d="M0 770q31 137 109.5 253t193.5 204t257 141t302 66v53q0 35 23.5 57.5t56.5 22.5q35 0 57.5 -22.5t22.5 -57.5v-53q160 -12 303 -65.5t258 -141.5t192.5 -204t108.5 -253q6 -29 -20 -43q-10 -6 -19 -6q-20 0 -28 12q-98 102 -218 103q-86 0 -163.5 -54.5t-130.5 -152.5 q-10 -23 -35 -23t-35 23q-82 150 -213 194v-526q0 -68 -23.5 -127t-63.5 -104.5t-93.5 -71t-114.5 -25.5t-115.5 25.5t-94.5 71t-63.5 104.5t-23.5 127q0 35 23.5 57.5t56.5 22.5q35 0 57.5 -22.5t22.5 -57.5q0 -70 40 -119t97 -49q55 0 95 49t40 119v526 q-131 -45 -213 -194q-10 -23 -35 -23t-34 23q-53 98 -130 152.5t-163 54.5q-121 0 -217 -103q-12 -12 -31 -12q-10 0 -19 6q-25 14 -20 43z" />
+<glyph unicode="&#xf0ea;" horiz-adv-x="1597" d="M0 385v1075q0 31 22.5 53.5t55.5 22.5h921q31 0 53.5 -22.5t22.5 -53.5v-231h33h61q25 0 55.5 -13.5t49.5 -29.5l280 -281q18 -18 30.5 -49t12.5 -55v-62v-678q0 -27 -17 -44t-44 -17h-860q-27 0 -44.5 17.5t-17.5 43.5v246h-536q-33 0 -55.5 22.5t-22.5 55.5zM276 1321 q0 -12 9.5 -21.5t21.5 -9.5h461q12 0 21.5 9.5t9.5 21.5v61q0 12 -9.5 21.5t-21.5 9.5h-461q-12 0 -21.5 -9t-9.5 -22v-61zM737 123h738v555h-367q-27 0 -44 17.5t-17 43.5v367h-310v-983zM1169 801h306q0 2 -3.5 8t-5.5 10l-280 279q0 4 -6 4q-2 0 -2 1t-2 1t-3.5 1t-3.5 1 v-305z" />
+<glyph unicode="&#xf105;" horiz-adv-x="2048" />
+<glyph unicode="&#xf200;" horiz-adv-x="1536" d="M0 57v379q0 39 20.5 87t54.5 90t74.5 73t81.5 35q-35 -59 -34 -129q0 -59 16 -124t59 -106q-18 -37 -18 -75q0 -72 50 -122t122 -50q37 0 68.5 13t55 36.5t37 55.5t13.5 67t-13.5 66.5t-37 55t-55 38t-68.5 14.5q-18 0 -36.5 -5t-35.5 -14q-12 12 -20 31t-13.5 40.5 t-7.5 41.5t-2 37q0 47 28 86t62 67l142 21q-92 57 -142.5 150.5t-50.5 201.5q0 86 33 162t90 133t133 90t162 33t162 -33t133 -90t90 -133t33 -162q0 -109 -50.5 -202t-142.5 -150l158 -23q18 -16 34.5 -36.5t16.5 -47.5q0 -45 -18 -77q-59 33 -121 32q-45 0 -87 -17 t-77 -46q-6 2 -11 3t-11 1q-47 0 -82 -34t-35 -81t34.5 -80.5t82.5 -33.5q47 0 80.5 33.5t33.5 80.5q0 8 -2 15.5t-4 13.5q16 12 35.5 20.5t42.5 8.5q55 0 95 -39t40 -94q0 -23 -8 -41.5t-19 -34.5q-25 10 -45 10q-47 0 -81.5 -34t-34.5 -81t34.5 -80.5t81.5 -33.5t81 33.5 t34 80.5l-2 4q74 74 74 177q0 74 -41 137q45 70 45 157q0 31 -12 62q41 -4 83 -34t74.5 -72t53 -90t20.5 -89v-379q-10 -6 -22.5 -15t-25.5 -18.5t-26.5 -16.5t-21.5 -7h-1344q-35 0 -52 20.5t-44 36.5zM369 287q0 25 17 41t40 16q25 0 41 -16t16 -41q0 -23 -16 -40.5 t-41 -17.5q-23 0 -40 17.5t-17 40.5z" />
+<glyph unicode="&#xf201;" horiz-adv-x="1597" />
+<glyph unicode="&#xf202;" horiz-adv-x="1597" />
+<glyph unicode="&#xf203;" horiz-adv-x="1597" />
+<glyph unicode="&#xf204;" horiz-adv-x="1597" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/view/theme/vier/font/fontawesome-webfont.ttf b/view/theme/vier/font/fontawesome-webfont.ttf
new file mode 100755 (executable)
index 0000000..c17e9f8
Binary files /dev/null and b/view/theme/vier/font/fontawesome-webfont.ttf differ
diff --git a/view/theme/vier/font/fontawesome-webfont.woff b/view/theme/vier/font/fontawesome-webfont.woff
new file mode 100755 (executable)
index 0000000..09f2469
Binary files /dev/null and b/view/theme/vier/font/fontawesome-webfont.woff differ
diff --git a/view/theme/vier/mail_list.tpl b/view/theme/vier/mail_list.tpl
new file mode 100644 (file)
index 0000000..1d78db2
--- /dev/null
@@ -0,0 +1,8 @@
+<div class="mail-list-wrapper">
+       <span class="mail-subject {{if $seen}}seen{{else}}unseen{{endif}}"><a href="message/$id" class="mail-link">$subject</a></span>
+       <span class="mail-from">$from_name</span>
+       <span class="mail-date">$date</span>
+       <span class="mail-count">$count</span>
+       
+       <a href="message/dropconv/$id" onclick="return confirmDelete();"  title="$delete" class="mail-delete"><i class="icon-trash icon-large"></i></a>
+</div>
index bb3ce2016cb0ba5e8c52b6ed8191b3881725a3de..b2b6cc785556c2c7862eee3d54ca76253b8ee7b6 100644 (file)
@@ -6,20 +6,6 @@
 </header>
 <nav>
        <ul>
-               {{ if $userinfo }}
-                       <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="$sitelocation"><img src="$userinfo.icon" alt="$userinfo.name"></a>
-                               <ul id="nav-user-menu" class="menu-popup">
-                                       {{ for $nav.usermenu as $usermenu }}
-                                               <li><a class="$usermenu.2" href="$usermenu.0" title="$usermenu.3">$usermenu.1</a></li>
-                                       {{ endfor }}
-                                       
-                                       {{ if $nav.notifications }}<li><a class="$nav.notifications.2" href="$nav.notifications.0" title="$nav.notifications.3" >$nav.notifications.1</a></li>{{ endif }}
-                                       {{ if $nav.messages }}<li><a class="$nav.messages.2" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a></li>{{ endif }}
-                                       {{ if $nav.contacts }}<li><a class="$nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.3" >$nav.contacts.1</a></li>{{ endif }}        
-                               </ul>
-                       </li>
-               {{ endif }}
-               
                {{ if $nav.community }}
                        <li id="nav-community-link" class="nav-menu $sel.community">
                                <a class="$nav.community.2" href="$nav.community.0" title="$nav.community.3" >$nav.community.1</a>
                                <span id="home-update" class="nav-notify"></span>
                        </li>
                {{ endif }}
-               
-               {{ if $nav.notifications }}
-                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1"><span class="icon s22 notify">$nav.notifications.1</span></a>
-                               <span id="notify-update" class="nav-notify"></span>
-                               <ul id="nav-notifications-menu" class="menu-popup">
-                                       <li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">$nav.notifications.mark.1</a></li>
-                                       <li id="nav-notifications-see-all"><a href="$nav.notifications.all.0">$nav.notifications.all.1</a></li>
-                                       <li class="empty">$emptynotifications</li>
-                               </ul>
-                       </li>           
-               {{ endif }}             
-               
+               {{ if $nav.messages }}
+                       <li id="nav-messages-linkmenu" class="nav-menu">
+                               <a href="$nav.messages.0" rel="#nav-messages-menu" title="$nav.messages.1">$nav.messages.1
+                               <span id="mail-update" class="nav-notify"></span></a>
+                               <ul id="nav-messages-menu" class="menu-popup">
+                                       <li id="nav-messages-see-all"><a href="$nav.messages.0">$nav.messages.1</a></li>
+                                        <li id="nav-messages-see-all"><a href="$nav.messages.new.0">$nav.messages.new.1</a></li>
+                               </ul>
+                        </li>           
+                {{ endif }}
+
                <li id="nav-site-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-site-menu"><span class="icon s22 gear">Site</span></a>
                        <ul id="nav-site-menu" class="menu-popup">
                                {{ if $nav.manage }}<li><a class="$nav.manage.2" href="$nav.manage.0" title="$nav.manage.3">$nav.manage.1</a></li>{{ endif }}                           
-
+                               {{ if $nav.help }} <li><a class="$nav.help.2" target="friendica-help" href="$nav.help.0" title="$nav.help.3" >$nav.help.1</a></li>{{ endif }}
+                               <li><a class="$nav.search.2" href="friendica" title="Site Info / Impressum" >Info/Impressum</a></li>
+                               <li><a class="$nav.directory.2" href="$nav.directory.0" title="$nav.directory.3" >$nav.directory.1</a></li>
                                {{ if $nav.settings }}<li><a class="$nav.settings.2" href="$nav.settings.0" title="$nav.settings.3">$nav.settings.1</a></li>{{ endif }}
                                {{ if $nav.admin }}<li><a class="$nav.admin.2" href="$nav.admin.0" title="$nav.admin.3" >$nav.admin.1</a></li>{{ endif }}
 
                                {{ if $nav.login }}<li><a class="$nav.login.2" href="$nav.login.0" title="$nav.login.3" >$nav.login.1</a><li>{{ endif }}
                        </ul>           
                </li>
+               {{ if $nav.notifications }}
+                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1"><span class="icon s22 notify">$nav.notifications.1</span></a>
+                               <span id="notify-update" class="nav-notify"></span>
+                               <ul id="nav-notifications-menu" class="menu-popup">
+                                       <li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">$nav.notifications.mark.1</a></li>
+                                       <li id="nav-notifications-see-all"><a href="$nav.notifications.all.0">$nav.notifications.all.1</a></li>
+                                       <li class="empty">$emptynotifications</li>
+                               </ul>
+                       </li>           
+               {{ endif }}             
                
+<!--           
                {{ if $nav.help }} 
                <li id="nav-help-link" class="nav-menu $sel.help">
                        <a class="$nav.help.2" target="friendica-help" href="$nav.help.0" title="$nav.help.3" >$nav.help.1</a>
                </li>
                {{ endif }}
+-->
 
-               <li id="nav-search-link" class="nav-menu $sel.search">
-                       <a class="$nav.search.2" href="$nav.search.0" title="$nav.search.3" >$nav.search.1</a>
-               </li>
-               <li id="nav-directory-link" class="nav-menu $sel.directory">
-                       <a class="$nav.directory.2" href="$nav.directory.0" title="$nav.directory.3" >$nav.directory.1</a>
-               </li>
+               {{ if $userinfo }}
+                       <li id="nav-user-linklabel" class="nav-menu"><a href="#" rel="#nav-user-menu" title="$sitelocation">$userinfo.name</a>
+                       <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="$sitelocation"><img src="$userinfo.icon" alt="$userinfo.name"></a>
+                               <ul id="nav-user-menu" class="menu-popup">
+                                       {{ for $nav.usermenu as $usermenu }}
+                                               <li><a class="$usermenu.2" href="$usermenu.0" title="$usermenu.3">$usermenu.1</a></li>
+                                       {{ endfor }}
+                                       
+                                       {{ if $nav.notifications }}<li><a class="$nav.notifications.2" href="$nav.notifications.0" title="$nav.notifications.3" >$nav.notifications.1</a></li>{{ endif }}
+                                       {{ if $nav.messages }}<li><a class="$nav.messages.2" href="$nav.messages.0" title="$nav.messages.3" >$nav.messages.1</a></li>{{ endif }}
+                                       {{ if $nav.contacts }}<li><a class="$nav.contacts.2" href="$nav.contacts.0" title="$nav.contacts.3" >$nav.contacts.1</a></li>{{ endif }}        
+                               </ul>
+                       </li>
+               {{ endif }}
+               
+               {{ if $nav.search}}
+                <li id="search-box">
+                        <form method="get" action="$nav.search.0">
+                               <input id="search-text" class="nav-menu-search" type="text" value="" name="search">
+                        </form>
+                </li>
+               {{ endif }}
                
                {{ if $nav.apps }}
                        <li id="nav-apps-link" class="nav-menu $sel.apps">
 <span id="nav-link-wrapper" >
 
 {{ if $nav.register }}<a id="nav-register-link" class="nav-commlink $nav.register.2" href="$nav.register.0" title="$nav.register.3" >$nav.register.1</a>{{ endif }}
-       
+
 <a id="nav-help-link" class="nav-link $nav.help.2" target="friendica-help" href="$nav.help.0" title="$nav.help.3" >$nav.help.1</a>
        
 {{ if $nav.apps }}<a id="nav-apps-link" class="nav-link $nav.apps.2" href="$nav.apps.0" title="$nav.apps.3" >$nav.apps.1</a>{{ endif }}
 {{ endif }}
 
 {{ if $nav.manage }}<a id="nav-manage-link" class="nav-commlink $nav.manage.2" href="$nav.manage.0" title="$nav.manage.3">$nav.manage.1</a>{{ endif }}
-
 {{ if $nav.settings }}<a id="nav-settings-link" class="nav-link $nav.settings.2" href="$nav.settings.0" title="$nav.settings.3">$nav.settings.1</a>{{ endif }}
 {{ if $nav.profiles }}<a id="nav-profiles-link" class="nav-link $nav.profiles.2" href="$nav.profiles.0" title="$nav.profiles.3" >$nav.profiles.1</a>{{ endif }}
 
index 83c36cb06844c7abdf42462f7282a18db688d644..0e01532f8b7959dc0e9054b13783a5989603285d 100644 (file)
@@ -45,7 +45,7 @@
        </div>
        <div class="wall-item-bottom">
                <div class="">
-                       {{ if $item.plink }}<a class="icon s16 link" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
+                       {{ if $item.plink }}<a title="$item.plink.title" href="$item.plink.href"><i class="icon-link icon-large"></i></a>{{ endif }}
                </div>
                <div class="wall-item-actions">
 
index 96903bba0027e0c3f3d20292ffe1d039906f8c9c..2c4a7c7049618171a04de50c093f1ee035ec2b8f 100644 (file)
@@ -3,6 +3,9 @@
  * Additional Changes: Michael Vogel <icarus@dabo.de>
  **/
 
+/* @import "css/font-awesome.css"; */
+@import url("css/font-awesome.css") all;
+
 /* ========= */
 /* = Admin = */
 /* ========= */
 .hide-comments-outer {
   margin-left: 80px;
   margin-bottom: 5px;
-  width: 684px;
+  width: 660px;
   border-bottom: 1px solid #BDCDD4;
   border-top: 1px solid #BDCDD4;
 
@@ -340,12 +343,13 @@ h4 {
 }
 
 a {
-       color: #36C;
+       /*  color: #36C; */
        /* color: #3e3e8c; */
+       color: #3465A4;
        text-decoration: none;
 }
 a:hover {
-       /* color: blue; */
+       color: blue;
        text-decoration: underline
 }
 
@@ -373,13 +377,14 @@ a:hover {
   clear: both;
 }
 .fakelink {
-  color: #36c;
+  /* color: #36c; */
   /* color: #3e3e8c; */
+  color: #3465A4;
   text-decoration: none;
   cursor: pointer;
 }
 .fakelink:hover {
-  /* color: blue; */
+  color: blue;
   /*color: #005c94; */
   text-decoration: underline;
 }
@@ -449,8 +454,9 @@ div.jGrowl div.info {
 /* header */
 header {
   position: fixed;
-  left: 43%;
-  right: 43%;
+  /* left: 43%;
+  right: 43%; */
+  left: 25px;
   top: 0px;
   margin: 0px;
   padding: 0px;
@@ -492,7 +498,8 @@ nav {
   left: 0px;
   top: 0px;
   padding: 0px;
- background: #364A84;
+  padding-left: 0px;
+  background: #364A84;
     background: -moz-linear-gradient(top, #516499 0%, #364a84 100%);
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#516499), color-stop(100%,#364a84));
     background: -webkit-linear-gradient(top, #516499 0%,#364a84 100%);
@@ -505,6 +512,7 @@ nav {
   -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
   -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
+  border-bottom: 5px solid #F80;
 }
 nav a,
 nav a:active,
@@ -517,7 +525,7 @@ nav a:hover {
 }
 nav ul {
   margin: 0px;
-  padding: 0px 20px;
+  padding: 0px 10px;
 }
 nav ul li {
   list-style: none;
@@ -529,6 +537,19 @@ nav ul li .menu-popup {
   left: 0px;
   right: auto;
 }
+nav #search-box #search-text {
+  background-image:  url('icons/lupe.png');
+  background-repeat:no-repeat;
+  padding-left:0px;
+  border-top-left-radius: 15px;
+  border-top-right-radius: 15px;
+  border-bottom-right-radius: 15px;
+  border-bottom-left-radius: 15px;
+  position: relative;
+  height: 17px;
+  margin: 4px 0px 4px 4px;
+}
+
 nav .nav-menu-icon {
   position: relative;
   height: 22px;
@@ -548,21 +569,34 @@ nav .nav-menu-icon img {
 nav .nav-menu-icon .nav-notify {
   top: 3px;
 }
+nav .nav-menu-label {
+  margin: 3px 5px 0px;
+}
 nav .nav-menu {
   position: relative;
   height: 16px;
   padding: 5px;
-  margin: 3px 15px 0px;
+  padding-left: 5px;
+  padding-right: 5px;
+  margin: 3px 3px 0px;
   font-size: 13px;
   border-bottom: 3px solid #364A84;
 }
 nav .nav-menu.selected {
   border-bottom: 3px solid #9eabb0;
+ /*  background-color: #364E59; */
+}
+nav .nav-menu:hover {
+    color: #fff !important;
+    /* text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5); */
+    background: #4c619c;
+    text-decoration: none;
 }
 nav .nav-notify {
   display: none;
   position: absolute;
-  background-color: #36c;
+ /*  background-color: #36c; */
+   background-color: #F80;
   /* background-color: #19aeff; */
   -moz-border-radius: 5px 5px 5px 5px;
   -webkit-border-radius: 5px 5px 5px 5px;
@@ -570,9 +604,11 @@ nav .nav-notify {
   font-size: 10px;
   padding: 1px 3px;
   top: 0px;
-  right: -10px;
+  /* right: -10px; */
+  right: -5px;
   min-width: 15px;
-  text-align: right;
+  /* text-align: right; */
+  text-align: center;
 }
 nav .nav-notify.show {
   display: block;
@@ -581,24 +617,52 @@ nav #nav-help-link,
 nav #nav-search-link,
 nav #nav-directory-link,
 nav #nav-apps-link,
-nav #nav-site-linkmenu {
+nav #nav-notifications-linkmenu,
+nav #nav-site-linkmenu,
+nav #nav-user-linklabel {
   float: right;
 }
+nav #nav-user-linklabel {
+  padding-left: 0px;
+  margin-left: 0px;
+}
 nav #nav-help-link .menu-popup,
 nav #nav-search-link .menu-popup,
 nav #nav-directory-link .menu-popup,
 nav #nav-apps-link .menu-popup,
+nav #nav-notifications-linkmenu .menu-popup,
 nav #nav-site-linkmenu .menu-popup {
   right: 0px;
   left: auto;
 }
+nav #nav-site-linkmenu {
+  margin-left: 0px;
+  margin-right: 0px;
+}
+nav #nav-notifications-linkmenu {
+  margin-left: 0px;
+  margin-right: 5px;
+}
 nav #nav-notifications-linkmenu.on .icon.s22.notify, nav #nav-notifications-linkmenu.selected .icon.s22.notify {
   background-image: url("../../../images/icons/22/notify_on.png");
 }
+nav #nav-messages-linkmenu.selected,
+nav #nav-user-linklabel.selected,
 nav #nav-apps-link.selected {
   background-color: #364e59;
 }
 
+nav #nav-community-link {
+  margin-left: 215px;
+}
+
+nav #nav-user-linkmenu {
+  float: right;
+  padding-left: 0px;
+  padding-right: 0px;
+  margin-right: 5px;
+}
+
 #nav-notifications-mark-all {
        /* padding: 1px 1px 2px 26px; */
        /* border-bottom: 1px solid #364E59; */
@@ -722,7 +786,7 @@ ul.menu-popup .empty {
 aside {
   display: table-cell;
   vertical-align: top;
-  width: 200px;
+  width: 185px;
   padding: 0px 10px 0px 20px;
   border-right: 1px solid #D2D2D2;
   /* background: #F1F1F1; */
@@ -779,6 +843,28 @@ aside #dfrn-request-link:hover {
 aside #profiles-menu {
   width: 20em;
 }
+
+aside #search-text {
+  width: 150px;
+  height: 17px;
+  padding-left: 10px;
+  border-top-left-radius: 15px;
+  border-top-right-radius: 15px;
+  border-bottom-right-radius: 15px;
+  border-bottom-left-radius: 15px;
+  -moz-border-bottom-colors: #dbdbdb;
+  -moz-border-top-colors: #999;
+  -moz-border-left-colors: #999;
+  -moz-border-right-colors: #dbdbdb;
+}
+
+.nets-ul {
+  margin-top: 0px;
+}
+.nets-all {
+  margin-left: 10px;
+}
+
 #contact-block {
   overflow: auto;
   height: auto;
@@ -801,8 +887,20 @@ aside #profiles-menu {
   margin: 0px 2px 2px 0px;
 }
 #contact-block .contact-block-link img {
-  widht: 48px;
-  height: 58px;
+  width: 48px;
+  height: 48px;
+}
+.group_selected {
+  background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;
+  float: left;
+  height: 22px;
+  width: 22px;
+}
+.group_unselected {
+  background: url("../../../view/theme/diabook/icons/unselected.png") no-repeat left center;
+  float: left;
+  height: 22px;
+  width: 22px;
 }
 /* widget */
 .widget {
@@ -857,11 +955,15 @@ aside #profiles-menu {
 }
 .widget ul {
   padding: 0px;
+  -webkit-margin-before: 0em;
+  -webkit-margin-after: 0em;
 }
 .widget ul li {
-  padding-left: 16px;
-  min-height: 16px;
+  padding-left: 10px;
+  /* min-height: 20px; */
   list-style: none;
+  padding-top: 1px;
+  padding-bottom: 1px;
 }
 .widget .tool.selected {
   background: url('../../../images/selected.png') no-repeat left center;
@@ -875,7 +977,7 @@ aside #profiles-menu {
 section {
   display: table-cell;
   vertical-align: top;
-  width: 800px;
+  width: 760px;
   padding: 0px 0px 0px 10px;
 }
 /* wall item */
@@ -884,11 +986,11 @@ section {
   position: relative;
   padding: 5px;
   margin-bottom: 0px;
-  width: 775px;
+  /* width: 755px; */
 }
 .wall-item-decor {
   position: absolute;
-  left: 790px;
+  left: 755px;
   top: -10px;
   width: 16px;
 }
@@ -897,7 +999,7 @@ section {
 }
 .wall-item-container {
   display: table;
-  width: 780px;
+  width: 745px;
 }
 .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom {
   display: table-row;
@@ -949,11 +1051,32 @@ section {
 }
 
 .wall-item-container .wall-item-content img {
-  max-width: 700px;
+  max-width: 650px;
+  /* max-width: 580px; */
+}
+.children .wall-item-container .wall-item-item .wall-item-content img {
+  /* max-width: 650px; */
+  max-width: 580px;
 }
 .wall-item-container .wall-item-links, .wall-item-container .wall-item-actions {
   display: table-cell;
   vertical-align: middle;
+  /* font-size: 17px; */
+}
+.mail-list-wrapper a,
+.wall-item-container .wall-item-bottom a,
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions a,
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-links a,
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions .fakelink {
+  color: #999;
+}
+.mail-list-wrapper a:hover,
+.wall-item-container .wall-item-bottom a:hover,
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions a:hover,
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-links a:hover,
+.wall-item-container .wall-item-links, .wall-item-container .wall-item-actions .fakelink:hover {
+  color: #000;
+  text-decoration: none;
 }
 .wall-item-container .wall-item-links .icon, .wall-item-container .wall-item-actions .icon {
   opacity: 0.5;
@@ -992,15 +1115,17 @@ section {
 }
 .wall-item-container .wall-item-actions-tools a {
   float: right;
+  margin-left: 10px;
 }
 .wall-item-container .wall-item-actions-tools input {
   float: right;
+  margin-left: 10px;
 }
 .wall-item-container.comment {
   margin-top: 5px;
   margin-bottom: 5px;
   margin-left: 80px;
-  width: 700px;
+  width: 665px;
   border-bottom: 1px solid hsl(198, 21%, 79%);
 }
 .wall-item-container.comment .contact-photo {
@@ -1037,6 +1162,12 @@ section {
   color: #2d2d2d;
   border: 1px solid #2d2d2d;
 }
+
+.fakelink.togglecomment {
+  float: left;
+  margin-right: 1em;
+}
+
 .comment-edit-preview {
   width: 710px;
   border: 1px solid #2d2d2d;
@@ -1070,6 +1201,38 @@ section {
        border-right: 1px solid #A7C7F7;
        padding-right: 12px;
 }
+
+#profile-jot-form #profile-jot-text {
+  height: 2.0em;
+  width: 99%;
+  font-size: 15px;
+  color: #999999;
+  border: 1px solid #DDD;
+  padding: 0.3em;
+  margin-bottom: 10px;
+}
+
+#profile-jot-form #jot-title, #profile-jot-form #jot-category {
+    
+         border-radius: 5px 5px 5px 5px;
+    font-weight: bold;
+    height: 20px;
+    margin: 0 0 5px;
+    width: 60%;
+    border: 1px solid #d2d2d2;
+}
+
+#profile-jot-form #jot-title:-webkit-input-placeholder {
+  font-weight: normal;
+}
+#profile-jot-form #jot-title:-moz-placeholder {
+  font-weight: normal;
+}
+#profile-jot-form #profile-jot-text_parent #profile-jot-text_tbl{
+  width: 785px;
+  height: 100px;
+}
+
 #jot-preview-content .tread-wrapper {
   background-color: #fce94f;
 }
@@ -1329,7 +1492,7 @@ section {
   clear: both;
 }
 #profile-jot-text_tbl {
-  width: 800px;
+  width: 780px;
 }
 #profile-jot-wrapper {
   margin-bottom: 20px;
@@ -1685,6 +1848,10 @@ blockquote {
 #prof-separator { display: none;}
 */
 
+#prvmail-upload {
+  margin-left: 10px;
+}
+
 #prvmail-to-label, #prvmail-subject-label, #prvmail-message-label {
        margin-bottom: 10px;
        margin-top: 20px;
@@ -1693,7 +1860,6 @@ blockquote {
 #prvmail-submit {
        float: left;
        margin-top: 10px;
-       margin-right: 30px;
 }
 #prvmail-upload-wrapper,
 #prvmail-link-wrapper,
@@ -1862,7 +2028,7 @@ a.mail-list-link {
 }
 
 .app-title {
-        margin: 10px;
+  margin: 0px;
 }
 
 #identity-manage-desc {
@@ -2020,3 +2186,144 @@ a.mail-list-link {
         width: 175px;
 }
 
+.menu-profile-list{
+  height: auto;
+  overflow: auto;
+  min-height: 16px;
+  list-style: none;
+        }
+.menu-profile-list:hover{
+        background: #E7F2F7;
+        }
+.menu-profile-list-item{
+        padding-left: 5px;
+        vertical-align: middle;
+        }       
+.menu-profile-list-item:hover{  
+        text-decoration: none;
+   }
+
+.autocomplete {
+  width: 350px;
+  color: black; 
+  border: 1px solid rgb(210, 210, 210); 
+  background-color: white;
+  cursor: pointer;
+  text-align: left;
+  max-height: 350px;
+  overflow: auto;
+  display: block;
+  background-position: initial initial;
+  background-repeat: initial initial; 
+}
+.mail-list-wrapper {
+  background-color: #f6f7f8;
+  margin-bottom: 5px;
+  width: 100%;
+  height: auto;
+  overflow: hidden;
+}
+.mail-list-wrapper span {
+  display: block;
+  float: left;
+  width: 20%;
+  overflow: hidden;
+}
+.mail-list-wrapper .mail-subject {
+  width: 30%;
+  padding: 4px 0px 0px 4px;
+}
+.mail-list-wrapper .mail-subject a {
+  display: block;
+}
+.mail-list-wrapper .mail-subject.unseen a {
+  font-weight: bold;
+}
+.mail-list-wrapper .mail-date {
+  padding: 4px 4px 0px 4px;
+}
+.mail-list-wrapper .mail-from {
+  padding: 4px 4px 0px 4px;
+}
+.mail-list-wrapper .mail-count {
+  padding: 4px 4px 0px 4px;
+  text-align: right;
+}
+.mail-list-wrapper .mail-delete {
+  float: right;
+}
+#mail-display-subject {
+  background-color: #f6f7f8;
+  color: #2d2d2d;
+  margin-bottom: 10px;
+  width: 100%;
+  height: auto;
+  overflow: hidden;
+}
+#mail-display-subject span {
+  float: left;
+  overflow: hidden;
+  padding: 4px 0px 0px 10px;
+}
+#mail-display-subject .mail-delete {
+  float: right;
+  opacity: 0.5;
+  -webkit-transition: all 0.2s ease-in-out;
+  -moz-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  -ms-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out;
+}
+#mail-display-subject:hover .mail-delete {
+  opacity: 1;
+  -webkit-transition: all 0.2s ease-in-out;
+  -moz-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  -ms-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out;
+}
+
+.mail-list-outside-wrapper-end {
+        clear: both;
+}
+.mail-list-outside-wrapper {
+        margin-top: 30px;
+}
+.mail-list-delete-wrapper {
+        float: right;
+        margin-right: 30px;
+        margin-top: 15px;
+}
+.mail-list-delete-icon {
+        border: none;
+}
+.mail-conv-sender,
+.mail-conv-detail {
+        float: left;
+}
+.mail-conv-detail {
+        margin-left: 20px;
+        width: 500px;
+}
+.mail-conv-subject {
+    font-size: 1.4em;
+    margin: 10px 0;
+}
+.mail-conv-outside-wrapper-end {
+        clear: both;
+}
+.mail-conv-outside-wrapper {
+        margin-top: 30px;
+}
+.mail-conv-delete-wrapper {
+        float: right;
+        margin-right: 30px;
+        margin-top: 15px;
+}
+.mail-conv-break {
+        clear: both;
+}
+.mail-conv-delete-icon {
+        border: none;
+}
+
diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php
new file mode 100644 (file)
index 0000000..7dd3797
--- /dev/null
@@ -0,0 +1,9 @@
+<?php
+/**
+ * Name: Vier
+ * Version: 0.1
+ * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
+ * Author: Ike <http://pirati.ca/profile/heluecht>
+ * Maintainer: Ike <http://pirati.ca/profile/heluecht>
+ */
index 78c8f3cee18f17e65b0c1851c9fdf913a311fa6f..19b612b08d22ab255fdaa07fe2a099c14752abe2 100644 (file)
                                </a>
                        </div>
                        {{ endif }}                     
-                       <div class="wall-item-location">$item.location</div>    
                </div>
+               <div class="wall-item-actions-author">
+                       <a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a>
+                        {{ if $item.owner_url }}$item.via <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> <!-- $item.vwall -->{{ endif }}
+                       <span class="wall-item-ago">-
+                               {{ if $item.plink }}<a class="link" title="$item.plink.title" href="$item.plink.href" style="color: #999">$item.ago</a>{{ else }} $item.ago {{ endif }}
+                               {{ if $item.lock }} - <span class="fakelink" style="color: #999" onclick="lockview(event,$item.id);">$item.lock</span> {{ endif }}
+                       </span>
+               </div>
+
                <div class="wall-item-content">
                        {{ if $item.title }}<h2><a href="$item.plink.href" class="$item.sparkle">$item.title</a></h2>{{ endif }}
                        $item.body
        </div>  
        <div class="wall-item-bottom">
                <div class="wall-item-links">
-                       {{ if $item.plink }}<a class="icon s16 link$item.sparkle" title="$item.plink.title" href="$item.plink.href">$item.plink.title</a>{{ endif }}
+                       {{ if $item.plink }}<a title="$item.plink.title" href="$item.plink.href"><i class="icon-link icon-large"></i></a>{{ endif }}
                </div>
                <div class="wall-item-actions">
-                       <div class="wall-item-actions-author">
-                               <a href="$item.profile_url" target="redir"
-                                title="$item.linktitle"
-                                class="wall-item-name-link"><span
-                                class="wall-item-name$item.sparkle">$item.name</span></a>
-                                <span class="wall-item-ago" title="$item.localtime">$item.ago</span>
-                                {{ if $item.owner_url }}<br/>$item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall
-                                {{ endif }}
-                       </div>
-                       
                        <div class="wall-item-actions-social">
+                       {{ if $item.threaded }}{{ if $item.comment }}
+                               <span id="comment-$item.id" class="fakelink togglecomment" onclick="openClose('item-comments-$item.id');"><i class="icon-comment"></i></span>
+                       {{ endif }}{{ endif }}
+                       {{ if $item.vote }}
+                               <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false"><i class="icon-thumbs-up icon-large"></i></a>
+                               <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false"><i class="icon-thumbs-down icon-large"></i></a>
+                       {{ endif }}
+                       {{ if $item.vote.share }}
+                               <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false"><i class="icon-share icon-large"></i></a>
+                       {{ endif }}
                        {{ if $item.star }}
-                               <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;"  class="$item.star.classdo"  title="$item.star.do">$item.star.do</a>
-                               <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;"  class="$item.star.classundo"  title="$item.star.undo">$item.star.undo</a>
-                               <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger">$item.star.tagger</a>
-
+                               <a href="#" id="star-$item.id" onclick="dostar($item.id); return false;"  class="$item.star.classdo"  title="$item.star.do"><i class="icon-star icon-large"></i></a>
+                               <a href="#" id="unstar-$item.id" onclick="dostar($item.id); return false;"  class="$item.star.classundo"  title="$item.star.undo"><i class="icon-star-empty icon-large"></i></a>
+                               <a href="#" id="tagger-$item.id" onclick="itemTag($item.id); return false;" class="$item.star.classtagger" title="$item.star.tagger"><i class="icon-tags icon-large"></i></a>
                        {{ endif }}
                        {{ if $item.filer }}
-                                <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer">$item.filer</a>
-                       {{ endif }}                     
-                       
-                       {{ if $item.vote }}
-                               <a href="#" id="like-$item.id" title="$item.vote.like.0" onclick="dolike($item.id,'like'); return false">$item.vote.like.1</a>
-                               <a href="#" id="dislike-$item.id" title="$item.vote.dislike.0" onclick="dolike($item.id,'dislike'); return false">$item.vote.dislike.1</a>
+                                <a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"><i class="icon-folder-close icon-large"></i></a>
                        {{ endif }}
-                                               
-                       {{ if $item.vote.share }}
-                               <a href="#" id="share-$item.id" title="$item.vote.share.0" onclick="jotShare($item.id); return false">$item.vote.share.1</a>
-                       {{ endif }}                     
                        </div>
-                       
+                       <div class="wall-item-location">$item.location</div>                            
                        <div class="wall-item-actions-tools">
 
                                {{ if $item.drop.pagedrop }}
                                        <input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
                                {{ endif }}
                                {{ if $item.drop.dropping }}
-                                       <a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
+                                       <a href="item/drop/$item.id" onclick="return confirmDelete();" title="$item.drop.delete"><i class="icon-trash icon-large"></i></a>
                                {{ endif }}
                                {{ if $item.edpost }}
-                                       <a class="icon edit s16" href="$item.edpost.0" title="$item.edpost.1"></a>
+                                       <a href="$item.edpost.0" title="$item.edpost.1"><i class="icon-edit icon-large"></i></a>
                                {{ endif }}
                        </div>
                        
        {{ if $item.threaded }}{{ if $item.comment }}
        <div class="wall-item-bottom">
                <div class="wall-item-links"></div>
-               <div class="wall-item-comment-wrapper">
+               <div class="wall-item-comment-wrapper" id="item-comments-$item.id" style="display: none;">
                                        $item.comment
                </div>
        </div>
 {{ endif }}
 
 {{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
+<div class="wall-item-comment-wrapper" id="item-comments-$item.id">$item.comment</div>
 {{ endif }}{{ endif }}{{ endif }}
 
 
 {{ if $item.flatten }}
-<div class="wall-item-comment-wrapper" >$item.comment</div>
+<div class="wall-item-comment-wrapper" id="item-comments-$item.id">$item.comment</div>
 {{ endif }}
diff --git a/view/zh-cn/follow_notify_eml.tpl b/view/zh-cn/follow_notify_eml.tpl
new file mode 100644 (file)
index 0000000..48f75f3
--- /dev/null
@@ -0,0 +1,14 @@
+
+尊敬的$[myname],
+
+您有新关注的在$[sitename]-「$[requestor]」。
+
+您能看他的简介在$[url]。
+
+请再您的网页登记为确认或取消要求。
+
+$[siteurl]
+
+谨上,
+
+       $[sitename]行政人员
\ No newline at end of file
diff --git a/view/zh-cn/friend_complete_eml.tpl b/view/zh-cn/friend_complete_eml.tpl
new file mode 100644 (file)
index 0000000..a25896f
--- /dev/null
@@ -0,0 +1,22 @@
+
+尊敬的$[username],
+
+       精彩新闻... 「$[fn]」在「$[dfrn_url]」接受了 
+您的连通要求在「$[sitename]」。
+
+您们现在是共同的朋友们,会兑换现状更新,照片和邮件
+无限
+
+请看您的联络页在$[sitename]如果您想做 
+什么变化关于这个关系。 
+
+$[siteurl]
+
+[例如,您会想造成区分的简介括无
+公开-和分配看权利给「$[fn]」
+
+谨上,
+
+       $[sitename]行政人员
+
\ No newline at end of file
diff --git a/view/zh-cn/intro_complete_eml.tpl b/view/zh-cn/intro_complete_eml.tpl
new file mode 100644 (file)
index 0000000..8d8d4f6
--- /dev/null
@@ -0,0 +1,22 @@
+
+尊敬的$[username],
+
+       「$[fn]」在「$[dfrn_url]」接受了 
+您的联络要求在「$[sitename]」
+
+       「$[fn]」接受您为迷。这限制 
+有的种类沟通,例如私人信息和简介
+操作。如果这是名人或社会页,这些设置是
+自动地应用。
+
+       「$[fn]」会将来选择延长关系成双向的或更允许的 
+关系。 
+
+       您会开始受到公开的现状更新从「$[fn]」, 
+它们出现在您的「网络」页在  
+
+$[siteurl]
+
+谨上,
+
+       $[sitename]行政人员
\ No newline at end of file
diff --git a/view/zh-cn/lostpass_eml.tpl b/view/zh-cn/lostpass_eml.tpl
new file mode 100644 (file)
index 0000000..8c5ec5c
--- /dev/null
@@ -0,0 +1,32 @@
+
+尊敬的$[username],
+       $[sitename]最近收到一个要求复位您的账户 
+密码。为肯定这个要求,请点击肯定按钮
+在下边或粘贴在您的游览器地址条 
+
+如果您没有要求这个变化,请别点击这个按努i
+和不理或删除这个邮件。 
+
+您密码没有被变化直到我们证实您
+发送这个要求时。 
+
+点击这个按钮为证实您的同一个人:
+
+$[reset_link]
+
+然后您收到后续通信包括新密码。
+
+您会变化密码在您的账户设置页登记后。
+
+登记细节是:
+
+网站位置:  $[siteurl]
+登记名:     $[email]
+
+
+
+
+谨上,
+       $[sitename]行政人员
+
\ No newline at end of file
diff --git a/view/zh-cn/messages.po b/view/zh-cn/messages.po
new file mode 100644 (file)
index 0000000..caef6e3
--- /dev/null
@@ -0,0 +1,9420 @@
+# FRIENDICA Distributed Social Network
+# Copyright (C) 2010, 2011 the Friendica Project
+# This file is distributed under the same license as the Friendica package.
+# 
+# Translators:
+# Mike Macgirvin, 2010.
+#   <transifex.mexon@spamgourmet.com>, 2012.
+msgid ""
+msgstr ""
+"Project-Id-Version: friendica\n"
+"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
+"POT-Creation-Date: 2012-11-14 10:00-0800\n"
+"PO-Revision-Date: 2012-11-18 17:14+0000\n"
+"Last-Translator: matthew_exon <transifex.mexon@spamgourmet.com>\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "评论发表了。"
+
+#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
+#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[嵌入内容-重新加载页为看]"
+
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "熟人设置应用了。"
+
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "熟人更新失败。"
+
+#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
+#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
+#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
+#: ../../mod/notifications.php:66 ../../mod/contacts.php:146
+#: ../../mod/settings.php:86 ../../mod/settings.php:525
+#: ../../mod/settings.php:530 ../../mod/manage.php:90 ../../mod/network.php:6
+#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
+#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
+#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
+#: ../../mod/item.php:155 ../../mod/mood.php:114
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/message.php:38 ../../mod/message.php:168
+#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
+#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
+#: ../../mod/display.php:165 ../../mod/profiles.php:7
+#: ../../mod/profiles.php:424 ../../mod/delegate.php:6
+#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
+#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
+#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
+#: ../../addon/fbpost/fbpost.php:165
+#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3971
+#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
+#: ../../addon.old/facebook/facebook.php:516
+#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
+#: ../../addon.old/dav/friendica/layout.fnk.php:354
+msgid "Permission denied."
+msgstr "权限不够。"
+
+#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
+#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
+msgid "Contact not found."
+msgstr "没找到熟人。"
+
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "维修熟人设置"
+
+#: ../../mod/crepair.php:137
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。"
+
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页"
+
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr ""
+
+#: ../../mod/crepair.php:148 ../../mod/settings.php:545
+#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702
+msgid "Name"
+msgstr "名字"
+
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "帐户昵称"
+
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname越过名/昵称"
+
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "帐户URL"
+
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "朋友请求URL"
+
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "朋友确认URL"
+
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "通知端URL"
+
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "喂URL"
+
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "新照片从这个URL"
+
+#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
+#: ../../mod/events.php:455 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1104 ../../mod/photos.php:1367
+#: ../../mod/photos.php:1407 ../../mod/photos.php:1451
+#: ../../mod/photos.php:1523 ../../mod/install.php:246
+#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
+#: ../../mod/content.php:693 ../../mod/contacts.php:351
+#: ../../mod/settings.php:543 ../../mod/settings.php:697
+#: ../../mod/settings.php:769 ../../mod/settings.php:976
+#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294
+#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689
+#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112
+#: ../../mod/profiles.php:594 ../../mod/invite.php:119
+#: ../../addon/fromgplus/fromgplus.php:40
+#: ../../addon/facebook/facebook.php:619
+#: ../../addon/snautofollow/snautofollow.php:64
+#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
+#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
+#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
+#: ../../addon/uhremotestorage/uhremotestorage.php:89
+#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
+#: ../../addon/remote_permissions/remote_permissions.php:47
+#: ../../addon/remote_permissions/remote_permissions.php:195
+#: ../../addon/startpage/startpage.php:92
+#: ../../addon/geonames/geonames.php:187
+#: ../../addon/forumlist/forumlist.php:175
+#: ../../addon/impressum/impressum.php:83
+#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
+#: ../../addon/qcomment/qcomment.php:61
+#: ../../addon/openstreetmap/openstreetmap.php:70
+#: ../../addon/group_text/group_text.php:84
+#: ../../addon/libravatar/libravatar.php:99
+#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
+#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
+#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
+#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
+#: ../../addon/jappixmini/jappixmini.php:307
+#: ../../addon/statusnet/statusnet.php:278
+#: ../../addon/statusnet/statusnet.php:292
+#: ../../addon/statusnet/statusnet.php:318
+#: ../../addon/statusnet/statusnet.php:325
+#: ../../addon/statusnet/statusnet.php:353
+#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90
+#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
+#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
+#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
+#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394
+#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
+#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
+#: ../../object/Item.php:562 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../addon.old/facebook/facebook.php:619
+#: ../../addon.old/snautofollow/snautofollow.php:64
+#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
+#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
+#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
+#: ../../addon.old/planets/planets.php:158
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
+#: ../../addon.old/randplace/randplace.php:177
+#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
+#: ../../addon.old/startpage/startpage.php:92
+#: ../../addon.old/geonames/geonames.php:187
+#: ../../addon.old/oembed.old/oembed.php:41
+#: ../../addon.old/forumlist/forumlist.php:175
+#: ../../addon.old/impressum/impressum.php:83
+#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/blockem/blockem.php:57
+#: ../../addon.old/qcomment/qcomment.php:61
+#: ../../addon.old/openstreetmap/openstreetmap.php:70
+#: ../../addon.old/group_text/group_text.php:84
+#: ../../addon.old/libravatar/libravatar.php:99
+#: ../../addon.old/libertree/libertree.php:90
+#: ../../addon.old/altpager/altpager.php:87
+#: ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/editplain/editplain.php:84
+#: ../../addon.old/blackout/blackout.php:98
+#: ../../addon.old/gravatar/gravatar.php:95
+#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/ijpost/ijpost.php:93
+#: ../../addon.old/jappixmini/jappixmini.php:307
+#: ../../addon.old/statusnet/statusnet.php:278
+#: ../../addon.old/statusnet/statusnet.php:292
+#: ../../addon.old/statusnet/statusnet.php:318
+#: ../../addon.old/statusnet/statusnet.php:325
+#: ../../addon.old/statusnet/statusnet.php:353
+#: ../../addon.old/statusnet/statusnet.php:576
+#: ../../addon.old/tumblr/tumblr.php:90
+#: ../../addon.old/numfriends/numfriends.php:85
+#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
+#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
+#: ../../addon.old/twitter/twitter.php:180
+#: ../../addon.old/twitter/twitter.php:209
+#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
+#: ../../addon.old/fromapp/fromapp.php:77
+#: ../../addon.old/blogger/blogger.php:102
+#: ../../addon.old/posterous/posterous.php:103
+msgid "Submit"
+msgstr "提交"
+
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "帮助:"
+
+#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
+msgid "Help"
+msgstr "帮助"
+
+#: ../../mod/help.php:90 ../../index.php:218
+msgid "Not Found"
+msgstr "未发现"
+
+#: ../../mod/help.php:93 ../../index.php:221
+msgid "Page not found."
+msgstr "页发现。"
+
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "文件数目超过最多%d"
+
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "文件上传失败。"
+
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "朋友建议发送了。"
+
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "建议朋友们"
+
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "建议朋友给%s"
+
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr ""
+
+#: ../../mod/events.php:279
+msgid "l, F j"
+msgstr "l, F j"
+
+#: ../../mod/events.php:301
+msgid "Edit event"
+msgstr "编项目"
+
+#: ../../mod/events.php:323 ../../include/text.php:1192
+msgid "link to source"
+msgstr "链接到来源"
+
+#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90
+#: ../../include/nav.php:52 ../../boot.php:1745
+msgid "Events"
+msgstr "事件"
+
+#: ../../mod/events.php:348
+msgid "Create New Event"
+msgstr "造成新的项目"
+
+#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
+#: ../../addon.old/dav/friendica/layout.fnk.php:263
+msgid "Previous"
+msgstr "上"
+
+#: ../../mod/events.php:350 ../../mod/install.php:205
+#: ../../addon/dav/friendica/layout.fnk.php:266
+#: ../../addon.old/dav/friendica/layout.fnk.php:266
+msgid "Next"
+msgstr "下"
+
+#: ../../mod/events.php:423
+msgid "hour:minute"
+msgstr "小时:分钟"
+
+#: ../../mod/events.php:433
+msgid "Event details"
+msgstr "项目内容"
+
+#: ../../mod/events.php:434
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr ""
+
+#: ../../mod/events.php:436
+msgid "Event Starts:"
+msgstr "事件开始:"
+
+#: ../../mod/events.php:436 ../../mod/events.php:450
+msgid "Required"
+msgstr ""
+
+#: ../../mod/events.php:439
+msgid "Finish date/time is not known or not relevant"
+msgstr "结束日/时未知或无关"
+
+#: ../../mod/events.php:441
+msgid "Event Finishes:"
+msgstr "事件结束:"
+
+#: ../../mod/events.php:444
+msgid "Adjust for viewer timezone"
+msgstr "调为观众的时间"
+
+#: ../../mod/events.php:446
+msgid "Description:"
+msgstr "描述:"
+
+#: ../../mod/events.php:448 ../../mod/directory.php:134
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
+#: ../../boot.php:1275
+msgid "Location:"
+msgstr "位置:"
+
+#: ../../mod/events.php:450
+msgid "Title:"
+msgstr ""
+
+#: ../../mod/events.php:452
+msgid "Share this event"
+msgstr "分享这个项目"
+
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:142
+#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544
+#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45
+#: ../../include/conversation.php:1005
+#: ../../addon.old/js_upload/js_upload.php:45
+msgid "Cancel"
+msgstr "退消"
+
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "标签去除了"
+
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "去除项目标签"
+
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "选择标签去除"
+
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+#: ../../addon/dav/common/wdcal_edit.inc.php:468
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
+msgid "Remove"
+msgstr "移走"
+
+#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr ""
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "授权应用连接"
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "回归您的应用和输入这个安全密码:"
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "请登记为继续。"
+
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章"
+
+#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
+#: ../../mod/settings.php:892 ../../mod/settings.php:898
+#: ../../mod/settings.php:906 ../../mod/settings.php:910
+#: ../../mod/settings.php:915 ../../mod/settings.php:921
+#: ../../mod/settings.php:927 ../../mod/settings.php:933
+#: ../../mod/settings.php:963 ../../mod/settings.php:964
+#: ../../mod/settings.php:965 ../../mod/settings.php:966
+#: ../../mod/settings.php:967 ../../mod/register.php:237
+#: ../../mod/profiles.php:574
+msgid "Yes"
+msgstr "是"
+
+#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
+#: ../../mod/settings.php:892 ../../mod/settings.php:898
+#: ../../mod/settings.php:906 ../../mod/settings.php:910
+#: ../../mod/settings.php:915 ../../mod/settings.php:921
+#: ../../mod/settings.php:927 ../../mod/settings.php:933
+#: ../../mod/settings.php:963 ../../mod/settings.php:964
+#: ../../mod/settings.php:965 ../../mod/settings.php:966
+#: ../../mod/settings.php:967 ../../mod/register.php:238
+#: ../../mod/profiles.php:575
+msgid "No"
+msgstr "否"
+
+#: ../../mod/photos.php:51 ../../boot.php:1738
+msgid "Photo Albums"
+msgstr "相册"
+
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
+#: ../../mod/photos.php:1096 ../../mod/photos.php:1111
+#: ../../mod/photos.php:1566 ../../mod/photos.php:1578
+#: ../../addon/communityhome/communityhome.php:110
+#: ../../view/theme/diabook/theme.php:485
+#: ../../addon.old/communityhome/communityhome.php:110
+msgid "Contact Photos"
+msgstr "熟人照片"
+
+#: ../../mod/photos.php:66 ../../mod/photos.php:1127 ../../mod/photos.php:1616
+msgid "Upload New Photos"
+msgstr "上传新照片"
+
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
+msgid "everybody"
+msgstr "每人"
+
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "熟人信息不可用"
+
+#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1096
+#: ../../mod/photos.php:1111 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305
+#: ../../addon/communityhome/communityhome.php:111
+#: ../../view/theme/diabook/theme.php:486 ../../include/user.php:324
+#: ../../include/user.php:331 ../../include/user.php:338
+#: ../../addon.old/communityhome/communityhome.php:111
+msgid "Profile Photos"
+msgstr "简介照片"
+
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "取回不了相册."
+
+#: ../../mod/photos.php:182 ../../mod/photos.php:1105
+msgid "Delete Album"
+msgstr "删除相册"
+
+#: ../../mod/photos.php:245 ../../mod/photos.php:1368
+msgid "Delete Photo"
+msgstr "删除照片"
+
+#: ../../mod/photos.php:607
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
+
+#: ../../mod/photos.php:607
+msgid "a photo"
+msgstr ""
+
+#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:315
+#: ../../addon.old/js_upload/js_upload.php:315
+msgid "Image exceeds size limit of "
+msgstr "图片超出最大尺寸"
+
+#: ../../mod/photos.php:720
+msgid "Image file is empty."
+msgstr "图片文件空的。"
+
+#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
+#: ../../mod/wall_upload.php:112
+msgid "Unable to process image."
+msgstr "处理不了图像."
+
+#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
+#: ../../mod/wall_upload.php:138
+msgid "Image upload failed."
+msgstr "图像上载失败了."
+
+#: ../../mod/photos.php:865 ../../mod/community.php:18
+#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
+#: ../../mod/display.php:7 ../../mod/search.php:86 ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "公众看拒绝"
+
+#: ../../mod/photos.php:875
+msgid "No photos selected"
+msgstr "没有照片挑选了"
+
+#: ../../mod/photos.php:976
+msgid "Access to this item is restricted."
+msgstr "这个项目使用权限的。"
+
+#: ../../mod/photos.php:1038
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr ""
+
+#: ../../mod/photos.php:1041
+#, php-format
+msgid "You have used %1$.2f Mbytes of photo storage."
+msgstr ""
+
+#: ../../mod/photos.php:1047
+msgid "Upload Photos"
+msgstr "上传照片"
+
+#: ../../mod/photos.php:1051 ../../mod/photos.php:1100
+msgid "New album name: "
+msgstr "新册名:"
+
+#: ../../mod/photos.php:1052
+msgid "or existing album name: "
+msgstr "或现有册名"
+
+#: ../../mod/photos.php:1053
+msgid "Do not show a status post for this upload"
+msgstr "别显示现状报到关于这个上传"
+
+#: ../../mod/photos.php:1055 ../../mod/photos.php:1363
+msgid "Permissions"
+msgstr "权利"
+
+#: ../../mod/photos.php:1115
+msgid "Edit Album"
+msgstr "编照片册"
+
+#: ../../mod/photos.php:1121
+msgid "Show Newest First"
+msgstr ""
+
+#: ../../mod/photos.php:1123
+msgid "Show Oldest First"
+msgstr ""
+
+#: ../../mod/photos.php:1147 ../../mod/photos.php:1599
+msgid "View Photo"
+msgstr "看照片"
+
+#: ../../mod/photos.php:1182
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "无权利。用这个项目可能受限制。"
+
+#: ../../mod/photos.php:1184
+msgid "Photo not available"
+msgstr "照片不可获得的 "
+
+#: ../../mod/photos.php:1240
+msgid "View photo"
+msgstr "看照片"
+
+#: ../../mod/photos.php:1240
+msgid "Edit photo"
+msgstr "编辑照片"
+
+#: ../../mod/photos.php:1241
+msgid "Use as profile photo"
+msgstr "用为资料图"
+
+#: ../../mod/photos.php:1247 ../../mod/content.php:603
+#: ../../object/Item.php:104
+msgid "Private Message"
+msgstr "私人的新闻"
+
+#: ../../mod/photos.php:1266
+msgid "View Full Size"
+msgstr "看全尺寸"
+
+#: ../../mod/photos.php:1340
+msgid "Tags: "
+msgstr "标签:"
+
+#: ../../mod/photos.php:1343
+msgid "[Remove any tag]"
+msgstr "[删除任何标签]"
+
+#: ../../mod/photos.php:1353
+msgid "Rotate CW (right)"
+msgstr ""
+
+#: ../../mod/photos.php:1354
+msgid "Rotate CCW (left)"
+msgstr ""
+
+#: ../../mod/photos.php:1356
+msgid "New album name"
+msgstr "新册名"
+
+#: ../../mod/photos.php:1359
+msgid "Caption"
+msgstr "字幕"
+
+#: ../../mod/photos.php:1361
+msgid "Add a Tag"
+msgstr "加标签"
+
+#: ../../mod/photos.php:1365
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"
+
+#: ../../mod/photos.php:1385 ../../mod/content.php:667
+#: ../../object/Item.php:197
+msgid "I like this (toggle)"
+msgstr "我喜欢这(交替)"
+
+#: ../../mod/photos.php:1386 ../../mod/content.php:668
+#: ../../object/Item.php:198
+msgid "I don't like this (toggle)"
+msgstr "我不喜欢这(交替)"
+
+#: ../../mod/photos.php:1387 ../../include/conversation.php:966
+msgid "Share"
+msgstr "分享"
+
+#: ../../mod/photos.php:1388 ../../mod/editpost.php:118
+#: ../../mod/content.php:482 ../../mod/content.php:848
+#: ../../mod/wallmessage.php:152 ../../mod/message.php:293
+#: ../../mod/message.php:481 ../../include/conversation.php:624
+#: ../../include/conversation.php:985 ../../object/Item.php:261
+msgid "Please wait"
+msgstr "请等一下"
+
+#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
+#: ../../mod/photos.php:1520 ../../mod/content.php:690
+#: ../../object/Item.php:559
+msgid "This is you"
+msgstr "这是你"
+
+#: ../../mod/photos.php:1406 ../../mod/photos.php:1450
+#: ../../mod/photos.php:1522 ../../mod/content.php:692 ../../boot.php:605
+#: ../../object/Item.php:561
+msgid "Comment"
+msgstr "评论"
+
+#: ../../mod/photos.php:1408 ../../mod/photos.php:1452
+#: ../../mod/photos.php:1524 ../../mod/editpost.php:139
+#: ../../mod/content.php:702 ../../include/conversation.php:1003
+#: ../../object/Item.php:571
+msgid "Preview"
+msgstr "预演"
+
+#: ../../mod/photos.php:1492 ../../mod/content.php:439
+#: ../../mod/content.php:724 ../../mod/settings.php:606
+#: ../../mod/group.php:168 ../../mod/admin.php:696
+#: ../../include/conversation.php:569 ../../object/Item.php:118
+msgid "Delete"
+msgstr "删除"
+
+#: ../../mod/photos.php:1605
+msgid "View Album"
+msgstr "看照片册"
+
+#: ../../mod/photos.php:1614
+msgid "Recent Photos"
+msgstr "最近的照片"
+
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "不可用的"
+
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:92
+#: ../../include/nav.php:101
+msgid "Community"
+msgstr "社会"
+
+#: ../../mod/community.php:61 ../../mod/community.php:86
+#: ../../mod/search.php:159 ../../mod/search.php:185
+msgid "No results."
+msgstr "没有结果"
+
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "这是Friendica,版本"
+
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "运作再网址"
+
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "请看<a href=\"http://friendica.com\">Friendica.com</a>发现多关于Friendica工程。"
+
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "问题报案:请去"
+
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com"
+
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr ""
+
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "没有安装的插件/应用"
+
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "项目没找到"
+
+#: ../../mod/editpost.php:36
+msgid "Edit post"
+msgstr "编辑文章"
+
+#: ../../mod/editpost.php:88 ../../include/conversation.php:952
+msgid "Post to Email"
+msgstr "电邮发布"
+
+#: ../../mod/editpost.php:103 ../../mod/content.php:711
+#: ../../mod/settings.php:605 ../../object/Item.php:108
+msgid "Edit"
+msgstr "编辑"
+
+#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150
+#: ../../mod/message.php:291 ../../mod/message.php:478
+#: ../../include/conversation.php:967
+msgid "Upload photo"
+msgstr "上传照片"
+
+#: ../../mod/editpost.php:105 ../../include/conversation.php:968
+msgid "upload photo"
+msgstr "上传照片"
+
+#: ../../mod/editpost.php:106 ../../include/conversation.php:969
+msgid "Attach file"
+msgstr "附上文件"
+
+#: ../../mod/editpost.php:107 ../../include/conversation.php:970
+msgid "attach file"
+msgstr "附上文件"
+
+#: ../../mod/editpost.php:108 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:292 ../../mod/message.php:479
+#: ../../include/conversation.php:971
+msgid "Insert web link"
+msgstr "插入网页环节"
+
+#: ../../mod/editpost.php:109 ../../include/conversation.php:972
+msgid "web link"
+msgstr "网页环节"
+
+#: ../../mod/editpost.php:110 ../../include/conversation.php:973
+msgid "Insert video link"
+msgstr "插入视频环节"
+
+#: ../../mod/editpost.php:111 ../../include/conversation.php:974
+msgid "video link"
+msgstr "视频环节"
+
+#: ../../mod/editpost.php:112 ../../include/conversation.php:975
+msgid "Insert audio link"
+msgstr "插入录音环节"
+
+#: ../../mod/editpost.php:113 ../../include/conversation.php:976
+msgid "audio link"
+msgstr "录音环节"
+
+#: ../../mod/editpost.php:114 ../../include/conversation.php:977
+msgid "Set your location"
+msgstr "设定您的位置"
+
+#: ../../mod/editpost.php:115 ../../include/conversation.php:978
+msgid "set location"
+msgstr ""
+
+#: ../../mod/editpost.php:116 ../../include/conversation.php:979
+msgid "Clear browser location"
+msgstr "清空浏览器位置"
+
+#: ../../mod/editpost.php:117 ../../include/conversation.php:980
+msgid "clear location"
+msgstr ""
+
+#: ../../mod/editpost.php:119 ../../include/conversation.php:986
+msgid "Permission settings"
+msgstr "权设置"
+
+#: ../../mod/editpost.php:127 ../../include/conversation.php:995
+msgid "CC: email addresses"
+msgstr "抄送: 电子邮件地址"
+
+#: ../../mod/editpost.php:128 ../../include/conversation.php:996
+msgid "Public post"
+msgstr "公开的消息"
+
+#: ../../mod/editpost.php:131 ../../include/conversation.php:982
+msgid "Set title"
+msgstr "指定标题"
+
+#: ../../mod/editpost.php:133 ../../include/conversation.php:984
+msgid "Categories (comma-separated list)"
+msgstr ""
+
+#: ../../mod/editpost.php:134 ../../include/conversation.php:998
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "比如: li@example.com, wang@example.com"
+
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "这个介绍已经接受了。"
+
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "简介位置失效或不包括简介信息。"
+
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "警告:简介位置没有可设别的主名。"
+
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
+msgid "Warning: profile location has no profile photo."
+msgstr "警告:简介位置没有简介图。"
+
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d需要的参数没找到在输入的位置。"
+
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "介绍完成的。"
+
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "不能恢复的协议错误"
+
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "简介无效"
+
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s今天已经受到了太多联络要求"
+
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "垃圾保护措施被用了。"
+
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "朋友们被建议请24小时后再试。"
+
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "无效找到物"
+
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:361
+msgid "This account has not been configured for email. Request failed."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:457
+msgid "Unable to resolve your name at the provided location."
+msgstr "不可疏解您的名字再输入的位置。"
+
+#: ../../mod/dfrn_request.php:470
+msgid "You have already introduced yourself here."
+msgstr "您已经自我介绍这儿。"
+
+#: ../../mod/dfrn_request.php:474
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "看上去您已经是%s的朋友。"
+
+#: ../../mod/dfrn_request.php:495
+msgid "Invalid profile URL."
+msgstr "无效的简介URL。"
+
+#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "不允许的简介地址."
+
+#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123
+msgid "Failed to update contact record."
+msgstr "更新熟人记录失败了。"
+
+#: ../../mod/dfrn_request.php:591
+msgid "Your introduction has been sent."
+msgstr "您的介绍发布了。"
+
+#: ../../mod/dfrn_request.php:644
+msgid "Please login to confirm introduction."
+msgstr "请登记为确认介绍。"
+
+#: ../../mod/dfrn_request.php:658
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "错误的用户登记者。请用<strong>这个</strong>用户。"
+
+#: ../../mod/dfrn_request.php:669
+msgid "Hide this contact"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:672
+#, php-format
+msgid "Welcome home %s."
+msgstr "欢迎%s。"
+
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "请确认您的介绍/联络要求给%s。"
+
+#: ../../mod/dfrn_request.php:674
+msgid "Confirm"
+msgstr "确认"
+
+#: ../../mod/dfrn_request.php:715 ../../include/items.php:3350
+msgid "[Name Withheld]"
+msgstr "[名字拒给]"
+
+#: ../../mod/dfrn_request.php:810
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:826
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:831
+msgid "Friend/Connection Request"
+msgstr "朋友/联络要求。"
+
+#: ../../mod/dfrn_request.php:832
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+
+#: ../../mod/dfrn_request.php:833
+msgid "Please answer the following:"
+msgstr "请回答下述的:"
+
+#: ../../mod/dfrn_request.php:834
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s是否认识你?"
+
+#: ../../mod/dfrn_request.php:837
+msgid "Add a personal note:"
+msgstr "添加个人的便条"
+
+#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
+
+#: ../../mod/dfrn_request.php:840
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/联合社会化网"
+
+#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../mod/dfrn_request.php:842
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:843
+msgid "Your Identity Address:"
+msgstr "您的同一个人地址:"
+
+#: ../../mod/dfrn_request.php:846
+msgid "Submit Request"
+msgstr "提交要求"
+
+#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:137
+msgid "Account settings"
+msgstr "帐户配置"
+
+#: ../../mod/uexport.php:14 ../../mod/settings.php:35
+msgid "Display settings"
+msgstr ""
+
+#: ../../mod/uexport.php:20 ../../mod/settings.php:41
+msgid "Connector settings"
+msgstr "插销设置"
+
+#: ../../mod/uexport.php:25 ../../mod/settings.php:46
+msgid "Plugin settings"
+msgstr "插件设置"
+
+#: ../../mod/uexport.php:30 ../../mod/settings.php:51
+msgid "Connected apps"
+msgstr ""
+
+#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:56
+msgid "Export personal data"
+msgstr "出口私人信息"
+
+#: ../../mod/uexport.php:40 ../../mod/settings.php:61
+msgid "Remove account"
+msgstr ""
+
+#: ../../mod/uexport.php:48 ../../mod/settings.php:69
+#: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990
+#: ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:614
+#: ../../include/nav.php:137 ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon.old/mathjax/mathjax.php:36
+msgid "Settings"
+msgstr "配置"
+
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr ""
+
+#: ../../mod/uexport.php:72
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr ""
+
+#: ../../mod/uexport.php:73
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr ""
+
+#: ../../mod/install.php:117
+msgid "Friendica Social Communications Server - Setup"
+msgstr "Friendica社会交通服务器-安装"
+
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "解不了数据库。"
+
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "造成不了表格。"
+
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "您Friendica网站数据库被安装了。"
+
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"
+
+#: ../../mod/install.php:139 ../../mod/install.php:204
+#: ../../mod/install.php:488
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "请看文件「INSTALL.txt」"
+
+#: ../../mod/install.php:201
+msgid "System check"
+msgstr "系统检测"
+
+#: ../../mod/install.php:206
+msgid "Check again"
+msgstr "再检测"
+
+#: ../../mod/install.php:225
+msgid "Database connection"
+msgstr "数据库接通"
+
+#: ../../mod/install.php:226
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "为安装Friendica我们要知道怎么连接您的数据库。"
+
+#: ../../mod/install.php:227
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"
+
+#: ../../mod/install.php:228
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。"
+
+#: ../../mod/install.php:232
+msgid "Database Server Name"
+msgstr "数据库服务器名"
+
+#: ../../mod/install.php:233
+msgid "Database Login Name"
+msgstr "数据库登录名"
+
+#: ../../mod/install.php:234
+msgid "Database Login Password"
+msgstr "数据库登录密码"
+
+#: ../../mod/install.php:235
+msgid "Database Name"
+msgstr "数据库名字"
+
+#: ../../mod/install.php:236 ../../mod/install.php:275
+msgid "Site administrator email address"
+msgstr "网站行政人员邮件地址"
+
+#: ../../mod/install.php:236 ../../mod/install.php:275
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "您账户邮件地址必要符合这个为用网站处理仪表板"
+
+#: ../../mod/install.php:240 ../../mod/install.php:278
+msgid "Please select a default timezone for your website"
+msgstr "请选择您网站的默认时区"
+
+#: ../../mod/install.php:265
+msgid "Site settings"
+msgstr "网站设置"
+
+#: ../../mod/install.php:318
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "没找到命令行PHP在网服务器PATH。"
+
+#: ../../mod/install.php:319
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr ""
+
+#: ../../mod/install.php:323
+msgid "PHP executable path"
+msgstr "PHP可执行路径"
+
+#: ../../mod/install.php:323
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr ""
+
+#: ../../mod/install.php:328
+msgid "Command line PHP"
+msgstr "命令行PHP"
+
+#: ../../mod/install.php:337
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "您系统的命令行PHP没有能够「register_argc_argv」。"
+
+#: ../../mod/install.php:338
+msgid "This is required for message delivery to work."
+msgstr "这必要为通信发布成功。"
+
+#: ../../mod/install.php:340
+msgid "PHP register_argc_argv"
+msgstr ""
+
+#: ../../mod/install.php:361
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"
+
+#: ../../mod/install.php:362
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。"
+
+#: ../../mod/install.php:364
+msgid "Generate encryption keys"
+msgstr "产生加密钥匙"
+
+#: ../../mod/install.php:371
+msgid "libCurl PHP module"
+msgstr "libCurl PHP模块"
+
+#: ../../mod/install.php:372
+msgid "GD graphics PHP module"
+msgstr "GD显示PHP模块"
+
+#: ../../mod/install.php:373
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP模块"
+
+#: ../../mod/install.php:374
+msgid "mysqli PHP module"
+msgstr "mysqli PHP模块"
+
+#: ../../mod/install.php:375
+msgid "mb_string PHP module"
+msgstr "mb_string PHP模块"
+
+#: ../../mod/install.php:380 ../../mod/install.php:382
+msgid "Apache mod_rewrite module"
+msgstr ""
+
+#: ../../mod/install.php:380
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"
+
+#: ../../mod/install.php:388
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "错误:libCurl PHP模块是必要的可却不安装的。"
+
+#: ../../mod/install.php:392
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"
+
+#: ../../mod/install.php:396
+msgid "Error: openssl PHP module required but not installed."
+msgstr "错误:openssl PHP模块是必要的可却不安装的。"
+
+#: ../../mod/install.php:400
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "错误:mysqli PHP模块是必要的可却不安装的。"
+
+#: ../../mod/install.php:404
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "错误:mbstring PHP模块必要可没安装的。"
+
+#: ../../mod/install.php:421
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "网页安装者要能造成叫「.htconfig.php」在网服务器主文件夹可却不能。"
+
+#: ../../mod/install.php:422
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"
+
+#: ../../mod/install.php:423
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr ""
+
+#: ../../mod/install.php:424
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr ""
+
+#: ../../mod/install.php:427
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php是可写的"
+
+#: ../../mod/install.php:439
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
+
+#: ../../mod/install.php:441
+msgid "Url rewrite is working"
+msgstr ""
+
+#: ../../mod/install.php:451
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "数据库设置文件「.htconfig.php」不能被写。请把包括的正文造成设置文件在网服务器子目录。"
+
+#: ../../mod/install.php:475
+msgid "Errors encountered creating database tables."
+msgstr "造成数据库列表相遇错误。"
+
+#: ../../mod/install.php:486
+msgid "<h1>What next</h1>"
+msgstr ""
+
+#: ../../mod/install.php:487
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "重要:您要[手工地]准备安排的任务给喂器。"
+
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:390
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
+
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "时间装换"
+
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
+
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC时间: %s"
+
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "现在时区: %s"
+
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "装换的当地时间:%s"
+
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "请选择你的时区:"
+
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr ""
+
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
+
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr ""
+
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr ""
+
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr ""
+
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "简介符合"
+
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "没有符合的关键字。请在您的默认简介加关键字。"
+
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "感兴趣对:"
+
+#: ../../mod/match.php:58 ../../mod/suggest.php:59
+#: ../../include/contact_widgets.php:9 ../../boot.php:1213
+msgid "Connect"
+msgstr "连接"
+
+#: ../../mod/match.php:65 ../../mod/dirfind.php:60
+msgid "No matches"
+msgstr "没有结果"
+
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "摇隐私信息无效"
+
+#: ../../mod/lockview.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:123
+msgid "Visible to:"
+msgstr "可见给:"
+
+#: ../../mod/content.php:119 ../../mod/network.php:544
+msgid "No such group"
+msgstr "没有这个组"
+
+#: ../../mod/content.php:130 ../../mod/network.php:555
+msgid "Group is empty"
+msgstr "组没有成员"
+
+#: ../../mod/content.php:134 ../../mod/network.php:559
+msgid "Group: "
+msgstr "组:"
+
+#: ../../mod/content.php:438 ../../mod/content.php:723
+#: ../../include/conversation.php:568 ../../object/Item.php:117
+msgid "Select"
+msgstr "选择"
+
+#: ../../mod/content.php:455 ../../mod/content.php:817
+#: ../../mod/content.php:818 ../../include/conversation.php:587
+#: ../../object/Item.php:229 ../../object/Item.php:230
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "看%s的简介@ %s"
+
+#: ../../mod/content.php:465 ../../mod/content.php:829
+#: ../../include/conversation.php:607 ../../object/Item.php:242
+#, php-format
+msgid "%s from %s"
+msgstr "%s从%s"
+
+#: ../../mod/content.php:480 ../../include/conversation.php:622
+msgid "View in context"
+msgstr "看在上下文"
+
+#: ../../mod/content.php:586 ../../object/Item.php:280
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d评论"
+
+#: ../../mod/content.php:588 ../../include/text.php:1448
+#: ../../object/Item.php:282 ../../object/Item.php:295
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+
+#: ../../mod/content.php:589 ../../addon/page/page.php:77
+#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
+#: ../../include/contact_widgets.php:195 ../../boot.php:606
+#: ../../object/Item.php:283 ../../addon.old/page/page.php:77
+#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
+msgid "show more"
+msgstr "看多"
+
+#: ../../mod/content.php:667 ../../object/Item.php:197
+msgid "like"
+msgstr "喜欢"
+
+#: ../../mod/content.php:668 ../../object/Item.php:198
+msgid "dislike"
+msgstr "讨厌"
+
+#: ../../mod/content.php:670 ../../object/Item.php:200
+msgid "Share this"
+msgstr "分享这个"
+
+#: ../../mod/content.php:670 ../../object/Item.php:200
+msgid "share"
+msgstr "分享"
+
+#: ../../mod/content.php:694 ../../object/Item.php:563
+msgid "Bold"
+msgstr ""
+
+#: ../../mod/content.php:695 ../../object/Item.php:564
+msgid "Italic"
+msgstr ""
+
+#: ../../mod/content.php:696 ../../object/Item.php:565
+msgid "Underline"
+msgstr ""
+
+#: ../../mod/content.php:697 ../../object/Item.php:566
+msgid "Quote"
+msgstr ""
+
+#: ../../mod/content.php:698 ../../object/Item.php:567
+msgid "Code"
+msgstr ""
+
+#: ../../mod/content.php:699 ../../object/Item.php:568
+msgid "Image"
+msgstr ""
+
+#: ../../mod/content.php:700 ../../object/Item.php:569
+msgid "Link"
+msgstr ""
+
+#: ../../mod/content.php:701 ../../object/Item.php:570
+msgid "Video"
+msgstr ""
+
+#: ../../mod/content.php:736 ../../object/Item.php:181
+msgid "add star"
+msgstr "加星"
+
+#: ../../mod/content.php:737 ../../object/Item.php:182
+msgid "remove star"
+msgstr "消星"
+
+#: ../../mod/content.php:738 ../../object/Item.php:183
+msgid "toggle star status"
+msgstr "转变星现状"
+
+#: ../../mod/content.php:741 ../../object/Item.php:186
+msgid "starred"
+msgstr "被贴星"
+
+#: ../../mod/content.php:742 ../../object/Item.php:187
+msgid "add tag"
+msgstr "加标签"
+
+#: ../../mod/content.php:746 ../../object/Item.php:121
+msgid "save to folder"
+msgstr ""
+
+#: ../../mod/content.php:819 ../../object/Item.php:231
+msgid "to"
+msgstr "至"
+
+#: ../../mod/content.php:820 ../../object/Item.php:232
+msgid "Wall-to-Wall"
+msgstr "从墙到墙"
+
+#: ../../mod/content.php:821 ../../object/Item.php:233
+msgid "via Wall-To-Wall:"
+msgstr "通过从墙到墙"
+
+#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
+#: ../../addon.old/communityhome/communityhome.php:179
+#, php-format
+msgid "Welcome to %s"
+msgstr "%s欢迎你"
+
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "无效要求身份号。"
+
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
+msgid "Discard"
+msgstr "丢弃"
+
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
+#: ../../mod/notifications.php:209 ../../mod/contacts.php:324
+#: ../../mod/contacts.php:378
+msgid "Ignore"
+msgstr "忽视"
+
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "系统"
+
+#: ../../mod/notifications.php:83 ../../include/nav.php:113
+msgid "Network"
+msgstr "网络"
+
+#: ../../mod/notifications.php:88 ../../mod/network.php:407
+msgid "Personal"
+msgstr "私人"
+
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:86
+#: ../../include/nav.php:77 ../../include/nav.php:115
+msgid "Home"
+msgstr "主页"
+
+#: ../../mod/notifications.php:98 ../../include/nav.php:121
+msgid "Introductions"
+msgstr "介绍"
+
+#: ../../mod/notifications.php:103 ../../mod/message.php:176
+#: ../../include/nav.php:128
+msgid "Messages"
+msgstr "消息"
+
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "显示不理的要求"
+
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "隐藏不理的要求"
+
+#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
+msgid "Notification type: "
+msgstr "通知种类:"
+
+#: ../../mod/notifications.php:149
+msgid "Friend Suggestion"
+msgstr "朋友建议"
+
+#: ../../mod/notifications.php:151
+#, php-format
+msgid "suggested by %s"
+msgstr "由%s建议的"
+
+#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
+#: ../../mod/contacts.php:384
+msgid "Hide this contact from others"
+msgstr "隐藏这个熟人给别人"
+
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+msgid "Post a new friend activity"
+msgstr ""
+
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+msgid "if applicable"
+msgstr ""
+
+#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
+#: ../../mod/admin.php:694
+msgid "Approve"
+msgstr "批准"
+
+#: ../../mod/notifications.php:180
+msgid "Claims to be known to you: "
+msgstr "声称被您认识:"
+
+#: ../../mod/notifications.php:180
+msgid "yes"
+msgstr "是"
+
+#: ../../mod/notifications.php:180
+msgid "no"
+msgstr "否"
+
+#: ../../mod/notifications.php:187
+msgid "Approve as: "
+msgstr "批准作为"
+
+#: ../../mod/notifications.php:188
+msgid "Friend"
+msgstr "朋友"
+
+#: ../../mod/notifications.php:189
+msgid "Sharer"
+msgstr "分享者"
+
+#: ../../mod/notifications.php:189
+msgid "Fan/Admirer"
+msgstr "迷/赞赏者"
+
+#: ../../mod/notifications.php:195
+msgid "Friend/Connect Request"
+msgstr "友谊/联络要求"
+
+#: ../../mod/notifications.php:195
+msgid "New Follower"
+msgstr "新关注者:"
+
+#: ../../mod/notifications.php:216
+msgid "No introductions."
+msgstr "没有介绍。"
+
+#: ../../mod/notifications.php:219 ../../include/nav.php:122
+msgid "Notifications"
+msgstr "通知"
+
+#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
+#: ../../mod/notifications.php:468
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s喜欢了%s的消息"
+
+#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
+#: ../../mod/notifications.php:477
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s不喜欢了%s的消息"
+
+#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
+#: ../../mod/notifications.php:491
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s成为%s的朋友"
+
+#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
+#, php-format
+msgid "%s created a new post"
+msgstr "%s造成新文章"
+
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:500
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s便条%s的文章"
+
+#: ../../mod/notifications.php:301
+msgid "No more network notifications."
+msgstr "没有别的网络通信。"
+
+#: ../../mod/notifications.php:305
+msgid "Network Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:331 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr ""
+
+#: ../../mod/notifications.php:335 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:426
+msgid "No more personal notifications."
+msgstr "没有别的私人通信。"
+
+#: ../../mod/notifications.php:430
+msgid "Personal Notifications"
+msgstr ""
+
+#: ../../mod/notifications.php:507
+msgid "No more home notifications."
+msgstr "没有别的家通信。"
+
+#: ../../mod/notifications.php:511
+msgid "Home Notifications"
+msgstr ""
+
+#: ../../mod/contacts.php:84 ../../mod/contacts.php:164
+msgid "Could not access contact record."
+msgstr "用不了熟人记录。"
+
+#: ../../mod/contacts.php:98
+msgid "Could not locate selected profile."
+msgstr "找不到选择的简介。"
+
+#: ../../mod/contacts.php:121
+msgid "Contact updated."
+msgstr "熟人更新了。"
+
+#: ../../mod/contacts.php:186
+msgid "Contact has been blocked"
+msgstr "熟人拦了"
+
+#: ../../mod/contacts.php:186
+msgid "Contact has been unblocked"
+msgstr "熟人否拦了"
+
+#: ../../mod/contacts.php:200
+msgid "Contact has been ignored"
+msgstr "熟人不理了"
+
+#: ../../mod/contacts.php:200
+msgid "Contact has been unignored"
+msgstr "熟人否不理了"
+
+#: ../../mod/contacts.php:219
+msgid "Contact has been archived"
+msgstr ""
+
+#: ../../mod/contacts.php:219
+msgid "Contact has been unarchived"
+msgstr ""
+
+#: ../../mod/contacts.php:232
+msgid "Contact has been removed."
+msgstr "熟人删除了。"
+
+#: ../../mod/contacts.php:266
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "您和%s是共同朋友们"
+
+#: ../../mod/contacts.php:270
+#, php-format
+msgid "You are sharing with %s"
+msgstr "您分享给%s"
+
+#: ../../mod/contacts.php:275
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s给您分享"
+
+#: ../../mod/contacts.php:292
+msgid "Private communications are not available for this contact."
+msgstr "没有私人的沟通跟这个熟人"
+
+#: ../../mod/contacts.php:295
+msgid "Never"
+msgstr "从未"
+
+#: ../../mod/contacts.php:299
+msgid "(Update was successful)"
+msgstr "(更新成功)"
+
+#: ../../mod/contacts.php:299
+msgid "(Update was not successful)"
+msgstr "(更新不成功)"
+
+#: ../../mod/contacts.php:301
+msgid "Suggest friends"
+msgstr "建议朋友们"
+
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "Network type: %s"
+msgstr "网络种类: %s"
+
+#: ../../mod/contacts.php:308 ../../include/contact_widgets.php:190
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d共同熟人"
+
+#: ../../mod/contacts.php:313
+msgid "View all contacts"
+msgstr "看所有的熟人"
+
+#: ../../mod/contacts.php:318 ../../mod/contacts.php:377
+#: ../../mod/admin.php:698
+msgid "Unblock"
+msgstr "不拦"
+
+#: ../../mod/contacts.php:318 ../../mod/contacts.php:377
+#: ../../mod/admin.php:697
+msgid "Block"
+msgstr "拦"
+
+#: ../../mod/contacts.php:321
+msgid "Toggle Blocked status"
+msgstr ""
+
+#: ../../mod/contacts.php:324 ../../mod/contacts.php:378
+msgid "Unignore"
+msgstr "停不理"
+
+#: ../../mod/contacts.php:327
+msgid "Toggle Ignored status"
+msgstr ""
+
+#: ../../mod/contacts.php:331
+msgid "Unarchive"
+msgstr ""
+
+#: ../../mod/contacts.php:331
+msgid "Archive"
+msgstr ""
+
+#: ../../mod/contacts.php:334
+msgid "Toggle Archive status"
+msgstr ""
+
+#: ../../mod/contacts.php:337
+msgid "Repair"
+msgstr "维修"
+
+#: ../../mod/contacts.php:340
+msgid "Advanced Contact Settings"
+msgstr ""
+
+#: ../../mod/contacts.php:346
+msgid "Communications lost with this contact!"
+msgstr ""
+
+#: ../../mod/contacts.php:349
+msgid "Contact Editor"
+msgstr "熟人编器"
+
+#: ../../mod/contacts.php:352
+msgid "Profile Visibility"
+msgstr "简历可见量"
+
+#: ../../mod/contacts.php:353
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。"
+
+#: ../../mod/contacts.php:354
+msgid "Contact Information / Notes"
+msgstr "熟人信息/便条"
+
+#: ../../mod/contacts.php:355
+msgid "Edit contact notes"
+msgstr "编辑熟人便条"
+
+#: ../../mod/contacts.php:360 ../../mod/contacts.php:552
+#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "看%s的简介[%s]"
+
+#: ../../mod/contacts.php:361
+msgid "Block/Unblock contact"
+msgstr "拦/否拦熟人"
+
+#: ../../mod/contacts.php:362
+msgid "Ignore contact"
+msgstr "忽视熟人"
+
+#: ../../mod/contacts.php:363
+msgid "Repair URL settings"
+msgstr "维修URL设置"
+
+#: ../../mod/contacts.php:364
+msgid "View conversations"
+msgstr "看交流"
+
+#: ../../mod/contacts.php:366
+msgid "Delete contact"
+msgstr "删除熟人"
+
+#: ../../mod/contacts.php:370
+msgid "Last update:"
+msgstr "上个更新:"
+
+#: ../../mod/contacts.php:372
+msgid "Update public posts"
+msgstr "更新公开文章"
+
+#: ../../mod/contacts.php:374 ../../mod/admin.php:1170
+msgid "Update now"
+msgstr "现在更新"
+
+#: ../../mod/contacts.php:381
+msgid "Currently blocked"
+msgstr "现在拦的"
+
+#: ../../mod/contacts.php:382
+msgid "Currently ignored"
+msgstr "现在不理的"
+
+#: ../../mod/contacts.php:383
+msgid "Currently archived"
+msgstr ""
+
+#: ../../mod/contacts.php:384
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "回答/喜欢关您公开文章<strong>会</strong>还可见的"
+
+#: ../../mod/contacts.php:437
+msgid "Suggestions"
+msgstr ""
+
+#: ../../mod/contacts.php:440
+msgid "Suggest potential friends"
+msgstr ""
+
+#: ../../mod/contacts.php:443 ../../mod/group.php:191
+msgid "All Contacts"
+msgstr "所有的熟人"
+
+#: ../../mod/contacts.php:446
+msgid "Show all contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:449
+msgid "Unblocked"
+msgstr ""
+
+#: ../../mod/contacts.php:452
+msgid "Only show unblocked contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:456
+msgid "Blocked"
+msgstr ""
+
+#: ../../mod/contacts.php:459
+msgid "Only show blocked contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:463
+msgid "Ignored"
+msgstr ""
+
+#: ../../mod/contacts.php:466
+msgid "Only show ignored contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:470
+msgid "Archived"
+msgstr ""
+
+#: ../../mod/contacts.php:473
+msgid "Only show archived contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:477
+msgid "Hidden"
+msgstr ""
+
+#: ../../mod/contacts.php:480
+msgid "Only show hidden contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:528
+msgid "Mutual Friendship"
+msgstr "共同友谊"
+
+#: ../../mod/contacts.php:532
+msgid "is a fan of yours"
+msgstr "是您迷"
+
+#: ../../mod/contacts.php:536
+msgid "you are a fan of"
+msgstr "你喜欢"
+
+#: ../../mod/contacts.php:553 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "编熟人"
+
+#: ../../mod/contacts.php:574 ../../view/theme/diabook/theme.php:88
+#: ../../include/nav.php:139
+msgid "Contacts"
+msgstr "熟人"
+
+#: ../../mod/contacts.php:578
+msgid "Search your contacts"
+msgstr "搜索您的熟人"
+
+#: ../../mod/contacts.php:579 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "找着:"
+
+#: ../../mod/contacts.php:580 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "搜索"
+
+#: ../../mod/lostpass.php:16
+msgid "No valid account found."
+msgstr "找不到效的账户。"
+
+#: ../../mod/lostpass.php:32
+msgid "Password reset request issued. Check your email."
+msgstr "重设密码要求发布了。核对您的收件箱。"
+
+#: ../../mod/lostpass.php:43
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "重设密码要求被发布%s"
+
+#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
+#: ../../mod/register.php:91 ../../mod/register.php:145
+#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
+#: ../../addon/facebook/facebook.php:702
+#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
+#: ../../addon/public_server/public_server.php:62
+#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3359
+#: ../../boot.php:821 ../../addon.old/facebook/facebook.php:702
+#: ../../addon.old/facebook/facebook.php:1200
+#: ../../addon.old/fbpost/fbpost.php:661
+#: ../../addon.old/public_server/public_server.php:62
+#: ../../addon.old/testdrive/testdrive.php:67
+msgid "Administrator"
+msgstr "管理员"
+
+#: ../../mod/lostpass.php:65
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。"
+
+#: ../../mod/lostpass.php:83 ../../boot.php:960
+msgid "Password Reset"
+msgstr "复位密码"
+
+#: ../../mod/lostpass.php:84
+msgid "Your password has been reset as requested."
+msgstr "您的密码被重设如要求的。"
+
+#: ../../mod/lostpass.php:85
+msgid "Your new password is"
+msgstr "你的新的密码是"
+
+#: ../../mod/lostpass.php:86
+msgid "Save or copy your new password - and then"
+msgstr "保存或复制新密码-之后"
+
+#: ../../mod/lostpass.php:87
+msgid "click here to login"
+msgstr "在这儿点击"
+
+#: ../../mod/lostpass.php:88
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "您的密码能被变化从<em>设置</em>页成功登记后。"
+
+#: ../../mod/lostpass.php:119
+msgid "Forgot your Password?"
+msgstr "忘记你的密码吗?"
+
+#: ../../mod/lostpass.php:120
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"
+
+#: ../../mod/lostpass.php:121
+msgid "Nickname or Email: "
+msgstr "昵称或邮件地址:"
+
+#: ../../mod/lostpass.php:122
+msgid "Reset"
+msgstr "复位"
+
+#: ../../mod/settings.php:113
+msgid "Missing some important data!"
+msgstr "有的重要信息失踪的!"
+
+#: ../../mod/settings.php:116 ../../mod/settings.php:569
+msgid "Update"
+msgstr "更新"
+
+#: ../../mod/settings.php:221
+msgid "Failed to connect with email account using the settings provided."
+msgstr "不能连接电子邮件账户用输入的设置。"
+
+#: ../../mod/settings.php:226
+msgid "Email settings updated."
+msgstr "电子邮件设置更新了"
+
+#: ../../mod/settings.php:290
+msgid "Passwords do not match. Password unchanged."
+msgstr "密码们不相配。密码没未改变的。"
+
+#: ../../mod/settings.php:295
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "空的密码禁止。密码没未改变的。"
+
+#: ../../mod/settings.php:306
+msgid "Password changed."
+msgstr "密码变化了。"
+
+#: ../../mod/settings.php:308
+msgid "Password update failed. Please try again."
+msgstr "密码更新失败了。请再试。"
+
+#: ../../mod/settings.php:373
+msgid " Please use a shorter name."
+msgstr "请用短一点个名。"
+
+#: ../../mod/settings.php:375
+msgid " Name too short."
+msgstr "名字太短。"
+
+#: ../../mod/settings.php:381
+msgid " Not valid email."
+msgstr " 电子邮件地址无效."
+
+#: ../../mod/settings.php:383
+msgid " Cannot change to that email."
+msgstr "不能变化到这个邮件地址。"
+
+#: ../../mod/settings.php:437
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr ""
+
+#: ../../mod/settings.php:441
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr ""
+
+#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495
+#: ../../addon/fbpost/fbpost.php:144
+#: ../../addon/remote_permissions/remote_permissions.php:204
+#: ../../addon/impressum/impressum.php:78
+#: ../../addon/openstreetmap/openstreetmap.php:80
+#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
+#: ../../addon/twitter/twitter.php:389
+#: ../../addon.old/facebook/facebook.php:495
+#: ../../addon.old/fbpost/fbpost.php:144
+#: ../../addon.old/impressum/impressum.php:78
+#: ../../addon.old/openstreetmap/openstreetmap.php:80
+#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
+#: ../../addon.old/twitter/twitter.php:389
+msgid "Settings updated."
+msgstr "设置跟新了"
+
+#: ../../mod/settings.php:542 ../../mod/settings.php:568
+#: ../../mod/settings.php:604
+msgid "Add application"
+msgstr "加入应用"
+
+#: ../../mod/settings.php:546 ../../mod/settings.php:572
+#: ../../addon/statusnet/statusnet.php:570
+#: ../../addon.old/statusnet/statusnet.php:570
+msgid "Consumer Key"
+msgstr "钥匙(Consumer Key)"
+
+#: ../../mod/settings.php:547 ../../mod/settings.php:573
+#: ../../addon/statusnet/statusnet.php:569
+#: ../../addon.old/statusnet/statusnet.php:569
+msgid "Consumer Secret"
+msgstr "密码(Consumer Secret)"
+
+#: ../../mod/settings.php:548 ../../mod/settings.php:574
+msgid "Redirect"
+msgstr "重定向"
+
+#: ../../mod/settings.php:549 ../../mod/settings.php:575
+msgid "Icon url"
+msgstr "图符URL"
+
+#: ../../mod/settings.php:560
+msgid "You can't edit this application."
+msgstr "您不能编辑这个应用。"
+
+#: ../../mod/settings.php:603
+msgid "Connected Apps"
+msgstr "连接着应用"
+
+#: ../../mod/settings.php:607
+msgid "Client key starts with"
+msgstr "客户钥匙头字是"
+
+#: ../../mod/settings.php:608
+msgid "No name"
+msgstr "无名"
+
+#: ../../mod/settings.php:609
+msgid "Remove authorization"
+msgstr "撤消权能"
+
+#: ../../mod/settings.php:620
+msgid "No Plugin settings configured"
+msgstr "没插件设置配置了"
+
+#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123
+#: ../../addon.old/widgets/widgets.php:123
+msgid "Plugin Settings"
+msgstr "插件设置"
+
+#: ../../mod/settings.php:640 ../../mod/settings.php:641
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "包括的支持为%s连通性是%s"
+
+#: ../../mod/settings.php:640 ../../mod/settings.php:641
+msgid "enabled"
+msgstr "能够做的"
+
+#: ../../mod/settings.php:640 ../../mod/settings.php:641
+msgid "disabled"
+msgstr "使不能用"
+
+#: ../../mod/settings.php:641
+msgid "StatusNet"
+msgstr "StatusNet"
+
+#: ../../mod/settings.php:673
+msgid "Email access is disabled on this site."
+msgstr "这个网站没有邮件使用权"
+
+#: ../../mod/settings.php:679
+msgid "Connector Settings"
+msgstr "连接器设置"
+
+#: ../../mod/settings.php:684
+msgid "Email/Mailbox Setup"
+msgstr "邮件收件箱设置"
+
+#: ../../mod/settings.php:685
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"
+
+#: ../../mod/settings.php:686
+msgid "Last successful email check:"
+msgstr "上个成功收件箱检查:"
+
+#: ../../mod/settings.php:688
+msgid "IMAP server name:"
+msgstr "IMAP服务器名字:"
+
+#: ../../mod/settings.php:689
+msgid "IMAP port:"
+msgstr "IMAP服务器端口:"
+
+#: ../../mod/settings.php:690
+msgid "Security:"
+msgstr "安全:"
+
+#: ../../mod/settings.php:690 ../../mod/settings.php:695
+#: ../../addon/dav/common/wdcal_edit.inc.php:191
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
+msgid "None"
+msgstr "没有"
+
+#: ../../mod/settings.php:691
+msgid "Email login name:"
+msgstr "邮件登记名:"
+
+#: ../../mod/settings.php:692
+msgid "Email password:"
+msgstr "邮件密码:"
+
+#: ../../mod/settings.php:693
+msgid "Reply-to address:"
+msgstr "回答地址:"
+
+#: ../../mod/settings.php:694
+msgid "Send public posts to all email contacts:"
+msgstr "发公开的文章给所有的邮件熟人:"
+
+#: ../../mod/settings.php:695
+msgid "Action after import:"
+msgstr ""
+
+#: ../../mod/settings.php:695
+msgid "Mark as seen"
+msgstr ""
+
+#: ../../mod/settings.php:695
+msgid "Move to folder"
+msgstr ""
+
+#: ../../mod/settings.php:696
+msgid "Move to folder:"
+msgstr ""
+
+#: ../../mod/settings.php:727 ../../mod/admin.php:402
+msgid "No special theme for mobile devices"
+msgstr ""
+
+#: ../../mod/settings.php:767
+msgid "Display Settings"
+msgstr ""
+
+#: ../../mod/settings.php:773 ../../mod/settings.php:784
+msgid "Display Theme:"
+msgstr "显示主题:"
+
+#: ../../mod/settings.php:774
+msgid "Mobile Theme:"
+msgstr ""
+
+#: ../../mod/settings.php:775
+msgid "Update browser every xx seconds"
+msgstr "更新游览器每XX秒"
+
+#: ../../mod/settings.php:775
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "最小10秒,没有上限"
+
+#: ../../mod/settings.php:776
+msgid "Number of items to display per page:"
+msgstr ""
+
+#: ../../mod/settings.php:776
+msgid "Maximum of 100 items"
+msgstr ""
+
+#: ../../mod/settings.php:777
+msgid "Don't show emoticons"
+msgstr ""
+
+#: ../../mod/settings.php:853
+msgid "Normal Account Page"
+msgstr ""
+
+#: ../../mod/settings.php:854
+msgid "This account is a normal personal profile"
+msgstr "这个帐户是正常私人简介"
+
+#: ../../mod/settings.php:857
+msgid "Soapbox Page"
+msgstr ""
+
+#: ../../mod/settings.php:858
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "自动批准所有联络/友谊要求当只看的迷"
+
+#: ../../mod/settings.php:861
+msgid "Community Forum/Celebrity Account"
+msgstr ""
+
+#: ../../mod/settings.php:862
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "自动批准所有联络/友谊要求当看写的迷"
+
+#: ../../mod/settings.php:865
+msgid "Automatic Friend Page"
+msgstr ""
+
+#: ../../mod/settings.php:866
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "自动批准所有联络/友谊要求当朋友"
+
+#: ../../mod/settings.php:869
+msgid "Private Forum [Experimental]"
+msgstr ""
+
+#: ../../mod/settings.php:870
+msgid "Private forum - approved members only"
+msgstr ""
+
+#: ../../mod/settings.php:882
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: ../../mod/settings.php:882
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(可选的)许这个OpenID这个账户登记。"
+
+#: ../../mod/settings.php:892
+msgid "Publish your default profile in your local site directory?"
+msgstr "出版您默认简介在您当地的网站目录?"
+
+#: ../../mod/settings.php:898
+msgid "Publish your default profile in the global social directory?"
+msgstr "出版您默认简介在综合社会目录?"
+
+#: ../../mod/settings.php:906
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n "
+
+#: ../../mod/settings.php:910
+msgid "Hide your profile details from unknown viewers?"
+msgstr "使简介信息给陌生的看着看不了?"
+
+#: ../../mod/settings.php:915
+msgid "Allow friends to post to your profile page?"
+msgstr "允许朋友们贴文章在您的简介页?"
+
+#: ../../mod/settings.php:921
+msgid "Allow friends to tag your posts?"
+msgstr "允许朋友们标签您的文章?"
+
+#: ../../mod/settings.php:927
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "允许我们建议您潜力朋友给新成员?"
+
+#: ../../mod/settings.php:933
+msgid "Permit unknown people to send you private mail?"
+msgstr ""
+
+#: ../../mod/settings.php:941
+msgid "Profile is <strong>not published</strong>."
+msgstr "简介是<strong>没出版</strong>"
+
+#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "或者"
+
+#: ../../mod/settings.php:949
+msgid "Your Identity Address is"
+msgstr "您的同一个人地址是"
+
+#: ../../mod/settings.php:960
+msgid "Automatically expire posts after this many days:"
+msgstr ""
+
+#: ../../mod/settings.php:960
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "如果空的,文章不会过期。过期的文章被删除"
+
+#: ../../mod/settings.php:961
+msgid "Advanced expiration settings"
+msgstr "先进的过期设置"
+
+#: ../../mod/settings.php:962
+msgid "Advanced Expiration"
+msgstr "先进的过期"
+
+#: ../../mod/settings.php:963
+msgid "Expire posts:"
+msgstr "把文章过期:"
+
+#: ../../mod/settings.php:964
+msgid "Expire personal notes:"
+msgstr "把私人便条过期:"
+
+#: ../../mod/settings.php:965
+msgid "Expire starred posts:"
+msgstr "把星的文章过期:"
+
+#: ../../mod/settings.php:966
+msgid "Expire photos:"
+msgstr "把照片过期:"
+
+#: ../../mod/settings.php:967
+msgid "Only expire posts by others:"
+msgstr ""
+
+#: ../../mod/settings.php:974
+msgid "Account Settings"
+msgstr "帐户设置"
+
+#: ../../mod/settings.php:982
+msgid "Password Settings"
+msgstr "密码设置"
+
+#: ../../mod/settings.php:983
+msgid "New Password:"
+msgstr "新密码:"
+
+#: ../../mod/settings.php:984
+msgid "Confirm:"
+msgstr "确认:"
+
+#: ../../mod/settings.php:984
+msgid "Leave password fields blank unless changing"
+msgstr "非变化留空密码栏"
+
+#: ../../mod/settings.php:988
+msgid "Basic Settings"
+msgstr "基础设置"
+
+#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "全名:"
+
+#: ../../mod/settings.php:990
+msgid "Email Address:"
+msgstr "电子邮件地址:"
+
+#: ../../mod/settings.php:991
+msgid "Your Timezone:"
+msgstr "您的时区:"
+
+#: ../../mod/settings.php:992
+msgid "Default Post Location:"
+msgstr "默认文章位置:"
+
+#: ../../mod/settings.php:993
+msgid "Use Browser Location:"
+msgstr "用游览器位置:"
+
+#: ../../mod/settings.php:996
+msgid "Security and Privacy Settings"
+msgstr "安全和隐私设置"
+
+#: ../../mod/settings.php:998
+msgid "Maximum Friend Requests/Day:"
+msgstr "最多友谊要求个天:"
+
+#: ../../mod/settings.php:998 ../../mod/settings.php:1017
+msgid "(to prevent spam abuse)"
+msgstr "(为防止垃圾邮件滥用)"
+
+#: ../../mod/settings.php:999
+msgid "Default Post Permissions"
+msgstr "默认文章准许"
+
+#: ../../mod/settings.php:1000
+msgid "(click to open/close)"
+msgstr "(点击为打开/关闭)"
+
+#: ../../mod/settings.php:1017
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: ../../mod/settings.php:1020
+msgid "Notification Settings"
+msgstr "消息设置"
+
+#: ../../mod/settings.php:1021
+msgid "By default post a status message when:"
+msgstr ""
+
+#: ../../mod/settings.php:1022
+msgid "accepting a friend request"
+msgstr ""
+
+#: ../../mod/settings.php:1023
+msgid "joining a forum/community"
+msgstr ""
+
+#: ../../mod/settings.php:1024
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
+
+#: ../../mod/settings.php:1025
+msgid "Send a notification email when:"
+msgstr "发一个消息要是:"
+
+#: ../../mod/settings.php:1026
+msgid "You receive an introduction"
+msgstr "你受到一个介绍"
+
+#: ../../mod/settings.php:1027
+msgid "Your introductions are confirmed"
+msgstr "你的介绍确认了"
+
+#: ../../mod/settings.php:1028
+msgid "Someone writes on your profile wall"
+msgstr "某人写在你的简历墙"
+
+#: ../../mod/settings.php:1029
+msgid "Someone writes a followup comment"
+msgstr "某人写一个后续的评论"
+
+#: ../../mod/settings.php:1030
+msgid "You receive a private message"
+msgstr "你受到一个私消息"
+
+#: ../../mod/settings.php:1031
+msgid "You receive a friend suggestion"
+msgstr "你受到一个朋友建议"
+
+#: ../../mod/settings.php:1032
+msgid "You are tagged in a post"
+msgstr "你被在新闻标签"
+
+#: ../../mod/settings.php:1033
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
+
+#: ../../mod/settings.php:1036
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: ../../mod/settings.php:1037
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: ../../mod/manage.php:94
+msgid "Manage Identities and/or Pages"
+msgstr "管理身份或页"
+
+#: ../../mod/manage.php:97
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr ""
+
+#: ../../mod/manage.php:99
+msgid "Select an identity to manage: "
+msgstr "选择同一个人管理:"
+
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr ""
+
+#: ../../mod/network.php:221 ../../mod/search.php:18
+msgid "Remove term"
+msgstr "删除关键字"
+
+#: ../../mod/network.php:230 ../../mod/search.php:27
+msgid "Saved Searches"
+msgstr "保存的搜索"
+
+#: ../../mod/network.php:231 ../../include/group.php:275
+msgid "add"
+msgstr "添加"
+
+#: ../../mod/network.php:394
+msgid "Commented Order"
+msgstr "评论时间顺序"
+
+#: ../../mod/network.php:397
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: ../../mod/network.php:400
+msgid "Posted Order"
+msgstr "贴时间顺序"
+
+#: ../../mod/network.php:403
+msgid "Sort by Post Date"
+msgstr ""
+
+#: ../../mod/network.php:410
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: ../../mod/network.php:413
+msgid "New"
+msgstr "新"
+
+#: ../../mod/network.php:416
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: ../../mod/network.php:419
+msgid "Starred"
+msgstr "被星"
+
+#: ../../mod/network.php:422
+msgid "Favourite Posts"
+msgstr ""
+
+#: ../../mod/network.php:425
+msgid "Shared Links"
+msgstr ""
+
+#: ../../mod/network.php:428
+msgid "Interesting Links"
+msgstr ""
+
+#: ../../mod/network.php:496
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "警告:这个组包括%s成员从不安全网络。"
+
+#: ../../mod/network.php:499
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "私人通信给这组回被公开。"
+
+#: ../../mod/network.php:569
+msgid "Contact: "
+msgstr "熟人:"
+
+#: ../../mod/network.php:571
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "私人通信给这个人回被公开。"
+
+#: ../../mod/network.php:576
+msgid "Invalid contact."
+msgstr "无效熟人。"
+
+#: ../../mod/notes.php:44 ../../boot.php:1752
+msgid "Personal Notes"
+msgstr "私人便条"
+
+#: ../../mod/notes.php:63 ../../mod/filer.php:30
+#: ../../addon/facebook/facebook.php:770
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon/fbpost/fbpost.php:267
+#: ../../addon/dav/friendica/layout.fnk.php:441
+#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
+#: ../../addon.old/facebook/facebook.php:770
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon.old/fbpost/fbpost.php:267
+#: ../../addon.old/dav/friendica/layout.fnk.php:441
+#: ../../addon.old/dav/friendica/layout.fnk.php:488
+msgid "Save"
+msgstr "保存"
+
+#: ../../mod/uimport.php:50 ../../mod/register.php:190
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "这个网站超过一天最多账户注册。请明天再试。"
+
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr ""
+
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr ""
+
+#: ../../mod/uimport.php:67
+msgid ""
+"You can import an account from another Friendica server. <br>\r\n"
+"                            You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.<br>\r\n"
+"                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr ""
+
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr ""
+
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr ""
+
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:59
+msgid "No recipient selected."
+msgstr "没有选择的接受者。"
+
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr ""
+
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:66
+msgid "Message could not be sent."
+msgstr "消息发不了。"
+
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:69
+msgid "Message collection failure."
+msgstr "通信受到错误。"
+
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:72
+msgid "Message sent."
+msgstr "消息发了"
+
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr ""
+
+#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
+#: ../../mod/message.php:242 ../../mod/message.php:250
+#: ../../include/conversation.php:902 ../../include/conversation.php:920
+msgid "Please enter a link URL:"
+msgstr "请输入环节URL:"
+
+#: ../../mod/wallmessage.php:138 ../../mod/message.php:278
+msgid "Send Private Message"
+msgstr "发私人的通信"
+
+#: ../../mod/wallmessage.php:139
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr ""
+
+#: ../../mod/wallmessage.php:140 ../../mod/message.php:279
+#: ../../mod/message.php:469
+msgid "To:"
+msgstr "到:"
+
+#: ../../mod/wallmessage.php:141 ../../mod/message.php:284
+#: ../../mod/message.php:471
+msgid "Subject:"
+msgstr "题目:"
+
+#: ../../mod/wallmessage.php:147 ../../mod/message.php:288
+#: ../../mod/message.php:474 ../../mod/invite.php:113
+msgid "Your message:"
+msgstr "你的消息:"
+
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Friendica欢迎你"
+
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "新的成员一览表"
+
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。"
+
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr ""
+
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr ""
+
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr ""
+
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr ""
+
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "在你的<em>设置</em>页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。"
+
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"
+
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7
+#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
+#: ../../boot.php:1728
+msgid "Profile"
+msgstr "简介"
+
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "上传简历照片"
+
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"
+
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr ""
+
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "随意编你的<strong>公开的</strong>简历。评论设置为藏起来你的朋友表和简历过陌生来客。"
+
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr ""
+
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。"
+
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr ""
+
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
+#: ../../include/contact_selectors.php:81
+#: ../../addon.old/facebook/facebook.php:728
+#: ../../addon.old/fbpost/fbpost.php:239
+msgid "Facebook"
+msgstr "Facebook"
+
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "要是你有一个Facebook账户,批准Facebook插销。我们来(可选的)进口都你Facebook朋友们和交谈。"
+
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>要是</em>这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。"
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr ""
+
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。"
+
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr ""
+
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在<em>添加新熟人</em>对话框。"
+
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr ""
+
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "目录页让您找别人在这个网络或别的同盟的网站。找一个<em>连接</em>或<em>关注</em>按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。"
+
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr ""
+
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr ""
+
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "组"
+
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr ""
+
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。"
+
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr ""
+
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr ""
+
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr ""
+
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr ""
+
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。"
+
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "项目不可用的"
+
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "找不到项目。"
+
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "组造成了。"
+
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "不能造成组。"
+
+#: ../../mod/group.php:47 ../../mod/group.php:137
+msgid "Group not found."
+msgstr "组找不到。"
+
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "组名变化了。"
+
+#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
+msgid "Permission denied"
+msgstr "权限不够"
+
+#: ../../mod/group.php:90
+msgid "Create a group of contacts/friends."
+msgstr "造成组熟人/朋友们。"
+
+#: ../../mod/group.php:91 ../../mod/group.php:177
+msgid "Group Name: "
+msgstr "组名:"
+
+#: ../../mod/group.php:110
+msgid "Group removed."
+msgstr "组删除了。"
+
+#: ../../mod/group.php:112
+msgid "Unable to remove group."
+msgstr "不能删除组。"
+
+#: ../../mod/group.php:176
+msgid "Group Editor"
+msgstr "组编辑器"
+
+#: ../../mod/group.php:189
+msgid "Members"
+msgstr "成员"
+
+#: ../../mod/group.php:221 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "点击熟人为添加或删除。"
+
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "无限的简介标识符。"
+
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "简介能见度编辑器。"
+
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "能见被"
+
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "所有熟人(跟安全地简介使用权)"
+
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "没有熟人。"
+
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
+msgid "View Contacts"
+msgstr "看熟人"
+
+#: ../../mod/register.php:89 ../../mod/regmod.php:52
+#, php-format
+msgid "Registration details for %s"
+msgstr "注册信息为%s"
+
+#: ../../mod/register.php:97
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "注册成功了。请咨询说明再您的收件箱。"
+
+#: ../../mod/register.php:101
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "发邮件失败了。这条试失败的消息。"
+
+#: ../../mod/register.php:106
+msgid "Your registration can not be processed."
+msgstr "处理不了您的注册。"
+
+#: ../../mod/register.php:143
+#, php-format
+msgid "Registration request at %s"
+msgstr "注册要求再%s"
+
+#: ../../mod/register.php:152
+msgid "Your registration is pending approval by the site owner."
+msgstr "您的注册等网页主的批准。"
+
+#: ../../mod/register.php:218
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"
+
+#: ../../mod/register.php:219
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。"
+
+#: ../../mod/register.php:220
+msgid "Your OpenID (optional): "
+msgstr "您的OpenID(可选的):"
+
+#: ../../mod/register.php:234
+msgid "Include your profile in member directory?"
+msgstr "放您的简介再员目录?"
+
+#: ../../mod/register.php:256
+msgid "Membership on this site is by invitation only."
+msgstr "会员身份在这个网站是光通过邀请。"
+
+#: ../../mod/register.php:257
+msgid "Your invitation ID: "
+msgstr "您邀请ID:"
+
+#: ../../mod/register.php:260 ../../mod/admin.php:444
+msgid "Registration"
+msgstr "注册"
+
+#: ../../mod/register.php:268
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "您姓名(例如「张三」):"
+
+#: ../../mod/register.php:269
+msgid "Your Email Address: "
+msgstr "你的电子邮件地址:"
+
+#: ../../mod/register.php:270
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「<strong>example@$sitename</strong>」."
+
+#: ../../mod/register.php:271
+msgid "Choose a nickname: "
+msgstr "选择昵称:"
+
+#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:920
+msgid "Register"
+msgstr "注册"
+
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "搜索人物"
+
+#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
+#: ../../addon/communityhome/communityhome.php:163
+#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1444
+#: ../../include/diaspora.php:1835 ../../include/conversation.php:125
+#: ../../include/conversation.php:253
+#: ../../addon.old/communityhome/communityhome.php:163
+msgid "photo"
+msgstr "照片"
+
+#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
+#: ../../addon/communityhome/communityhome.php:158
+#: ../../addon/communityhome/communityhome.php:167
+#: ../../view/theme/diabook/theme.php:452
+#: ../../view/theme/diabook/theme.php:461 ../../include/diaspora.php:1835
+#: ../../include/conversation.php:120 ../../include/conversation.php:129
+#: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../addon.old/facebook/facebook.php:1598
+#: ../../addon.old/communityhome/communityhome.php:158
+#: ../../addon.old/communityhome/communityhome.php:167
+msgid "status"
+msgstr "现状"
+
+#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
+#: ../../addon/communityhome/communityhome.php:172
+#: ../../view/theme/diabook/theme.php:466 ../../include/diaspora.php:1851
+#: ../../include/conversation.php:136
+#: ../../addon.old/facebook/facebook.php:1602
+#: ../../addon.old/communityhome/communityhome.php:172
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s喜欢%2$s的%3$s"
+
+#: ../../mod/like.php:164 ../../include/conversation.php:139
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s不喜欢%2$s的%3$s"
+
+#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
+#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:39
+#: ../../mod/display.php:169 ../../include/items.php:3837
+msgid "Item not found."
+msgstr "项目找不到。"
+
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "没有用权。"
+
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89
+#: ../../include/nav.php:51 ../../boot.php:1735
+msgid "Photos"
+msgstr "照片"
+
+#: ../../mod/fbrowser.php:96
+msgid "Files"
+msgstr ""
+
+#: ../../mod/regmod.php:61
+msgid "Account approved."
+msgstr "账户批准了"
+
+#: ../../mod/regmod.php:98
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "%s的登记撤销了"
+
+#: ../../mod/regmod.php:110
+msgid "Please login."
+msgstr "清登录。"
+
+#: ../../mod/item.php:104
+msgid "Unable to locate original post."
+msgstr "找不到当初的新闻"
+
+#: ../../mod/item.php:288
+msgid "Empty post discarded."
+msgstr "空心的新闻丢弃了"
+
+#: ../../mod/item.php:420 ../../mod/wall_upload.php:135
+#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "墙照片"
+
+#: ../../mod/item.php:833
+msgid "System error. Post not saved."
+msgstr "系统错误。x"
+
+#: ../../mod/item.php:858
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
+
+#: ../../mod/item.php:860
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "你可以网上拜访他在%s"
+
+#: ../../mod/item.php:861
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
+
+#: ../../mod/item.php:863
+#, php-format
+msgid "%s posted an update."
+msgstr "%s贴上一个新闻。"
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:226
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr ""
+
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr ""
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr ""
+
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "照片上传去了,但修剪失灵。"
+
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "照片减少[%s]失灵。"
+
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。"
+
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "不能处理照片"
+
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "图像超标最大极限尺寸 %d"
+
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "上传文件:"
+
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr ""
+
+#: ../../mod/profile_photo.php:245
+#: ../../addon/dav/friendica/layout.fnk.php:152
+#: ../../addon.old/dav/friendica/layout.fnk.php:152
+msgid "Upload"
+msgstr "上传"
+
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "略过这步"
+
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "从您的照片册选择一片。"
+
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "修剪照片"
+
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "请调图片剪裁为最好看。"
+
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "编完了"
+
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "照片成功地上传了"
+
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "无简介"
+
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "删除我的账户"
+
+#: ../../mod/removeme.php:46
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "这要完全删除您的账户。这一做过,就不能恢复。"
+
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "请输入密码为确认:"
+
+#: ../../mod/message.php:9 ../../include/nav.php:131
+msgid "New Message"
+msgstr "新的消息"
+
+#: ../../mod/message.php:63
+msgid "Unable to locate contact information."
+msgstr "找不到熟人信息。"
+
+#: ../../mod/message.php:191
+msgid "Message deleted."
+msgstr "消息删除了。"
+
+#: ../../mod/message.php:221
+msgid "Conversation removed."
+msgstr "交流删除了。"
+
+#: ../../mod/message.php:327
+msgid "No messages."
+msgstr "没有消息"
+
+#: ../../mod/message.php:334
+#, php-format
+msgid "Unknown sender - %s"
+msgstr ""
+
+#: ../../mod/message.php:337
+#, php-format
+msgid "You and %s"
+msgstr ""
+
+#: ../../mod/message.php:340
+#, php-format
+msgid "%s and You"
+msgstr ""
+
+#: ../../mod/message.php:350 ../../mod/message.php:462
+msgid "Delete conversation"
+msgstr "删除交谈"
+
+#: ../../mod/message.php:353
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
+
+#: ../../mod/message.php:356
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+
+#: ../../mod/message.php:391
+msgid "Message not available."
+msgstr "通信不可用的"
+
+#: ../../mod/message.php:444
+msgid "Delete message"
+msgstr "删除消息"
+
+#: ../../mod/message.php:464
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
+
+#: ../../mod/message.php:468
+msgid "Send Reply"
+msgstr "发回答"
+
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "%s的朋友们"
+
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "没有朋友展示。"
+
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:96 ../../mod/admin.php:442
+msgid "Site"
+msgstr "网站"
+
+#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701
+msgid "Users"
+msgstr "用户"
+
+#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825
+msgid "Plugins"
+msgstr "插件"
+
+#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024
+msgid "Themes"
+msgstr ""
+
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr ""
+
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111
+msgid "Logs"
+msgstr "记录"
+
+#: ../../mod/admin.php:120 ../../include/nav.php:146
+msgid "Admin"
+msgstr "管理"
+
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr ""
+
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "用户注册等确认"
+
+#: ../../mod/admin.php:183 ../../mod/admin.php:669
+msgid "Normal Account"
+msgstr "正常帐户"
+
+#: ../../mod/admin.php:184 ../../mod/admin.php:670
+msgid "Soapbox Account"
+msgstr "演讲台帐户"
+
+#: ../../mod/admin.php:185 ../../mod/admin.php:671
+msgid "Community/Celebrity Account"
+msgstr "社会/名人帐户"
+
+#: ../../mod/admin.php:186 ../../mod/admin.php:672
+msgid "Automatic Friend Account"
+msgstr "自动朋友帐户"
+
+#: ../../mod/admin.php:187
+msgid "Blog Account"
+msgstr ""
+
+#: ../../mod/admin.php:188
+msgid "Private Forum"
+msgstr ""
+
+#: ../../mod/admin.php:207
+msgid "Message queues"
+msgstr ""
+
+#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687
+#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987
+#: ../../mod/admin.php:1023 ../../mod/admin.php:1110
+msgid "Administration"
+msgstr "管理"
+
+#: ../../mod/admin.php:213
+msgid "Summary"
+msgstr "总算"
+
+#: ../../mod/admin.php:215
+msgid "Registered users"
+msgstr "注册的用户"
+
+#: ../../mod/admin.php:217
+msgid "Pending registrations"
+msgstr "未决的注册"
+
+#: ../../mod/admin.php:218
+msgid "Version"
+msgstr "版本"
+
+#: ../../mod/admin.php:220
+msgid "Active plugins"
+msgstr "活跃的插件"
+
+#: ../../mod/admin.php:373
+msgid "Site settings updated."
+msgstr "网站设置更新了。"
+
+#: ../../mod/admin.php:428
+msgid "Closed"
+msgstr "关闭"
+
+#: ../../mod/admin.php:429
+msgid "Requires approval"
+msgstr "要批准"
+
+#: ../../mod/admin.php:430
+msgid "Open"
+msgstr "打开"
+
+#: ../../mod/admin.php:434
+msgid "No SSL policy, links will track page SSL state"
+msgstr ""
+
+#: ../../mod/admin.php:435
+msgid "Force all links to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:436
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr ""
+
+#: ../../mod/admin.php:445
+msgid "File upload"
+msgstr "文件上传"
+
+#: ../../mod/admin.php:446
+msgid "Policies"
+msgstr "政策"
+
+#: ../../mod/admin.php:447
+msgid "Advanced"
+msgstr "高等"
+
+#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567
+#: ../../addon.old/statusnet/statusnet.php:567
+msgid "Site name"
+msgstr "网页名字"
+
+#: ../../mod/admin.php:452
+msgid "Banner/Logo"
+msgstr "标题/标志"
+
+#: ../../mod/admin.php:453
+msgid "System language"
+msgstr "系统语言"
+
+#: ../../mod/admin.php:454
+msgid "System theme"
+msgstr "系统主题"
+
+#: ../../mod/admin.php:454
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr ""
+
+#: ../../mod/admin.php:455
+msgid "Mobile system theme"
+msgstr ""
+
+#: ../../mod/admin.php:455
+msgid "Theme for mobile devices"
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid "SSL link policy"
+msgstr ""
+
+#: ../../mod/admin.php:456
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr ""
+
+#: ../../mod/admin.php:457
+msgid "Maximum image size"
+msgstr "图片最大尺寸"
+
+#: ../../mod/admin.php:457
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr ""
+
+#: ../../mod/admin.php:458
+msgid "Maximum image length"
+msgstr ""
+
+#: ../../mod/admin.php:458
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr ""
+
+#: ../../mod/admin.php:459
+msgid "JPEG image quality"
+msgstr ""
+
+#: ../../mod/admin.php:459
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr ""
+
+#: ../../mod/admin.php:461
+msgid "Register policy"
+msgstr "注册政策"
+
+#: ../../mod/admin.php:462
+msgid "Register text"
+msgstr "注册正文"
+
+#: ../../mod/admin.php:462
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
+
+#: ../../mod/admin.php:463
+msgid "Accounts abandoned after x days"
+msgstr "账户丢弃X天后"
+
+#: ../../mod/admin.php:463
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"
+
+#: ../../mod/admin.php:464
+msgid "Allowed friend domains"
+msgstr "允许的朋友域"
+
+#: ../../mod/admin.php:464
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
+
+#: ../../mod/admin.php:465
+msgid "Allowed email domains"
+msgstr "允许的电子邮件域"
+
+#: ../../mod/admin.php:465
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr ""
+
+#: ../../mod/admin.php:466
+msgid "Block public"
+msgstr "拦公开"
+
+#: ../../mod/admin.php:466
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr ""
+
+#: ../../mod/admin.php:467
+msgid "Force publish"
+msgstr "需要出版"
+
+#: ../../mod/admin.php:467
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
+
+#: ../../mod/admin.php:468
+msgid "Global directory update URL"
+msgstr "综合目录更新URL"
+
+#: ../../mod/admin.php:468
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr ""
+
+#: ../../mod/admin.php:469
+msgid "Allow threaded items"
+msgstr ""
+
+#: ../../mod/admin.php:469
+msgid "Allow infinite level threading for items on this site."
+msgstr ""
+
+#: ../../mod/admin.php:470
+msgid "Private posts by default for new users"
+msgstr ""
+
+#: ../../mod/admin.php:470
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr ""
+
+#: ../../mod/admin.php:472
+msgid "Block multiple registrations"
+msgstr "拦一人多注册"
+
+#: ../../mod/admin.php:472
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
+
+#: ../../mod/admin.php:473
+msgid "OpenID support"
+msgstr "OpenID支持"
+
+#: ../../mod/admin.php:473
+msgid "OpenID support for registration and logins."
+msgstr ""
+
+#: ../../mod/admin.php:474
+msgid "Fullname check"
+msgstr "全名核实"
+
+#: ../../mod/admin.php:474
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
+
+#: ../../mod/admin.php:475
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8正则表达式"
+
+#: ../../mod/admin.php:475
+msgid "Use PHP UTF8 regular expressions"
+msgstr ""
+
+#: ../../mod/admin.php:476
+msgid "Show Community Page"
+msgstr "表示社会页"
+
+#: ../../mod/admin.php:476
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr ""
+
+#: ../../mod/admin.php:477
+msgid "Enable OStatus support"
+msgstr "使OStatus支持可用"
+
+#: ../../mod/admin.php:477
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
+
+#: ../../mod/admin.php:478
+msgid "Enable Diaspora support"
+msgstr "使Diaspora支持能够"
+
+#: ../../mod/admin.php:478
+msgid "Provide built-in Diaspora network compatibility."
+msgstr ""
+
+#: ../../mod/admin.php:479
+msgid "Only allow Friendica contacts"
+msgstr "只许Friendica熟人"
+
+#: ../../mod/admin.php:479
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
+
+#: ../../mod/admin.php:480
+msgid "Verify SSL"
+msgstr "证实"
+
+#: ../../mod/admin.php:480
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr ""
+
+#: ../../mod/admin.php:481
+msgid "Proxy user"
+msgstr "代理用户"
+
+#: ../../mod/admin.php:482
+msgid "Proxy URL"
+msgstr "代理URL"
+
+#: ../../mod/admin.php:483
+msgid "Network timeout"
+msgstr "网络超时"
+
+#: ../../mod/admin.php:483
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
+
+#: ../../mod/admin.php:484
+msgid "Delivery interval"
+msgstr ""
+
+#: ../../mod/admin.php:484
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr ""
+
+#: ../../mod/admin.php:485
+msgid "Poll interval"
+msgstr ""
+
+#: ../../mod/admin.php:485
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
+
+#: ../../mod/admin.php:486
+msgid "Maximum Load Average"
+msgstr ""
+
+#: ../../mod/admin.php:486
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
+
+#: ../../mod/admin.php:503
+msgid "Update has been marked successful"
+msgstr ""
+
+#: ../../mod/admin.php:513
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr ""
+
+#: ../../mod/admin.php:516
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
+
+#: ../../mod/admin.php:520
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
+
+#: ../../mod/admin.php:523
+#, php-format
+msgid "Update function %s could not be found."
+msgstr ""
+
+#: ../../mod/admin.php:538
+msgid "No failed updates."
+msgstr ""
+
+#: ../../mod/admin.php:542
+msgid "Failed Updates"
+msgstr ""
+
+#: ../../mod/admin.php:543
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr ""
+
+#: ../../mod/admin.php:544
+msgid "Mark success (if update was manually applied)"
+msgstr ""
+
+#: ../../mod/admin.php:545
+msgid "Attempt to execute this update step automatically"
+msgstr ""
+
+#: ../../mod/admin.php:570
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+
+#: ../../mod/admin.php:577
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s用户删除了"
+
+#: ../../mod/admin.php:616
+#, php-format
+msgid "User '%s' deleted"
+msgstr "用户「%s」删除了"
+
+#: ../../mod/admin.php:624
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "用户「%s」无拦了"
+
+#: ../../mod/admin.php:624
+#, php-format
+msgid "User '%s' blocked"
+msgstr "用户「%s」拦了"
+
+#: ../../mod/admin.php:690
+msgid "select all"
+msgstr "都选"
+
+#: ../../mod/admin.php:691
+msgid "User registrations waiting for confirm"
+msgstr "用户注册等待确认"
+
+#: ../../mod/admin.php:692
+msgid "Request date"
+msgstr "要求日期"
+
+#: ../../mod/admin.php:692 ../../mod/admin.php:702
+#: ../../include/contact_selectors.php:79
+msgid "Email"
+msgstr "电子邮件"
+
+#: ../../mod/admin.php:693
+msgid "No registrations."
+msgstr "没有注册。"
+
+#: ../../mod/admin.php:695
+msgid "Deny"
+msgstr "否定"
+
+#: ../../mod/admin.php:699
+msgid "Site admin"
+msgstr ""
+
+#: ../../mod/admin.php:702
+msgid "Register date"
+msgstr "注册日期"
+
+#: ../../mod/admin.php:702
+msgid "Last login"
+msgstr "上次登录"
+
+#: ../../mod/admin.php:702
+msgid "Last item"
+msgstr "上项目"
+
+#: ../../mod/admin.php:702
+msgid "Account"
+msgstr "帐户"
+
+#: ../../mod/admin.php:704
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?"
+
+#: ../../mod/admin.php:705
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?"
+
+#: ../../mod/admin.php:746
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "使插件%s不能用。"
+
+#: ../../mod/admin.php:750
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "使插件%s能用。"
+
+#: ../../mod/admin.php:760 ../../mod/admin.php:958
+msgid "Disable"
+msgstr "使不能用"
+
+#: ../../mod/admin.php:762 ../../mod/admin.php:960
+msgid "Enable"
+msgstr "使能用"
+
+#: ../../mod/admin.php:784 ../../mod/admin.php:989
+msgid "Toggle"
+msgstr "肘节"
+
+#: ../../mod/admin.php:792 ../../mod/admin.php:999
+msgid "Author: "
+msgstr ""
+
+#: ../../mod/admin.php:793 ../../mod/admin.php:1000
+msgid "Maintainer: "
+msgstr ""
+
+#: ../../mod/admin.php:922
+msgid "No themes found."
+msgstr ""
+
+#: ../../mod/admin.php:981
+msgid "Screenshot"
+msgstr ""
+
+#: ../../mod/admin.php:1029
+msgid "[Experimental]"
+msgstr ""
+
+#: ../../mod/admin.php:1030
+msgid "[Unsupported]"
+msgstr ""
+
+#: ../../mod/admin.php:1057
+msgid "Log settings updated."
+msgstr "日志设置更新了。"
+
+#: ../../mod/admin.php:1113
+msgid "Clear"
+msgstr "清理出"
+
+#: ../../mod/admin.php:1119
+msgid "Debugging"
+msgstr "调试"
+
+#: ../../mod/admin.php:1120
+msgid "Log file"
+msgstr "记录文件"
+
+#: ../../mod/admin.php:1120
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "必要被网页服务器可写的。相对Friendica主文件夹。"
+
+#: ../../mod/admin.php:1121
+msgid "Log level"
+msgstr "记录水平"
+
+#: ../../mod/admin.php:1171
+msgid "Close"
+msgstr "关闭"
+
+#: ../../mod/admin.php:1177
+msgid "FTP Host"
+msgstr "FTP主机"
+
+#: ../../mod/admin.php:1178
+msgid "FTP Path"
+msgstr "FTP目录"
+
+#: ../../mod/admin.php:1179
+msgid "FTP User"
+msgstr "FTP用户"
+
+#: ../../mod/admin.php:1180
+msgid "FTP Password"
+msgstr "FTP密码"
+
+#: ../../mod/profile.php:21 ../../boot.php:1123
+msgid "Requested profile is not available."
+msgstr ""
+
+#: ../../mod/profile.php:155 ../../mod/display.php:87
+msgid "Access to this profile has been restricted."
+msgstr "使用权这个简介被限制了."
+
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "提示对新成员"
+
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0}想成为您的朋友"
+
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0}发给您一个通信"
+
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0}要求注册"
+
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0}对%s的文章发表意见"
+
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0}喜欢%s的文章"
+
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0}不喜欢%s的文章"
+
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0}成为%s的朋友"
+
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0}陈列"
+
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0}用#%s标签%s的文章"
+
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0}提到您在文章"
+
+#: ../../mod/nogroup.php:58
+msgid "Contacts who are not members of a group"
+msgstr ""
+
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr ""
+
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr ""
+
+#: ../../mod/openid.php:93 ../../include/auth.php:110
+#: ../../include/auth.php:173
+msgid "Login failed."
+msgstr "登记失败了。"
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr ""
+
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "普通朋友们"
+
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr ""
+
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
+#: ../../mod/share.php:28
+msgid "link"
+msgstr ""
+
+#: ../../mod/display.php:162
+msgid "Item has been removed."
+msgstr "项目被删除了。"
+
+#: ../../mod/apps.php:4
+msgid "Applications"
+msgstr "应用"
+
+#: ../../mod/apps.php:7
+msgid "No installed applications."
+msgstr "没有安装的应用"
+
+#: ../../mod/search.php:96 ../../include/text.php:685
+#: ../../include/text.php:686 ../../include/nav.php:91
+msgid "Search"
+msgstr "搜索"
+
+#: ../../mod/profiles.php:21 ../../mod/profiles.php:434
+#: ../../mod/profiles.php:548 ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
+msgstr "找不到简介。"
+
+#: ../../mod/profiles.php:31
+msgid "Profile Name is required."
+msgstr "必要简介名"
+
+#: ../../mod/profiles.php:171
+msgid "Marital Status"
+msgstr ""
+
+#: ../../mod/profiles.php:175
+msgid "Romantic Partner"
+msgstr ""
+
+#: ../../mod/profiles.php:179
+msgid "Likes"
+msgstr ""
+
+#: ../../mod/profiles.php:183
+msgid "Dislikes"
+msgstr ""
+
+#: ../../mod/profiles.php:187
+msgid "Work/Employment"
+msgstr ""
+
+#: ../../mod/profiles.php:190
+msgid "Religion"
+msgstr ""
+
+#: ../../mod/profiles.php:194
+msgid "Political Views"
+msgstr ""
+
+#: ../../mod/profiles.php:198
+msgid "Gender"
+msgstr ""
+
+#: ../../mod/profiles.php:202
+msgid "Sexual Preference"
+msgstr ""
+
+#: ../../mod/profiles.php:206
+msgid "Homepage"
+msgstr ""
+
+#: ../../mod/profiles.php:210
+msgid "Interests"
+msgstr ""
+
+#: ../../mod/profiles.php:214
+msgid "Address"
+msgstr ""
+
+#: ../../mod/profiles.php:221 ../../addon/dav/common/wdcal_edit.inc.php:183
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
+msgid "Location"
+msgstr ""
+
+#: ../../mod/profiles.php:304
+msgid "Profile updated."
+msgstr "简介更新了。"
+
+#: ../../mod/profiles.php:371
+msgid " and "
+msgstr ""
+
+#: ../../mod/profiles.php:379
+msgid "public profile"
+msgstr ""
+
+#: ../../mod/profiles.php:382
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr ""
+
+#: ../../mod/profiles.php:383
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr ""
+
+#: ../../mod/profiles.php:386
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr ""
+
+#: ../../mod/profiles.php:453
+msgid "Profile deleted."
+msgstr "简介删除了。"
+
+#: ../../mod/profiles.php:471 ../../mod/profiles.php:505
+msgid "Profile-"
+msgstr "简介-"
+
+#: ../../mod/profiles.php:490 ../../mod/profiles.php:532
+msgid "New profile created."
+msgstr "创造新的简介"
+
+#: ../../mod/profiles.php:511
+msgid "Profile unavailable to clone."
+msgstr "简介不可用为复制。"
+
+#: ../../mod/profiles.php:573
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?"
+
+#: ../../mod/profiles.php:593
+msgid "Edit Profile Details"
+msgstr "剪辑简介消息"
+
+#: ../../mod/profiles.php:595
+msgid "View this profile"
+msgstr "看这个简介"
+
+#: ../../mod/profiles.php:596
+msgid "Create a new profile using these settings"
+msgstr "造成新的简介用这些设置"
+
+#: ../../mod/profiles.php:597
+msgid "Clone this profile"
+msgstr "复制这个简介"
+
+#: ../../mod/profiles.php:598
+msgid "Delete this profile"
+msgstr "删除这个简介"
+
+#: ../../mod/profiles.php:599
+msgid "Profile Name:"
+msgstr "简介名:"
+
+#: ../../mod/profiles.php:600
+msgid "Your Full Name:"
+msgstr "你的全名:"
+
+#: ../../mod/profiles.php:601
+msgid "Title/Description:"
+msgstr "标题/描述:"
+
+#: ../../mod/profiles.php:602
+msgid "Your Gender:"
+msgstr "你的性:"
+
+#: ../../mod/profiles.php:603
+#, php-format
+msgid "Birthday (%s):"
+msgstr "生日(%s):"
+
+#: ../../mod/profiles.php:604
+msgid "Street Address:"
+msgstr "地址:"
+
+#: ../../mod/profiles.php:605
+msgid "Locality/City:"
+msgstr "现场/城市:"
+
+#: ../../mod/profiles.php:606
+msgid "Postal/Zip Code:"
+msgstr "邮政编码:"
+
+#: ../../mod/profiles.php:607
+msgid "Country:"
+msgstr "国家:"
+
+#: ../../mod/profiles.php:608
+msgid "Region/State:"
+msgstr "区域/省"
+
+#: ../../mod/profiles.php:609
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>婚姻状况:"
+
+#: ../../mod/profiles.php:610
+msgid "Who: (if applicable)"
+msgstr "谁:(要是使用)"
+
+#: ../../mod/profiles.php:611
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "比如:limou,李某,limou@example。com"
+
+#: ../../mod/profiles.php:612
+msgid "Since [date]:"
+msgstr ""
+
+#: ../../mod/profiles.php:613 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "性取向"
+
+#: ../../mod/profiles.php:614
+msgid "Homepage URL:"
+msgstr "主页URL:"
+
+#: ../../mod/profiles.php:615 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr ""
+
+#: ../../mod/profiles.php:616 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "政治观念:"
+
+#: ../../mod/profiles.php:617
+msgid "Religious Views:"
+msgstr " 宗教信仰 :"
+
+#: ../../mod/profiles.php:618
+msgid "Public Keywords:"
+msgstr "公开关键字 :"
+
+#: ../../mod/profiles.php:619
+msgid "Private Keywords:"
+msgstr "私人关键字"
+
+#: ../../mod/profiles.php:620 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr ""
+
+#: ../../mod/profiles.php:621 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr ""
+
+#: ../../mod/profiles.php:622
+msgid "Example: fishing photography software"
+msgstr "例如:钓鱼 照片 软件"
+
+#: ../../mod/profiles.php:623
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(用于建议可能的朋友们,会被别人看)"
+
+#: ../../mod/profiles.php:624
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(用于搜索简介,没有给别人看)"
+
+#: ../../mod/profiles.php:625
+msgid "Tell us about yourself..."
+msgstr "给我们自我介绍..."
+
+#: ../../mod/profiles.php:626
+msgid "Hobbies/Interests"
+msgstr "爱好/兴趣"
+
+#: ../../mod/profiles.php:627
+msgid "Contact information and Social Networks"
+msgstr "熟人信息和社会化网络"
+
+#: ../../mod/profiles.php:628
+msgid "Musical interests"
+msgstr "音乐兴趣"
+
+#: ../../mod/profiles.php:629
+msgid "Books, literature"
+msgstr "书,文学"
+
+#: ../../mod/profiles.php:630
+msgid "Television"
+msgstr "电视"
+
+#: ../../mod/profiles.php:631
+msgid "Film/dance/culture/entertainment"
+msgstr "电影/跳舞/文化/娱乐"
+
+#: ../../mod/profiles.php:632
+msgid "Love/romance"
+msgstr "爱情/浪漫"
+
+#: ../../mod/profiles.php:633
+msgid "Work/employment"
+msgstr "工作"
+
+#: ../../mod/profiles.php:634
+msgid "School/education"
+msgstr "学院/教育"
+
+#: ../../mod/profiles.php:639
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。"
+
+#: ../../mod/profiles.php:649 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "年纪:"
+
+#: ../../mod/profiles.php:688
+msgid "Edit/Manage Profiles"
+msgstr "编辑/管理简介"
+
+#: ../../mod/profiles.php:689 ../../boot.php:1241
+msgid "Change profile photo"
+msgstr "换简介照片"
+
+#: ../../mod/profiles.php:690 ../../boot.php:1242
+msgid "Create New Profile"
+msgstr "创造新的简介"
+
+#: ../../mod/profiles.php:701 ../../boot.php:1252
+msgid "Profile Image"
+msgstr "简介图像"
+
+#: ../../mod/profiles.php:703 ../../boot.php:1255
+msgid "visible to everybody"
+msgstr "给打假可见的"
+
+#: ../../mod/profiles.php:704 ../../boot.php:1256
+msgid "Edit visibility"
+msgstr "修改能见度"
+
+#: ../../mod/filer.php:29 ../../include/conversation.php:906
+#: ../../include/conversation.php:924
+msgid "Save to Folder:"
+msgstr ""
+
+#: ../../mod/filer.php:29
+msgid "- select -"
+msgstr ""
+
+#: ../../mod/tagger.php:95 ../../include/conversation.php:265
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s把%4$s标签%2$s的%3$s"
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr ""
+
+#: ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr ""
+
+#: ../../mod/delegate.php:123
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr ""
+
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr ""
+
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr ""
+
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr ""
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "加"
+
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "没有项目。"
+
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr ""
+
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr ""
+
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr ""
+
+#: ../../mod/babel.php:35
+msgid "bb2html: "
+msgstr ""
+
+#: ../../mod/babel.php:39
+msgid "bb2html2bb: "
+msgstr ""
+
+#: ../../mod/babel.php:43
+msgid "bb2md: "
+msgstr ""
+
+#: ../../mod/babel.php:47
+msgid "bb2md2html: "
+msgstr ""
+
+#: ../../mod/babel.php:51
+msgid "bb2dia2bb: "
+msgstr ""
+
+#: ../../mod/babel.php:55
+msgid "bb2md2html2bb: "
+msgstr ""
+
+#: ../../mod/babel.php:65
+msgid "Source input (Diaspora format): "
+msgstr ""
+
+#: ../../mod/babel.php:70
+msgid "diaspora2bb: "
+msgstr ""
+
+#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:513
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "友谊建议"
+
+#: ../../mod/suggest.php:44
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
+
+#: ../../mod/suggest.php:61
+msgid "Ignore/Hide"
+msgstr "不理/隐藏"
+
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:511
+msgid "Global Directory"
+msgstr "综合目录"
+
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "找在这网站"
+
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "网站目录"
+
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "性别:"
+
+#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
+#: ../../boot.php:1277
+msgid "Gender:"
+msgstr "性别:"
+
+#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
+#: ../../boot.php:1280
+msgid "Status:"
+msgstr "现状:"
+
+#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
+#: ../../boot.php:1282
+msgid "Homepage:"
+msgstr "主页:"
+
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "关于:"
+
+#: ../../mod/directory.php:180
+msgid "No entries (some entries may be hidden)."
+msgstr "没有文章(有的文章会被隐藏)。"
+
+#: ../../mod/invite.php:35
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : 不是效的电子邮件地址."
+
+#: ../../mod/invite.php:59
+msgid "Please join us on Friendica"
+msgstr ""
+
+#: ../../mod/invite.php:69
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : 送消息失败了。"
+
+#: ../../mod/invite.php:73
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d消息传送了。"
+
+#: ../../mod/invite.php:92
+msgid "You have no more invitations available"
+msgstr "您没有别的邀请"
+
+#: ../../mod/invite.php:100
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr ""
+
+#: ../../mod/invite.php:102
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr ""
+
+#: ../../mod/invite.php:103
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr ""
+
+#: ../../mod/invite.php:106
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr ""
+
+#: ../../mod/invite.php:111
+msgid "Send invitations"
+msgstr "发请柬"
+
+#: ../../mod/invite.php:112
+msgid "Enter email addresses, one per line:"
+msgstr "输入电子邮件地址,一行一个:"
+
+#: ../../mod/invite.php:114
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr ""
+
+#: ../../mod/invite.php:116
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "您要输入这个邀请密码:$invite_code"
+
+#: ../../mod/invite.php:116
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "您一注册,请页跟我连接,用我的简介在:"
+
+#: ../../mod/invite.php:118
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "遥网站的回答明白不了。"
+
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "居然回答从遥网站:"
+
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "确认成功完成。"
+
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "遥网站报案:"
+
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "临时失败。请等一会,再试。"
+
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "介绍失败或被吊销。"
+
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "不会指定熟人照片。"
+
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:619
+#: ../../include/conversation.php:171
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s是成为%2$s的朋友"
+
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "找不到「%s」的用户记录"
+
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "看起来我们的加密钥匙失灵了。"
+
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "空的URL供应,或URL解不了码。"
+
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "熟人记录在我们的网站找不了。"
+
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "没有网站公开钥匙在熟人记录在URL%s。"
+
+#: ../../mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。"
+
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "不能创作您的熟人证件在我们的系统。"
+
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "不能更新您的熟人简介消息在我们的系统"
+
+#: ../../mod/dfrn_confirm.php:750
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "联络接受了在%s"
+
+#: ../../mod/dfrn_confirm.php:799
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr ""
+
+#: ../../addon/fromgplus/fromgplus.php:29
+#: ../../addon.old/fromgplus/fromgplus.php:29
+msgid "Google+ Import Settings"
+msgstr ""
+
+#: ../../addon/fromgplus/fromgplus.php:32
+#: ../../addon.old/fromgplus/fromgplus.php:32
+msgid "Enable Google+ Import"
+msgstr ""
+
+#: ../../addon/fromgplus/fromgplus.php:35
+#: ../../addon.old/fromgplus/fromgplus.php:35
+msgid "Google Account ID"
+msgstr ""
+
+#: ../../addon/fromgplus/fromgplus.php:55
+#: ../../addon.old/fromgplus/fromgplus.php:55
+msgid "Google+ Import Settings saved."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:523
+#: ../../addon.old/facebook/facebook.php:523
+msgid "Facebook disabled"
+msgstr "Facebook废"
+
+#: ../../addon/facebook/facebook.php:528
+#: ../../addon.old/facebook/facebook.php:528
+msgid "Updating contacts"
+msgstr "正才更新熟人"
+
+#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
+#: ../../addon.old/facebook/facebook.php:551
+#: ../../addon.old/fbpost/fbpost.php:192
+msgid "Facebook API key is missing."
+msgstr "Facebook API钥匙失踪的。"
+
+#: ../../addon/facebook/facebook.php:558
+#: ../../addon.old/facebook/facebook.php:558
+msgid "Facebook Connect"
+msgstr "Facebook联络"
+
+#: ../../addon/facebook/facebook.php:564
+#: ../../addon.old/facebook/facebook.php:564
+msgid "Install Facebook connector for this account."
+msgstr "安装Facebook连接器为这个账户。"
+
+#: ../../addon/facebook/facebook.php:571
+#: ../../addon.old/facebook/facebook.php:571
+msgid "Remove Facebook connector"
+msgstr "删除Facebook连接器"
+
+#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
+#: ../../addon.old/facebook/facebook.php:576
+#: ../../addon.old/fbpost/fbpost.php:217
+msgid ""
+"Re-authenticate [This is necessary whenever your Facebook password is "
+"changed.]"
+msgstr "复认证[这是必要的每当您Facebook密码变化了]"
+
+#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
+#: ../../addon.old/facebook/facebook.php:583
+#: ../../addon.old/fbpost/fbpost.php:224
+msgid "Post to Facebook by default"
+msgstr "默认地放在Facebook"
+
+#: ../../addon/facebook/facebook.php:589
+#: ../../addon.old/facebook/facebook.php:589
+msgid ""
+"Facebook friend linking has been disabled on this site. The following "
+"settings will have no effect."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:593
+#: ../../addon.old/facebook/facebook.php:593
+msgid ""
+"Facebook friend linking has been disabled on this site. If you disable it, "
+"you will be unable to re-enable it."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:596
+#: ../../addon.old/facebook/facebook.php:596
+msgid "Link all your Facebook friends and conversations on this website"
+msgstr "连接您所有的Facebook朋友们和交流在这个网站"
+
+#: ../../addon/facebook/facebook.php:598
+#: ../../addon.old/facebook/facebook.php:598
+msgid ""
+"Facebook conversations consist of your <em>profile wall</em> and your friend"
+" <em>stream</em>."
+msgstr "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 "
+
+#: ../../addon/facebook/facebook.php:599
+#: ../../addon.old/facebook/facebook.php:599
+msgid "On this website, your Facebook friend stream is only visible to you."
+msgstr "在这个网站,您Facebook朋友溪流是只您可见的。"
+
+#: ../../addon/facebook/facebook.php:600
+#: ../../addon.old/facebook/facebook.php:600
+msgid ""
+"The following settings determine the privacy of your Facebook profile wall "
+"on this website."
+msgstr "下面的设置决定您在这个网站Facebook简介墙的隐私。"
+
+#: ../../addon/facebook/facebook.php:604
+#: ../../addon.old/facebook/facebook.php:604
+msgid ""
+"On this website your Facebook profile wall conversations will only be "
+"visible to you"
+msgstr "在这个网站您Facebook简介墙交流是只您可见的。"
+
+#: ../../addon/facebook/facebook.php:609
+#: ../../addon.old/facebook/facebook.php:609
+msgid "Do not import your Facebook profile wall conversations"
+msgstr "别进口您Facebook简介墙交流"
+
+#: ../../addon/facebook/facebook.php:611
+#: ../../addon.old/facebook/facebook.php:611
+msgid ""
+"If you choose to link conversations and leave both of these boxes unchecked,"
+" your Facebook profile wall will be merged with your profile wall on this "
+"website and your privacy settings on this website will be used to determine "
+"who may see the conversations."
+msgstr "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。"
+
+#: ../../addon/facebook/facebook.php:616
+#: ../../addon.old/facebook/facebook.php:616
+msgid "Comma separated applications to ignore"
+msgstr "逗号分开的应用要不理"
+
+#: ../../addon/facebook/facebook.php:700
+#: ../../addon.old/facebook/facebook.php:700
+msgid "Problems with Facebook Real-Time Updates"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:729
+#: ../../addon.old/facebook/facebook.php:729
+msgid "Facebook Connector Settings"
+msgstr "Facebook连接器设置"
+
+#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
+#: ../../addon.old/facebook/facebook.php:744
+#: ../../addon.old/fbpost/fbpost.php:255
+msgid "Facebook API Key"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
+#: ../../addon.old/facebook/facebook.php:754
+#: ../../addon.old/fbpost/fbpost.php:262
+msgid ""
+"Error: it appears that you have specified the App-ID and -Secret in your "
+".htconfig.php file. As long as they are specified there, they cannot be set "
+"using this form.<br><br>"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:759
+#: ../../addon.old/facebook/facebook.php:759
+msgid ""
+"Error: the given API Key seems to be incorrect (the application access token"
+" could not be retrieved)."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:761
+#: ../../addon.old/facebook/facebook.php:761
+msgid "The given API Key seems to work correctly."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:763
+#: ../../addon.old/facebook/facebook.php:763
+msgid ""
+"The correctness of the API Key could not be detected. Something strange's "
+"going on."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
+#: ../../addon.old/facebook/facebook.php:766
+#: ../../addon.old/fbpost/fbpost.php:264
+msgid "App-ID / API-Key"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
+#: ../../addon.old/facebook/facebook.php:767
+#: ../../addon.old/fbpost/fbpost.php:265
+msgid "Application secret"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:768
+#: ../../addon.old/facebook/facebook.php:768
+#, php-format
+msgid "Polling Interval in minutes (minimum %1$s minutes)"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:769
+#: ../../addon.old/facebook/facebook.php:769
+msgid ""
+"Synchronize comments (no comments on Facebook are missed, at the cost of "
+"increased system load)"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:773
+#: ../../addon.old/facebook/facebook.php:773
+msgid "Real-Time Updates"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:777
+#: ../../addon.old/facebook/facebook.php:777
+msgid "Real-Time Updates are activated."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:778
+#: ../../addon.old/facebook/facebook.php:778
+msgid "Deactivate Real-Time Updates"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
+msgid "Real-Time Updates not activated."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:780
+#: ../../addon.old/facebook/facebook.php:780
+msgid "Activate Real-Time Updates"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
+#: ../../addon/dav/friendica/layout.fnk.php:361
+#: ../../addon.old/facebook/facebook.php:799
+#: ../../addon.old/fbpost/fbpost.php:282
+#: ../../addon.old/dav/friendica/layout.fnk.php:361
+msgid "The new values have been saved."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
+#: ../../addon.old/facebook/facebook.php:823
+#: ../../addon.old/fbpost/fbpost.php:301
+msgid "Post to Facebook"
+msgstr "放在Facebook"
+
+#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
+#: ../../addon.old/facebook/facebook.php:921
+#: ../../addon.old/fbpost/fbpost.php:399
+msgid ""
+"Post to Facebook cancelled because of multi-network access permission "
+"conflict."
+msgstr "发送到Facebook取消由于多网络准许矛盾。"
+
+#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
+#: ../../addon.old/facebook/facebook.php:1149
+#: ../../addon.old/fbpost/fbpost.php:610
+msgid "View on Friendica"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
+#: ../../addon.old/facebook/facebook.php:1182
+#: ../../addon.old/fbpost/fbpost.php:643
+msgid "Facebook post failed. Queued for retry."
+msgstr "Facebook发送失败了。排队着待再试。"
+
+#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
+#: ../../addon.old/facebook/facebook.php:1222
+#: ../../addon.old/fbpost/fbpost.php:683
+msgid "Your Facebook connection became invalid. Please Re-authenticate."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
+#: ../../addon.old/facebook/facebook.php:1223
+#: ../../addon.old/fbpost/fbpost.php:684
+msgid "Facebook connection became invalid"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
+#: ../../addon.old/facebook/facebook.php:1224
+#: ../../addon.old/fbpost/fbpost.php:685
+#, php-format
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
+msgstr ""
+
+#: ../../addon/snautofollow/snautofollow.php:32
+#: ../../addon.old/snautofollow/snautofollow.php:32
+msgid "StatusNet AutoFollow settings updated."
+msgstr ""
+
+#: ../../addon/snautofollow/snautofollow.php:56
+#: ../../addon.old/snautofollow/snautofollow.php:56
+msgid "StatusNet AutoFollow Settings"
+msgstr ""
+
+#: ../../addon/snautofollow/snautofollow.php:58
+#: ../../addon.old/snautofollow/snautofollow.php:58
+msgid "Automatically follow any StatusNet followers/mentioners"
+msgstr ""
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:260
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
+msgid "Lifetime of the cache (in hours)"
+msgstr ""
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:265
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
+msgid "Cache Statistics"
+msgstr ""
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:268
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
+msgid "Number of items"
+msgstr ""
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:270
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
+msgid "Size of the cache"
+msgstr ""
+
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:272
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
+msgid "Delete the whole cache"
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
+msgid "Facebook Post disabled"
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
+msgid "Facebook Post"
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
+msgid "Install Facebook Post connector for this account."
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
+msgid "Remove Facebook Post connector"
+msgstr ""
+
+#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
+msgid "Facebook Post Settings"
+msgstr ""
+
+#: ../../addon/widgets/widget_like.php:58
+#: ../../addon.old/widgets/widget_like.php:58
+#, php-format
+msgid "%d person likes this"
+msgid_plural "%d people like this"
+msgstr[0] "%d人喜欢这个"
+
+#: ../../addon/widgets/widget_like.php:61
+#: ../../addon.old/widgets/widget_like.php:61
+#, php-format
+msgid "%d person doesn't like this"
+msgid_plural "%d people don't like this"
+msgstr[0] "%d人不喜欢这个"
+
+#: ../../addon/widgets/widget_friendheader.php:40
+#: ../../addon.old/widgets/widget_friendheader.php:40
+msgid "Get added to this list!"
+msgstr ""
+
+#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
+msgid "Generate new key"
+msgstr "造成新钥匙"
+
+#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
+msgid "Widgets key"
+msgstr "小窗口钥匙"
+
+#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
+msgid "Widgets available"
+msgstr "可用的小窗口"
+
+#: ../../addon/widgets/widget_friends.php:40
+#: ../../addon.old/widgets/widget_friends.php:40
+msgid "Connect on Friendica!"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
+msgid "bitchslap"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:19
+#: ../../addon.old/morepokes/morepokes.php:19
+msgid "bitchslapped"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
+msgid "shag"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:20
+#: ../../addon.old/morepokes/morepokes.php:20
+msgid "shagged"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
+msgid "do something obscenely biological to"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:21
+#: ../../addon.old/morepokes/morepokes.php:21
+msgid "did something obscenely biological to"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
+msgid "point out the poke feature to"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:22
+#: ../../addon.old/morepokes/morepokes.php:22
+msgid "pointed out the poke feature to"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
+msgid "declare undying love for"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:23
+#: ../../addon.old/morepokes/morepokes.php:23
+msgid "declared undying love for"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
+msgid "patent"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:24
+#: ../../addon.old/morepokes/morepokes.php:24
+msgid "patented"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
+msgid "stroke beard"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:25
+#: ../../addon.old/morepokes/morepokes.php:25
+msgid "stroked their beard at"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
+msgid ""
+"bemoan the declining standards of modern secondary and tertiary education to"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:26
+#: ../../addon.old/morepokes/morepokes.php:26
+msgid ""
+"bemoans the declining standards of modern secondary and tertiary education "
+"to"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
+msgid "hug"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:27
+#: ../../addon.old/morepokes/morepokes.php:27
+msgid "hugged"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
+msgid "kiss"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:28
+#: ../../addon.old/morepokes/morepokes.php:28
+msgid "kissed"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
+msgid "raise eyebrows at"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:29
+#: ../../addon.old/morepokes/morepokes.php:29
+msgid "raised their eyebrows at"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
+msgid "insult"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:30
+#: ../../addon.old/morepokes/morepokes.php:30
+msgid "insulted"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
+msgid "praise"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:31
+#: ../../addon.old/morepokes/morepokes.php:31
+msgid "praised"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
+msgid "be dubious of"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:32
+#: ../../addon.old/morepokes/morepokes.php:32
+msgid "was dubious of"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
+msgid "eat"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:33
+#: ../../addon.old/morepokes/morepokes.php:33
+msgid "ate"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
+msgid "giggle and fawn at"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:34
+#: ../../addon.old/morepokes/morepokes.php:34
+msgid "giggled and fawned at"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
+msgid "doubt"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:35
+#: ../../addon.old/morepokes/morepokes.php:35
+msgid "doubted"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
+msgid "glare"
+msgstr ""
+
+#: ../../addon/morepokes/morepokes.php:36
+#: ../../addon.old/morepokes/morepokes.php:36
+msgid "glared at"
+msgstr ""
+
+#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
+msgid "YourLS Settings"
+msgstr ""
+
+#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
+msgid "URL: http://"
+msgstr ""
+
+#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
+msgid "Username:"
+msgstr ""
+
+#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
+msgid "Password:"
+msgstr ""
+
+#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
+msgid "Use SSL "
+msgstr ""
+
+#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
+msgid "yourls Settings saved."
+msgstr ""
+
+#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
+msgid "Post to LiveJournal"
+msgstr ""
+
+#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
+msgid "LiveJournal Post Settings"
+msgstr ""
+
+#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
+msgid "Enable LiveJournal Post Plugin"
+msgstr ""
+
+#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
+msgid "LiveJournal username"
+msgstr ""
+
+#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
+msgid "LiveJournal password"
+msgstr ""
+
+#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
+msgid "Post to LiveJournal by default"
+msgstr ""
+
+#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
+msgid "Not Safe For Work (General Purpose Content Filter) settings"
+msgstr ""
+
+#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
+msgid ""
+"This plugin looks in posts for the words/text you specify below, and "
+"collapses any content containing those keywords so it is not displayed at "
+"inappropriate times, such as sexual innuendo that may be improper in a work "
+"setting. It is polite and recommended to tag any content containing nudity "
+"with #NSFW.  This filter can also match any other word/text you specify, and"
+" can thereby be used as a general purpose content filter."
+msgstr ""
+
+#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
+msgid "Enable Content filter"
+msgstr ""
+
+#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
+msgid "Comma separated list of keywords to hide"
+msgstr ""
+
+#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
+msgid "Use /expression/ to provide regular expressions"
+msgstr ""
+
+#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
+msgid "NSFW Settings saved."
+msgstr "NSFW设置保持了。"
+
+#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
+#, php-format
+msgid "%s - Click to open/close"
+msgstr "%s - 点击为打开/关闭"
+
+#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
+#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
+msgid "Forums"
+msgstr ""
+
+#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
+#: ../../addon.old/page/page.php:130
+#: ../../addon.old/forumlist/forumlist.php:94
+msgid "Forums:"
+msgstr ""
+
+#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
+msgid "Page settings updated."
+msgstr ""
+
+#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
+msgid "Page Settings"
+msgstr ""
+
+#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
+msgid "How many forums to display on sidebar without paging"
+msgstr ""
+
+#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
+msgid "Randomise Page/Forum list"
+msgstr ""
+
+#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
+msgid "Show pages/forums on profile page"
+msgstr ""
+
+#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
+msgid "Planets Settings"
+msgstr ""
+
+#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
+msgid "Enable Planets Plugin"
+msgstr ""
+
+#: ../../addon/communityhome/communityhome.php:28
+#: ../../addon/communityhome/communityhome.php:34
+#: ../../addon/communityhome/twillingham/communityhome.php:28
+#: ../../addon/communityhome/twillingham/communityhome.php:34
+#: ../../include/nav.php:64 ../../boot.php:946
+#: ../../addon.old/communityhome/communityhome.php:28
+#: ../../addon.old/communityhome/communityhome.php:34
+#: ../../addon.old/communityhome/twillingham/communityhome.php:28
+#: ../../addon.old/communityhome/twillingham/communityhome.php:34
+msgid "Login"
+msgstr "登录"
+
+#: ../../addon/communityhome/communityhome.php:29
+#: ../../addon/communityhome/twillingham/communityhome.php:29
+#: ../../addon.old/communityhome/communityhome.php:29
+#: ../../addon.old/communityhome/twillingham/communityhome.php:29
+msgid "OpenID"
+msgstr "OpenID"
+
+#: ../../addon/communityhome/communityhome.php:38
+#: ../../addon/communityhome/twillingham/communityhome.php:38
+#: ../../addon.old/communityhome/communityhome.php:38
+#: ../../addon.old/communityhome/twillingham/communityhome.php:38
+msgid "Latest users"
+msgstr ""
+
+#: ../../addon/communityhome/communityhome.php:81
+#: ../../addon/communityhome/twillingham/communityhome.php:81
+#: ../../addon.old/communityhome/communityhome.php:81
+#: ../../addon.old/communityhome/twillingham/communityhome.php:81
+msgid "Most active users"
+msgstr "最积极用户"
+
+#: ../../addon/communityhome/communityhome.php:98
+#: ../../addon.old/communityhome/communityhome.php:98
+msgid "Latest photos"
+msgstr ""
+
+#: ../../addon/communityhome/communityhome.php:133
+#: ../../addon.old/communityhome/communityhome.php:133
+msgid "Latest likes"
+msgstr ""
+
+#: ../../addon/communityhome/communityhome.php:155
+#: ../../view/theme/diabook/theme.php:449 ../../include/text.php:1442
+#: ../../include/conversation.php:117 ../../include/conversation.php:245
+#: ../../addon.old/communityhome/communityhome.php:155
+msgid "event"
+msgstr "项目"
+
+#: ../../addon/dav/common/wdcal_backend.inc.php:92
+#: ../../addon/dav/common/wdcal_backend.inc.php:166
+#: ../../addon/dav/common/wdcal_backend.inc.php:178
+#: ../../addon/dav/common/wdcal_backend.inc.php:206
+#: ../../addon/dav/common/wdcal_backend.inc.php:214
+#: ../../addon/dav/common/wdcal_backend.inc.php:229
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
+msgid "No access"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:30
+#: ../../addon/dav/common/wdcal_edit.inc.php:738
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
+msgid "Could not open component for editing"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:140
+#: ../../addon/dav/friendica/layout.fnk.php:143
+#: ../../addon/dav/friendica/layout.fnk.php:422
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
+#: ../../addon.old/dav/friendica/layout.fnk.php:143
+#: ../../addon.old/dav/friendica/layout.fnk.php:422
+msgid "Go back to the calendar"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:144
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
+msgid "Event data"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:146
+#: ../../addon/dav/friendica/main.php:239
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
+#: ../../addon.old/dav/friendica/main.php:239
+msgid "Calendar"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:163
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
+msgid "Special color"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:169
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
+msgid "Subject"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:173
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
+msgid "Starts"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:178
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
+msgid "Ends"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:185
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
+msgid "Description"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:188
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
+msgid "Recurrence"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:190
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
+msgid "Frequency"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:194
+#: ../../include/contact_selectors.php:59
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
+msgid "Daily"
+msgstr "每日"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:197
+#: ../../include/contact_selectors.php:60
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
+msgid "Weekly"
+msgstr "每周"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:200
+#: ../../include/contact_selectors.php:61
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
+msgid "Monthly"
+msgstr "每月"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:203
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
+msgid "Yearly"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:214
+#: ../../include/datetime.php:288
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
+msgid "days"
+msgstr "天"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:215
+#: ../../include/datetime.php:287
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
+msgid "weeks"
+msgstr "星期"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:216
+#: ../../include/datetime.php:286
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
+msgid "months"
+msgstr "月"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:217
+#: ../../include/datetime.php:285
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
+msgid "years"
+msgstr "年"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
+msgid "Interval"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:218
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
+msgid "All %select% %time%"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:222
+#: ../../addon/dav/common/wdcal_edit.inc.php:260
+#: ../../addon/dav/common/wdcal_edit.inc.php:481
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
+msgid "Days"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:231
+#: ../../addon/dav/common/wdcal_edit.inc.php:254
+#: ../../addon/dav/common/wdcal_edit.inc.php:270
+#: ../../addon/dav/common/wdcal_edit.inc.php:293
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
+msgid "Sunday"
+msgstr "星期天"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:235
+#: ../../addon/dav/common/wdcal_edit.inc.php:274
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
+msgid "Monday"
+msgstr "星期一"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:238
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
+msgid "Tuesday"
+msgstr "星期二"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:241
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
+msgid "Wednesday"
+msgstr "星期三"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:244
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
+msgid "Thursday"
+msgstr "星期四"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:247
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
+msgid "Friday"
+msgstr "星期五"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:250
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
+msgid "Saturday"
+msgstr "星期六"
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:297
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
+msgid "First day of week:"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:350
+#: ../../addon/dav/common/wdcal_edit.inc.php:373
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
+msgid "Day of month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:354
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
+msgid "#num#th of each month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:357
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
+msgid "#num#th-last of each month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:360
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
+msgid "#num#th #wkday# of each month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:363
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
+msgid "#num#th-last #wkday# of each month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:372
+#: ../../addon/dav/friendica/layout.fnk.php:255
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
+#: ../../addon.old/dav/friendica/layout.fnk.php:255
+msgid "Month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:377
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
+msgid "#num#th of the given month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:380
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
+msgid "#num#th-last of the given month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:383
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
+msgid "#num#th #wkday# of the given month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:386
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
+msgid "#num#th-last #wkday# of the given month"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:413
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
+msgid "Repeat until"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:417
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
+msgid "Infinite"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:420
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
+msgid "Until the following date"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:423
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
+msgid "Number of times"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:429
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
+msgid "Exceptions"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:432
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
+msgid "none"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:449
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
+msgid "Notification"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:466
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
+msgid "Notify by"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:469
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
+msgid "E-Mail"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:470
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
+msgid "On Friendica / Display"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:474
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
+msgid "Time"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:478
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
+msgid "Hours"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:479
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
+msgid "Minutes"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:480
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
+msgid "Seconds"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:482
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
+msgid "Weeks"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:485
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
+msgid "before the"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:486
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
+msgid "start of the event"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:487
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
+msgid "end of the event"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:492
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
+msgid "Add a notification"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:687
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
+msgid "The event #name# will start at #date"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:696
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
+msgid "#name# is about to begin."
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_edit.inc.php:769
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
+msgid "Saved"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_configuration.php:148
+#: ../../addon.old/dav/common/wdcal_configuration.php:148
+msgid "U.S. Time Format (mm/dd/YYYY)"
+msgstr ""
+
+#: ../../addon/dav/common/wdcal_configuration.php:243
+#: ../../addon.old/dav/common/wdcal_configuration.php:243
+msgid "German Time Format (dd.mm.YYYY)"
+msgstr ""
+
+#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
+#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
+msgid "Private Events"
+msgstr ""
+
+#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
+#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
+msgid "Private Addressbooks"
+msgstr ""
+
+#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+msgid "Friendica-Native events"
+msgstr ""
+
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+msgid "Friendica-Contacts"
+msgstr ""
+
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+msgid "Your Friendica-Contacts"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:99
+#: ../../addon/dav/friendica/layout.fnk.php:136
+#: ../../addon.old/dav/friendica/layout.fnk.php:99
+#: ../../addon.old/dav/friendica/layout.fnk.php:136
+msgid ""
+"Something went wrong when trying to import the file. Sorry. Maybe some "
+"events were imported anyway."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:131
+#: ../../addon.old/dav/friendica/layout.fnk.php:131
+msgid "Something went wrong when trying to import the file. Sorry."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:134
+#: ../../addon.old/dav/friendica/layout.fnk.php:134
+msgid "The ICS-File has been imported."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:138
+#: ../../addon.old/dav/friendica/layout.fnk.php:138
+msgid "No file was uploaded."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:147
+#: ../../addon.old/dav/friendica/layout.fnk.php:147
+msgid "Import a ICS-file"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:150
+#: ../../addon.old/dav/friendica/layout.fnk.php:150
+msgid "ICS-File"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:151
+#: ../../addon.old/dav/friendica/layout.fnk.php:151
+msgid "Overwrite all #num# existing events"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:228
+#: ../../addon.old/dav/friendica/layout.fnk.php:228
+msgid "New event"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:232
+#: ../../addon.old/dav/friendica/layout.fnk.php:232
+msgid "Today"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:241
+#: ../../addon.old/dav/friendica/layout.fnk.php:241
+msgid "Day"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:248
+#: ../../addon.old/dav/friendica/layout.fnk.php:248
+msgid "Week"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:260
+#: ../../addon.old/dav/friendica/layout.fnk.php:260
+msgid "Reload"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:271
+#: ../../addon.old/dav/friendica/layout.fnk.php:271
+msgid "Date"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:313
+#: ../../addon.old/dav/friendica/layout.fnk.php:313
+msgid "Error"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:380
+#: ../../addon.old/dav/friendica/layout.fnk.php:380
+msgid "The calendar has been updated."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:393
+#: ../../addon.old/dav/friendica/layout.fnk.php:393
+msgid "The new calendar has been created."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:417
+#: ../../addon.old/dav/friendica/layout.fnk.php:417
+msgid "The calendar has been deleted."
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:424
+#: ../../addon.old/dav/friendica/layout.fnk.php:424
+msgid "Calendar Settings"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:430
+#: ../../addon.old/dav/friendica/layout.fnk.php:430
+msgid "Date format"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:439
+#: ../../addon.old/dav/friendica/layout.fnk.php:439
+msgid "Time zone"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:445
+#: ../../addon.old/dav/friendica/layout.fnk.php:445
+msgid "Calendars"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:487
+#: ../../addon.old/dav/friendica/layout.fnk.php:487
+msgid "Create a new calendar"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:496
+#: ../../addon.old/dav/friendica/layout.fnk.php:496
+msgid "Limitations"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:500
+#: ../../addon/libravatar/libravatar.php:82
+#: ../../addon.old/dav/friendica/layout.fnk.php:500
+#: ../../addon.old/libravatar/libravatar.php:82
+msgid "Warning"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:504
+#: ../../addon.old/dav/friendica/layout.fnk.php:504
+msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:511
+#: ../../addon.old/dav/friendica/layout.fnk.php:511
+msgid "Synchronizing this calendar with the iPhone"
+msgstr ""
+
+#: ../../addon/dav/friendica/layout.fnk.php:522
+#: ../../addon.old/dav/friendica/layout.fnk.php:522
+msgid "Synchronizing your Friendica-Contacts with the iPhone"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:202
+#: ../../addon.old/dav/friendica/main.php:202
+msgid ""
+"The current version of this plugin has not been set up correctly. Please "
+"contact the system administrator of your installation of friendica to fix "
+"this."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:242
+#: ../../addon.old/dav/friendica/main.php:242
+msgid "Extended calendar with CalDAV-support"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:279
+#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
+#: ../../include/enotify.php:28 ../../include/notifier.php:774
+#: ../../addon.old/dav/friendica/main.php:279
+#: ../../addon.old/dav/friendica/main.php:280
+msgid "noreply"
+msgstr "noreply"
+
+#: ../../addon/dav/friendica/main.php:282
+#: ../../addon.old/dav/friendica/main.php:282
+msgid "Notification: "
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:309
+#: ../../addon.old/dav/friendica/main.php:309
+msgid "The database tables have been installed."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:310
+#: ../../addon.old/dav/friendica/main.php:310
+msgid "An error occurred during the installation."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:316
+#: ../../addon.old/dav/friendica/main.php:316
+msgid "The database tables have been updated."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:317
+#: ../../addon.old/dav/friendica/main.php:317
+msgid "An error occurred during the update."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:333
+#: ../../addon.old/dav/friendica/main.php:333
+msgid "No system-wide settings yet."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:336
+#: ../../addon.old/dav/friendica/main.php:336
+msgid "Database status"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:339
+#: ../../addon.old/dav/friendica/main.php:339
+msgid "Installed"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
+msgid "Upgrade needed"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
+msgid ""
+"Please back up all calendar data (the tables beginning with dav_*) before "
+"proceeding. While all calendar events <i>should</i> be converted to the new "
+"database structure, it's always safe to have a backup. Below, you can have a"
+" look at the database-queries that will be made when pressing the "
+"'update'-button."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:343
+#: ../../addon.old/dav/friendica/main.php:343
+msgid "Upgrade"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
+msgid "Not installed"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:346
+#: ../../addon.old/dav/friendica/main.php:346
+msgid "Install"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
+msgid "Unknown"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:350
+#: ../../addon.old/dav/friendica/main.php:350
+msgid ""
+"Something really went wrong. I cannot recover from this state automatically,"
+" sorry. Please go to the database backend, back up the data, and delete all "
+"tables beginning with 'dav_' manually. Afterwards, this installation routine"
+" should be able to reinitialize the tables automatically."
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:355
+#: ../../addon.old/dav/friendica/main.php:355
+msgid "Troubleshooting"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:356
+#: ../../addon.old/dav/friendica/main.php:356
+msgid "Manual creation of the database tables:"
+msgstr ""
+
+#: ../../addon/dav/friendica/main.php:357
+#: ../../addon.old/dav/friendica/main.php:357
+msgid "Show SQL-statements"
+msgstr ""
+
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
+msgid "Private Calendar"
+msgstr ""
+
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
+msgid "Friendica Events: Mine"
+msgstr ""
+
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
+msgid "Friendica Events: Contacts"
+msgstr ""
+
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
+msgid "Private Addresses"
+msgstr ""
+
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
+msgid "Friendica Contacts"
+msgstr ""
+
+#: ../../addon/uhremotestorage/uhremotestorage.php:84
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
+#, php-format
+msgid ""
+"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
+" storage (like ownCloud). See <a "
+"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
+" WebFinger</a>"
+msgstr ""
+
+#: ../../addon/uhremotestorage/uhremotestorage.php:85
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
+msgid "Template URL (with {category})"
+msgstr ""
+
+#: ../../addon/uhremotestorage/uhremotestorage.php:86
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
+msgid "OAuth end-point"
+msgstr ""
+
+#: ../../addon/uhremotestorage/uhremotestorage.php:87
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
+msgid "Api"
+msgstr ""
+
+#: ../../addon/membersince/membersince.php:18
+#: ../../addon.old/membersince/membersince.php:18
+msgid "Member since:"
+msgstr ""
+
+#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
+msgid "Three Dimensional Tic-Tac-Toe"
+msgstr "三维井字棋"
+
+#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
+msgid "3D Tic-Tac-Toe"
+msgstr "三维井字棋"
+
+#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
+msgid "New game"
+msgstr "新游戏"
+
+#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
+msgid "New game with handicap"
+msgstr "新游戏不利条件 "
+
+#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
+msgid ""
+"Three dimensional tic-tac-toe is just like the traditional game except that "
+"it is played on multiple levels simultaneously. "
+msgstr "三维井字棋跟传统的一样,除了完同时在多水平。"
+
+#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
+msgid ""
+"In this case there are three levels. You win by getting three in a row on "
+"any level, as well as up, down, and diagonally across the different levels."
+msgstr "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。"
+
+#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
+msgid ""
+"The handicap game disables the center position on the middle level because "
+"the player claiming this square often has an unfair advantage."
+msgstr "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。"
+
+#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
+msgid "You go first..."
+msgstr "您先下..."
+
+#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
+msgid "I'm going first this time..."
+msgstr "这次我先下..."
+
+#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
+msgid "You won!"
+msgstr "您赢了!"
+
+#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
+msgid "\"Cat\" game!"
+msgstr "「猫子」游戏!"
+
+#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
+msgid "I won!"
+msgstr "我赢了!"
+
+#: ../../addon/randplace/randplace.php:169
+#: ../../addon.old/randplace/randplace.php:169
+msgid "Randplace Settings"
+msgstr "随意下设置"
+
+#: ../../addon/randplace/randplace.php:171
+#: ../../addon.old/randplace/randplace.php:171
+msgid "Enable Randplace Plugin"
+msgstr "使随意下插件能用"
+
+#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
+msgid "Post to Dreamwidth"
+msgstr ""
+
+#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
+msgid "Dreamwidth Post Settings"
+msgstr ""
+
+#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
+msgid "Enable dreamwidth Post Plugin"
+msgstr ""
+
+#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
+msgid "dreamwidth username"
+msgstr ""
+
+#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
+msgid "dreamwidth password"
+msgstr ""
+
+#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
+msgid "Post to dreamwidth by default"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:44
+msgid "Remote Permissions Settings"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:45
+msgid ""
+"Allow recipients of your private posts to see the other recipients of the "
+"posts"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:57
+msgid "Remote Permissions settings updated."
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "Visible to"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:177
+msgid "may only be a partial list"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "Global"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:196
+msgid "The posts of every user on this server show the post recipients"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Individual"
+msgstr ""
+
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Each user chooses whether his/her posts show the post recipients"
+msgstr ""
+
+#: ../../addon/startpage/startpage.php:83
+#: ../../addon.old/startpage/startpage.php:83
+msgid "Startpage Settings"
+msgstr ""
+
+#: ../../addon/startpage/startpage.php:85
+#: ../../addon.old/startpage/startpage.php:85
+msgid "Home page to load after login  - leave blank for profile wall"
+msgstr ""
+
+#: ../../addon/startpage/startpage.php:88
+#: ../../addon.old/startpage/startpage.php:88
+msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
+msgstr ""
+
+#: ../../addon/geonames/geonames.php:143
+#: ../../addon.old/geonames/geonames.php:143
+msgid "Geonames settings updated."
+msgstr ""
+
+#: ../../addon/geonames/geonames.php:179
+#: ../../addon.old/geonames/geonames.php:179
+msgid "Geonames Settings"
+msgstr ""
+
+#: ../../addon/geonames/geonames.php:181
+#: ../../addon.old/geonames/geonames.php:181
+msgid "Enable Geonames Plugin"
+msgstr ""
+
+#: ../../addon/public_server/public_server.php:126
+#: ../../addon/testdrive/testdrive.php:94
+#: ../../addon.old/public_server/public_server.php:126
+#: ../../addon.old/testdrive/testdrive.php:94
+#, php-format
+msgid "Your account on %s will expire in a few days."
+msgstr ""
+
+#: ../../addon/public_server/public_server.php:127
+#: ../../addon.old/public_server/public_server.php:127
+msgid "Your Friendica account is about to expire."
+msgstr ""
+
+#: ../../addon/public_server/public_server.php:128
+#: ../../addon.old/public_server/public_server.php:128
+#, php-format
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
+msgstr ""
+
+#: ../../addon/js_upload/js_upload.php:43
+#: ../../addon.old/js_upload/js_upload.php:43
+msgid "Upload a file"
+msgstr "上传文件"
+
+#: ../../addon/js_upload/js_upload.php:44
+#: ../../addon.old/js_upload/js_upload.php:44
+msgid "Drop files here to upload"
+msgstr "在这儿放文件为上传"
+
+#: ../../addon/js_upload/js_upload.php:46
+#: ../../addon.old/js_upload/js_upload.php:46
+msgid "Failed"
+msgstr "失败"
+
+#: ../../addon/js_upload/js_upload.php:297
+#: ../../addon.old/js_upload/js_upload.php:297
+msgid "No files were uploaded."
+msgstr "没有文件上传。"
+
+#: ../../addon/js_upload/js_upload.php:303
+#: ../../addon.old/js_upload/js_upload.php:303
+msgid "Uploaded file is empty"
+msgstr "上传的文件空的"
+
+#: ../../addon/js_upload/js_upload.php:326
+#: ../../addon.old/js_upload/js_upload.php:326
+msgid "File has an invalid extension, it should be one of "
+msgstr "文件扩展名无效的,应该是这些一个:"
+
+#: ../../addon/js_upload/js_upload.php:337
+#: ../../addon.old/js_upload/js_upload.php:337
+msgid "Upload was cancelled, or server error encountered"
+msgstr "上传注销了,或相遇服务器错误"
+
+#: ../../addon/forumlist/forumlist.php:63
+#: ../../addon.old/forumlist/forumlist.php:63
+msgid "show/hide"
+msgstr ""
+
+#: ../../addon/forumlist/forumlist.php:77
+#: ../../addon.old/forumlist/forumlist.php:77
+msgid "No forum subscriptions"
+msgstr ""
+
+#: ../../addon/forumlist/forumlist.php:131
+#: ../../addon.old/forumlist/forumlist.php:131
+msgid "Forumlist settings updated."
+msgstr ""
+
+#: ../../addon/forumlist/forumlist.php:159
+#: ../../addon.old/forumlist/forumlist.php:159
+msgid "Forumlist Settings"
+msgstr ""
+
+#: ../../addon/forumlist/forumlist.php:161
+#: ../../addon.old/forumlist/forumlist.php:161
+msgid "Randomise forum list"
+msgstr ""
+
+#: ../../addon/forumlist/forumlist.php:164
+#: ../../addon.old/forumlist/forumlist.php:164
+msgid "Show forums on profile page"
+msgstr ""
+
+#: ../../addon/forumlist/forumlist.php:167
+#: ../../addon.old/forumlist/forumlist.php:167
+msgid "Show forums on network page"
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:37
+#: ../../addon.old/impressum/impressum.php:37
+msgid "Impressum"
+msgstr "Impressum(法定的出版信息)"
+
+#: ../../addon/impressum/impressum.php:50
+#: ../../addon/impressum/impressum.php:52
+#: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:52
+#: ../../addon.old/impressum/impressum.php:84
+msgid "Site Owner"
+msgstr "网站主"
+
+#: ../../addon/impressum/impressum.php:50
+#: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:88
+msgid "Email Address"
+msgstr "电子邮件地址"
+
+#: ../../addon/impressum/impressum.php:55
+#: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:55
+#: ../../addon.old/impressum/impressum.php:86
+msgid "Postal Address"
+msgstr "邮政邮件地址"
+
+#: ../../addon/impressum/impressum.php:61
+#: ../../addon.old/impressum/impressum.php:61
+msgid ""
+"The impressum addon needs to be configured!<br />Please add at least the "
+"<tt>owner</tt> variable to your config file. For other variables please "
+"refer to the README file of the addon."
+msgstr "Impressum插件必须被设置!<br />请加至少<tt>owner</tt>变量在您的设置文件。关于别的变量请指插件的README文件。"
+
+#: ../../addon/impressum/impressum.php:84
+#: ../../addon.old/impressum/impressum.php:84
+msgid "The page operators name."
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
+msgid "Site Owners Profile"
+msgstr "网站主的简介"
+
+#: ../../addon/impressum/impressum.php:85
+#: ../../addon.old/impressum/impressum.php:85
+msgid "Profile address of the operator."
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:86
+#: ../../addon.old/impressum/impressum.php:86
+msgid "How to contact the operator via snail mail. You can use BBCode here."
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
+msgid "Notes"
+msgstr "便条"
+
+#: ../../addon/impressum/impressum.php:87
+#: ../../addon.old/impressum/impressum.php:87
+msgid ""
+"Additional notes that are displayed beneath the contact information. You can"
+" use BBCode here."
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:88
+#: ../../addon.old/impressum/impressum.php:88
+msgid "How to contact the operator via email. (will be displayed obfuscated)"
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
+msgid "Footer note"
+msgstr ""
+
+#: ../../addon/impressum/impressum.php:89
+#: ../../addon.old/impressum/impressum.php:89
+msgid "Text for the footer. You can use BBCode here."
+msgstr ""
+
+#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
+msgid "Report Bug"
+msgstr "报案程序错误"
+
+#: ../../addon/notimeline/notimeline.php:32
+#: ../../addon.old/notimeline/notimeline.php:32
+msgid "No Timeline settings updated."
+msgstr ""
+
+#: ../../addon/notimeline/notimeline.php:56
+#: ../../addon.old/notimeline/notimeline.php:56
+msgid "No Timeline Settings"
+msgstr ""
+
+#: ../../addon/notimeline/notimeline.php:58
+#: ../../addon.old/notimeline/notimeline.php:58
+msgid "Disable Archive selector on profile wall"
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
+msgid "\"Blockem\" Settings"
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
+msgid "Comma separated profile URLS to block"
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
+msgid "BLOCKEM Settings saved."
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
+#, php-format
+msgid "Blocked %s - Click to open/close"
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
+msgid "Unblock Author"
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
+msgid "Block Author"
+msgstr ""
+
+#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
+msgid "blockem settings updated"
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
+msgid ":-)"
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
+msgid ":-("
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:51
+#: ../../addon.old/qcomment/qcomment.php:51
+msgid "lol"
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:54
+#: ../../addon.old/qcomment/qcomment.php:54
+msgid "Quick Comment Settings"
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:56
+#: ../../addon.old/qcomment/qcomment.php:56
+msgid ""
+"Quick comments are found near comment boxes, sometimes hidden. Click them to"
+" provide simple replies."
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:57
+#: ../../addon.old/qcomment/qcomment.php:57
+msgid "Enter quick comments, one per line"
+msgstr ""
+
+#: ../../addon/qcomment/qcomment.php:75
+#: ../../addon.old/qcomment/qcomment.php:75
+msgid "Quick Comment settings saved."
+msgstr ""
+
+#: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
+msgid "Tile Server URL"
+msgstr ""
+
+#: ../../addon/openstreetmap/openstreetmap.php:71
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
+msgid ""
+"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
+"target=\"_blank\">public tile servers</a>"
+msgstr ""
+
+#: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
+msgid "Default zoom"
+msgstr ""
+
+#: ../../addon/openstreetmap/openstreetmap.php:72
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
+msgid "The default zoom level. (1:world, 18:highest)"
+msgstr ""
+
+#: ../../addon/group_text/group_text.php:46
+#: ../../addon/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon.old/editplain/editplain.php:46
+msgid "Editplain settings updated."
+msgstr ""
+
+#: ../../addon/group_text/group_text.php:76
+#: ../../addon.old/group_text/group_text.php:76
+msgid "Group Text"
+msgstr ""
+
+#: ../../addon/group_text/group_text.php:78
+#: ../../addon.old/group_text/group_text.php:78
+msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:14
+#: ../../addon.old/libravatar/libravatar.php:14
+msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:73
+#: ../../addon/gravatar/gravatar.php:71
+#: ../../addon.old/libravatar/libravatar.php:73
+#: ../../addon.old/gravatar/gravatar.php:71
+msgid "generic profile image"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:74
+#: ../../addon/gravatar/gravatar.php:72
+#: ../../addon.old/libravatar/libravatar.php:74
+#: ../../addon.old/gravatar/gravatar.php:72
+msgid "random geometric pattern"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:75
+#: ../../addon/gravatar/gravatar.php:73
+#: ../../addon.old/libravatar/libravatar.php:75
+#: ../../addon.old/gravatar/gravatar.php:73
+msgid "monster face"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:76
+#: ../../addon/gravatar/gravatar.php:74
+#: ../../addon.old/libravatar/libravatar.php:76
+#: ../../addon.old/gravatar/gravatar.php:74
+msgid "computer generated face"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:77
+#: ../../addon/gravatar/gravatar.php:75
+#: ../../addon.old/libravatar/libravatar.php:77
+#: ../../addon.old/gravatar/gravatar.php:75
+msgid "retro arcade style face"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:83
+#: ../../addon.old/libravatar/libravatar.php:83
+#, php-format
+msgid "Your PHP version %s is lower than the required PHP >= 5.3."
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:84
+#: ../../addon.old/libravatar/libravatar.php:84
+msgid "This addon is not functional on your server."
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:93
+#: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon.old/gravatar/gravatar.php:89
+msgid "Information"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:93
+#: ../../addon.old/libravatar/libravatar.php:93
+msgid ""
+"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
+"Libravatar addon will fall back to Gravatar if nothing was found at "
+"Libravatar."
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:100
+#: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon.old/gravatar/gravatar.php:96
+msgid "Default avatar image"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:100
+#: ../../addon.old/libravatar/libravatar.php:100
+msgid "Select default avatar image if none was found. See README"
+msgstr ""
+
+#: ../../addon/libravatar/libravatar.php:112
+#: ../../addon.old/libravatar/libravatar.php:112
+msgid "Libravatar settings updated."
+msgstr ""
+
+#: ../../addon/libertree/libertree.php:36
+#: ../../addon.old/libertree/libertree.php:36
+msgid "Post to libertree"
+msgstr ""
+
+#: ../../addon/libertree/libertree.php:67
+#: ../../addon.old/libertree/libertree.php:67
+msgid "libertree Post Settings"
+msgstr ""
+
+#: ../../addon/libertree/libertree.php:69
+#: ../../addon.old/libertree/libertree.php:69
+msgid "Enable Libertree Post Plugin"
+msgstr ""
+
+#: ../../addon/libertree/libertree.php:74
+#: ../../addon.old/libertree/libertree.php:74
+msgid "Libertree API token"
+msgstr ""
+
+#: ../../addon/libertree/libertree.php:79
+#: ../../addon.old/libertree/libertree.php:79
+msgid "Libertree site URL"
+msgstr ""
+
+#: ../../addon/libertree/libertree.php:84
+#: ../../addon.old/libertree/libertree.php:84
+msgid "Post to Libertree by default"
+msgstr ""
+
+#: ../../addon/altpager/altpager.php:46
+#: ../../addon.old/altpager/altpager.php:46
+msgid "Altpager settings updated."
+msgstr ""
+
+#: ../../addon/altpager/altpager.php:79
+#: ../../addon.old/altpager/altpager.php:79
+msgid "Alternate Pagination Setting"
+msgstr ""
+
+#: ../../addon/altpager/altpager.php:81
+#: ../../addon.old/altpager/altpager.php:81
+msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
+msgstr ""
+
+#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
+msgid ""
+"The MathJax addon renders mathematical formulae written using the LaTeX "
+"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
+"your wall,network tab and private mail."
+msgstr ""
+
+#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
+msgid "Use the MathJax renderer"
+msgstr ""
+
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
+msgid "MathJax Base URL"
+msgstr ""
+
+#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
+msgid ""
+"The URL for the javascript file that should be included to use MathJax. Can "
+"be either the MathJax CDN or another installation of MathJax."
+msgstr ""
+
+#: ../../addon/editplain/editplain.php:76
+#: ../../addon.old/editplain/editplain.php:76
+msgid "Editplain Settings"
+msgstr ""
+
+#: ../../addon/editplain/editplain.php:78
+#: ../../addon.old/editplain/editplain.php:78
+msgid "Disable richtext status editor"
+msgstr ""
+
+#: ../../addon/gravatar/gravatar.php:89
+#: ../../addon.old/gravatar/gravatar.php:89
+msgid ""
+"Libravatar addon is installed, too. Please disable Libravatar addon or this "
+"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
+"nothing was found at Libravatar."
+msgstr ""
+
+#: ../../addon/gravatar/gravatar.php:96
+#: ../../addon.old/gravatar/gravatar.php:96
+msgid "Select default avatar image if none was found at Gravatar. See README"
+msgstr ""
+
+#: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
+msgid "Rating of images"
+msgstr ""
+
+#: ../../addon/gravatar/gravatar.php:97
+#: ../../addon.old/gravatar/gravatar.php:97
+msgid "Select the appropriate avatar rating for your site. See README"
+msgstr ""
+
+#: ../../addon/gravatar/gravatar.php:111
+#: ../../addon.old/gravatar/gravatar.php:111
+msgid "Gravatar settings updated."
+msgstr ""
+
+#: ../../addon/testdrive/testdrive.php:95
+#: ../../addon.old/testdrive/testdrive.php:95
+msgid "Your Friendica test account is about to expire."
+msgstr ""
+
+#: ../../addon/testdrive/testdrive.php:96
+#: ../../addon.old/testdrive/testdrive.php:96
+#, php-format
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
+msgstr ""
+
+#: ../../addon/pageheader/pageheader.php:50
+#: ../../addon.old/pageheader/pageheader.php:50
+msgid "\"pageheader\" Settings"
+msgstr ""
+
+#: ../../addon/pageheader/pageheader.php:68
+#: ../../addon.old/pageheader/pageheader.php:68
+msgid "pageheader Settings saved."
+msgstr ""
+
+#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
+msgid "Post to Insanejournal"
+msgstr ""
+
+#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
+msgid "InsaneJournal Post Settings"
+msgstr ""
+
+#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
+msgid "Enable InsaneJournal Post Plugin"
+msgstr ""
+
+#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
+msgid "InsaneJournal username"
+msgstr ""
+
+#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
+msgid "InsaneJournal password"
+msgstr ""
+
+#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
+msgid "Post to InsaneJournal by default"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:266
+#: ../../addon.old/jappixmini/jappixmini.php:266
+msgid "Jappix Mini addon settings"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:268
+#: ../../addon.old/jappixmini/jappixmini.php:268
+msgid "Activate addon"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:271
+#: ../../addon.old/jappixmini/jappixmini.php:271
+msgid ""
+"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:274
+#: ../../addon.old/jappixmini/jappixmini.php:274
+msgid "Jabber username"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:277
+#: ../../addon.old/jappixmini/jappixmini.php:277
+msgid "Jabber server"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:281
+#: ../../addon.old/jappixmini/jappixmini.php:281
+msgid "Jabber BOSH host"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:285
+#: ../../addon.old/jappixmini/jappixmini.php:285
+msgid "Jabber password"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:290
+#: ../../addon.old/jappixmini/jappixmini.php:290
+msgid "Encrypt Jabber password with Friendica password (recommended)"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:293
+#: ../../addon.old/jappixmini/jappixmini.php:293
+msgid "Friendica password"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:296
+#: ../../addon.old/jappixmini/jappixmini.php:296
+msgid "Approve subscription requests from Friendica contacts automatically"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:299
+#: ../../addon.old/jappixmini/jappixmini.php:299
+msgid "Subscribe to Friendica contacts automatically"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:302
+#: ../../addon.old/jappixmini/jappixmini.php:302
+msgid "Purge internal list of jabber addresses of contacts"
+msgstr ""
+
+#: ../../addon/jappixmini/jappixmini.php:308
+#: ../../addon.old/jappixmini/jappixmini.php:308
+msgid "Add contact"
+msgstr ""
+
+#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
+msgid "View Source"
+msgstr ""
+
+#: ../../addon/statusnet/statusnet.php:134
+#: ../../addon.old/statusnet/statusnet.php:134
+msgid "Post to StatusNet"
+msgstr "发送到StatusNet"
+
+#: ../../addon/statusnet/statusnet.php:176
+#: ../../addon.old/statusnet/statusnet.php:176
+msgid ""
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
+msgstr "请联系您的网站行政人员。<br />提供的API URL无效。"
+
+#: ../../addon/statusnet/statusnet.php:204
+#: ../../addon.old/statusnet/statusnet.php:204
+msgid "We could not contact the StatusNet API with the Path you entered."
+msgstr "我们不能联系StatusNet API在您输入的路径。"
+
+#: ../../addon/statusnet/statusnet.php:232
+#: ../../addon.old/statusnet/statusnet.php:232
+msgid "StatusNet settings updated."
+msgstr "StatusNet设置更新了。"
+
+#: ../../addon/statusnet/statusnet.php:257
+#: ../../addon.old/statusnet/statusnet.php:257
+msgid "StatusNet Posting Settings"
+msgstr "StatusNet发送设置"
+
+#: ../../addon/statusnet/statusnet.php:271
+#: ../../addon.old/statusnet/statusnet.php:271
+msgid "Globally Available StatusNet OAuthKeys"
+msgstr "综合可用的StatusNet OAuthKeys"
+
+#: ../../addon/statusnet/statusnet.php:272
+#: ../../addon.old/statusnet/statusnet.php:272
+msgid ""
+"There are preconfigured OAuth key pairs for some StatusNet servers "
+"available. If you are useing one of them, please use these credentials. If "
+"not feel free to connect to any other StatusNet instance (see below)."
+msgstr "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。"
+
+#: ../../addon/statusnet/statusnet.php:280
+#: ../../addon.old/statusnet/statusnet.php:280
+msgid "Provide your own OAuth Credentials"
+msgstr "提供您自己的OAuth证件"
+
+#: ../../addon/statusnet/statusnet.php:281
+#: ../../addon.old/statusnet/statusnet.php:281
+msgid ""
+"No consumer key pair for StatusNet found. Register your Friendica Account as"
+" an desktop client on your StatusNet account, copy the consumer key pair "
+"here and enter the API base root.<br />Before you register your own OAuth "
+"key pair ask the administrator if there is already a key pair for this "
+"Friendica installation at your favorited StatusNet installation."
+msgstr ""
+
+#: ../../addon/statusnet/statusnet.php:283
+#: ../../addon.old/statusnet/statusnet.php:283
+msgid "OAuth Consumer Key"
+msgstr "Oauth消费者钥匙"
+
+#: ../../addon/statusnet/statusnet.php:286
+#: ../../addon.old/statusnet/statusnet.php:286
+msgid "OAuth Consumer Secret"
+msgstr "Oauth消费者密码"
+
+#: ../../addon/statusnet/statusnet.php:289
+#: ../../addon.old/statusnet/statusnet.php:289
+msgid "Base API Path (remember the trailing /)"
+msgstr "基础API地址(注意最后的/)"
+
+#: ../../addon/statusnet/statusnet.php:310
+#: ../../addon.old/statusnet/statusnet.php:310
+msgid ""
+"To connect to your StatusNet account click the button below to get a "
+"security code from StatusNet which you have to copy into the input box below"
+" and submit the form. Only your <strong>public</strong> posts will be posted"
+" to StatusNet."
+msgstr "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。"
+
+#: ../../addon/statusnet/statusnet.php:311
+#: ../../addon.old/statusnet/statusnet.php:311
+msgid "Log in with StatusNet"
+msgstr "用StatusNet登记"
+
+#: ../../addon/statusnet/statusnet.php:313
+#: ../../addon.old/statusnet/statusnet.php:313
+msgid "Copy the security code from StatusNet here"
+msgstr "复制安全密码从StatusNet这儿"
+
+#: ../../addon/statusnet/statusnet.php:319
+#: ../../addon.old/statusnet/statusnet.php:319
+msgid "Cancel Connection Process"
+msgstr "注销连接过程 "
+
+#: ../../addon/statusnet/statusnet.php:321
+#: ../../addon.old/statusnet/statusnet.php:321
+msgid "Current StatusNet API is"
+msgstr "现在StatusNet API是"
+
+#: ../../addon/statusnet/statusnet.php:322
+#: ../../addon.old/statusnet/statusnet.php:322
+msgid "Cancel StatusNet Connection"
+msgstr "注销StatusNet连接"
+
+#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
+#: ../../addon.old/statusnet/statusnet.php:333
+#: ../../addon.old/twitter/twitter.php:189
+msgid "Currently connected to: "
+msgstr "现在连接到:"
+
+#: ../../addon/statusnet/statusnet.php:334
+#: ../../addon.old/statusnet/statusnet.php:334
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated StatusNet account. You can choose to do so by default (here) or "
+"for every posting separately in the posting options when writing the entry."
+msgstr "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"
+
+#: ../../addon/statusnet/statusnet.php:336
+#: ../../addon.old/statusnet/statusnet.php:336
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) the link potentially included in public "
+"postings relayed to StatusNet will lead the visitor to a blank page "
+"informing the visitor that the access to your profile has been restricted."
+msgstr ""
+
+#: ../../addon/statusnet/statusnet.php:339
+#: ../../addon.old/statusnet/statusnet.php:339
+msgid "Allow posting to StatusNet"
+msgstr "许放在StatusNet"
+
+#: ../../addon/statusnet/statusnet.php:342
+#: ../../addon.old/statusnet/statusnet.php:342
+msgid "Send public postings to StatusNet by default"
+msgstr "默认发送公开文章在StatusNet"
+
+#: ../../addon/statusnet/statusnet.php:345
+#: ../../addon.old/statusnet/statusnet.php:345
+msgid "Send linked #-tags and @-names to StatusNet"
+msgstr ""
+
+#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
+#: ../../addon.old/statusnet/statusnet.php:350
+#: ../../addon.old/twitter/twitter.php:206
+msgid "Clear OAuth configuration"
+msgstr "清理出OAuth设置"
+
+#: ../../addon/statusnet/statusnet.php:568
+#: ../../addon.old/statusnet/statusnet.php:568
+msgid "API URL"
+msgstr "API URL"
+
+#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+msgid "Infinite Improbability Drive"
+msgstr ""
+
+#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
+msgid "Post to Tumblr"
+msgstr "发送到Tumblr"
+
+#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
+msgid "Tumblr Post Settings"
+msgstr "Tumblr发送设置"
+
+#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
+msgid "Enable Tumblr Post Plugin"
+msgstr "使Tumblr发送插件能够"
+
+#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
+msgid "Tumblr login"
+msgstr "Tumblr登记名"
+
+#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
+msgid "Tumblr password"
+msgstr "Tumblr密码"
+
+#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
+msgid "Post to Tumblr by default"
+msgstr "默认地给Tumblr发送"
+
+#: ../../addon/numfriends/numfriends.php:46
+#: ../../addon.old/numfriends/numfriends.php:46
+msgid "Numfriends settings updated."
+msgstr ""
+
+#: ../../addon/numfriends/numfriends.php:77
+#: ../../addon.old/numfriends/numfriends.php:77
+msgid "Numfriends Settings"
+msgstr ""
+
+#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
+#: ../../addon.old/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
+msgid "Gnot settings updated."
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
+msgid "Gnot Settings"
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
+msgid ""
+"Allows threading of email comment notifications on Gmail and anonymising the"
+" subject line."
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
+msgid "Enable this plugin/addon?"
+msgstr ""
+
+#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%d"
+msgstr ""
+
+#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
+msgid "Post to Wordpress"
+msgstr "发送到Wordpress"
+
+#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
+msgid "WordPress Post Settings"
+msgstr "Wordpress发送设置"
+
+#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
+msgid "Enable WordPress Post Plugin"
+msgstr "使Wordpress发送插件可用"
+
+#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
+msgid "WordPress username"
+msgstr "Wordpress用户名"
+
+#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
+msgid "WordPress password"
+msgstr "Wordpress密码"
+
+#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
+msgid "WordPress API URL"
+msgstr "WordPress API URL"
+
+#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
+msgid "Post to WordPress by default"
+msgstr "默认地发送到Wordpress"
+
+#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
+msgid "Provide a backlink to the Friendica post"
+msgstr ""
+
+#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
+#: ../../addon/posterous/posterous.php:189
+#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
+#: ../../addon.old/blogger/blogger.php:172
+#: ../../addon.old/posterous/posterous.php:189
+msgid "Post from Friendica"
+msgstr "文章从Friendica"
+
+#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
+msgid "Read the original post and comment stream on Friendica"
+msgstr ""
+
+#: ../../addon/showmore/showmore.php:38
+#: ../../addon.old/showmore/showmore.php:38
+msgid "\"Show more\" Settings"
+msgstr ""
+
+#: ../../addon/showmore/showmore.php:41
+#: ../../addon.old/showmore/showmore.php:41
+msgid "Enable Show More"
+msgstr ""
+
+#: ../../addon/showmore/showmore.php:44
+#: ../../addon.old/showmore/showmore.php:44
+msgid "Cutting posts after how much characters"
+msgstr ""
+
+#: ../../addon/showmore/showmore.php:65
+#: ../../addon.old/showmore/showmore.php:65
+msgid "Show More Settings saved."
+msgstr ""
+
+#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
+msgid ""
+"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
+"analytics tool."
+msgstr "这个网站用<a href='http://www.piwik.org'>Piwik</a>分析工具追踪 。"
+
+#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
+#, php-format
+msgid ""
+"If you do not want that your visits are logged this way you <a href='%s'>can"
+" set a cookie to prevent Piwik from tracking further visits of the site</a> "
+"(opt-out)."
+msgstr "如果您不想您访问这样记录您<a href='%s'>可以用一个cookie防Piwik追踪未来的访问</a>(选择性退出)。"
+
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
+msgid "Piwik Base URL"
+msgstr "Piwik基础URL"
+
+#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
+msgid ""
+"Absolute path to your Piwik installation. (without protocol (http/s), with "
+"trailing slash)"
+msgstr ""
+
+#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
+msgid "Site ID"
+msgstr "网站ID"
+
+#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
+msgid "Show opt-out cookie link?"
+msgstr " 显示选择性退出cookie按钮?"
+
+#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
+msgid "Asynchronous tracking"
+msgstr ""
+
+#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
+msgid "Post to Twitter"
+msgstr "发送到在Twitter"
+
+#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
+msgid "Twitter settings updated."
+msgstr "Twitter设置更新了。"
+
+#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
+msgid "Twitter Posting Settings"
+msgstr "Twitter发送设置"
+
+#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
+msgid ""
+"No consumer key pair for Twitter found. Please contact your site "
+"administrator."
+msgstr "找不到Twitter的消费钥匙双。请联系您的网页行政人员。"
+
+#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
+msgid ""
+"At this Friendica instance the Twitter plugin was enabled but you have not "
+"yet connected your account to your Twitter account. To do so click the "
+"button below to get a PIN from Twitter which you have to copy into the input"
+" box below and submit the form. Only your <strong>public</strong> posts will"
+" be posted to Twitter."
+msgstr ""
+
+#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
+msgid "Log in with Twitter"
+msgstr "用Twitter登记"
+
+#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
+msgid "Copy the PIN from Twitter here"
+msgstr "复制Twitter密码这儿"
+
+#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated Twitter account. You can choose to do so by default (here) or for"
+" every posting separately in the posting options when writing the entry."
+msgstr "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"
+
+#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) the link potentially included in public "
+"postings relayed to Twitter will lead the visitor to a blank page informing "
+"the visitor that the access to your profile has been restricted."
+msgstr ""
+
+#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
+msgid "Allow posting to Twitter"
+msgstr "允许发送到Twitter"
+
+#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
+msgid "Send public postings to Twitter by default"
+msgstr "默认地发送公开文章到Twitter"
+
+#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
+msgid "Send linked #-tags and @-names to Twitter"
+msgstr ""
+
+#: ../../addon/twitter/twitter.php:396 ../../addon.old/twitter/twitter.php:396
+msgid "Consumer key"
+msgstr "钥匙(Consumer key)"
+
+#: ../../addon/twitter/twitter.php:397 ../../addon.old/twitter/twitter.php:397
+msgid "Consumer secret"
+msgstr "密码(Consumer secret)"
+
+#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
+msgid "IRC Settings"
+msgstr ""
+
+#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
+msgid "Channel(s) to auto connect (comma separated)"
+msgstr ""
+
+#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
+msgid "Popular Channels (comma separated)"
+msgstr ""
+
+#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
+msgid "IRC settings saved."
+msgstr ""
+
+#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
+msgid "IRC Chatroom"
+msgstr ""
+
+#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
+msgid "Popular Channels"
+msgstr ""
+
+#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
+msgid "Fromapp settings updated."
+msgstr ""
+
+#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
+msgid "FromApp Settings"
+msgstr ""
+
+#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
+msgid ""
+"The application name you would like to show your posts originating from."
+msgstr ""
+
+#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
+msgid "Use this application name even if another application was used."
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
+msgid "Post to blogger"
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
+msgid "Blogger Post Settings"
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
+msgid "Enable Blogger Post Plugin"
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
+msgid "Blogger username"
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
+msgid "Blogger password"
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
+msgid "Blogger API URL"
+msgstr ""
+
+#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
+msgid "Post to Blogger by default"
+msgstr ""
+
+#: ../../addon/posterous/posterous.php:37
+#: ../../addon.old/posterous/posterous.php:37
+msgid "Post to Posterous"
+msgstr "发送往Posterous"
+
+#: ../../addon/posterous/posterous.php:70
+#: ../../addon.old/posterous/posterous.php:70
+msgid "Posterous Post Settings"
+msgstr "Posterous发送设置"
+
+#: ../../addon/posterous/posterous.php:72
+#: ../../addon.old/posterous/posterous.php:72
+msgid "Enable Posterous Post Plugin"
+msgstr "使Posterous发送插件可用的"
+
+#: ../../addon/posterous/posterous.php:77
+#: ../../addon.old/posterous/posterous.php:77
+msgid "Posterous login"
+msgstr "Posterous登记名"
+
+#: ../../addon/posterous/posterous.php:82
+#: ../../addon.old/posterous/posterous.php:82
+msgid "Posterous password"
+msgstr "Posterous密码"
+
+#: ../../addon/posterous/posterous.php:87
+#: ../../addon.old/posterous/posterous.php:87
+msgid "Posterous site ID"
+msgstr ""
+
+#: ../../addon/posterous/posterous.php:92
+#: ../../addon.old/posterous/posterous.php:92
+msgid "Posterous API token"
+msgstr ""
+
+#: ../../addon/posterous/posterous.php:97
+#: ../../addon.old/posterous/posterous.php:97
+msgid "Post to Posterous by default"
+msgstr "默认地发送往Posterous"
+
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
+msgid "Theme settings"
+msgstr ""
+
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr ""
+
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr ""
+
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr ""
+
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:86 ../../include/nav.php:49
+#: ../../include/nav.php:115
+msgid "Your posts and conversations"
+msgstr "你的消息和交谈"
+
+#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:50
+msgid "Your profile page"
+msgstr "你的简介页"
+
+#: ../../view/theme/diabook/theme.php:88
+msgid "Your contacts"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:89 ../../include/nav.php:51
+msgid "Your photos"
+msgstr "你的照片"
+
+#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:52
+msgid "Your events"
+msgstr "你的项目"
+
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53
+msgid "Personal notes"
+msgstr "私人的便条"
+
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:53
+msgid "Your personal photos"
+msgstr "你私人的照片"
+
+#: ../../view/theme/diabook/theme.php:93
+#: ../../view/theme/diabook/config.php:163
+msgid "Community Pages"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:377
+#: ../../view/theme/diabook/theme.php:591
+#: ../../view/theme/diabook/config.php:165
+msgid "Community Profiles"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:398
+#: ../../view/theme/diabook/theme.php:596
+#: ../../view/theme/diabook/config.php:170
+msgid "Last users"
+msgstr "上次用户"
+
+#: ../../view/theme/diabook/theme.php:427
+#: ../../view/theme/diabook/theme.php:598
+#: ../../view/theme/diabook/config.php:172
+msgid "Last likes"
+msgstr "上次喜欢"
+
+#: ../../view/theme/diabook/theme.php:472
+#: ../../view/theme/diabook/theme.php:597
+#: ../../view/theme/diabook/config.php:171
+msgid "Last photos"
+msgstr "上次照片"
+
+#: ../../view/theme/diabook/theme.php:509
+#: ../../view/theme/diabook/theme.php:594
+#: ../../view/theme/diabook/config.php:168
+msgid "Find Friends"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:510
+msgid "Local Directory"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:512 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "相似兴趣"
+
+#: ../../view/theme/diabook/theme.php:514 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "邀请朋友们"
+
+#: ../../view/theme/diabook/theme.php:531
+#: ../../view/theme/diabook/theme.php:590
+#: ../../view/theme/diabook/config.php:164
+msgid "Earth Layers"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:536
+msgid "Set zoomfactor for Earth Layers"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/config.php:161
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:538
+#: ../../view/theme/diabook/config.php:162
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:551
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/config.php:166
+msgid "Help or @NewHere ?"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:558
+#: ../../view/theme/diabook/theme.php:593
+#: ../../view/theme/diabook/config.php:167
+msgid "Connect Services"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:565
+#: ../../view/theme/diabook/theme.php:595
+msgid "Last Tweets"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:568
+#: ../../view/theme/diabook/config.php:159
+msgid "Set twitter search term"
+msgstr ""
+
+#: ../../view/theme/diabook/theme.php:587
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
+msgid "don't show"
+msgstr "别著"
+
+#: ../../view/theme/diabook/theme.php:587
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
+msgid "show"
+msgstr "著"
+
+#: ../../view/theme/diabook/theme.php:588
+msgid "Show/hide boxes at right-hand column:"
+msgstr ""
+
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr ""
+
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr ""
+
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr ""
+
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
+
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr ""
+
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr ""
+
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr ""
+
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
+
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
+
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "生日:"
+
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "年纪:"
+
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr ""
+
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "标签:"
+
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "宗教:"
+
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "爱好/兴趣"
+
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "熟人消息和社会化网络"
+
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "音乐兴趣:"
+
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "书,文学"
+
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "电视:"
+
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "电影/跳舞/文化/娱乐:"
+
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "爱情/浪漫"
+
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "工作"
+
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "学院/教育"
+
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "未知的 |无分类"
+
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "立即拦"
+
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "可疑,发垃圾者,自市场开发者"
+
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "我认识,但没有意见"
+
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "行,大概无恶意的"
+
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "可信的,有我的信任"
+
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "时常"
+
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "每小时"
+
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "每日两次"
+
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
+
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
+
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
+
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
+
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
+
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "男的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "女的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "现在男的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "现在女的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "主要男的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "主要女的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "跨性別"
+
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "阴阳人"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "”转基因“人"
+
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "两性体"
+
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "中性的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "不明确的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "别的"
+
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "未决"
+
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "男人"
+
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "女人"
+
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "男同性恋的"
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "女同性恋的"
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "无偏爱"
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "双性恋的"
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "自性的"
+
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "有节制的"
+
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "原始的"
+
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "变态"
+
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "恋物对象"
+
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "多多"
+
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "无性"
+
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "单身"
+
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "寂寞"
+
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "单身的"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "不可获得的"
+
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "约会"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "外遇"
+
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "性交因成瘾者"
+
+#: ../../include/profile_selectors.php:42 ../../include/user.php:278
+#: ../../include/user.php:282
+msgid "Friends"
+msgstr "朋友"
+
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "朋友/益"
+
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "休闲"
+
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "已订婚的"
+
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "结婚"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "伴侣"
+
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "同居"
+
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "幸福"
+
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "交换性伴侣的"
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "被背叛"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "分手"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "不稳"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "离婚"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "寡妇"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "不确定"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr ""
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "无所谓"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "问我"
+
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
+msgid "Starts:"
+msgstr "开始:"
+
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
+msgid "Finishes:"
+msgstr "结束:"
+
+#: ../../include/delivery.php:457 ../../include/notifier.php:767
+msgid "(no subject)"
+msgstr "沒有题目"
+
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr ""
+
+#: ../../include/text.php:243
+msgid "prev"
+msgstr "上个"
+
+#: ../../include/text.php:245
+msgid "first"
+msgstr "首先"
+
+#: ../../include/text.php:274
+msgid "last"
+msgstr "最后"
+
+#: ../../include/text.php:277
+msgid "next"
+msgstr "下个"
+
+#: ../../include/text.php:295
+msgid "newer"
+msgstr ""
+
+#: ../../include/text.php:299
+msgid "older"
+msgstr ""
+
+#: ../../include/text.php:604
+msgid "No contacts"
+msgstr "没有熟人"
+
+#: ../../include/text.php:613
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d熟人"
+
+#: ../../include/text.php:726
+msgid "poke"
+msgstr ""
+
+#: ../../include/text.php:726 ../../include/conversation.php:210
+msgid "poked"
+msgstr ""
+
+#: ../../include/text.php:727
+msgid "ping"
+msgstr ""
+
+#: ../../include/text.php:727
+msgid "pinged"
+msgstr ""
+
+#: ../../include/text.php:728
+msgid "prod"
+msgstr ""
+
+#: ../../include/text.php:728
+msgid "prodded"
+msgstr ""
+
+#: ../../include/text.php:729
+msgid "slap"
+msgstr ""
+
+#: ../../include/text.php:729
+msgid "slapped"
+msgstr ""
+
+#: ../../include/text.php:730
+msgid "finger"
+msgstr ""
+
+#: ../../include/text.php:730
+msgid "fingered"
+msgstr ""
+
+#: ../../include/text.php:731
+msgid "rebuff"
+msgstr ""
+
+#: ../../include/text.php:731
+msgid "rebuffed"
+msgstr ""
+
+#: ../../include/text.php:743
+msgid "happy"
+msgstr ""
+
+#: ../../include/text.php:744
+msgid "sad"
+msgstr ""
+
+#: ../../include/text.php:745
+msgid "mellow"
+msgstr ""
+
+#: ../../include/text.php:746
+msgid "tired"
+msgstr ""
+
+#: ../../include/text.php:747
+msgid "perky"
+msgstr ""
+
+#: ../../include/text.php:748
+msgid "angry"
+msgstr ""
+
+#: ../../include/text.php:749
+msgid "stupified"
+msgstr ""
+
+#: ../../include/text.php:750
+msgid "puzzled"
+msgstr ""
+
+#: ../../include/text.php:751
+msgid "interested"
+msgstr ""
+
+#: ../../include/text.php:752
+msgid "bitter"
+msgstr ""
+
+#: ../../include/text.php:753
+msgid "cheerful"
+msgstr ""
+
+#: ../../include/text.php:754
+msgid "alive"
+msgstr ""
+
+#: ../../include/text.php:755
+msgid "annoyed"
+msgstr ""
+
+#: ../../include/text.php:756
+msgid "anxious"
+msgstr ""
+
+#: ../../include/text.php:757
+msgid "cranky"
+msgstr ""
+
+#: ../../include/text.php:758
+msgid "disturbed"
+msgstr ""
+
+#: ../../include/text.php:759
+msgid "frustrated"
+msgstr ""
+
+#: ../../include/text.php:760
+msgid "motivated"
+msgstr ""
+
+#: ../../include/text.php:761
+msgid "relaxed"
+msgstr ""
+
+#: ../../include/text.php:762
+msgid "surprised"
+msgstr ""
+
+#: ../../include/text.php:926
+msgid "January"
+msgstr "一月"
+
+#: ../../include/text.php:926
+msgid "February"
+msgstr "二月"
+
+#: ../../include/text.php:926
+msgid "March"
+msgstr "三月"
+
+#: ../../include/text.php:926
+msgid "April"
+msgstr "四月"
+
+#: ../../include/text.php:926
+msgid "May"
+msgstr "五月"
+
+#: ../../include/text.php:926
+msgid "June"
+msgstr "六月"
+
+#: ../../include/text.php:926
+msgid "July"
+msgstr "七月"
+
+#: ../../include/text.php:926
+msgid "August"
+msgstr "八月"
+
+#: ../../include/text.php:926
+msgid "September"
+msgstr "九月"
+
+#: ../../include/text.php:926
+msgid "October"
+msgstr "十月"
+
+#: ../../include/text.php:926
+msgid "November"
+msgstr "十一月"
+
+#: ../../include/text.php:926
+msgid "December"
+msgstr "十二月"
+
+#: ../../include/text.php:1012
+msgid "bytes"
+msgstr "字节"
+
+#: ../../include/text.php:1039 ../../include/text.php:1051
+msgid "Click to open/close"
+msgstr ""
+
+#: ../../include/text.php:1224 ../../include/user.php:236
+msgid "default"
+msgstr "默认"
+
+#: ../../include/text.php:1236
+msgid "Select an alternate language"
+msgstr "选择别的语言"
+
+#: ../../include/text.php:1446
+msgid "activity"
+msgstr ""
+
+#: ../../include/text.php:1449
+msgid "post"
+msgstr ""
+
+#: ../../include/text.php:1604
+msgid "Item filed"
+msgstr ""
+
+#: ../../include/diaspora.php:702
+msgid "Sharing notification from Diaspora network"
+msgstr "分享通知从Diaspora网络"
+
+#: ../../include/diaspora.php:2222
+msgid "Attachments:"
+msgstr "附件:"
+
+#: ../../include/network.php:849
+msgid "view full size"
+msgstr "看全尺寸"
+
+#: ../../include/oembed.php:137
+msgid "Embedded content"
+msgstr "嵌入内容"
+
+#: ../../include/oembed.php:146
+msgid "Embedding disabled"
+msgstr "嵌入不能用"
+
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr ""
+
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr ""
+
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr ""
+
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr ""
+
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr ""
+
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "一个删除的组用这名被复兴。现有的项目权利<strong>可能</strong>还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。"
+
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr ""
+
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "每人"
+
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "编辑"
+
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "编辑组"
+
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "创造新组"
+
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr ""
+
+#: ../../include/nav.php:46 ../../boot.php:945
+msgid "Logout"
+msgstr "注销"
+
+#: ../../include/nav.php:46
+msgid "End this session"
+msgstr "结束这段时间"
+
+#: ../../include/nav.php:49 ../../boot.php:1721
+msgid "Status"
+msgstr "现状"
+
+#: ../../include/nav.php:64
+msgid "Sign in"
+msgstr "登记"
+
+#: ../../include/nav.php:77
+msgid "Home Page"
+msgstr "主页"
+
+#: ../../include/nav.php:81
+msgid "Create an account"
+msgstr "注册"
+
+#: ../../include/nav.php:86
+msgid "Help and documentation"
+msgstr "帮助证件"
+
+#: ../../include/nav.php:89
+msgid "Apps"
+msgstr "应用程序"
+
+#: ../../include/nav.php:89
+msgid "Addon applications, utilities, games"
+msgstr "可加的应用,设施,游戏"
+
+#: ../../include/nav.php:91
+msgid "Search site content"
+msgstr "搜索网站内容"
+
+#: ../../include/nav.php:101
+msgid "Conversations on this site"
+msgstr "这个网站的交谈"
+
+#: ../../include/nav.php:103
+msgid "Directory"
+msgstr "名录"
+
+#: ../../include/nav.php:103
+msgid "People directory"
+msgstr "人物名录"
+
+#: ../../include/nav.php:113
+msgid "Conversations from your friends"
+msgstr "从你朋友们的交谈"
+
+#: ../../include/nav.php:121
+msgid "Friend Requests"
+msgstr "友谊邀请"
+
+#: ../../include/nav.php:123
+msgid "See all notifications"
+msgstr "看所有的通知"
+
+#: ../../include/nav.php:124
+msgid "Mark all system notifications seen"
+msgstr "记号各系统通知看过的"
+
+#: ../../include/nav.php:128
+msgid "Private mail"
+msgstr "私人的邮件"
+
+#: ../../include/nav.php:129
+msgid "Inbox"
+msgstr "收件箱"
+
+#: ../../include/nav.php:130
+msgid "Outbox"
+msgstr "发件箱"
+
+#: ../../include/nav.php:134
+msgid "Manage"
+msgstr "管理"
+
+#: ../../include/nav.php:134
+msgid "Manage other pages"
+msgstr "管理别的页"
+
+#: ../../include/nav.php:138 ../../boot.php:1235
+msgid "Profiles"
+msgstr "简介"
+
+#: ../../include/nav.php:138 ../../boot.php:1235
+msgid "Manage/edit profiles"
+msgstr "管理/修改简介"
+
+#: ../../include/nav.php:139
+msgid "Manage/edit friends and contacts"
+msgstr "管理/编朋友们和熟人们"
+
+#: ../../include/nav.php:146
+msgid "Site setup and configuration"
+msgstr "网站开办和配置"
+
+#: ../../include/nav.php:170
+msgid "Nothing new here"
+msgstr "这里没有什么新的"
+
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "增添新的熟人"
+
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "输入地址或网位置"
+
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "比如:li@example.com, http://example.com/li"
+
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d邀请可用的"
+
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "找人物"
+
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "输入名字或兴趣"
+
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "连接/关注"
+
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "比如:李某,打鱼"
+
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr ""
+
+#: ../../include/contact_widgets.php:68
+msgid "Networks"
+msgstr "网络"
+
+#: ../../include/contact_widgets.php:71
+msgid "All Networks"
+msgstr "所有网络"
+
+#: ../../include/contact_widgets.php:98
+msgid "Saved Folders"
+msgstr ""
+
+#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129
+msgid "Everything"
+msgstr ""
+
+#: ../../include/contact_widgets.php:126
+msgid "Categories"
+msgstr ""
+
+#: ../../include/auth.php:36
+msgid "Logged out."
+msgstr "注销了"
+
+#: ../../include/auth.php:126
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr ""
+
+#: ../../include/auth.php:126
+msgid "The error message was:"
+msgstr ""
+
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "形形色色"
+
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "年"
+
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "月"
+
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "日"
+
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "从未"
+
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "一秒以内"
+
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "星期"
+
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "小时"
+
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "小时"
+
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "分钟"
+
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "分钟"
+
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "秒"
+
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "秒"
+
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s以前"
+
+#: ../../include/datetime.php:472 ../../include/items.php:1689
+#, php-format
+msgid "%s's birthday"
+msgstr ""
+
+#: ../../include/datetime.php:473 ../../include/items.php:1690
+#, php-format
+msgid "Happy Birthday %s"
+msgstr ""
+
+#: ../../include/onepoll.php:414
+msgid "From: "
+msgstr "从:"
+
+#: ../../include/bbcode.php:185 ../../include/bbcode.php:406
+msgid "Image/photo"
+msgstr "图像/照片"
+
+#: ../../include/bbcode.php:371 ../../include/bbcode.php:391
+msgid "$1 wrote:"
+msgstr "$1写:"
+
+#: ../../include/bbcode.php:410 ../../include/bbcode.php:411
+msgid "Encrypted content"
+msgstr ""
+
+#: ../../include/dba.php:41
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "找不到DNS信息为数据库服务器「%s」"
+
+#: ../../include/message.php:15 ../../include/message.php:171
+msgid "[no subject]"
+msgstr "[无题目]"
+
+#: ../../include/acl_selectors.php:286
+msgid "Visible to everybody"
+msgstr "任何人可见的"
+
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica 通知"
+
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "谢谢,"
+
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "%s管理员"
+
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr ""
+
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr ""
+
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "一条私人的消息"
+
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "清去%s为了看或回答你私人的消息"
+
+#: ../../include/enotify.php:89
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:96
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:104
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:114
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:115
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s对你有兴趣的项目/ 交谈发表意见"
+
+#: ../../include/enotify.php:118 ../../include/enotify.php:133
+#: ../../include/enotify.php:146 ../../include/enotify.php:164
+#: ../../include/enotify.php:177
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "清去%s为了看或回答交谈"
+
+#: ../../include/enotify.php:125
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
+
+#: ../../include/enotify.php:127
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:129
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:140
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr ""
+
+#: ../../include/enotify.php:141
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:154
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr ""
+
+#: ../../include/enotify.php:155
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr ""
+
+#: ../../include/enotify.php:172
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:184
+msgid "[Friendica:Notify] Introduction received"
+msgstr ""
+
+#: ../../include/enotify.php:185
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:189 ../../include/enotify.php:207
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "你能看他的简介在%s"
+
+#: ../../include/enotify.php:191
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "请批准或拒绝介绍在%s"
+
+#: ../../include/enotify.php:198
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr ""
+
+#: ../../include/enotify.php:199
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:200
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
+
+#: ../../include/enotify.php:205
+msgid "Name:"
+msgstr "名字:"
+
+#: ../../include/enotify.php:206
+msgid "Photo:"
+msgstr "照片:"
+
+#: ../../include/enotify.php:209
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "请批准或拒绝建议在%s"
+
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "连接URL失踪的。"
+
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "这网站没配置允许跟别的网络交流."
+
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "没有兼容协议或者摘要找到了."
+
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "输入的简介地址没有够消息。"
+
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "找不到作者或名。"
+
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "这个地址没有符合什么游览器URL。"
+
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
+
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
+
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "输入的简介地址属在这个网站使不可用的网络。"
+
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "有限的简介。这人不会接受直达/私人通信从您。"
+
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "不能取回熟人消息。"
+
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "关注"
+
+#: ../../include/items.php:3357
+msgid "A new person is sharing with you at "
+msgstr "一位新人给你分享在"
+
+#: ../../include/items.php:3357
+msgid "You have a new follower at "
+msgstr "你有新的关注者在"
+
+#: ../../include/items.php:4038
+msgid "Archives"
+msgstr ""
+
+#: ../../include/user.php:38
+msgid "An invitation is required."
+msgstr "邀请必要的。"
+
+#: ../../include/user.php:43
+msgid "Invitation could not be verified."
+msgstr "不能证实邀请。"
+
+#: ../../include/user.php:51
+msgid "Invalid OpenID url"
+msgstr "无效的OpenID url"
+
+#: ../../include/user.php:66
+msgid "Please enter the required information."
+msgstr "请输入必要的信息。"
+
+#: ../../include/user.php:80
+msgid "Please use a shorter name."
+msgstr "请用短一点名。"
+
+#: ../../include/user.php:82
+msgid "Name too short."
+msgstr "名字太短。"
+
+#: ../../include/user.php:97
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "这看上去不是您的全姓名。"
+
+#: ../../include/user.php:102
+msgid "Your email domain is not among those allowed on this site."
+msgstr "这网站允许的域名中没有您的"
+
+#: ../../include/user.php:105
+msgid "Not a valid email address."
+msgstr "无效的邮件地址。"
+
+#: ../../include/user.php:115
+msgid "Cannot use that email."
+msgstr "不能用这个邮件地址。"
+
+#: ../../include/user.php:121
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "您的昵称只能包括\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"
+
+#: ../../include/user.php:127 ../../include/user.php:225
+msgid "Nickname is already registered. Please choose another."
+msgstr "昵称已经报到。请选择新的。"
+
+#: ../../include/user.php:137
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr ""
+
+#: ../../include/user.php:153
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "要紧错误:产生安全钥匙失败了。"
+
+#: ../../include/user.php:211
+msgid "An error occurred during registration. Please try again."
+msgstr "报到出了问题。请再试。"
+
+#: ../../include/user.php:246
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "造成默认简介出了问题。请再试。"
+
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "欢迎"
+
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "请上传一张简介照片"
+
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "欢迎归来"
+
+#: ../../include/security.php:357
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr ""
+
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "结束关注了"
+
+#: ../../include/Contact.php:225 ../../include/conversation.php:795
+msgid "Poke"
+msgstr ""
+
+#: ../../include/Contact.php:226 ../../include/conversation.php:789
+msgid "View Status"
+msgstr ""
+
+#: ../../include/Contact.php:227 ../../include/conversation.php:790
+msgid "View Profile"
+msgstr ""
+
+#: ../../include/Contact.php:228 ../../include/conversation.php:791
+msgid "View Photos"
+msgstr ""
+
+#: ../../include/Contact.php:229 ../../include/Contact.php:242
+#: ../../include/conversation.php:792
+msgid "Network Posts"
+msgstr ""
+
+#: ../../include/Contact.php:230 ../../include/Contact.php:242
+#: ../../include/conversation.php:793
+msgid "Edit Contact"
+msgstr ""
+
+#: ../../include/Contact.php:231 ../../include/Contact.php:242
+#: ../../include/conversation.php:794
+msgid "Send PM"
+msgstr "法私人的新闻"
+
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr ""
+
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr ""
+
+#: ../../include/conversation.php:291
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr ""
+
+#: ../../include/conversation.php:599 ../../object/Item.php:220
+msgid "Categories:"
+msgstr ""
+
+#: ../../include/conversation.php:600 ../../object/Item.php:221
+msgid "Filed under:"
+msgstr ""
+
+#: ../../include/conversation.php:685
+msgid "remove"
+msgstr ""
+
+#: ../../include/conversation.php:689
+msgid "Delete Selected Items"
+msgstr "删除选的项目"
+
+#: ../../include/conversation.php:788
+msgid "Follow Thread"
+msgstr ""
+
+#: ../../include/conversation.php:857
+#, php-format
+msgid "%s likes this."
+msgstr "%s喜欢这个."
+
+#: ../../include/conversation.php:857
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s没有喜欢这个."
+
+#: ../../include/conversation.php:861
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this."
+msgstr "<span  %1$s>%2$d人</span>喜欢这个。"
+
+#: ../../include/conversation.php:863
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this."
+msgstr "<span  %1$s>%2$d人</span>不喜欢这个。"
+
+#: ../../include/conversation.php:869
+msgid "and"
+msgstr "和"
+
+#: ../../include/conversation.php:875
+#, php-format
+msgid ", and %d other people"
+msgstr ",和%d别人"
+
+#: ../../include/conversation.php:877
+#, php-format
+msgid "%s like this."
+msgstr "%s喜欢这个"
+
+#: ../../include/conversation.php:877
+#, php-format
+msgid "%s don't like this."
+msgstr "%s不喜欢这个"
+
+#: ../../include/conversation.php:901 ../../include/conversation.php:919
+msgid "Visible to <strong>everybody</strong>"
+msgstr "<strong>大家</strong>可见的"
+
+#: ../../include/conversation.php:903 ../../include/conversation.php:921
+msgid "Please enter a video link/URL:"
+msgstr "请输入视频连接/URL:"
+
+#: ../../include/conversation.php:904 ../../include/conversation.php:922
+msgid "Please enter an audio link/URL:"
+msgstr "请输入音响连接/URL:"
+
+#: ../../include/conversation.php:905 ../../include/conversation.php:923
+msgid "Tag term:"
+msgstr "标签:"
+
+#: ../../include/conversation.php:907 ../../include/conversation.php:925
+msgid "Where are you right now?"
+msgstr "你在哪里?"
+
+#: ../../include/conversation.php:908
+msgid "Delete item(s)?"
+msgstr ""
+
+#: ../../include/conversation.php:987
+msgid "permissions"
+msgstr ""
+
+#: ../../include/plugin.php:389 ../../include/plugin.php:391
+msgid "Click here to upgrade."
+msgstr ""
+
+#: ../../include/plugin.php:397
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr ""
+
+#: ../../include/plugin.php:402
+msgid "This action is not available under your subscription plan."
+msgstr ""
+
+#: ../../boot.php:604
+msgid "Delete this item?"
+msgstr "删除这个项目?"
+
+#: ../../boot.php:607
+msgid "show fewer"
+msgstr "显示更小"
+
+#: ../../boot.php:816
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
+
+#: ../../boot.php:818
+#, php-format
+msgid "Update Error at %s"
+msgstr ""
+
+#: ../../boot.php:919
+msgid "Create a New Account"
+msgstr "创造新的账户"
+
+#: ../../boot.php:948
+msgid "Nickname or Email address: "
+msgstr "绰号或电子邮件地址: "
+
+#: ../../boot.php:949
+msgid "Password: "
+msgstr "密码: "
+
+#: ../../boot.php:950
+msgid "Remember me"
+msgstr ""
+
+#: ../../boot.php:953
+msgid "Or login using OpenID: "
+msgstr ""
+
+#: ../../boot.php:959
+msgid "Forgot your password?"
+msgstr "忘记你的密码吗?"
+
+#: ../../boot.php:1084
+msgid "Requested account is not available."
+msgstr ""
+
+#: ../../boot.php:1161
+msgid "Edit profile"
+msgstr "修改简介"
+
+#: ../../boot.php:1227
+msgid "Message"
+msgstr ""
+
+#: ../../boot.php:1349 ../../boot.php:1435
+msgid "g A l F d"
+msgstr "g A l d F"
+
+#: ../../boot.php:1350 ../../boot.php:1436
+msgid "F d"
+msgstr "F d"
+
+#: ../../boot.php:1395 ../../boot.php:1476
+msgid "[today]"
+msgstr "[今天]"
+
+#: ../../boot.php:1407
+msgid "Birthday Reminders"
+msgstr "提醒生日"
+
+#: ../../boot.php:1408
+msgid "Birthdays this week:"
+msgstr "这周的生日:"
+
+#: ../../boot.php:1469
+msgid "[No description]"
+msgstr "[无描述]"
+
+#: ../../boot.php:1487
+msgid "Event Reminders"
+msgstr "事件提醒"
+
+#: ../../boot.php:1488
+msgid "Events this week:"
+msgstr "这周的事件:"
+
+#: ../../boot.php:1724
+msgid "Status Messages and Posts"
+msgstr ""
+
+#: ../../boot.php:1731
+msgid "Profile Details"
+msgstr ""
+
+#: ../../boot.php:1748
+msgid "Events and Calendar"
+msgstr ""
+
+#: ../../boot.php:1755
+msgid "Only You Can See This"
+msgstr ""
+
+#: ../../index.php:398
+msgid "toggle mobile"
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:51
+msgid "Bg settings updated."
+msgstr ""
+
+#: ../../addon.old/bg/bg.php:82
+msgid "Bg Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:35
+msgid "Post to Drupal"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:72
+msgid "Drupal Post Settings"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:74
+msgid "Enable Drupal Post Plugin"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:79
+msgid "Drupal username"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:84
+msgid "Drupal password"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:89
+msgid "Post Type - article,page,or blog"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:94
+msgid "Drupal site URL"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:99
+msgid "Drupal site uses clean URLS"
+msgstr ""
+
+#: ../../addon.old/drpost/drpost.php:104
+msgid "Post to Drupal by default"
+msgstr ""
+
+#: ../../addon.old/oembed.old/oembed.php:30
+msgid "OEmbed settings updated"
+msgstr "OEmbed设置更新了"
+
+#: ../../addon.old/oembed.old/oembed.php:43
+msgid "Use OEmbed for YouTube videos"
+msgstr "用OEmbed为YouTube视频"
+
+#: ../../addon.old/oembed.old/oembed.php:71
+msgid "URL to embed:"
+msgstr "URL要嵌入:"
diff --git a/view/zh-cn/passchanged_eml.tpl b/view/zh-cn/passchanged_eml.tpl
new file mode 100644 (file)
index 0000000..1c6e765
--- /dev/null
@@ -0,0 +1,20 @@
+
+尊敬的$[username]。
+       您的随您要求密码变化了。请保持这 
+信息为您的备案(或立即变化您的密码成 
+什么容易记住)。
+
+
+您的登记信息是:
+
+网站位置:  $[siteurl]
+登记名:     $[email]
+密码:        $[new_password]
+
+您会变化这个密码在您的账户设置页登记后。
+
+
+谨上,
+       $[sitename]行政人员
+
\ No newline at end of file
diff --git a/view/zh-cn/register_open_eml.tpl b/view/zh-cn/register_open_eml.tpl
new file mode 100644 (file)
index 0000000..9eb43b3
--- /dev/null
@@ -0,0 +1,34 @@
+
+尊敬的$[username],
+       谢谢注册在$[sitename]。您的账户造成了。 
+登记信息是:
+
+
+网页位置:  $[siteurl]
+用户名:     $[email]
+密码:        $[password]
+
+您会变化您的密码在您的账户「设置」页 
+登记后。
+
+请抽几片刻评论别的账户设置在这个页。
+
+您也可能想添加一些基础信息给您的默认简介 
+(在「简介」页)为让别人容易地搜索。
+
+我们建议您指定您全名,添加简介照片,
+添加一些简介关键字(很有用找朋友们)和 
+也许您的国家,如果您不想更具体
+的。
+
+我们完全尊敬您隐私权利,这些项目没有必要的。 
+您新注册,人们熟,他们会帮您
+找新和有意思的朋友们。  
+
+
+谢谢您,$[sitename]欢迎您。
+
+谨上
+       $[sitename]行政人员
+
\ No newline at end of file
diff --git a/view/zh-cn/register_verify_eml.tpl b/view/zh-cn/register_verify_eml.tpl
new file mode 100644 (file)
index 0000000..eead002
--- /dev/null
@@ -0,0 +1,25 @@
+
+受到新的用户注册要求在$[sitename],要 
+您的批准。 
+
+
+登记信息是:
+
+全名:        $[username]
+网站位置:  $[siteurl]
+登记名:     $[email]
+
+
+为批准这个要求请点击这个按钮:
+
+
+$[siteurl]/regmod/allow/$[hash] 
+
+
+为否定这个要求和删除账户,请点击这个按钮:
+
+
+$[siteurl]/regmod/deny/$[hash]
+
+
+谢谢您。
diff --git a/view/zh-cn/request_notify_eml.tpl b/view/zh-cn/request_notify_eml.tpl
new file mode 100644 (file)
index 0000000..9dd5527
--- /dev/null
@@ -0,0 +1,17 @@
+
+尊敬的$[myname],
+
+您刚才受到了一个连接要求在$[sitename] 
+
+从「$[requestor]」。
+
+您会看他的简介在[$url]。
+
+请登记在您的网站为看他们全介绍 
+和批准或不理/注销要求。
+
+$[siteurl]
+
+谨上,
+
+       $[sitename]行政人员
\ No newline at end of file
diff --git a/view/zh-cn/strings.php b/view/zh-cn/strings.php
new file mode 100644 (file)
index 0000000..cd163bb
--- /dev/null
@@ -0,0 +1,2027 @@
+<?php
+
+function string_plural_select_zh_cn($n){
+       return 0;;
+}
+;
+$a->strings["Post successful."] = "评论发表了。";
+$a->strings["[Embedded content - reload page to view]"] = "[嵌入内容-重新加载页为看]";
+$a->strings["Contact settings applied."] = "熟人设置应用了。";
+$a->strings["Contact update failed."] = "熟人更新失败。";
+$a->strings["Permission denied."] = "权限不够。";
+$a->strings["Contact not found."] = "没找到熟人。";
+$a->strings["Repair Contact Settings"] = "维修熟人设置";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页";
+$a->strings["Return to contact editor"] = "";
+$a->strings["Name"] = "名字";
+$a->strings["Account Nickname"] = "帐户昵称";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname越过名/昵称";
+$a->strings["Account URL"] = "帐户URL";
+$a->strings["Friend Request URL"] = "朋友请求URL";
+$a->strings["Friend Confirm URL"] = "朋友确认URL";
+$a->strings["Notification Endpoint URL"] = "通知端URL";
+$a->strings["Poll/Feed URL"] = "喂URL";
+$a->strings["New photo from this URL"] = "新照片从这个URL";
+$a->strings["Submit"] = "提交";
+$a->strings["Help:"] = "帮助:";
+$a->strings["Help"] = "帮助";
+$a->strings["Not Found"] = "未发现";
+$a->strings["Page not found."] = "页发现。";
+$a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d";
+$a->strings["File upload failed."] = "文件上传失败。";
+$a->strings["Friend suggestion sent."] = "朋友建议发送了。";
+$a->strings["Suggest Friends"] = "建议朋友们";
+$a->strings["Suggest a friend for %s"] = "建议朋友给%s";
+$a->strings["Event title and start time are required."] = "";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "编项目";
+$a->strings["link to source"] = "链接到来源";
+$a->strings["Events"] = "事件";
+$a->strings["Create New Event"] = "造成新的项目";
+$a->strings["Previous"] = "上";
+$a->strings["Next"] = "下";
+$a->strings["hour:minute"] = "小时:分钟";
+$a->strings["Event details"] = "项目内容";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "";
+$a->strings["Event Starts:"] = "事件开始:";
+$a->strings["Required"] = "";
+$a->strings["Finish date/time is not known or not relevant"] = "结束日/时未知或无关";
+$a->strings["Event Finishes:"] = "事件结束:";
+$a->strings["Adjust for viewer timezone"] = "调为观众的时间";
+$a->strings["Description:"] = "描述:";
+$a->strings["Location:"] = "位置:";
+$a->strings["Title:"] = "";
+$a->strings["Share this event"] = "分享这个项目";
+$a->strings["Cancel"] = "退消";
+$a->strings["Tag removed"] = "标签去除了";
+$a->strings["Remove Item Tag"] = "去除项目标签";
+$a->strings["Select a tag to remove: "] = "选择标签去除";
+$a->strings["Remove"] = "移走";
+$a->strings["%1\$s welcomes %2\$s"] = "";
+$a->strings["Authorize application connection"] = "授权应用连接";
+$a->strings["Return to your app and insert this Securty Code:"] = "回归您的应用和输入这个安全密码:";
+$a->strings["Please login to continue."] = "请登记为继续。";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章";
+$a->strings["Yes"] = "是";
+$a->strings["No"] = "否";
+$a->strings["Photo Albums"] = "相册";
+$a->strings["Contact Photos"] = "熟人照片";
+$a->strings["Upload New Photos"] = "上传新照片";
+$a->strings["everybody"] = "每人";
+$a->strings["Contact information unavailable"] = "熟人信息不可用";
+$a->strings["Profile Photos"] = "简介照片";
+$a->strings["Album not found."] = "取回不了相册.";
+$a->strings["Delete Album"] = "删除相册";
+$a->strings["Delete Photo"] = "删除照片";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
+$a->strings["a photo"] = "";
+$a->strings["Image exceeds size limit of "] = "图片超出最大尺寸";
+$a->strings["Image file is empty."] = "图片文件空的。";
+$a->strings["Unable to process image."] = "处理不了图像.";
+$a->strings["Image upload failed."] = "图像上载失败了.";
+$a->strings["Public access denied."] = "公众看拒绝";
+$a->strings["No photos selected"] = "没有照片挑选了";
+$a->strings["Access to this item is restricted."] = "这个项目使用权限的。";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
+$a->strings["You have used %1$.2f Mbytes of photo storage."] = "";
+$a->strings["Upload Photos"] = "上传照片";
+$a->strings["New album name: "] = "新册名:";
+$a->strings["or existing album name: "] = "或现有册名";
+$a->strings["Do not show a status post for this upload"] = "别显示现状报到关于这个上传";
+$a->strings["Permissions"] = "权利";
+$a->strings["Edit Album"] = "编照片册";
+$a->strings["Show Newest First"] = "";
+$a->strings["Show Oldest First"] = "";
+$a->strings["View Photo"] = "看照片";
+$a->strings["Permission denied. Access to this item may be restricted."] = "无权利。用这个项目可能受限制。";
+$a->strings["Photo not available"] = "照片不可获得的 ";
+$a->strings["View photo"] = "看照片";
+$a->strings["Edit photo"] = "编辑照片";
+$a->strings["Use as profile photo"] = "用为资料图";
+$a->strings["Private Message"] = "私人的新闻";
+$a->strings["View Full Size"] = "看全尺寸";
+$a->strings["Tags: "] = "标签:";
+$a->strings["[Remove any tag]"] = "[删除任何标签]";
+$a->strings["Rotate CW (right)"] = "";
+$a->strings["Rotate CCW (left)"] = "";
+$a->strings["New album name"] = "新册名";
+$a->strings["Caption"] = "字幕";
+$a->strings["Add a Tag"] = "加标签";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv";
+$a->strings["I like this (toggle)"] = "我喜欢这(交替)";
+$a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)";
+$a->strings["Share"] = "分享";
+$a->strings["Please wait"] = "请等一下";
+$a->strings["This is you"] = "这是你";
+$a->strings["Comment"] = "评论";
+$a->strings["Preview"] = "预演";
+$a->strings["Delete"] = "删除";
+$a->strings["View Album"] = "看照片册";
+$a->strings["Recent Photos"] = "最近的照片";
+$a->strings["Not available."] = "不可用的";
+$a->strings["Community"] = "社会";
+$a->strings["No results."] = "没有结果";
+$a->strings["This is Friendica, version"] = "这是Friendica,版本";
+$a->strings["running at web location"] = "运作再网址";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "请看<a href=\"http://friendica.com\">Friendica.com</a>发现多关于Friendica工程。";
+$a->strings["Bug reports and issues: please visit"] = "问题报案:请去";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com";
+$a->strings["Installed plugins/addons/apps:"] = "";
+$a->strings["No installed plugins/addons/apps"] = "没有安装的插件/应用";
+$a->strings["Item not found"] = "项目没找到";
+$a->strings["Edit post"] = "编辑文章";
+$a->strings["Post to Email"] = "电邮发布";
+$a->strings["Edit"] = "编辑";
+$a->strings["Upload photo"] = "上传照片";
+$a->strings["upload photo"] = "上传照片";
+$a->strings["Attach file"] = "附上文件";
+$a->strings["attach file"] = "附上文件";
+$a->strings["Insert web link"] = "插入网页环节";
+$a->strings["web link"] = "网页环节";
+$a->strings["Insert video link"] = "插入视频环节";
+$a->strings["video link"] = "视频环节";
+$a->strings["Insert audio link"] = "插入录音环节";
+$a->strings["audio link"] = "录音环节";
+$a->strings["Set your location"] = "设定您的位置";
+$a->strings["set location"] = "";
+$a->strings["Clear browser location"] = "清空浏览器位置";
+$a->strings["clear location"] = "";
+$a->strings["Permission settings"] = "权设置";
+$a->strings["CC: email addresses"] = "抄送: 电子邮件地址";
+$a->strings["Public post"] = "公开的消息";
+$a->strings["Set title"] = "指定标题";
+$a->strings["Categories (comma-separated list)"] = "";
+$a->strings["Example: bob@example.com, mary@example.com"] = "比如: li@example.com, wang@example.com";
+$a->strings["This introduction has already been accepted."] = "这个介绍已经接受了。";
+$a->strings["Profile location is not valid or does not contain profile information."] = "简介位置失效或不包括简介信息。";
+$a->strings["Warning: profile location has no identifiable owner name."] = "警告:简介位置没有可设别的主名。";
+$a->strings["Warning: profile location has no profile photo."] = "警告:简介位置没有简介图。";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d需要的参数没找到在输入的位置。",
+);
+$a->strings["Introduction complete."] = "介绍完成的。";
+$a->strings["Unrecoverable protocol error."] = "不能恢复的协议错误";
+$a->strings["Profile unavailable."] = "简介无效";
+$a->strings["%s has received too many connection requests today."] = "%s今天已经受到了太多联络要求";
+$a->strings["Spam protection measures have been invoked."] = "垃圾保护措施被用了。";
+$a->strings["Friends are advised to please try again in 24 hours."] = "朋友们被建议请24小时后再试。";
+$a->strings["Invalid locator"] = "无效找到物";
+$a->strings["Invalid email address."] = "";
+$a->strings["This account has not been configured for email. Request failed."] = "";
+$a->strings["Unable to resolve your name at the provided location."] = "不可疏解您的名字再输入的位置。";
+$a->strings["You have already introduced yourself here."] = "您已经自我介绍这儿。";
+$a->strings["Apparently you are already friends with %s."] = "看上去您已经是%s的朋友。";
+$a->strings["Invalid profile URL."] = "无效的简介URL。";
+$a->strings["Disallowed profile URL."] = "不允许的简介地址.";
+$a->strings["Failed to update contact record."] = "更新熟人记录失败了。";
+$a->strings["Your introduction has been sent."] = "您的介绍发布了。";
+$a->strings["Please login to confirm introduction."] = "请登记为确认介绍。";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "错误的用户登记者。请用<strong>这个</strong>用户。";
+$a->strings["Hide this contact"] = "";
+$a->strings["Welcome home %s."] = "欢迎%s。";
+$a->strings["Please confirm your introduction/connection request to %s."] = "请确认您的介绍/联络要求给%s。";
+$a->strings["Confirm"] = "确认";
+$a->strings["[Name Withheld]"] = "[名字拒给]";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "朋友/联络要求。";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "比如:jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "请回答下述的:";
+$a->strings["Does %s know you?"] = "%s是否认识你?";
+$a->strings["Add a personal note:"] = "添加个人的便条";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/联合社会化网";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
+$a->strings["Your Identity Address:"] = "您的同一个人地址:";
+$a->strings["Submit Request"] = "提交要求";
+$a->strings["Account settings"] = "帐户配置";
+$a->strings["Display settings"] = "";
+$a->strings["Connector settings"] = "插销设置";
+$a->strings["Plugin settings"] = "插件设置";
+$a->strings["Connected apps"] = "";
+$a->strings["Export personal data"] = "出口私人信息";
+$a->strings["Remove account"] = "";
+$a->strings["Settings"] = "配置";
+$a->strings["Export account"] = "";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
+$a->strings["Export all"] = "";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
+$a->strings["Friendica Social Communications Server - Setup"] = "Friendica社会交通服务器-安装";
+$a->strings["Could not connect to database."] = "解不了数据库。";
+$a->strings["Could not create table."] = "造成不了表格。";
+$a->strings["Your Friendica site database has been installed."] = "您Friendica网站数据库被安装了。";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "请看文件「INSTALL.txt」";
+$a->strings["System check"] = "系统检测";
+$a->strings["Check again"] = "再检测";
+$a->strings["Database connection"] = "数据库接通";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "为安装Friendica我们要知道怎么连接您的数据库。";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。";
+$a->strings["Database Server Name"] = "数据库服务器名";
+$a->strings["Database Login Name"] = "数据库登录名";
+$a->strings["Database Login Password"] = "数据库登录密码";
+$a->strings["Database Name"] = "数据库名字";
+$a->strings["Site administrator email address"] = "网站行政人员邮件地址";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "您账户邮件地址必要符合这个为用网站处理仪表板";
+$a->strings["Please select a default timezone for your website"] = "请选择您网站的默认时区";
+$a->strings["Site settings"] = "网站设置";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "没找到命令行PHP在网服务器PATH。";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
+$a->strings["PHP executable path"] = "PHP可执行路径";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
+$a->strings["Command line PHP"] = "命令行PHP";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "您系统的命令行PHP没有能够「register_argc_argv」。";
+$a->strings["This is required for message delivery to work."] = "这必要为通信发布成功。";
+$a->strings["PHP register_argc_argv"] = "";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "如果您用Windows,请看「http://www.php.net/manual/en/openssl.installation.php」。";
+$a->strings["Generate encryption keys"] = "产生加密钥匙";
+$a->strings["libCurl PHP module"] = "libCurl PHP模块";
+$a->strings["GD graphics PHP module"] = "GD显示PHP模块";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP模块";
+$a->strings["mysqli PHP module"] = "mysqli PHP模块";
+$a->strings["mb_string PHP module"] = "mb_string PHP模块";
+$a->strings["Apache mod_rewrite module"] = "";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。";
+$a->strings["Error: libCURL PHP module required but not installed."] = "错误:libCurl PHP模块是必要的可却不安装的。";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。";
+$a->strings["Error: openssl PHP module required but not installed."] = "错误:openssl PHP模块是必要的可却不安装的。";
+$a->strings["Error: mysqli PHP module required but not installed."] = "错误:mysqli PHP模块是必要的可却不安装的。";
+$a->strings["Error: mb_string PHP module required but not installed."] = "错误:mbstring PHP模块必要可没安装的。";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "网页安装者要能造成叫「.htconfig.php」在网服务器主文件夹可却不能。";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php是可写的";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "数据库设置文件「.htconfig.php」不能被写。请把包括的正文造成设置文件在网服务器子目录。";
+$a->strings["Errors encountered creating database tables."] = "造成数据库列表相遇错误。";
+$a->strings["<h1>What next</h1>"] = "";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:您要[手工地]准备安排的任务给喂器。";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "时间装换";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
+$a->strings["UTC time: %s"] = "UTC时间: %s";
+$a->strings["Current timezone: %s"] = "现在时区: %s";
+$a->strings["Converted localtime: %s"] = "装换的当地时间:%s";
+$a->strings["Please select your timezone:"] = "请选择你的时区:";
+$a->strings["Poke/Prod"] = "";
+$a->strings["poke, prod or do other things to somebody"] = "";
+$a->strings["Recipient"] = "";
+$a->strings["Choose what you wish to do to recipient"] = "";
+$a->strings["Make this post private"] = "";
+$a->strings["Profile Match"] = "简介符合";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "没有符合的关键字。请在您的默认简介加关键字。";
+$a->strings["is interested in:"] = "感兴趣对:";
+$a->strings["Connect"] = "连接";
+$a->strings["No matches"] = "没有结果";
+$a->strings["Remote privacy information not available."] = "摇隐私信息无效";
+$a->strings["Visible to:"] = "可见给:";
+$a->strings["No such group"] = "没有这个组";
+$a->strings["Group is empty"] = "组没有成员";
+$a->strings["Group: "] = "组:";
+$a->strings["Select"] = "选择";
+$a->strings["View %s's profile @ %s"] = "看%s的简介@ %s";
+$a->strings["%s from %s"] = "%s从%s";
+$a->strings["View in context"] = "看在上下文";
+$a->strings["%d comment"] = array(
+       0 => "%d评论",
+);
+$a->strings["comment"] = array(
+       0 => "",
+);
+$a->strings["show more"] = "看多";
+$a->strings["like"] = "喜欢";
+$a->strings["dislike"] = "讨厌";
+$a->strings["Share this"] = "分享这个";
+$a->strings["share"] = "分享";
+$a->strings["Bold"] = "";
+$a->strings["Italic"] = "";
+$a->strings["Underline"] = "";
+$a->strings["Quote"] = "";
+$a->strings["Code"] = "";
+$a->strings["Image"] = "";
+$a->strings["Link"] = "";
+$a->strings["Video"] = "";
+$a->strings["add star"] = "加星";
+$a->strings["remove star"] = "消星";
+$a->strings["toggle star status"] = "转变星现状";
+$a->strings["starred"] = "被贴星";
+$a->strings["add tag"] = "加标签";
+$a->strings["save to folder"] = "";
+$a->strings["to"] = "至";
+$a->strings["Wall-to-Wall"] = "从墙到墙";
+$a->strings["via Wall-To-Wall:"] = "通过从墙到墙";
+$a->strings["Welcome to %s"] = "%s欢迎你";
+$a->strings["Invalid request identifier."] = "无效要求身份号。";
+$a->strings["Discard"] = "丢弃";
+$a->strings["Ignore"] = "忽视";
+$a->strings["System"] = "系统";
+$a->strings["Network"] = "网络";
+$a->strings["Personal"] = "私人";
+$a->strings["Home"] = "主页";
+$a->strings["Introductions"] = "介绍";
+$a->strings["Messages"] = "消息";
+$a->strings["Show Ignored Requests"] = "显示不理的要求";
+$a->strings["Hide Ignored Requests"] = "隐藏不理的要求";
+$a->strings["Notification type: "] = "通知种类:";
+$a->strings["Friend Suggestion"] = "朋友建议";
+$a->strings["suggested by %s"] = "由%s建议的";
+$a->strings["Hide this contact from others"] = "隐藏这个熟人给别人";
+$a->strings["Post a new friend activity"] = "";
+$a->strings["if applicable"] = "";
+$a->strings["Approve"] = "批准";
+$a->strings["Claims to be known to you: "] = "声称被您认识:";
+$a->strings["yes"] = "是";
+$a->strings["no"] = "否";
+$a->strings["Approve as: "] = "批准作为";
+$a->strings["Friend"] = "朋友";
+$a->strings["Sharer"] = "分享者";
+$a->strings["Fan/Admirer"] = "迷/赞赏者";
+$a->strings["Friend/Connect Request"] = "友谊/联络要求";
+$a->strings["New Follower"] = "新关注者:";
+$a->strings["No introductions."] = "没有介绍。";
+$a->strings["Notifications"] = "通知";
+$a->strings["%s liked %s's post"] = "%s喜欢了%s的消息";
+$a->strings["%s disliked %s's post"] = "%s不喜欢了%s的消息";
+$a->strings["%s is now friends with %s"] = "%s成为%s的朋友";
+$a->strings["%s created a new post"] = "%s造成新文章";
+$a->strings["%s commented on %s's post"] = "%s便条%s的文章";
+$a->strings["No more network notifications."] = "没有别的网络通信。";
+$a->strings["Network Notifications"] = "";
+$a->strings["No more system notifications."] = "";
+$a->strings["System Notifications"] = "";
+$a->strings["No more personal notifications."] = "没有别的私人通信。";
+$a->strings["Personal Notifications"] = "";
+$a->strings["No more home notifications."] = "没有别的家通信。";
+$a->strings["Home Notifications"] = "";
+$a->strings["Could not access contact record."] = "用不了熟人记录。";
+$a->strings["Could not locate selected profile."] = "找不到选择的简介。";
+$a->strings["Contact updated."] = "熟人更新了。";
+$a->strings["Contact has been blocked"] = "熟人拦了";
+$a->strings["Contact has been unblocked"] = "熟人否拦了";
+$a->strings["Contact has been ignored"] = "熟人不理了";
+$a->strings["Contact has been unignored"] = "熟人否不理了";
+$a->strings["Contact has been archived"] = "";
+$a->strings["Contact has been unarchived"] = "";
+$a->strings["Contact has been removed."] = "熟人删除了。";
+$a->strings["You are mutual friends with %s"] = "您和%s是共同朋友们";
+$a->strings["You are sharing with %s"] = "您分享给%s";
+$a->strings["%s is sharing with you"] = "%s给您分享";
+$a->strings["Private communications are not available for this contact."] = "没有私人的沟通跟这个熟人";
+$a->strings["Never"] = "从未";
+$a->strings["(Update was successful)"] = "(更新成功)";
+$a->strings["(Update was not successful)"] = "(更新不成功)";
+$a->strings["Suggest friends"] = "建议朋友们";
+$a->strings["Network type: %s"] = "网络种类: %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d共同熟人",
+);
+$a->strings["View all contacts"] = "看所有的熟人";
+$a->strings["Unblock"] = "不拦";
+$a->strings["Block"] = "拦";
+$a->strings["Toggle Blocked status"] = "";
+$a->strings["Unignore"] = "停不理";
+$a->strings["Toggle Ignored status"] = "";
+$a->strings["Unarchive"] = "";
+$a->strings["Archive"] = "";
+$a->strings["Toggle Archive status"] = "";
+$a->strings["Repair"] = "维修";
+$a->strings["Advanced Contact Settings"] = "";
+$a->strings["Communications lost with this contact!"] = "";
+$a->strings["Contact Editor"] = "熟人编器";
+$a->strings["Profile Visibility"] = "简历可见量";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "请选择简介您想给%s显示他安全地看您的简介的时候。";
+$a->strings["Contact Information / Notes"] = "熟人信息/便条";
+$a->strings["Edit contact notes"] = "编辑熟人便条";
+$a->strings["Visit %s's profile [%s]"] = "看%s的简介[%s]";
+$a->strings["Block/Unblock contact"] = "拦/否拦熟人";
+$a->strings["Ignore contact"] = "忽视熟人";
+$a->strings["Repair URL settings"] = "维修URL设置";
+$a->strings["View conversations"] = "看交流";
+$a->strings["Delete contact"] = "删除熟人";
+$a->strings["Last update:"] = "上个更新:";
+$a->strings["Update public posts"] = "更新公开文章";
+$a->strings["Update now"] = "现在更新";
+$a->strings["Currently blocked"] = "现在拦的";
+$a->strings["Currently ignored"] = "现在不理的";
+$a->strings["Currently archived"] = "";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "回答/喜欢关您公开文章<strong>会</strong>还可见的";
+$a->strings["Suggestions"] = "";
+$a->strings["Suggest potential friends"] = "";
+$a->strings["All Contacts"] = "所有的熟人";
+$a->strings["Show all contacts"] = "";
+$a->strings["Unblocked"] = "";
+$a->strings["Only show unblocked contacts"] = "";
+$a->strings["Blocked"] = "";
+$a->strings["Only show blocked contacts"] = "";
+$a->strings["Ignored"] = "";
+$a->strings["Only show ignored contacts"] = "";
+$a->strings["Archived"] = "";
+$a->strings["Only show archived contacts"] = "";
+$a->strings["Hidden"] = "";
+$a->strings["Only show hidden contacts"] = "";
+$a->strings["Mutual Friendship"] = "共同友谊";
+$a->strings["is a fan of yours"] = "是您迷";
+$a->strings["you are a fan of"] = "你喜欢";
+$a->strings["Edit contact"] = "编熟人";
+$a->strings["Contacts"] = "熟人";
+$a->strings["Search your contacts"] = "搜索您的熟人";
+$a->strings["Finding: "] = "找着:";
+$a->strings["Find"] = "搜索";
+$a->strings["No valid account found."] = "找不到效的账户。";
+$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。";
+$a->strings["Password reset requested at %s"] = "重设密码要求被发布%s";
+$a->strings["Administrator"] = "管理员";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "要求确认不了。(您可能已经提交它。)重设密码失败了。";
+$a->strings["Password Reset"] = "复位密码";
+$a->strings["Your password has been reset as requested."] = "您的密码被重设如要求的。";
+$a->strings["Your new password is"] = "你的新的密码是";
+$a->strings["Save or copy your new password - and then"] = "保存或复制新密码-之后";
+$a->strings["click here to login"] = "在这儿点击";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "您的密码能被变化从<em>设置</em>页成功登记后。";
+$a->strings["Forgot your Password?"] = "忘记你的密码吗?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。";
+$a->strings["Nickname or Email: "] = "昵称或邮件地址:";
+$a->strings["Reset"] = "复位";
+$a->strings["Missing some important data!"] = "有的重要信息失踪的!";
+$a->strings["Update"] = "更新";
+$a->strings["Failed to connect with email account using the settings provided."] = "不能连接电子邮件账户用输入的设置。";
+$a->strings["Email settings updated."] = "电子邮件设置更新了";
+$a->strings["Passwords do not match. Password unchanged."] = "密码们不相配。密码没未改变的。";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。";
+$a->strings["Password changed."] = "密码变化了。";
+$a->strings["Password update failed. Please try again."] = "密码更新失败了。请再试。";
+$a->strings[" Please use a shorter name."] = "请用短一点个名。";
+$a->strings[" Name too short."] = "名字太短。";
+$a->strings[" Not valid email."] = " 电子邮件地址无效.";
+$a->strings[" Cannot change to that email."] = "不能变化到这个邮件地址。";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
+$a->strings["Settings updated."] = "设置跟新了";
+$a->strings["Add application"] = "加入应用";
+$a->strings["Consumer Key"] = "钥匙(Consumer Key)";
+$a->strings["Consumer Secret"] = "密码(Consumer Secret)";
+$a->strings["Redirect"] = "重定向";
+$a->strings["Icon url"] = "图符URL";
+$a->strings["You can't edit this application."] = "您不能编辑这个应用。";
+$a->strings["Connected Apps"] = "连接着应用";
+$a->strings["Client key starts with"] = "客户钥匙头字是";
+$a->strings["No name"] = "无名";
+$a->strings["Remove authorization"] = "撤消权能";
+$a->strings["No Plugin settings configured"] = "没插件设置配置了";
+$a->strings["Plugin Settings"] = "插件设置";
+$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s";
+$a->strings["enabled"] = "能够做的";
+$a->strings["disabled"] = "使不能用";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权";
+$a->strings["Connector Settings"] = "连接器设置";
+$a->strings["Email/Mailbox Setup"] = "邮件收件箱设置";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。";
+$a->strings["Last successful email check:"] = "上个成功收件箱检查:";
+$a->strings["IMAP server name:"] = "IMAP服务器名字:";
+$a->strings["IMAP port:"] = "IMAP服务器端口:";
+$a->strings["Security:"] = "安全:";
+$a->strings["None"] = "没有";
+$a->strings["Email login name:"] = "邮件登记名:";
+$a->strings["Email password:"] = "邮件密码:";
+$a->strings["Reply-to address:"] = "回答地址:";
+$a->strings["Send public posts to all email contacts:"] = "发公开的文章给所有的邮件熟人:";
+$a->strings["Action after import:"] = "";
+$a->strings["Mark as seen"] = "";
+$a->strings["Move to folder"] = "";
+$a->strings["Move to folder:"] = "";
+$a->strings["No special theme for mobile devices"] = "";
+$a->strings["Display Settings"] = "";
+$a->strings["Display Theme:"] = "显示主题:";
+$a->strings["Mobile Theme:"] = "";
+$a->strings["Update browser every xx seconds"] = "更新游览器每XX秒";
+$a->strings["Minimum of 10 seconds, no maximum"] = "最小10秒,没有上限";
+$a->strings["Number of items to display per page:"] = "";
+$a->strings["Maximum of 100 items"] = "";
+$a->strings["Don't show emoticons"] = "";
+$a->strings["Normal Account Page"] = "";
+$a->strings["This account is a normal personal profile"] = "这个帐户是正常私人简介";
+$a->strings["Soapbox Page"] = "";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "自动批准所有联络/友谊要求当只看的迷";
+$a->strings["Community Forum/Celebrity Account"] = "";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "自动批准所有联络/友谊要求当看写的迷";
+$a->strings["Automatic Friend Page"] = "";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "自动批准所有联络/友谊要求当朋友";
+$a->strings["Private Forum [Experimental]"] = "";
+$a->strings["Private forum - approved members only"] = "";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(可选的)许这个OpenID这个账户登记。";
+$a->strings["Publish your default profile in your local site directory?"] = "出版您默认简介在您当地的网站目录?";
+$a->strings["Publish your default profile in the global social directory?"] = "出版您默认简介在综合社会目录?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n ";
+$a->strings["Hide your profile details from unknown viewers?"] = "使简介信息给陌生的看着看不了?";
+$a->strings["Allow friends to post to your profile page?"] = "允许朋友们贴文章在您的简介页?";
+$a->strings["Allow friends to tag your posts?"] = "允许朋友们标签您的文章?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "允许我们建议您潜力朋友给新成员?";
+$a->strings["Permit unknown people to send you private mail?"] = "";
+$a->strings["Profile is <strong>not published</strong>."] = "简介是<strong>没出版</strong>";
+$a->strings["or"] = "或者";
+$a->strings["Your Identity Address is"] = "您的同一个人地址是";
+$a->strings["Automatically expire posts after this many days:"] = "";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "如果空的,文章不会过期。过期的文章被删除";
+$a->strings["Advanced expiration settings"] = "先进的过期设置";
+$a->strings["Advanced Expiration"] = "先进的过期";
+$a->strings["Expire posts:"] = "把文章过期:";
+$a->strings["Expire personal notes:"] = "把私人便条过期:";
+$a->strings["Expire starred posts:"] = "把星的文章过期:";
+$a->strings["Expire photos:"] = "把照片过期:";
+$a->strings["Only expire posts by others:"] = "";
+$a->strings["Account Settings"] = "帐户设置";
+$a->strings["Password Settings"] = "密码设置";
+$a->strings["New Password:"] = "新密码:";
+$a->strings["Confirm:"] = "确认:";
+$a->strings["Leave password fields blank unless changing"] = "非变化留空密码栏";
+$a->strings["Basic Settings"] = "基础设置";
+$a->strings["Full Name:"] = "全名:";
+$a->strings["Email Address:"] = "电子邮件地址:";
+$a->strings["Your Timezone:"] = "您的时区:";
+$a->strings["Default Post Location:"] = "默认文章位置:";
+$a->strings["Use Browser Location:"] = "用游览器位置:";
+$a->strings["Security and Privacy Settings"] = "安全和隐私设置";
+$a->strings["Maximum Friend Requests/Day:"] = "最多友谊要求个天:";
+$a->strings["(to prevent spam abuse)"] = "(为防止垃圾邮件滥用)";
+$a->strings["Default Post Permissions"] = "默认文章准许";
+$a->strings["(click to open/close)"] = "(点击为打开/关闭)";
+$a->strings["Maximum private messages per day from unknown people:"] = "";
+$a->strings["Notification Settings"] = "消息设置";
+$a->strings["By default post a status message when:"] = "";
+$a->strings["accepting a friend request"] = "";
+$a->strings["joining a forum/community"] = "";
+$a->strings["making an <em>interesting</em> profile change"] = "";
+$a->strings["Send a notification email when:"] = "发一个消息要是:";
+$a->strings["You receive an introduction"] = "你受到一个介绍";
+$a->strings["Your introductions are confirmed"] = "你的介绍确认了";
+$a->strings["Someone writes on your profile wall"] = "某人写在你的简历墙";
+$a->strings["Someone writes a followup comment"] = "某人写一个后续的评论";
+$a->strings["You receive a private message"] = "你受到一个私消息";
+$a->strings["You receive a friend suggestion"] = "你受到一个朋友建议";
+$a->strings["You are tagged in a post"] = "你被在新闻标签";
+$a->strings["You are poked/prodded/etc. in a post"] = "";
+$a->strings["Advanced Account/Page Type Settings"] = "";
+$a->strings["Change the behaviour of this account for special situations"] = "";
+$a->strings["Manage Identities and/or Pages"] = "管理身份或页";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
+$a->strings["Select an identity to manage: "] = "选择同一个人管理:";
+$a->strings["Search Results For:"] = "";
+$a->strings["Remove term"] = "删除关键字";
+$a->strings["Saved Searches"] = "保存的搜索";
+$a->strings["add"] = "添加";
+$a->strings["Commented Order"] = "评论时间顺序";
+$a->strings["Sort by Comment Date"] = "";
+$a->strings["Posted Order"] = "贴时间顺序";
+$a->strings["Sort by Post Date"] = "";
+$a->strings["Posts that mention or involve you"] = "";
+$a->strings["New"] = "新";
+$a->strings["Activity Stream - by date"] = "";
+$a->strings["Starred"] = "被星";
+$a->strings["Favourite Posts"] = "";
+$a->strings["Shared Links"] = "";
+$a->strings["Interesting Links"] = "";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "警告:这个组包括%s成员从不安全网络。",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "私人通信给这组回被公开。";
+$a->strings["Contact: "] = "熟人:";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。";
+$a->strings["Invalid contact."] = "无效熟人。";
+$a->strings["Personal Notes"] = "私人便条";
+$a->strings["Save"] = "保存";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "这个网站超过一天最多账户注册。请明天再试。";
+$a->strings["Import"] = "";
+$a->strings["Move account"] = "";
+$a->strings["You can import an account from another Friendica server. <br>\r\n                            You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here.<br>\r\n                            <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
+$a->strings["Account file"] = "";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["No recipient selected."] = "没有选择的接受者。";
+$a->strings["Unable to check your home location."] = "";
+$a->strings["Message could not be sent."] = "消息发不了。";
+$a->strings["Message collection failure."] = "通信受到错误。";
+$a->strings["Message sent."] = "消息发了";
+$a->strings["No recipient."] = "";
+$a->strings["Please enter a link URL:"] = "请输入环节URL:";
+$a->strings["Send Private Message"] = "发私人的通信";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
+$a->strings["To:"] = "到:";
+$a->strings["Subject:"] = "题目:";
+$a->strings["Your message:"] = "你的消息:";
+$a->strings["Welcome to Friendica"] = "Friendica欢迎你";
+$a->strings["New Member Checklist"] = "新的成员一览表";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。";
+$a->strings["Getting Started"] = "";
+$a->strings["Friendica Walk-Through"] = "";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
+$a->strings["Go to Your Settings"] = "";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "在你的<em>设置</em>页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。";
+$a->strings["Profile"] = "简介";
+$a->strings["Upload Profile Photo"] = "上传简历照片";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。";
+$a->strings["Edit Your Profile"] = "";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的<strong>公开的</strong>简历。评论设置为藏起来你的朋友表和简历过陌生来客。";
+$a->strings["Profile Keywords"] = "";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。";
+$a->strings["Connecting"] = "";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "要是你有一个Facebook账户,批准Facebook插销。我们来(可选的)进口都你Facebook朋友们和交谈。";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>要是</em>这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。";
+$a->strings["Importing Emails"] = "";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。";
+$a->strings["Go to Your Contacts Page"] = "";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在<em>添加新熟人</em>对话框。";
+$a->strings["Go to Your Site's Directory"] = "";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "目录页让您找别人在这个网络或别的同盟的网站。找一个<em>连接</em>或<em>关注</em>按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。";
+$a->strings["Finding New People"] = "";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
+$a->strings["Groups"] = "组";
+$a->strings["Group Your Contacts"] = "";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。";
+$a->strings["Why Aren't My Posts Public?"] = "";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
+$a->strings["Getting Help"] = "";
+$a->strings["Go to the Help Section"] = "";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "我们<strong>帮助</strong>页可查阅到详情关于别的编程特点和资源。";
+$a->strings["Item not available."] = "项目不可用的";
+$a->strings["Item was not found."] = "找不到项目。";
+$a->strings["Group created."] = "组造成了。";
+$a->strings["Could not create group."] = "不能造成组。";
+$a->strings["Group not found."] = "组找不到。";
+$a->strings["Group name changed."] = "组名变化了。";
+$a->strings["Permission denied"] = "权限不够";
+$a->strings["Create a group of contacts/friends."] = "造成组熟人/朋友们。";
+$a->strings["Group Name: "] = "组名:";
+$a->strings["Group removed."] = "组删除了。";
+$a->strings["Unable to remove group."] = "不能删除组。";
+$a->strings["Group Editor"] = "组编辑器";
+$a->strings["Members"] = "成员";
+$a->strings["Click on a contact to add or remove."] = "点击熟人为添加或删除。";
+$a->strings["Invalid profile identifier."] = "无限的简介标识符。";
+$a->strings["Profile Visibility Editor"] = "简介能见度编辑器。";
+$a->strings["Visible To"] = "能见被";
+$a->strings["All Contacts (with secure profile access)"] = "所有熟人(跟安全地简介使用权)";
+$a->strings["No contacts."] = "没有熟人。";
+$a->strings["View Contacts"] = "看熟人";
+$a->strings["Registration details for %s"] = "注册信息为%s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。";
+$a->strings["Failed to send email message. Here is the message that failed."] = "发邮件失败了。这条试失败的消息。";
+$a->strings["Your registration can not be processed."] = "处理不了您的注册。";
+$a->strings["Registration request at %s"] = "注册要求再%s";
+$a->strings["Your registration is pending approval by the site owner."] = "您的注册等网页主的批准。";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "如果您没熟悉OpenID,请留空这个栏和填另些栏。";
+$a->strings["Your OpenID (optional): "] = "您的OpenID(可选的):";
+$a->strings["Include your profile in member directory?"] = "放您的简介再员目录?";
+$a->strings["Membership on this site is by invitation only."] = "会员身份在这个网站是光通过邀请。";
+$a->strings["Your invitation ID: "] = "您邀请ID:";
+$a->strings["Registration"] = "注册";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "您姓名(例如「张三」):";
+$a->strings["Your Email Address: "] = "你的电子邮件地址:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「<strong>example@\$sitename</strong>」.";
+$a->strings["Choose a nickname: "] = "选择昵称:";
+$a->strings["Register"] = "注册";
+$a->strings["People Search"] = "搜索人物";
+$a->strings["photo"] = "照片";
+$a->strings["status"] = "现状";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s不喜欢%2\$s的%3\$s";
+$a->strings["Item not found."] = "项目找不到。";
+$a->strings["Access denied."] = "没有用权。";
+$a->strings["Photos"] = "照片";
+$a->strings["Files"] = "";
+$a->strings["Account approved."] = "账户批准了";
+$a->strings["Registration revoked for %s"] = "%s的登记撤销了";
+$a->strings["Please login."] = "清登录。";
+$a->strings["Unable to locate original post."] = "找不到当初的新闻";
+$a->strings["Empty post discarded."] = "空心的新闻丢弃了";
+$a->strings["Wall Photos"] = "墙照片";
+$a->strings["System error. Post not saved."] = "系统错误。x";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "这个新闻是由%s,Friendica社会化网络成员之一,发给你。";
+$a->strings["You may visit them online at %s"] = "你可以网上拜访他在%s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "你不想受到这些新闻的话,请回答这个新闻给发者联系。";
+$a->strings["%s posted an update."] = "%s贴上一个新闻。";
+$a->strings["%1\$s is currently %2\$s"] = "";
+$a->strings["Mood"] = "";
+$a->strings["Set your current mood and tell your friends"] = "";
+$a->strings["Image uploaded but image cropping failed."] = "照片上传去了,但修剪失灵。";
+$a->strings["Image size reduction [%s] failed."] = "照片减少[%s]失灵。";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。";
+$a->strings["Unable to process image"] = "不能处理照片";
+$a->strings["Image exceeds size limit of %d"] = "图像超标最大极限尺寸 %d";
+$a->strings["Upload File:"] = "上传文件:";
+$a->strings["Select a profile:"] = "";
+$a->strings["Upload"] = "上传";
+$a->strings["skip this step"] = "略过这步";
+$a->strings["select a photo from your photo albums"] = "从您的照片册选择一片。";
+$a->strings["Crop Image"] = "修剪照片";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "请调图片剪裁为最好看。";
+$a->strings["Done Editing"] = "编完了";
+$a->strings["Image uploaded successfully."] = "照片成功地上传了";
+$a->strings["No profile"] = "无简介";
+$a->strings["Remove My Account"] = "删除我的账户";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "这要完全删除您的账户。这一做过,就不能恢复。";
+$a->strings["Please enter your password for verification:"] = "请输入密码为确认:";
+$a->strings["New Message"] = "新的消息";
+$a->strings["Unable to locate contact information."] = "找不到熟人信息。";
+$a->strings["Message deleted."] = "消息删除了。";
+$a->strings["Conversation removed."] = "交流删除了。";
+$a->strings["No messages."] = "没有消息";
+$a->strings["Unknown sender - %s"] = "";
+$a->strings["You and %s"] = "";
+$a->strings["%s and You"] = "";
+$a->strings["Delete conversation"] = "删除交谈";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "",
+);
+$a->strings["Message not available."] = "通信不可用的";
+$a->strings["Delete message"] = "删除消息";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+$a->strings["Send Reply"] = "发回答";
+$a->strings["Friends of %s"] = "%s的朋友们";
+$a->strings["No friends to display."] = "没有朋友展示。";
+$a->strings["Theme settings updated."] = "";
+$a->strings["Site"] = "网站";
+$a->strings["Users"] = "用户";
+$a->strings["Plugins"] = "插件";
+$a->strings["Themes"] = "";
+$a->strings["DB updates"] = "";
+$a->strings["Logs"] = "记录";
+$a->strings["Admin"] = "管理";
+$a->strings["Plugin Features"] = "";
+$a->strings["User registrations waiting for confirmation"] = "用户注册等确认";
+$a->strings["Normal Account"] = "正常帐户";
+$a->strings["Soapbox Account"] = "演讲台帐户";
+$a->strings["Community/Celebrity Account"] = "社会/名人帐户";
+$a->strings["Automatic Friend Account"] = "自动朋友帐户";
+$a->strings["Blog Account"] = "";
+$a->strings["Private Forum"] = "";
+$a->strings["Message queues"] = "";
+$a->strings["Administration"] = "管理";
+$a->strings["Summary"] = "总算";
+$a->strings["Registered users"] = "注册的用户";
+$a->strings["Pending registrations"] = "未决的注册";
+$a->strings["Version"] = "版本";
+$a->strings["Active plugins"] = "活跃的插件";
+$a->strings["Site settings updated."] = "网站设置更新了。";
+$a->strings["Closed"] = "关闭";
+$a->strings["Requires approval"] = "要批准";
+$a->strings["Open"] = "打开";
+$a->strings["No SSL policy, links will track page SSL state"] = "";
+$a->strings["Force all links to use SSL"] = "";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
+$a->strings["File upload"] = "文件上传";
+$a->strings["Policies"] = "政策";
+$a->strings["Advanced"] = "高等";
+$a->strings["Site name"] = "网页名字";
+$a->strings["Banner/Logo"] = "标题/标志";
+$a->strings["System language"] = "系统语言";
+$a->strings["System theme"] = "系统主题";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+$a->strings["Mobile system theme"] = "";
+$a->strings["Theme for mobile devices"] = "";
+$a->strings["SSL link policy"] = "";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "";
+$a->strings["Maximum image size"] = "图片最大尺寸";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
+$a->strings["Maximum image length"] = "";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
+$a->strings["JPEG image quality"] = "";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Register policy"] = "注册政策";
+$a->strings["Register text"] = "注册正文";
+$a->strings["Will be displayed prominently on the registration page."] = "";
+$a->strings["Accounts abandoned after x days"] = "账户丢弃X天后";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。";
+$a->strings["Allowed friend domains"] = "允许的朋友域";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Allowed email domains"] = "允许的电子邮件域";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Block public"] = "拦公开";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+$a->strings["Force publish"] = "需要出版";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Global directory update URL"] = "综合目录更新URL";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Allow threaded items"] = "";
+$a->strings["Allow infinite level threading for items on this site."] = "";
+$a->strings["Private posts by default for new users"] = "";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
+$a->strings["Block multiple registrations"] = "拦一人多注册";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "";
+$a->strings["OpenID support"] = "OpenID支持";
+$a->strings["OpenID support for registration and logins."] = "";
+$a->strings["Fullname check"] = "全名核实";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8正则表达式";
+$a->strings["Use PHP UTF8 regular expressions"] = "";
+$a->strings["Show Community Page"] = "表示社会页";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "";
+$a->strings["Enable OStatus support"] = "使OStatus支持可用";
+$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["Enable Diaspora support"] = "使Diaspora支持能够";
+$a->strings["Provide built-in Diaspora network compatibility."] = "";
+$a->strings["Only allow Friendica contacts"] = "只许Friendica熟人";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
+$a->strings["Verify SSL"] = "证实";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
+$a->strings["Proxy user"] = "代理用户";
+$a->strings["Proxy URL"] = "代理URL";
+$a->strings["Network timeout"] = "网络超时";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
+$a->strings["Delivery interval"] = "";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
+$a->strings["Poll interval"] = "";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
+$a->strings["Maximum Load Average"] = "";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+$a->strings["Update has been marked successful"] = "";
+$a->strings["Executing %s failed. Check system logs."] = "";
+$a->strings["Update %s was successfully applied."] = "";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+$a->strings["Update function %s could not be found."] = "";
+$a->strings["No failed updates."] = "";
+$a->strings["Failed Updates"] = "";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
+$a->strings["Mark success (if update was manually applied)"] = "";
+$a->strings["Attempt to execute this update step automatically"] = "";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s用户删除了",
+);
+$a->strings["User '%s' deleted"] = "用户「%s」删除了";
+$a->strings["User '%s' unblocked"] = "用户「%s」无拦了";
+$a->strings["User '%s' blocked"] = "用户「%s」拦了";
+$a->strings["select all"] = "都选";
+$a->strings["User registrations waiting for confirm"] = "用户注册等待确认";
+$a->strings["Request date"] = "要求日期";
+$a->strings["Email"] = "电子邮件";
+$a->strings["No registrations."] = "没有注册。";
+$a->strings["Deny"] = "否定";
+$a->strings["Site admin"] = "";
+$a->strings["Register date"] = "注册日期";
+$a->strings["Last login"] = "上次登录";
+$a->strings["Last item"] = "上项目";
+$a->strings["Account"] = "帐户";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "特定的用户被删除!\\n\\n什么这些用户放在这个网站被永远删除!\\n\\n您肯定吗?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "用户{0}将被删除!\\n\\n什么这个用户放在这个网站被永远删除!\\n\\n您肯定吗?";
+$a->strings["Plugin %s disabled."] = "使插件%s不能用。";
+$a->strings["Plugin %s enabled."] = "使插件%s能用。";
+$a->strings["Disable"] = "使不能用";
+$a->strings["Enable"] = "使能用";
+$a->strings["Toggle"] = "肘节";
+$a->strings["Author: "] = "";
+$a->strings["Maintainer: "] = "";
+$a->strings["No themes found."] = "";
+$a->strings["Screenshot"] = "";
+$a->strings["[Experimental]"] = "";
+$a->strings["[Unsupported]"] = "";
+$a->strings["Log settings updated."] = "日志设置更新了。";
+$a->strings["Clear"] = "清理出";
+$a->strings["Debugging"] = "调试";
+$a->strings["Log file"] = "记录文件";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "必要被网页服务器可写的。相对Friendica主文件夹。";
+$a->strings["Log level"] = "记录水平";
+$a->strings["Close"] = "关闭";
+$a->strings["FTP Host"] = "FTP主机";
+$a->strings["FTP Path"] = "FTP目录";
+$a->strings["FTP User"] = "FTP用户";
+$a->strings["FTP Password"] = "FTP密码";
+$a->strings["Requested profile is not available."] = "";
+$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了.";
+$a->strings["Tips for New Members"] = "提示对新成员";
+$a->strings["{0} wants to be your friend"] = "{0}想成为您的朋友";
+$a->strings["{0} sent you a message"] = "{0}发给您一个通信";
+$a->strings["{0} requested registration"] = "{0}要求注册";
+$a->strings["{0} commented %s's post"] = "{0}对%s的文章发表意见";
+$a->strings["{0} liked %s's post"] = "{0}喜欢%s的文章";
+$a->strings["{0} disliked %s's post"] = "{0}不喜欢%s的文章";
+$a->strings["{0} is now friends with %s"] = "{0}成为%s的朋友";
+$a->strings["{0} posted"] = "{0}陈列";
+$a->strings["{0} tagged %s's post with #%s"] = "{0}用#%s标签%s的文章";
+$a->strings["{0} mentioned you in a post"] = "{0}提到您在文章";
+$a->strings["Contacts who are not members of a group"] = "";
+$a->strings["OpenID protocol error. No ID returned."] = "";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
+$a->strings["Login failed."] = "登记失败了。";
+$a->strings["Contact added"] = "";
+$a->strings["Common Friends"] = "普通朋友们";
+$a->strings["No contacts in common."] = "";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
+$a->strings["link"] = "";
+$a->strings["Item has been removed."] = "项目被删除了。";
+$a->strings["Applications"] = "应用";
+$a->strings["No installed applications."] = "没有安装的应用";
+$a->strings["Search"] = "搜索";
+$a->strings["Profile not found."] = "找不到简介。";
+$a->strings["Profile Name is required."] = "必要简介名";
+$a->strings["Marital Status"] = "";
+$a->strings["Romantic Partner"] = "";
+$a->strings["Likes"] = "";
+$a->strings["Dislikes"] = "";
+$a->strings["Work/Employment"] = "";
+$a->strings["Religion"] = "";
+$a->strings["Political Views"] = "";
+$a->strings["Gender"] = "";
+$a->strings["Sexual Preference"] = "";
+$a->strings["Homepage"] = "";
+$a->strings["Interests"] = "";
+$a->strings["Address"] = "";
+$a->strings["Location"] = "";
+$a->strings["Profile updated."] = "简介更新了。";
+$a->strings[" and "] = "";
+$a->strings["public profile"] = "";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
+$a->strings[" - Visit %1\$s's %2\$s"] = "";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+$a->strings["Profile deleted."] = "简介删除了。";
+$a->strings["Profile-"] = "简介-";
+$a->strings["New profile created."] = "创造新的简介";
+$a->strings["Profile unavailable to clone."] = "简介不可用为复制。";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?";
+$a->strings["Edit Profile Details"] = "剪辑简介消息";
+$a->strings["View this profile"] = "看这个简介";
+$a->strings["Create a new profile using these settings"] = "造成新的简介用这些设置";
+$a->strings["Clone this profile"] = "复制这个简介";
+$a->strings["Delete this profile"] = "删除这个简介";
+$a->strings["Profile Name:"] = "简介名:";
+$a->strings["Your Full Name:"] = "你的全名:";
+$a->strings["Title/Description:"] = "标题/描述:";
+$a->strings["Your Gender:"] = "你的性:";
+$a->strings["Birthday (%s):"] = "生日(%s):";
+$a->strings["Street Address:"] = "地址:";
+$a->strings["Locality/City:"] = "现场/城市:";
+$a->strings["Postal/Zip Code:"] = "邮政编码:";
+$a->strings["Country:"] = "国家:";
+$a->strings["Region/State:"] = "区域/省";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>婚姻状况:";
+$a->strings["Who: (if applicable)"] = "谁:(要是使用)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "比如:limou,李某,limou@example。com";
+$a->strings["Since [date]:"] = "";
+$a->strings["Sexual Preference:"] = "性取向";
+$a->strings["Homepage URL:"] = "主页URL:";
+$a->strings["Hometown:"] = "";
+$a->strings["Political Views:"] = "政治观念:";
+$a->strings["Religious Views:"] = " 宗教信仰 :";
+$a->strings["Public Keywords:"] = "公开关键字 :";
+$a->strings["Private Keywords:"] = "私人关键字";
+$a->strings["Likes:"] = "";
+$a->strings["Dislikes:"] = "";
+$a->strings["Example: fishing photography software"] = "例如:钓鱼 照片 软件";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(用于建议可能的朋友们,会被别人看)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(用于搜索简介,没有给别人看)";
+$a->strings["Tell us about yourself..."] = "给我们自我介绍...";
+$a->strings["Hobbies/Interests"] = "爱好/兴趣";
+$a->strings["Contact information and Social Networks"] = "熟人信息和社会化网络";
+$a->strings["Musical interests"] = "音乐兴趣";
+$a->strings["Books, literature"] = "书,文学";
+$a->strings["Television"] = "电视";
+$a->strings["Film/dance/culture/entertainment"] = "电影/跳舞/文化/娱乐";
+$a->strings["Love/romance"] = "爱情/浪漫";
+$a->strings["Work/employment"] = "工作";
+$a->strings["School/education"] = "学院/教育";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "这是你的<strong>公开的</strong>简介。<br />它<strong>可能</strong>被所有的因特网用的看到。";
+$a->strings["Age: "] = "年纪:";
+$a->strings["Edit/Manage Profiles"] = "编辑/管理简介";
+$a->strings["Change profile photo"] = "换简介照片";
+$a->strings["Create New Profile"] = "创造新的简介";
+$a->strings["Profile Image"] = "简介图像";
+$a->strings["visible to everybody"] = "给打假可见的";
+$a->strings["Edit visibility"] = "修改能见度";
+$a->strings["Save to Folder:"] = "";
+$a->strings["- select -"] = "";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s把%4\$s标签%2\$s的%3\$s";
+$a->strings["No potential page delegates located."] = "";
+$a->strings["Delegate Page Management"] = "";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
+$a->strings["Existing Page Managers"] = "";
+$a->strings["Existing Page Delegates"] = "";
+$a->strings["Potential Delegates"] = "";
+$a->strings["Add"] = "加";
+$a->strings["No entries."] = "没有项目。";
+$a->strings["Source (bbcode) text:"] = "";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
+$a->strings["Source input: "] = "";
+$a->strings["bb2html: "] = "";
+$a->strings["bb2html2bb: "] = "";
+$a->strings["bb2md: "] = "";
+$a->strings["bb2md2html: "] = "";
+$a->strings["bb2dia2bb: "] = "";
+$a->strings["bb2md2html2bb: "] = "";
+$a->strings["Source input (Diaspora format): "] = "";
+$a->strings["diaspora2bb: "] = "";
+$a->strings["Friend Suggestions"] = "友谊建议";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
+$a->strings["Ignore/Hide"] = "不理/隐藏";
+$a->strings["Global Directory"] = "综合目录";
+$a->strings["Find on this site"] = "找在这网站";
+$a->strings["Site Directory"] = "网站目录";
+$a->strings["Gender: "] = "性别:";
+$a->strings["Gender:"] = "性别:";
+$a->strings["Status:"] = "现状:";
+$a->strings["Homepage:"] = "主页:";
+$a->strings["About:"] = "关于:";
+$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。";
+$a->strings["%s : Not a valid email address."] = "%s : 不是效的电子邮件地址.";
+$a->strings["Please join us on Friendica"] = "";
+$a->strings["%s : Message delivery failed."] = "%s : 送消息失败了。";
+$a->strings["%d message sent."] = array(
+       0 => "%d消息传送了。",
+);
+$a->strings["You have no more invitations available"] = "您没有别的邀请";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
+$a->strings["Send invitations"] = "发请柬";
+$a->strings["Enter email addresses, one per line:"] = "输入电子邮件地址,一行一个:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "您要输入这个邀请密码:\$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "您一注册,请页跟我连接,用我的简介在:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
+$a->strings["Response from remote site was not understood."] = "遥网站的回答明白不了。";
+$a->strings["Unexpected response from remote site: "] = "居然回答从遥网站:";
+$a->strings["Confirmation completed successfully."] = "确认成功完成。";
+$a->strings["Remote site reported: "] = "遥网站报案:";
+$a->strings["Temporary failure. Please wait and try again."] = "临时失败。请等一会,再试。";
+$a->strings["Introduction failed or was revoked."] = "介绍失败或被吊销。";
+$a->strings["Unable to set contact photo."] = "不会指定熟人照片。";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友";
+$a->strings["No user record found for '%s' "] = "找不到「%s」的用户记录";
+$a->strings["Our site encryption key is apparently messed up."] = "看起来我们的加密钥匙失灵了。";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空的URL供应,或URL解不了码。";
+$a->strings["Contact record was not found for you on our site."] = "熟人记录在我们的网站找不了。";
+$a->strings["Site public key not available in contact record for URL %s."] = "没有网站公开钥匙在熟人记录在URL%s。";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "身份证明由您的系统是在我们的重做。你再试应该运行。";
+$a->strings["Unable to set your contact credentials on our system."] = "不能创作您的熟人证件在我们的系统。";
+$a->strings["Unable to update your contact profile details on our system"] = "不能更新您的熟人简介消息在我们的系统";
+$a->strings["Connection accepted at %s"] = "联络接受了在%s";
+$a->strings["%1\$s has joined %2\$s"] = "";
+$a->strings["Google+ Import Settings"] = "";
+$a->strings["Enable Google+ Import"] = "";
+$a->strings["Google Account ID"] = "";
+$a->strings["Google+ Import Settings saved."] = "";
+$a->strings["Facebook disabled"] = "Facebook废";
+$a->strings["Updating contacts"] = "正才更新熟人";
+$a->strings["Facebook API key is missing."] = "Facebook API钥匙失踪的。";
+$a->strings["Facebook Connect"] = "Facebook联络";
+$a->strings["Install Facebook connector for this account."] = "安装Facebook连接器为这个账户。";
+$a->strings["Remove Facebook connector"] = "删除Facebook连接器";
+$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "复认证[这是必要的每当您Facebook密码变化了]";
+$a->strings["Post to Facebook by default"] = "默认地放在Facebook";
+$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
+$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
+$a->strings["Link all your Facebook friends and conversations on this website"] = "连接您所有的Facebook朋友们和交流在这个网站";
+$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 ";
+$a->strings["On this website, your Facebook friend stream is only visible to you."] = "在这个网站,您Facebook朋友溪流是只您可见的。";
+$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "下面的设置决定您在这个网站Facebook简介墙的隐私。";
+$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "在这个网站您Facebook简介墙交流是只您可见的。";
+$a->strings["Do not import your Facebook profile wall conversations"] = "别进口您Facebook简介墙交流";
+$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。";
+$a->strings["Comma separated applications to ignore"] = "逗号分开的应用要不理";
+$a->strings["Problems with Facebook Real-Time Updates"] = "";
+$a->strings["Facebook Connector Settings"] = "Facebook连接器设置";
+$a->strings["Facebook API Key"] = "";
+$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
+$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
+$a->strings["The given API Key seems to work correctly."] = "";
+$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
+$a->strings["App-ID / API-Key"] = "";
+$a->strings["Application secret"] = "";
+$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
+$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
+$a->strings["Real-Time Updates"] = "";
+$a->strings["Real-Time Updates are activated."] = "";
+$a->strings["Deactivate Real-Time Updates"] = "";
+$a->strings["Real-Time Updates not activated."] = "";
+$a->strings["Activate Real-Time Updates"] = "";
+$a->strings["The new values have been saved."] = "";
+$a->strings["Post to Facebook"] = "放在Facebook";
+$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "发送到Facebook取消由于多网络准许矛盾。";
+$a->strings["View on Friendica"] = "";
+$a->strings["Facebook post failed. Queued for retry."] = "Facebook发送失败了。排队着待再试。";
+$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
+$a->strings["Facebook connection became invalid"] = "";
+$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
+$a->strings["StatusNet AutoFollow settings updated."] = "";
+$a->strings["StatusNet AutoFollow Settings"] = "";
+$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
+$a->strings["Lifetime of the cache (in hours)"] = "";
+$a->strings["Cache Statistics"] = "";
+$a->strings["Number of items"] = "";
+$a->strings["Size of the cache"] = "";
+$a->strings["Delete the whole cache"] = "";
+$a->strings["Facebook Post disabled"] = "";
+$a->strings["Facebook Post"] = "";
+$a->strings["Install Facebook Post connector for this account."] = "";
+$a->strings["Remove Facebook Post connector"] = "";
+$a->strings["Facebook Post Settings"] = "";
+$a->strings["%d person likes this"] = array(
+       0 => "%d人喜欢这个",
+);
+$a->strings["%d person doesn't like this"] = array(
+       0 => "%d人不喜欢这个",
+);
+$a->strings["Get added to this list!"] = "";
+$a->strings["Generate new key"] = "造成新钥匙";
+$a->strings["Widgets key"] = "小窗口钥匙";
+$a->strings["Widgets available"] = "可用的小窗口";
+$a->strings["Connect on Friendica!"] = "";
+$a->strings["bitchslap"] = "";
+$a->strings["bitchslapped"] = "";
+$a->strings["shag"] = "";
+$a->strings["shagged"] = "";
+$a->strings["do something obscenely biological to"] = "";
+$a->strings["did something obscenely biological to"] = "";
+$a->strings["point out the poke feature to"] = "";
+$a->strings["pointed out the poke feature to"] = "";
+$a->strings["declare undying love for"] = "";
+$a->strings["declared undying love for"] = "";
+$a->strings["patent"] = "";
+$a->strings["patented"] = "";
+$a->strings["stroke beard"] = "";
+$a->strings["stroked their beard at"] = "";
+$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
+$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
+$a->strings["hug"] = "";
+$a->strings["hugged"] = "";
+$a->strings["kiss"] = "";
+$a->strings["kissed"] = "";
+$a->strings["raise eyebrows at"] = "";
+$a->strings["raised their eyebrows at"] = "";
+$a->strings["insult"] = "";
+$a->strings["insulted"] = "";
+$a->strings["praise"] = "";
+$a->strings["praised"] = "";
+$a->strings["be dubious of"] = "";
+$a->strings["was dubious of"] = "";
+$a->strings["eat"] = "";
+$a->strings["ate"] = "";
+$a->strings["giggle and fawn at"] = "";
+$a->strings["giggled and fawned at"] = "";
+$a->strings["doubt"] = "";
+$a->strings["doubted"] = "";
+$a->strings["glare"] = "";
+$a->strings["glared at"] = "";
+$a->strings["YourLS Settings"] = "";
+$a->strings["URL: http://"] = "";
+$a->strings["Username:"] = "";
+$a->strings["Password:"] = "";
+$a->strings["Use SSL "] = "";
+$a->strings["yourls Settings saved."] = "";
+$a->strings["Post to LiveJournal"] = "";
+$a->strings["LiveJournal Post Settings"] = "";
+$a->strings["Enable LiveJournal Post Plugin"] = "";
+$a->strings["LiveJournal username"] = "";
+$a->strings["LiveJournal password"] = "";
+$a->strings["Post to LiveJournal by default"] = "";
+$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
+$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
+$a->strings["Enable Content filter"] = "";
+$a->strings["Comma separated list of keywords to hide"] = "";
+$a->strings["Use /expression/ to provide regular expressions"] = "";
+$a->strings["NSFW Settings saved."] = "NSFW设置保持了。";
+$a->strings["%s - Click to open/close"] = "%s - 点击为打开/关闭";
+$a->strings["Forums"] = "";
+$a->strings["Forums:"] = "";
+$a->strings["Page settings updated."] = "";
+$a->strings["Page Settings"] = "";
+$a->strings["How many forums to display on sidebar without paging"] = "";
+$a->strings["Randomise Page/Forum list"] = "";
+$a->strings["Show pages/forums on profile page"] = "";
+$a->strings["Planets Settings"] = "";
+$a->strings["Enable Planets Plugin"] = "";
+$a->strings["Login"] = "登录";
+$a->strings["OpenID"] = "OpenID";
+$a->strings["Latest users"] = "";
+$a->strings["Most active users"] = "最积极用户";
+$a->strings["Latest photos"] = "";
+$a->strings["Latest likes"] = "";
+$a->strings["event"] = "项目";
+$a->strings["No access"] = "";
+$a->strings["Could not open component for editing"] = "";
+$a->strings["Go back to the calendar"] = "";
+$a->strings["Event data"] = "";
+$a->strings["Calendar"] = "";
+$a->strings["Special color"] = "";
+$a->strings["Subject"] = "";
+$a->strings["Starts"] = "";
+$a->strings["Ends"] = "";
+$a->strings["Description"] = "";
+$a->strings["Recurrence"] = "";
+$a->strings["Frequency"] = "";
+$a->strings["Daily"] = "每日";
+$a->strings["Weekly"] = "每周";
+$a->strings["Monthly"] = "每月";
+$a->strings["Yearly"] = "";
+$a->strings["days"] = "天";
+$a->strings["weeks"] = "星期";
+$a->strings["months"] = "月";
+$a->strings["years"] = "年";
+$a->strings["Interval"] = "";
+$a->strings["All %select% %time%"] = "";
+$a->strings["Days"] = "";
+$a->strings["Sunday"] = "星期天";
+$a->strings["Monday"] = "星期一";
+$a->strings["Tuesday"] = "星期二";
+$a->strings["Wednesday"] = "星期三";
+$a->strings["Thursday"] = "星期四";
+$a->strings["Friday"] = "星期五";
+$a->strings["Saturday"] = "星期六";
+$a->strings["First day of week:"] = "";
+$a->strings["Day of month"] = "";
+$a->strings["#num#th of each month"] = "";
+$a->strings["#num#th-last of each month"] = "";
+$a->strings["#num#th #wkday# of each month"] = "";
+$a->strings["#num#th-last #wkday# of each month"] = "";
+$a->strings["Month"] = "";
+$a->strings["#num#th of the given month"] = "";
+$a->strings["#num#th-last of the given month"] = "";
+$a->strings["#num#th #wkday# of the given month"] = "";
+$a->strings["#num#th-last #wkday# of the given month"] = "";
+$a->strings["Repeat until"] = "";
+$a->strings["Infinite"] = "";
+$a->strings["Until the following date"] = "";
+$a->strings["Number of times"] = "";
+$a->strings["Exceptions"] = "";
+$a->strings["none"] = "";
+$a->strings["Notification"] = "";
+$a->strings["Notify by"] = "";
+$a->strings["E-Mail"] = "";
+$a->strings["On Friendica / Display"] = "";
+$a->strings["Time"] = "";
+$a->strings["Hours"] = "";
+$a->strings["Minutes"] = "";
+$a->strings["Seconds"] = "";
+$a->strings["Weeks"] = "";
+$a->strings["before the"] = "";
+$a->strings["start of the event"] = "";
+$a->strings["end of the event"] = "";
+$a->strings["Add a notification"] = "";
+$a->strings["The event #name# will start at #date"] = "";
+$a->strings["#name# is about to begin."] = "";
+$a->strings["Saved"] = "";
+$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
+$a->strings["German Time Format (dd.mm.YYYY)"] = "";
+$a->strings["Private Events"] = "";
+$a->strings["Private Addressbooks"] = "";
+$a->strings["Friendica-Native events"] = "";
+$a->strings["Friendica-Contacts"] = "";
+$a->strings["Your Friendica-Contacts"] = "";
+$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
+$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
+$a->strings["The ICS-File has been imported."] = "";
+$a->strings["No file was uploaded."] = "";
+$a->strings["Import a ICS-file"] = "";
+$a->strings["ICS-File"] = "";
+$a->strings["Overwrite all #num# existing events"] = "";
+$a->strings["New event"] = "";
+$a->strings["Today"] = "";
+$a->strings["Day"] = "";
+$a->strings["Week"] = "";
+$a->strings["Reload"] = "";
+$a->strings["Date"] = "";
+$a->strings["Error"] = "";
+$a->strings["The calendar has been updated."] = "";
+$a->strings["The new calendar has been created."] = "";
+$a->strings["The calendar has been deleted."] = "";
+$a->strings["Calendar Settings"] = "";
+$a->strings["Date format"] = "";
+$a->strings["Time zone"] = "";
+$a->strings["Calendars"] = "";
+$a->strings["Create a new calendar"] = "";
+$a->strings["Limitations"] = "";
+$a->strings["Warning"] = "";
+$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
+$a->strings["Synchronizing this calendar with the iPhone"] = "";
+$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
+$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
+$a->strings["Extended calendar with CalDAV-support"] = "";
+$a->strings["noreply"] = "noreply";
+$a->strings["Notification: "] = "";
+$a->strings["The database tables have been installed."] = "";
+$a->strings["An error occurred during the installation."] = "";
+$a->strings["The database tables have been updated."] = "";
+$a->strings["An error occurred during the update."] = "";
+$a->strings["No system-wide settings yet."] = "";
+$a->strings["Database status"] = "";
+$a->strings["Installed"] = "";
+$a->strings["Upgrade needed"] = "";
+$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
+$a->strings["Upgrade"] = "";
+$a->strings["Not installed"] = "";
+$a->strings["Install"] = "";
+$a->strings["Unknown"] = "";
+$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
+$a->strings["Troubleshooting"] = "";
+$a->strings["Manual creation of the database tables:"] = "";
+$a->strings["Show SQL-statements"] = "";
+$a->strings["Private Calendar"] = "";
+$a->strings["Friendica Events: Mine"] = "";
+$a->strings["Friendica Events: Contacts"] = "";
+$a->strings["Private Addresses"] = "";
+$a->strings["Friendica Contacts"] = "";
+$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
+$a->strings["Template URL (with {category})"] = "";
+$a->strings["OAuth end-point"] = "";
+$a->strings["Api"] = "";
+$a->strings["Member since:"] = "";
+$a->strings["Three Dimensional Tic-Tac-Toe"] = "三维井字棋";
+$a->strings["3D Tic-Tac-Toe"] = "三维井字棋";
+$a->strings["New game"] = "新游戏";
+$a->strings["New game with handicap"] = "新游戏不利条件 ";
+$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "三维井字棋跟传统的一样,除了完同时在多水平。";
+$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。";
+$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。";
+$a->strings["You go first..."] = "您先下...";
+$a->strings["I'm going first this time..."] = "这次我先下...";
+$a->strings["You won!"] = "您赢了!";
+$a->strings["\"Cat\" game!"] = "「猫子」游戏!";
+$a->strings["I won!"] = "我赢了!";
+$a->strings["Randplace Settings"] = "随意下设置";
+$a->strings["Enable Randplace Plugin"] = "使随意下插件能用";
+$a->strings["Post to Dreamwidth"] = "";
+$a->strings["Dreamwidth Post Settings"] = "";
+$a->strings["Enable dreamwidth Post Plugin"] = "";
+$a->strings["dreamwidth username"] = "";
+$a->strings["dreamwidth password"] = "";
+$a->strings["Post to dreamwidth by default"] = "";
+$a->strings["Remote Permissions Settings"] = "";
+$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
+$a->strings["Remote Permissions settings updated."] = "";
+$a->strings["Visible to"] = "";
+$a->strings["may only be a partial list"] = "";
+$a->strings["Global"] = "";
+$a->strings["The posts of every user on this server show the post recipients"] = "";
+$a->strings["Individual"] = "";
+$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
+$a->strings["Startpage Settings"] = "";
+$a->strings["Home page to load after login  - leave blank for profile wall"] = "";
+$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
+$a->strings["Geonames settings updated."] = "";
+$a->strings["Geonames Settings"] = "";
+$a->strings["Enable Geonames Plugin"] = "";
+$a->strings["Your account on %s will expire in a few days."] = "";
+$a->strings["Your Friendica account is about to expire."] = "";
+$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
+$a->strings["Upload a file"] = "上传文件";
+$a->strings["Drop files here to upload"] = "在这儿放文件为上传";
+$a->strings["Failed"] = "失败";
+$a->strings["No files were uploaded."] = "没有文件上传。";
+$a->strings["Uploaded file is empty"] = "上传的文件空的";
+$a->strings["File has an invalid extension, it should be one of "] = "文件扩展名无效的,应该是这些一个:";
+$a->strings["Upload was cancelled, or server error encountered"] = "上传注销了,或相遇服务器错误";
+$a->strings["show/hide"] = "";
+$a->strings["No forum subscriptions"] = "";
+$a->strings["Forumlist settings updated."] = "";
+$a->strings["Forumlist Settings"] = "";
+$a->strings["Randomise forum list"] = "";
+$a->strings["Show forums on profile page"] = "";
+$a->strings["Show forums on network page"] = "";
+$a->strings["Impressum"] = "Impressum(法定的出版信息)";
+$a->strings["Site Owner"] = "网站主";
+$a->strings["Email Address"] = "电子邮件地址";
+$a->strings["Postal Address"] = "邮政邮件地址";
+$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Impressum插件必须被设置!<br />请加至少<tt>owner</tt>变量在您的设置文件。关于别的变量请指插件的README文件。";
+$a->strings["The page operators name."] = "";
+$a->strings["Site Owners Profile"] = "网站主的简介";
+$a->strings["Profile address of the operator."] = "";
+$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
+$a->strings["Notes"] = "便条";
+$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
+$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
+$a->strings["Footer note"] = "";
+$a->strings["Text for the footer. You can use BBCode here."] = "";
+$a->strings["Report Bug"] = "报案程序错误";
+$a->strings["No Timeline settings updated."] = "";
+$a->strings["No Timeline Settings"] = "";
+$a->strings["Disable Archive selector on profile wall"] = "";
+$a->strings["\"Blockem\" Settings"] = "";
+$a->strings["Comma separated profile URLS to block"] = "";
+$a->strings["BLOCKEM Settings saved."] = "";
+$a->strings["Blocked %s - Click to open/close"] = "";
+$a->strings["Unblock Author"] = "";
+$a->strings["Block Author"] = "";
+$a->strings["blockem settings updated"] = "";
+$a->strings[":-)"] = "";
+$a->strings[":-("] = "";
+$a->strings["lol"] = "";
+$a->strings["Quick Comment Settings"] = "";
+$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
+$a->strings["Enter quick comments, one per line"] = "";
+$a->strings["Quick Comment settings saved."] = "";
+$a->strings["Tile Server URL"] = "";
+$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
+$a->strings["Default zoom"] = "";
+$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
+$a->strings["Editplain settings updated."] = "";
+$a->strings["Group Text"] = "";
+$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
+$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
+$a->strings["generic profile image"] = "";
+$a->strings["random geometric pattern"] = "";
+$a->strings["monster face"] = "";
+$a->strings["computer generated face"] = "";
+$a->strings["retro arcade style face"] = "";
+$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
+$a->strings["This addon is not functional on your server."] = "";
+$a->strings["Information"] = "";
+$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
+$a->strings["Default avatar image"] = "";
+$a->strings["Select default avatar image if none was found. See README"] = "";
+$a->strings["Libravatar settings updated."] = "";
+$a->strings["Post to libertree"] = "";
+$a->strings["libertree Post Settings"] = "";
+$a->strings["Enable Libertree Post Plugin"] = "";
+$a->strings["Libertree API token"] = "";
+$a->strings["Libertree site URL"] = "";
+$a->strings["Post to Libertree by default"] = "";
+$a->strings["Altpager settings updated."] = "";
+$a->strings["Alternate Pagination Setting"] = "";
+$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
+$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
+$a->strings["Use the MathJax renderer"] = "";
+$a->strings["MathJax Base URL"] = "";
+$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
+$a->strings["Editplain Settings"] = "";
+$a->strings["Disable richtext status editor"] = "";
+$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
+$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
+$a->strings["Rating of images"] = "";
+$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
+$a->strings["Gravatar settings updated."] = "";
+$a->strings["Your Friendica test account is about to expire."] = "";
+$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
+$a->strings["\"pageheader\" Settings"] = "";
+$a->strings["pageheader Settings saved."] = "";
+$a->strings["Post to Insanejournal"] = "";
+$a->strings["InsaneJournal Post Settings"] = "";
+$a->strings["Enable InsaneJournal Post Plugin"] = "";
+$a->strings["InsaneJournal username"] = "";
+$a->strings["InsaneJournal password"] = "";
+$a->strings["Post to InsaneJournal by default"] = "";
+$a->strings["Jappix Mini addon settings"] = "";
+$a->strings["Activate addon"] = "";
+$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
+$a->strings["Jabber username"] = "";
+$a->strings["Jabber server"] = "";
+$a->strings["Jabber BOSH host"] = "";
+$a->strings["Jabber password"] = "";
+$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
+$a->strings["Friendica password"] = "";
+$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
+$a->strings["Subscribe to Friendica contacts automatically"] = "";
+$a->strings["Purge internal list of jabber addresses of contacts"] = "";
+$a->strings["Add contact"] = "";
+$a->strings["View Source"] = "";
+$a->strings["Post to StatusNet"] = "发送到StatusNet";
+$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "请联系您的网站行政人员。<br />提供的API URL无效。";
+$a->strings["We could not contact the StatusNet API with the Path you entered."] = "我们不能联系StatusNet API在您输入的路径。";
+$a->strings["StatusNet settings updated."] = "StatusNet设置更新了。";
+$a->strings["StatusNet Posting Settings"] = "StatusNet发送设置";
+$a->strings["Globally Available StatusNet OAuthKeys"] = "综合可用的StatusNet OAuthKeys";
+$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。";
+$a->strings["Provide your own OAuth Credentials"] = "提供您自己的OAuth证件";
+$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
+$a->strings["OAuth Consumer Key"] = "Oauth消费者钥匙";
+$a->strings["OAuth Consumer Secret"] = "Oauth消费者密码";
+$a->strings["Base API Path (remember the trailing /)"] = "基础API地址(注意最后的/)";
+$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。";
+$a->strings["Log in with StatusNet"] = "用StatusNet登记";
+$a->strings["Copy the security code from StatusNet here"] = "复制安全密码从StatusNet这儿";
+$a->strings["Cancel Connection Process"] = "注销连接过程 ";
+$a->strings["Current StatusNet API is"] = "现在StatusNet API是";
+$a->strings["Cancel StatusNet Connection"] = "注销StatusNet连接";
+$a->strings["Currently connected to: "] = "现在连接到:";
+$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。";
+$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
+$a->strings["Allow posting to StatusNet"] = "许放在StatusNet";
+$a->strings["Send public postings to StatusNet by default"] = "默认发送公开文章在StatusNet";
+$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
+$a->strings["Clear OAuth configuration"] = "清理出OAuth设置";
+$a->strings["API URL"] = "API URL";
+$a->strings["Infinite Improbability Drive"] = "";
+$a->strings["Post to Tumblr"] = "发送到Tumblr";
+$a->strings["Tumblr Post Settings"] = "Tumblr发送设置";
+$a->strings["Enable Tumblr Post Plugin"] = "使Tumblr发送插件能够";
+$a->strings["Tumblr login"] = "Tumblr登记名";
+$a->strings["Tumblr password"] = "Tumblr密码";
+$a->strings["Post to Tumblr by default"] = "默认地给Tumblr发送";
+$a->strings["Numfriends settings updated."] = "";
+$a->strings["Numfriends Settings"] = "";
+$a->strings["How many contacts to display on profile sidebar"] = "";
+$a->strings["Gnot settings updated."] = "";
+$a->strings["Gnot Settings"] = "";
+$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
+$a->strings["Enable this plugin/addon?"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
+$a->strings["Post to Wordpress"] = "发送到Wordpress";
+$a->strings["WordPress Post Settings"] = "Wordpress发送设置";
+$a->strings["Enable WordPress Post Plugin"] = "使Wordpress发送插件可用";
+$a->strings["WordPress username"] = "Wordpress用户名";
+$a->strings["WordPress password"] = "Wordpress密码";
+$a->strings["WordPress API URL"] = "WordPress API URL";
+$a->strings["Post to WordPress by default"] = "默认地发送到Wordpress";
+$a->strings["Provide a backlink to the Friendica post"] = "";
+$a->strings["Post from Friendica"] = "文章从Friendica";
+$a->strings["Read the original post and comment stream on Friendica"] = "";
+$a->strings["\"Show more\" Settings"] = "";
+$a->strings["Enable Show More"] = "";
+$a->strings["Cutting posts after how much characters"] = "";
+$a->strings["Show More Settings saved."] = "";
+$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "这个网站用<a href='http://www.piwik.org'>Piwik</a>分析工具追踪 。";
+$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "如果您不想您访问这样记录您<a href='%s'>可以用一个cookie防Piwik追踪未来的访问</a>(选择性退出)。";
+$a->strings["Piwik Base URL"] = "Piwik基础URL";
+$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
+$a->strings["Site ID"] = "网站ID";
+$a->strings["Show opt-out cookie link?"] = " 显示选择性退出cookie按钮?";
+$a->strings["Asynchronous tracking"] = "";
+$a->strings["Post to Twitter"] = "发送到在Twitter";
+$a->strings["Twitter settings updated."] = "Twitter设置更新了。";
+$a->strings["Twitter Posting Settings"] = "Twitter发送设置";
+$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "找不到Twitter的消费钥匙双。请联系您的网页行政人员。";
+$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
+$a->strings["Log in with Twitter"] = "用Twitter登记";
+$a->strings["Copy the PIN from Twitter here"] = "复制Twitter密码这儿";
+$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。";
+$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
+$a->strings["Allow posting to Twitter"] = "允许发送到Twitter";
+$a->strings["Send public postings to Twitter by default"] = "默认地发送公开文章到Twitter";
+$a->strings["Send linked #-tags and @-names to Twitter"] = "";
+$a->strings["Consumer key"] = "钥匙(Consumer key)";
+$a->strings["Consumer secret"] = "密码(Consumer secret)";
+$a->strings["IRC Settings"] = "";
+$a->strings["Channel(s) to auto connect (comma separated)"] = "";
+$a->strings["Popular Channels (comma separated)"] = "";
+$a->strings["IRC settings saved."] = "";
+$a->strings["IRC Chatroom"] = "";
+$a->strings["Popular Channels"] = "";
+$a->strings["Fromapp settings updated."] = "";
+$a->strings["FromApp Settings"] = "";
+$a->strings["The application name you would like to show your posts originating from."] = "";
+$a->strings["Use this application name even if another application was used."] = "";
+$a->strings["Post to blogger"] = "";
+$a->strings["Blogger Post Settings"] = "";
+$a->strings["Enable Blogger Post Plugin"] = "";
+$a->strings["Blogger username"] = "";
+$a->strings["Blogger password"] = "";
+$a->strings["Blogger API URL"] = "";
+$a->strings["Post to Blogger by default"] = "";
+$a->strings["Post to Posterous"] = "发送往Posterous";
+$a->strings["Posterous Post Settings"] = "Posterous发送设置";
+$a->strings["Enable Posterous Post Plugin"] = "使Posterous发送插件可用的";
+$a->strings["Posterous login"] = "Posterous登记名";
+$a->strings["Posterous password"] = "Posterous密码";
+$a->strings["Posterous site ID"] = "";
+$a->strings["Posterous API token"] = "";
+$a->strings["Post to Posterous by default"] = "默认地发送往Posterous";
+$a->strings["Theme settings"] = "";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
+$a->strings["Set font-size for posts and comments"] = "";
+$a->strings["Set theme width"] = "";
+$a->strings["Color scheme"] = "";
+$a->strings["Your posts and conversations"] = "你的消息和交谈";
+$a->strings["Your profile page"] = "你的简介页";
+$a->strings["Your contacts"] = "";
+$a->strings["Your photos"] = "你的照片";
+$a->strings["Your events"] = "你的项目";
+$a->strings["Personal notes"] = "私人的便条";
+$a->strings["Your personal photos"] = "你私人的照片";
+$a->strings["Community Pages"] = "";
+$a->strings["Community Profiles"] = "";
+$a->strings["Last users"] = "上次用户";
+$a->strings["Last likes"] = "上次喜欢";
+$a->strings["Last photos"] = "上次照片";
+$a->strings["Find Friends"] = "";
+$a->strings["Local Directory"] = "";
+$a->strings["Similar Interests"] = "相似兴趣";
+$a->strings["Invite Friends"] = "邀请朋友们";
+$a->strings["Earth Layers"] = "";
+$a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Set longitude (X) for Earth Layers"] = "";
+$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "";
+$a->strings["Last Tweets"] = "";
+$a->strings["Set twitter search term"] = "";
+$a->strings["don't show"] = "别著";
+$a->strings["show"] = "著";
+$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Set line-height for posts and comments"] = "";
+$a->strings["Set resolution for middle column"] = "";
+$a->strings["Set color scheme"] = "";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Last tweets"] = "";
+$a->strings["Alignment"] = "";
+$a->strings["Left"] = "";
+$a->strings["Center"] = "";
+$a->strings["Posts font size"] = "";
+$a->strings["Textareas font size"] = "";
+$a->strings["Set colour scheme"] = "";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "生日:";
+$a->strings["Age:"] = "年纪:";
+$a->strings["for %1\$d %2\$s"] = "";
+$a->strings["Tags:"] = "标签:";
+$a->strings["Religion:"] = "宗教:";
+$a->strings["Hobbies/Interests:"] = "爱好/兴趣";
+$a->strings["Contact information and Social Networks:"] = "熟人消息和社会化网络";
+$a->strings["Musical interests:"] = "音乐兴趣:";
+$a->strings["Books, literature:"] = "书,文学";
+$a->strings["Television:"] = "电视:";
+$a->strings["Film/dance/culture/entertainment:"] = "电影/跳舞/文化/娱乐:";
+$a->strings["Love/Romance:"] = "爱情/浪漫";
+$a->strings["Work/employment:"] = "工作";
+$a->strings["School/education:"] = "学院/教育";
+$a->strings["Unknown | Not categorised"] = "未知的 |无分类";
+$a->strings["Block immediately"] = "立即拦";
+$a->strings["Shady, spammer, self-marketer"] = "可疑,发垃圾者,自市场开发者";
+$a->strings["Known to me, but no opinion"] = "我认识,但没有意见";
+$a->strings["OK, probably harmless"] = "行,大概无恶意的";
+$a->strings["Reputable, has my trust"] = "可信的,有我的信任";
+$a->strings["Frequently"] = "时常";
+$a->strings["Hourly"] = "每小时";
+$a->strings["Twice daily"] = "每日两次";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Male"] = "男的";
+$a->strings["Female"] = "女的";
+$a->strings["Currently Male"] = "现在男的";
+$a->strings["Currently Female"] = "现在女的";
+$a->strings["Mostly Male"] = "主要男的";
+$a->strings["Mostly Female"] = "主要女的";
+$a->strings["Transgender"] = "跨性別";
+$a->strings["Intersex"] = "阴阳人";
+$a->strings["Transsexual"] = "”转基因“人";
+$a->strings["Hermaphrodite"] = "两性体";
+$a->strings["Neuter"] = "中性的";
+$a->strings["Non-specific"] = "不明确的";
+$a->strings["Other"] = "别的";
+$a->strings["Undecided"] = "未决";
+$a->strings["Males"] = "男人";
+$a->strings["Females"] = "女人";
+$a->strings["Gay"] = "男同性恋的";
+$a->strings["Lesbian"] = "女同性恋的";
+$a->strings["No Preference"] = "无偏爱";
+$a->strings["Bisexual"] = "双性恋的";
+$a->strings["Autosexual"] = "自性的";
+$a->strings["Abstinent"] = "有节制的";
+$a->strings["Virgin"] = "原始的";
+$a->strings["Deviant"] = "变态";
+$a->strings["Fetish"] = "恋物对象";
+$a->strings["Oodles"] = "多多";
+$a->strings["Nonsexual"] = "无性";
+$a->strings["Single"] = "单身";
+$a->strings["Lonely"] = "寂寞";
+$a->strings["Available"] = "单身的";
+$a->strings["Unavailable"] = "不可获得的";
+$a->strings["Has crush"] = "";
+$a->strings["Infatuated"] = "";
+$a->strings["Dating"] = "约会";
+$a->strings["Unfaithful"] = "外遇";
+$a->strings["Sex Addict"] = "性交因成瘾者";
+$a->strings["Friends"] = "朋友";
+$a->strings["Friends/Benefits"] = "朋友/益";
+$a->strings["Casual"] = "休闲";
+$a->strings["Engaged"] = "已订婚的";
+$a->strings["Married"] = "结婚";
+$a->strings["Imaginarily married"] = "";
+$a->strings["Partners"] = "伴侣";
+$a->strings["Cohabiting"] = "同居";
+$a->strings["Common law"] = "";
+$a->strings["Happy"] = "幸福";
+$a->strings["Not looking"] = "";
+$a->strings["Swinger"] = "交换性伴侣的";
+$a->strings["Betrayed"] = "被背叛";
+$a->strings["Separated"] = "分手";
+$a->strings["Unstable"] = "不稳";
+$a->strings["Divorced"] = "离婚";
+$a->strings["Imaginarily divorced"] = "";
+$a->strings["Widowed"] = "寡妇";
+$a->strings["Uncertain"] = "不确定";
+$a->strings["It's complicated"] = "";
+$a->strings["Don't care"] = "无所谓";
+$a->strings["Ask me"] = "问我";
+$a->strings["Starts:"] = "开始:";
+$a->strings["Finishes:"] = "结束:";
+$a->strings["(no subject)"] = "沒有题目";
+$a->strings[" on Last.fm"] = "";
+$a->strings["prev"] = "上个";
+$a->strings["first"] = "首先";
+$a->strings["last"] = "最后";
+$a->strings["next"] = "下个";
+$a->strings["newer"] = "";
+$a->strings["older"] = "";
+$a->strings["No contacts"] = "没有熟人";
+$a->strings["%d Contact"] = array(
+       0 => "%d熟人",
+);
+$a->strings["poke"] = "";
+$a->strings["poked"] = "";
+$a->strings["ping"] = "";
+$a->strings["pinged"] = "";
+$a->strings["prod"] = "";
+$a->strings["prodded"] = "";
+$a->strings["slap"] = "";
+$a->strings["slapped"] = "";
+$a->strings["finger"] = "";
+$a->strings["fingered"] = "";
+$a->strings["rebuff"] = "";
+$a->strings["rebuffed"] = "";
+$a->strings["happy"] = "";
+$a->strings["sad"] = "";
+$a->strings["mellow"] = "";
+$a->strings["tired"] = "";
+$a->strings["perky"] = "";
+$a->strings["angry"] = "";
+$a->strings["stupified"] = "";
+$a->strings["puzzled"] = "";
+$a->strings["interested"] = "";
+$a->strings["bitter"] = "";
+$a->strings["cheerful"] = "";
+$a->strings["alive"] = "";
+$a->strings["annoyed"] = "";
+$a->strings["anxious"] = "";
+$a->strings["cranky"] = "";
+$a->strings["disturbed"] = "";
+$a->strings["frustrated"] = "";
+$a->strings["motivated"] = "";
+$a->strings["relaxed"] = "";
+$a->strings["surprised"] = "";
+$a->strings["January"] = "一月";
+$a->strings["February"] = "二月";
+$a->strings["March"] = "三月";
+$a->strings["April"] = "四月";
+$a->strings["May"] = "五月";
+$a->strings["June"] = "六月";
+$a->strings["July"] = "七月";
+$a->strings["August"] = "八月";
+$a->strings["September"] = "九月";
+$a->strings["October"] = "十月";
+$a->strings["November"] = "十一月";
+$a->strings["December"] = "十二月";
+$a->strings["bytes"] = "字节";
+$a->strings["Click to open/close"] = "";
+$a->strings["default"] = "默认";
+$a->strings["Select an alternate language"] = "选择别的语言";
+$a->strings["activity"] = "";
+$a->strings["post"] = "";
+$a->strings["Item filed"] = "";
+$a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络";
+$a->strings["Attachments:"] = "附件:";
+$a->strings["view full size"] = "看全尺寸";
+$a->strings["Embedded content"] = "嵌入内容";
+$a->strings["Embedding disabled"] = "嵌入不能用";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = array(
+       0 => "",
+);
+$a->strings["Done. You can now login with your username and password"] = "";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "一个删除的组用这名被复兴。现有的项目权利<strong>可能</strong>还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。";
+$a->strings["Default privacy group for new contacts"] = "";
+$a->strings["Everybody"] = "每人";
+$a->strings["edit"] = "编辑";
+$a->strings["Edit group"] = "编辑组";
+$a->strings["Create a new group"] = "创造新组";
+$a->strings["Contacts not in any group"] = "";
+$a->strings["Logout"] = "注销";
+$a->strings["End this session"] = "结束这段时间";
+$a->strings["Status"] = "现状";
+$a->strings["Sign in"] = "登记";
+$a->strings["Home Page"] = "主页";
+$a->strings["Create an account"] = "注册";
+$a->strings["Help and documentation"] = "帮助证件";
+$a->strings["Apps"] = "应用程序";
+$a->strings["Addon applications, utilities, games"] = "可加的应用,设施,游戏";
+$a->strings["Search site content"] = "搜索网站内容";
+$a->strings["Conversations on this site"] = "这个网站的交谈";
+$a->strings["Directory"] = "名录";
+$a->strings["People directory"] = "人物名录";
+$a->strings["Conversations from your friends"] = "从你朋友们的交谈";
+$a->strings["Friend Requests"] = "友谊邀请";
+$a->strings["See all notifications"] = "看所有的通知";
+$a->strings["Mark all system notifications seen"] = "记号各系统通知看过的";
+$a->strings["Private mail"] = "私人的邮件";
+$a->strings["Inbox"] = "收件箱";
+$a->strings["Outbox"] = "发件箱";
+$a->strings["Manage"] = "管理";
+$a->strings["Manage other pages"] = "管理别的页";
+$a->strings["Profiles"] = "简介";
+$a->strings["Manage/edit profiles"] = "管理/修改简介";
+$a->strings["Manage/edit friends and contacts"] = "管理/编朋友们和熟人们";
+$a->strings["Site setup and configuration"] = "网站开办和配置";
+$a->strings["Nothing new here"] = "这里没有什么新的";
+$a->strings["Add New Contact"] = "增添新的熟人";
+$a->strings["Enter address or web location"] = "输入地址或网位置";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "比如:li@example.com, http://example.com/li";
+$a->strings["%d invitation available"] = array(
+       0 => "%d邀请可用的",
+);
+$a->strings["Find People"] = "找人物";
+$a->strings["Enter name or interest"] = "输入名字或兴趣";
+$a->strings["Connect/Follow"] = "连接/关注";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼";
+$a->strings["Random Profile"] = "";
+$a->strings["Networks"] = "网络";
+$a->strings["All Networks"] = "所有网络";
+$a->strings["Saved Folders"] = "";
+$a->strings["Everything"] = "";
+$a->strings["Categories"] = "";
+$a->strings["Logged out."] = "注销了";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+$a->strings["The error message was:"] = "";
+$a->strings["Miscellaneous"] = "形形色色";
+$a->strings["year"] = "年";
+$a->strings["month"] = "月";
+$a->strings["day"] = "日";
+$a->strings["never"] = "从未";
+$a->strings["less than a second ago"] = "一秒以内";
+$a->strings["week"] = "星期";
+$a->strings["hour"] = "小时";
+$a->strings["hours"] = "小时";
+$a->strings["minute"] = "分钟";
+$a->strings["minutes"] = "分钟";
+$a->strings["second"] = "秒";
+$a->strings["seconds"] = "秒";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s以前";
+$a->strings["%s's birthday"] = "";
+$a->strings["Happy Birthday %s"] = "";
+$a->strings["From: "] = "从:";
+$a->strings["Image/photo"] = "图像/照片";
+$a->strings["$1 wrote:"] = "$1写:";
+$a->strings["Encrypted content"] = "";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」";
+$a->strings["[no subject]"] = "[无题目]";
+$a->strings["Visible to everybody"] = "任何人可见的";
+$a->strings["Friendica Notification"] = "Friendica 通知";
+$a->strings["Thank You,"] = "谢谢,";
+$a->strings["%s Administrator"] = "%s管理员";
+$a->strings["%s <!item_type!>"] = "";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
+$a->strings["%1\$s sent you %2\$s."] = "";
+$a->strings["a private message"] = "一条私人的消息";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "清去%s为了看或回答你私人的消息";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s对你有兴趣的项目/ 交谈发表意见";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "清去%s为了看或回答交谈";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
+$a->strings["[Friendica:Notify] %s tagged you"] = "";
+$a->strings["%1\$s tagged you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
+$a->strings["%1\$s poked you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "";
+$a->strings["%1\$s tagged your post at %2\$s"] = "";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
+$a->strings["[Friendica:Notify] Introduction received"] = "";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
+$a->strings["You may visit their profile at %s"] = "你能看他的简介在%s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "请批准或拒绝介绍在%s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["Name:"] = "名字:";
+$a->strings["Photo:"] = "照片:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "请批准或拒绝建议在%s";
+$a->strings["Connect URL missing."] = "连接URL失踪的。";
+$a->strings["This site is not configured to allow communications with other networks."] = "这网站没配置允许跟别的网络交流.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "没有兼容协议或者摘要找到了.";
+$a->strings["The profile address specified does not provide adequate information."] = "输入的简介地址没有够消息。";
+$a->strings["An author or name was not found."] = "找不到作者或名。";
+$a->strings["No browser URL could be matched to this address."] = "这个地址没有符合什么游览器URL。";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
+$a->strings["Use mailto: in front of address to force email check."] = "";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "输入的简介地址属在这个网站使不可用的网络。";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "有限的简介。这人不会接受直达/私人通信从您。";
+$a->strings["Unable to retrieve contact information."] = "不能取回熟人消息。";
+$a->strings["following"] = "关注";
+$a->strings["A new person is sharing with you at "] = "一位新人给你分享在";
+$a->strings["You have a new follower at "] = "你有新的关注者在";
+$a->strings["Archives"] = "";
+$a->strings["An invitation is required."] = "邀请必要的。";
+$a->strings["Invitation could not be verified."] = "不能证实邀请。";
+$a->strings["Invalid OpenID url"] = "无效的OpenID url";
+$a->strings["Please enter the required information."] = "请输入必要的信息。";
+$a->strings["Please use a shorter name."] = "请用短一点名。";
+$a->strings["Name too short."] = "名字太短。";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "这看上去不是您的全姓名。";
+$a->strings["Your email domain is not among those allowed on this site."] = "这网站允许的域名中没有您的";
+$a->strings["Not a valid email address."] = "无效的邮件地址。";
+$a->strings["Cannot use that email."] = "不能用这个邮件地址。";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "您的昵称只能包括\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。";
+$a->strings["Nickname is already registered. Please choose another."] = "昵称已经报到。请选择新的。";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "要紧错误:产生安全钥匙失败了。";
+$a->strings["An error occurred during registration. Please try again."] = "报到出了问题。请再试。";
+$a->strings["An error occurred creating your default profile. Please try again."] = "造成默认简介出了问题。请再试。";
+$a->strings["Welcome "] = "欢迎";
+$a->strings["Please upload a profile photo."] = "请上传一张简介照片";
+$a->strings["Welcome back "] = "欢迎归来";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
+$a->strings["stopped following"] = "结束关注了";
+$a->strings["Poke"] = "";
+$a->strings["View Status"] = "";
+$a->strings["View Profile"] = "";
+$a->strings["View Photos"] = "";
+$a->strings["Network Posts"] = "";
+$a->strings["Edit Contact"] = "";
+$a->strings["Send PM"] = "法私人的新闻";
+$a->strings["%1\$s poked %2\$s"] = "";
+$a->strings["post/item"] = "";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
+$a->strings["Categories:"] = "";
+$a->strings["Filed under:"] = "";
+$a->strings["remove"] = "";
+$a->strings["Delete Selected Items"] = "删除选的项目";
+$a->strings["Follow Thread"] = "";
+$a->strings["%s likes this."] = "%s喜欢这个.";
+$a->strings["%s doesn't like this."] = "%s没有喜欢这个.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this."] = "<span  %1\$s>%2\$d人</span>喜欢这个。";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = "<span  %1\$s>%2\$d人</span>不喜欢这个。";
+$a->strings["and"] = "和";
+$a->strings[", and %d other people"] = ",和%d别人";
+$a->strings["%s like this."] = "%s喜欢这个";
+$a->strings["%s don't like this."] = "%s不喜欢这个";
+$a->strings["Visible to <strong>everybody</strong>"] = "<strong>大家</strong>可见的";
+$a->strings["Please enter a video link/URL:"] = "请输入视频连接/URL:";
+$a->strings["Please enter an audio link/URL:"] = "请输入音响连接/URL:";
+$a->strings["Tag term:"] = "标签:";
+$a->strings["Where are you right now?"] = "你在哪里?";
+$a->strings["Delete item(s)?"] = "";
+$a->strings["permissions"] = "";
+$a->strings["Click here to upgrade."] = "";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "";
+$a->strings["This action is not available under your subscription plan."] = "";
+$a->strings["Delete this item?"] = "删除这个项目?";
+$a->strings["show fewer"] = "显示更小";
+$a->strings["Update %s failed. See error logs."] = "";
+$a->strings["Update Error at %s"] = "";
+$a->strings["Create a New Account"] = "创造新的账户";
+$a->strings["Nickname or Email address: "] = "绰号或电子邮件地址: ";
+$a->strings["Password: "] = "密码: ";
+$a->strings["Remember me"] = "";
+$a->strings["Or login using OpenID: "] = "";
+$a->strings["Forgot your password?"] = "忘记你的密码吗?";
+$a->strings["Requested account is not available."] = "";
+$a->strings["Edit profile"] = "修改简介";
+$a->strings["Message"] = "";
+$a->strings["g A l F d"] = "g A l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[今天]";
+$a->strings["Birthday Reminders"] = "提醒生日";
+$a->strings["Birthdays this week:"] = "这周的生日:";
+$a->strings["[No description]"] = "[无描述]";
+$a->strings["Event Reminders"] = "事件提醒";
+$a->strings["Events this week:"] = "这周的事件:";
+$a->strings["Status Messages and Posts"] = "";
+$a->strings["Profile Details"] = "";
+$a->strings["Events and Calendar"] = "";
+$a->strings["Only You Can See This"] = "";
+$a->strings["toggle mobile"] = "";
+$a->strings["Bg settings updated."] = "";
+$a->strings["Bg Settings"] = "";
+$a->strings["Post to Drupal"] = "";
+$a->strings["Drupal Post Settings"] = "";
+$a->strings["Enable Drupal Post Plugin"] = "";
+$a->strings["Drupal username"] = "";
+$a->strings["Drupal password"] = "";
+$a->strings["Post Type - article,page,or blog"] = "";
+$a->strings["Drupal site URL"] = "";
+$a->strings["Drupal site uses clean URLS"] = "";
+$a->strings["Post to Drupal by default"] = "";
+$a->strings["OEmbed settings updated"] = "OEmbed设置更新了";
+$a->strings["Use OEmbed for YouTube videos"] = "用OEmbed为YouTube视频";
+$a->strings["URL to embed:"] = "URL要嵌入:";
diff --git a/view/zh-cn/update_fail_eml.tpl b/view/zh-cn/update_fail_eml.tpl
new file mode 100644 (file)
index 0000000..f68a3de
--- /dev/null
@@ -0,0 +1,11 @@
+Hey, \r
+I'm $sitename.   \r
+The friendica developers released update $update recently, \r
+but when I tried to install it, something went terribly wrong.  \r
+This needs to be fixed soon and I can't do it alone. Please contact a \r
+friendica developer if you can not help me on your own. My database might be invalid. \r
+\r
+The error message is '$error'.   \r
+\r
+I'm sorry, \r
+your friendica server at $siteurl
\ No newline at end of file