Plugin Directory

Changeset 1782116


Ignore:
Timestamp:
12/06/2017 04:40:08 PM (8 years ago)
Author:
commentpress
Message:

release 3.9.8

Location:
commentpress-core/trunk
Files:
1 added
25 edited

Legend:

Unmodified
Added
Removed
  • commentpress-core/trunk/commentpress-core.php

    r1773352 r1782116  
    55Description: CommentPress allows readers to comment in the margins of a text. You can use it to annotate, gloss, workshop, debate and more!
    66Author: Institute for the Future of the Book
    7 Version: 3.9.7
     7Version: 3.9.8
    88Author URI: http://www.futureofthebook.org
    99Text Domain: commentpress-core
     
    1919
    2020// set version
    21 define( 'COMMENTPRESS_VERSION', '3.9.7' );
     21define( 'COMMENTPRESS_VERSION', '3.9.8' );
    2222
    2323// store reference to this file
  • commentpress-core/trunk/commentpress-core/assets/js/jquery.scrollTo.js

    r1695759 r1782116  
    1 /**
    2  * Copyright (c) 2007-2013 Ariel Flesler - aflesler<a>gmail<d>com | http://flesler.blogspot.com
    3  * Dual licensed under MIT and GPL.
     1/*!
     2 * jQuery.scrollTo
     3 * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler
     4 * Licensed under MIT
     5 * https://github.com/flesler/jquery.scrollTo
     6 * @projectDescription Lightweight, cross-browser and highly customizable animated scrolling with jQuery
    47 * @author Ariel Flesler
    5  * @version 1.4.6
     8 * @version 2.1.2
    69 */
    7 ;(function($){var h=$.scrollTo=function(a,b,c){$(window).scrollTo(a,b,c)};h.defaults={axis:'xy',duration:parseFloat($.fn.jquery)>=1.3?0:1,limit:true};h.window=function(a){return $(window)._scrollable()};$.fn._scrollable=function(){return this.map(function(){var a=this,isWin=!a.nodeName||$.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!isWin)return a;var b=(a.contentWindow||a).document||a.ownerDocument||a;return/webkit/i.test(navigator.userAgent)||b.compatMode=='BackCompat'?b.body:b.documentElement})};$.fn.scrollTo=function(e,f,g){if(typeof f=='object'){g=f;f=0}if(typeof g=='function')g={onAfter:g};if(e=='max')e=9e9;g=$.extend({},h.defaults,g);f=f||g.duration;g.queue=g.queue&&g.axis.length>1;if(g.queue)f/=2;g.offset=both(g.offset);g.over=both(g.over);return this._scrollable().each(function(){if(e==null)return;var d=this,$elem=$(d),targ=e,toff,attr={},win=$elem.is('html,body');switch(typeof targ){case'number':case'string':if(/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(targ)){targ=both(targ);break}targ=$(targ,this);if(!targ.length)return;case'object':if(targ.is||targ.style)toff=(targ=$(targ)).offset()}$.each(g.axis.split(''),function(i,a){var b=a=='x'?'Left':'Top',pos=b.toLowerCase(),key='scroll'+b,old=d[key],max=h.max(d,a);if(toff){attr[key]=toff[pos]+(win?0:old-$elem.offset()[pos]);if(g.margin){attr[key]-=parseInt(targ.css('margin'+b))||0;attr[key]-=parseInt(targ.css('border'+b+'Width'))||0}attr[key]+=g.offset[pos]||0;if(g.over[pos])attr[key]+=targ[a=='x'?'width':'height']()*g.over[pos]}else{var c=targ[pos];attr[key]=c.slice&&c.slice(-1)=='%'?parseFloat(c)/100*max:c}if(g.limit&&/^\d+$/.test(attr[key]))attr[key]=attr[key]<=0?0:Math.min(attr[key],max);if(!i&&g.queue){if(old!=attr[key])animate(g.onAfterFirst);delete attr[key]}});animate(g.onAfter);function animate(a){$elem.animate(attr,f,g.easing,a&&function(){a.call(this,targ,g)})}}).end()};h.max=function(a,b){var c=b=='x'?'Width':'Height',scroll='scroll'+c;if(!$(a).is('html,body'))return a[scroll]-$(a)[c.toLowerCase()]();var d='client'+c,html=a.ownerDocument.documentElement,body=a.ownerDocument.body;return Math.max(html[scroll],body[scroll])-Math.min(html[d],body[d])};function both(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
     10;(function(factory) {
     11    'use strict';
     12    if (typeof define === 'function' && define.amd) {
     13        // AMD
     14        define(['jquery'], factory);
     15    } else if (typeof module !== 'undefined' && module.exports) {
     16        // CommonJS
     17        module.exports = factory(require('jquery'));
     18    } else {
     19        // Global
     20        factory(jQuery);
     21    }
     22})(function($) {
     23    'use strict';
     24
     25    var $scrollTo = $.scrollTo = function(target, duration, settings) {
     26        return $(window).scrollTo(target, duration, settings);
     27    };
     28
     29    $scrollTo.defaults = {
     30        axis:'xy',
     31        duration: 0,
     32        limit:true
     33    };
     34
     35    function isWin(elem) {
     36        return !elem.nodeName ||
     37            $.inArray(elem.nodeName.toLowerCase(), ['iframe','#document','html','body']) !== -1;
     38    }
     39
     40    $.fn.scrollTo = function(target, duration, settings) {
     41        if (typeof duration === 'object') {
     42            settings = duration;
     43            duration = 0;
     44        }
     45        if (typeof settings === 'function') {
     46            settings = { onAfter:settings };
     47        }
     48        if (target === 'max') {
     49            target = 9e9;
     50        }
     51
     52        settings = $.extend({}, $scrollTo.defaults, settings);
     53        // Speed is still recognized for backwards compatibility
     54        duration = duration || settings.duration;
     55        // Make sure the settings are given right
     56        var queue = settings.queue && settings.axis.length > 1;
     57        if (queue) {
     58            // Let's keep the overall duration
     59            duration /= 2;
     60        }
     61        settings.offset = both(settings.offset);
     62        settings.over = both(settings.over);
     63
     64        return this.each(function() {
     65            // Null target yields nothing, just like jQuery does
     66            if (target === null) return;
     67
     68            var win = isWin(this),
     69                elem = win ? this.contentWindow || window : this,
     70                $elem = $(elem),
     71                targ = target,
     72                attr = {},
     73                toff;
     74
     75            switch (typeof targ) {
     76                // A number will pass the regex
     77                case 'number':
     78                case 'string':
     79                    if (/^([+-]=?)?\d+(\.\d+)?(px|%)?$/.test(targ)) {
     80                        targ = both(targ);
     81                        // We are done
     82                        break;
     83                    }
     84                    // Relative/Absolute selector
     85                    targ = win ? $(targ) : $(targ, elem);
     86                    /* falls through */
     87                case 'object':
     88                    if (targ.length === 0) return;
     89                    // DOMElement / jQuery
     90                    if (targ.is || targ.style) {
     91                        // Get the real position of the target
     92                        toff = (targ = $(targ)).offset();
     93                    }
     94            }
     95
     96            var offset = $.isFunction(settings.offset) && settings.offset(elem, targ) || settings.offset;
     97
     98            $.each(settings.axis.split(''), function(i, axis) {
     99                var Pos = axis === 'x' ? 'Left' : 'Top',
     100                    pos = Pos.toLowerCase(),
     101                    key = 'scroll' + Pos,
     102                    prev = $elem[key](),
     103                    max = $scrollTo.max(elem, axis);
     104
     105                if (toff) {// jQuery / DOMElement
     106                    attr[key] = toff[pos] + (win ? 0 : prev - $elem.offset()[pos]);
     107
     108                    // If it's a dom element, reduce the margin
     109                    if (settings.margin) {
     110                        attr[key] -= parseInt(targ.css('margin'+Pos), 10) || 0;
     111                        attr[key] -= parseInt(targ.css('border'+Pos+'Width'), 10) || 0;
     112                    }
     113
     114                    attr[key] += offset[pos] || 0;
     115
     116                    if (settings.over[pos]) {
     117                        // Scroll to a fraction of its width/height
     118                        attr[key] += targ[axis === 'x'?'width':'height']() * settings.over[pos];
     119                    }
     120                } else {
     121                    var val = targ[pos];
     122                    // Handle percentage values
     123                    attr[key] = val.slice && val.slice(-1) === '%' ?
     124                        parseFloat(val) / 100 * max
     125                        : val;
     126                }
     127
     128                // Number or 'number'
     129                if (settings.limit && /^\d+$/.test(attr[key])) {
     130                    // Check the limits
     131                    attr[key] = attr[key] <= 0 ? 0 : Math.min(attr[key], max);
     132                }
     133
     134                // Don't waste time animating, if there's no need.
     135                if (!i && settings.axis.length > 1) {
     136                    if (prev === attr[key]) {
     137                        // No animation needed
     138                        attr = {};
     139                    } else if (queue) {
     140                        // Intermediate animation
     141                        animate(settings.onAfterFirst);
     142                        // Don't animate this axis again in the next iteration.
     143                        attr = {};
     144                    }
     145                }
     146            });
     147
     148            animate(settings.onAfter);
     149
     150            function animate(callback) {
     151                var opts = $.extend({}, settings, {
     152                    // The queue setting conflicts with animate()
     153                    // Force it to always be true
     154                    queue: true,
     155                    duration: duration,
     156                    complete: callback && function() {
     157                        callback.call(elem, targ, settings);
     158                    }
     159                });
     160                $elem.animate(attr, opts);
     161            }
     162        });
     163    };
     164
     165    // Max scrolling position, works on quirks mode
     166    // It only fails (not too badly) on IE, quirks mode.
     167    $scrollTo.max = function(elem, axis) {
     168        var Dim = axis === 'x' ? 'Width' : 'Height',
     169            scroll = 'scroll'+Dim;
     170
     171        if (!isWin(elem))
     172            return elem[scroll] - $(elem)[Dim.toLowerCase()]();
     173
     174        var size = 'client' + Dim,
     175            doc = elem.ownerDocument || elem.document,
     176            html = doc.documentElement,
     177            body = doc.body;
     178
     179        return Math.max(html[scroll], body[scroll]) - Math.min(html[size], body[size]);
     180    };
     181
     182    function both(val) {
     183        return $.isFunction(val) || $.isPlainObject(val) ? val : { top:val, left:val };
     184    }
     185
     186    // Add special hooks so that window scroll properties can be animated
     187    $.Tween.propHooks.scrollLeft =
     188    $.Tween.propHooks.scrollTop = {
     189        get: function(t) {
     190            return $(t.elem)[t.prop]();
     191        },
     192        set: function(t) {
     193            var curr = this.get(t);
     194            // If interrupt is true and user scrolled, stop animating
     195            if (t.options.interrupt && t._last && t._last !== curr) {
     196                return $(t.elem).stop();
     197            }
     198            var next = Math.round(t.now);
     199            // Don't waste CPU
     200            // Browsers don't render floating point scroll
     201            if (curr !== next) {
     202                $(t.elem)[t.prop](next);
     203                t._last = this.get(t);
     204            }
     205        }
     206    };
     207
     208    // AMD requirement
     209    return $scrollTo;
     210});
  • commentpress-core/trunk/commentpress-core/class_commentpress.php

    r1765923 r1782116  
    623623        global $post;
    624624
     625        // JetPack 2.7 or greater parses the content in the head to create
     626        // content summaries so prevent parsing unless this is the main content
     627        if ( is_admin() OR ! in_the_loop() OR ! is_main_query() ) {
     628            return $content;
     629        }
     630
    625631        // compat with Subscribe to Comments Reloaded
    626632        if( $this->is_subscribe_to_comments_reloaded_page() ) return $content;
     
    660666
    661667        }
    662 
    663         /*
    664          * The following fails with JetPack 2.7, which parses content in the head
    665          * to create content summaries. I now can't remember why I was being so
    666          * cautious about not parsing twice, but since JetPack is so useful and
    667          * common, I'm commenting this out until I get reports that something
    668          * odd is happening.
    669          */
    670 
    671         // only parse content once
    672         //remove_filter( 'the_content', array( $this, 'the_content' ), 20 );
    673668
    674669        // --<
     
    18631858    public function get_default_sidebar() {
    18641859
    1865         // set sensible default
    1866         $return = 'toc';
     1860        /**
     1861         * Set sensible default sidebar, but allow overrides.
     1862         *
     1863         * @since 3.9.8
     1864         *
     1865         * @param str The default sidebar before any contextual modifications.
     1866         * @return str The modified sidebar before any contextual modifications.
     1867         */
     1868        $return = apply_filters( 'commentpress_default_sidebar', 'activity' );
    18671869
    18681870        // is this a commentable page?
     
    19211923
    19221924                        }
    1923 
    19241925
    19251926                    }
  • commentpress-core/trunk/commentpress-core/class_commentpress_db.php

    r1765923 r1782116  
    635635            // we don't receive disabled post types in $_POST, so let's default
    636636            // to all post types being enabled
    637             $cp_post_types_enabled = $this->get_supported_post_types();
     637            $cp_post_types_enabled = array_keys( $this->get_supported_post_types() );
    638638
    639639            // default blog type
     
    650650
    651651                // exclude the selected post types
    652                 $disabled_types = array_diff( $this->get_supported_post_types(), $enabled_types );
     652                $disabled_types = array_diff( array_keys( $this->get_supported_post_types() ), $enabled_types );
    653653
    654654                // add option
     
    10391039
    10401040            // assume all post types are enabled
    1041             $cp_post_types_enabled = $this->get_supported_post_types();
     1041            $cp_post_types_enabled = array_keys( $this->get_supported_post_types() );
    10421042
    10431043            // get variables
     
    12361236
    12371237                // exclude the selected post types
    1238                 $disabled_types = array_diff( $this->get_supported_post_types(), $enabled_types );
     1238                $disabled_types = array_diff( array_keys( $this->get_supported_post_types() ), $enabled_types );
    12391239
    12401240                // save skipped post types
     
    26412641
    26422642        // get post types
    2643         $post_types = get_post_types( $args );
     2643        $post_types = get_post_types( $args, 'objects' );
    26442644
    26452645        // include only those which have an editor
    26462646        foreach ( $post_types AS $post_type ) {
    2647             if ( post_type_supports( $post_type, 'editor' ) ) {
    2648                 $supported_post_types[] = $post_type;
     2647            if ( post_type_supports( $post_type->name, 'editor' ) ) {
     2648                $supported_post_types[$post_type->name] = $post_type->label;
    26492649            }
    26502650        }
    26512651
    26522652        // built-in media descriptions are also supported
    2653         $supported_post_types[] = 'attachment';
     2653        $attachment = get_post_type_object( 'attachment' );
     2654        $supported_post_types[$attachment->name] = $attachment->label;
    26542655
    26552656        // --<
  • commentpress-core/trunk/commentpress-core/class_commentpress_display.php

    r1765923 r1782116  
    599599
    600600                        // add permalink
    601                         $html .= '<p class="post_activity_date">' . esc_html( get_the_time( __( 'l, F jS, Y', 'commentpress-core' ) ), $item->ID ) . '</p>' . "\n";
     601                        $html .= '<p class="post_activity_date">' . esc_html( get_the_time( __( 'l, F jS, Y', 'commentpress-core' ), $item->ID ) ) . '</p>' . "\n";
    602602
    603603                    }
     
    619619
    620620                    // add permalink
    621                     $html .= '<p class="post_activity_date">' . esc_html( get_the_time( __( 'l, F jS, Y', 'commentpress-core' ) ), $item->ID ) . '</p>';
     621                    $html .= '<p class="post_activity_date">' . esc_html( get_the_time( __( 'l, F jS, Y', 'commentpress-core' ), $item->ID ) ) . '</p>';
    622622
    623623                }
     
    16961696
    16971697                // construct checkbox for each post type
    1698                 foreach( $capable_post_types AS $post_type ) {
     1698                foreach( $capable_post_types AS $post_type => $label ) {
    16991699
    17001700                    // add checked checkbox
    1701                     $output[] = '<input type="checkbox" class="settings-checkbox" name="cp_post_types_enabled[]" value="' . $post_type . '" checked="checked" /> <label class="commentpress_settings_label" for="cp_post_types_enabled">' . $post_type . '</label><br>';
     1701                    $output[] = '<input type="checkbox" class="settings-checkbox" name="cp_post_types_enabled[]" value="' . $post_type . '" checked="checked" /> <label class="commentpress_settings_label" for="cp_post_types_enabled">' . $label . '</label><br>';
    17021702
    17031703                }
     
    21742174        $chapter_headings_label = __( 'Headings', 'commentpress-core' );
    21752175
     2176        $sub_pages_label = __( 'Show Sub-Pages', 'commentpress-core' );
     2177
    21762178        $extended_label = __( 'Appearance of TOC for posts', 'commentpress-core' );
    21772179        $extended_info_label = __( 'Extended information', 'commentpress-core' );
     
    22012203        ' . (($this->db->option_get('cp_show_posts_or_pages_in_toc') == 'page' AND $this->db->option_get('cp_toc_chapter_is_page') == '0') ? '
    22022204        <tr valign="top">
    2203             <th scope="row"><label for="cp_show_subpages">Show Sub-Pages</label></th>
     2205            <th scope="row"><label for="cp_show_subpages">' . $sub_pages_label . '</label></th>
    22042206            <td><input id="cp_show_subpages" name="cp_show_subpages" value="1"  type="checkbox" ' . ( $this->db->option_get('cp_show_subpages') ? ' checked="checked"' : ''  ) . ' /></td>
    22052207        </tr>' : '' ) . '
     
    23762378
    23772379            // construct checkbox for each post type
    2378             foreach( $capable_post_types AS $post_type ) {
     2380            foreach( $capable_post_types AS $post_type => $label ) {
    23792381
    23802382                $checked = '';
     
    23822384
    23832385                // add checkbox
    2384                 $output[] = '<input type="checkbox" class="settings-checkbox" name="cp_post_types_enabled[]" value="' . $post_type . '"' . $checked . ' /> <label class="commentpress_settings_label" for="cp_post_types_enabled">' . $post_type . '</label><br>';
     2386                $output[] = '<input type="checkbox" class="settings-checkbox" name="cp_post_types_enabled[]" value="' . $post_type . '"' . $checked . ' /> <label class="commentpress_settings_label" for="cp_post_types_enabled">' . $label . '</label><br>';
    23852387
    23862388            }
  • commentpress-core/trunk/commentpress-core/class_commentpress_parser.php

    r1765923 r1782116  
    590590            a DOM parser such as:
    591591
    592             phpQuery <https://github.com/TobiaszCudnik/phpquery>
    593             Simple HTML DOM <http://sourceforge.net/projects/simplehtmldom/>
    594             Others <http://stackoverflow.com/questions/3577641/how-to-parse-and-process-html-with-php>
     592            phpQuery <https://github.com/c-harris/phpquery>
     593            QueryPath <https://github.com/technosophos/querypath>
     594            QuipXml <https://github.com/wittiws/quipxml>
    595595
    596596            There are so many examples of people saying "don't use regex with HTML" that this probably
  • commentpress-core/trunk/languages/commentpress-core-de_DE.po

    r1695759 r1782116  
    44"Content-Type: text/plain; charset=UTF-8\n"
    55"Content-Transfer-Encoding: 8bit\n"
    6 "X-Generator: Poedit 1.8.7.1\n"
     6"X-Generator: Loco - https://localise.biz/\n"
    77"Project-Id-Version: commentpress-core-de_DE\n"
    8 "Language: de\n"
    9 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    10 "POT-Creation-Date: \n"
    11 "PO-Revision-Date: \n"
    12 "Last-Translator: \n"
    13 "Language-Team: \n"
    14 
    15 #: themes/commentpress-theme/single.php:181
    16 msgid "This entry is filed under %1$s. You can follow any comments on this entry through the %2$s feed."
    17 msgstr "Dieser Eintrag wird unter% 1 $ s abgelegt. Sie können alle Kommentare zu diesem Eintrag über den Feed s% 2 $ folgen."
    18 
    19 #. Plugin URI of the plugin/theme
    20 msgid "http://www.futureofthebook.org/commentpress/"
    21 msgstr "http://www.futureofthebook.org/commentpress/"
    22 
    23 #. Description of the plugin/theme
    24 msgid "CommentPress allows readers to comment in the margins of a text. You can use it to annotate, gloss, workshop, debate and more!"
    25 msgstr "CommentPress erlaubt dem Leser am Rande eines Textes zu äußern. Sie können es verwenden, um mit Anmerkungen versehen, Glanz, Werkstatt, Debatte und vieles mehr!"
    26 
    27 #. Author of the plugin/theme
    28 msgid "Institute for the Future of the Book"
    29 msgstr "Institut für die Zukunft des Buches"
    30 
    31 #. Author URI of the plugin/theme
    32 msgid "http://www.futureofthebook.org"
    33 msgstr "http://www.futureofthebook.org"
    34 
    35 #: themes/commentpress-theme/author.php:126
    36 #: themes/commentpress-theme/author.php:128
    37 msgid "Posts by"
    38 msgstr "Beiträge von"
    39 
     8"Language: de-DE\n"
     9"Plural-Forms: nplurals=2; plural=n != 1\n"
     10"POT-Creation-Date: 2017-12-06 12:22+0000\n"
     11"PO-Revision-Date: 2017-12-06 12:23+0000\n"
     12"Last-Translator: Site Admin <needle@haystack.co.uk>\n"
     13"Language-Team: German\n"
     14"Report-Msgid-Bugs-To: "
     15
     16#: commentpress-core/assets/includes/theme/theme-functions.php:2025
     17msgid "the %s"
     18msgstr ""
     19
     20#: commentpress-core/assets/includes/theme/theme-functions.php:2467
     21msgid "Create an account to leave a comment on %s"
     22msgstr ""
     23
     24#: commentpress-core/assets/includes/theme/theme-functions.php:2687
     25#: commentpress-core/assets/includes/theme/theme-functions.php:2699
     26msgctxt ""
     27"The first substitution is the block name e.g. \"paragraph\". The second is "
     28"the numeric comment count."
     29msgid "%s %s"
     30msgstr ""
     31
     32#: commentpress-core/assets/widgets/widget-license.php:34
     33#: themes/commentpress-flat/assets/widgets/widgets.php:34
     34msgid ""
     35"This widget is supplied by CommentPress Core for placing HTML in the page "
     36"footer - for example, copyright or licensing information."
     37msgstr ""
     38
     39#: commentpress-core/class_commentpress_display.php:1684
     40msgid ""
     41"Choose the Post Types on which CommentPress Core is enabled. Disabling a "
     42"post type will mean that paragraph-level commenting will not be enabled on "
     43"any entries of that post type. Default prior to 3.9 was that all post types "
     44"were enabled."
     45msgstr ""
     46
     47#: commentpress-core/class_commentpress_display.php:1728
     48#: commentpress-core/class_commentpress_display.php:2305
     49msgid ""
     50"Note: when comments are closed on an entry and there are no comments on that "
     51"entry, if this option is set to \"Yes\" then the content will not be parsed "
     52"for paragraphs, lines or blocks. Comments will also not be parsed, meaning "
     53"that the entry behaves the same as content which is not commentable. Default "
     54"prior to 3.8.10 was \"No\" - all content was always parsed."
     55msgstr ""
     56
     57#: commentpress-core/class_commentpress_display.php:1729
     58msgid "Disable CommentPress on entries with no comments."
     59msgstr ""
     60
     61#: commentpress-core/class_commentpress_display.php:1753
     62msgid ""
     63"Enable automatic page navigation (controls appearance of page numbering and "
     64"navigation arrows on hierarchical pages). Previous default was \"Yes\"."
     65msgstr ""
     66
     67#: commentpress-core/class_commentpress_display.php:2176
     68msgid "Show Sub-Pages"
     69msgstr "Unterseiten anzeigen"
     70
     71#: commentpress-core/class_commentpress_display.php:2310
     72msgid ""
     73"Disable CommentPress on entries with no comments. (can be overridden on "
     74"individual entries)"
     75msgstr ""
     76
     77#: commentpress-core/class_commentpress_display.php:2340
     78msgid ""
     79"Enable automatic page navigation (controls appearance of page numbering and "
     80"navigation arrows on hierarchical pages)"
     81msgstr ""
     82
     83#: commentpress-multisite/class_commentpress_mu_bp.php:345
     84msgid "Published a new page"
     85msgstr ""
     86
     87#: commentpress-multisite/class_commentpress_mu_bp.php:347
     88msgid "%1$s posted a new <a href=\"%2$s\">page</a>"
     89msgstr ""
     90
     91#: commentpress-multisite/class_commentpress_mu_bp.php:348
     92msgid "%1$s posted a new <a href=\"%2$s\">page</a>, on the site %3$s"
     93msgstr ""
     94
     95#: themes/commentpress-flat/functions.php:1069
     96#: themes/commentpress-modern/functions.php:1118
     97#: themes/commentpress-theme/functions.php:828
     98msgid "An optional widget area in the footer of a CommentPress theme"
     99msgstr ""
     100
     101#: themes/commentpress-flat/functions.php:1080
     102#: themes/commentpress-modern/functions.php:1129
     103msgid "An optional widget area at the top of the Navigation Column"
     104msgstr ""
     105
     106#: themes/commentpress-flat/functions.php:1091
     107#: themes/commentpress-modern/functions.php:1140
     108msgid "An optional widget area at the bottom of the Navigation Column"
     109msgstr ""
     110
     111#: themes/commentpress-flat/functions.php:1102
     112#: themes/commentpress-modern/functions.php:1151
     113msgid "An optional widget area at the top of the Activity Column"
     114msgstr ""
     115
     116#: themes/commentpress-flat/functions.php:1113
     117#: themes/commentpress-modern/functions.php:1162
     118msgid "An optional widget area at the bottom of the Activity Column"
     119msgstr ""
     120
     121#: commentpress-ajax/cp-ajax-comments.php:168
     122msgid "Loading..."
     123msgstr "Bitte warten..."
     124
     125#: commentpress-ajax/cp-ajax-comments.php:169
     126msgid "Please enter your name."
     127msgstr "Bitte Namen eingeben."
     128
     129#: commentpress-ajax/cp-ajax-comments.php:170
     130msgid "Please enter your email address."
     131msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
     132
     133#: commentpress-ajax/cp-ajax-comments.php:171
     134msgid "Please enter a valid email address."
     135msgstr "Bitte geben Sie eine gültige Email-Adresse an"
     136
     137#: commentpress-ajax/cp-ajax-comments.php:172
     138msgid "Please enter your comment."
     139msgstr "Bitte geben Sie Ihren Kommentar."
     140
     141#: commentpress-ajax/cp-ajax-comments.php:173
     142msgid "Your comment has been added."
     143msgstr "Ihr Kommentar wurde hinzugefügt."
     144
     145#: commentpress-ajax/cp-ajax-comments.php:174
     146msgid "AJAX error!"
     147msgstr "AJAX-Fehler!"
     148
     149#: commentpress-ajax/cp-ajax-comments.php:177
     150#: commentpress-core/class_commentpress_display.php:339
     151msgid "Are you sure?"
     152msgstr "Bist du sicher?"
     153
     154#: commentpress-ajax/cp-ajax-comments.php:178
     155msgid ""
     156"Are you sure you want to assign the comment and its replies to the textblock?"
     157" This action cannot be undone."
     158msgstr ""
     159"Sind Sie sicher, dass Sie den Kommentar und ihre Antworten auf den Textblock "
     160"zugewiesen werden? Diese Aktion kann nicht rückgängig gemacht werden."
     161
     162#: commentpress-ajax/cp-ajax-comments.php:179
     163msgid "Submitting..."
     164msgstr "Einreichen ..."
     165
     166#: commentpress-ajax/cp-ajax-comments.php:180
     167msgid ""
     168"Please wait while the comments are reassigned. The page will refresh when "
     169"this has been done."
     170msgstr ""
     171"Bitte warten Sie, während die Kommentare neu zugewiesen werden. Die Seite "
     172"wird aktualisiert, wenn dies geschehen ist."
     173
     174#: commentpress-ajax/cp-ajax-comments.php:184
     175#: commentpress-core/assets/includes/theme/theme-functions.php:1373
     176#: commentpress-core/class_commentpress_display.php:326
     177#: themes/commentpress-flat/assets/templates/comment_form.php:139
     178#: themes/commentpress-modern/assets/templates/comment_form.php:139
     179#: themes/commentpress-theme/assets/templates/comment_form.php:119
     180msgid "Comment"
     181msgstr "Kommentar"
     182
     183#: commentpress-ajax/cp-ajax-comments.php:186
     184#: commentpress-core/class_commentpress.php:2541
     185#: commentpress-core/class_commentpress_display.php:1825
     186#: commentpress-core/class_commentpress_display.php:2243
     187#: commentpress-multisite/class_commentpress_mu_bp.php:352
     188#: themes/commentpress-flat/assets/templates/comments_sidebar.php:20
     189#: themes/commentpress-flat/assets/templates/header_body.php:34
     190#: themes/commentpress-flat/sidebar.php:68
     191#: themes/commentpress-modern/assets/templates/comments_sidebar.php:20
     192#: themes/commentpress-modern/sidebar.php:68
     193#: themes/commentpress-theme/assets/templates/comments_sidebar.php:20
     194#: themes/commentpress-theme/sidebar.php:62
     195msgid "Comments"
     196msgstr "Kommentare"
     197
     198#: commentpress-ajax/cp-ajax-comments.php:406
     199msgid ""
     200"Drop on to a text-block to reassign this comment (and any replies) to it"
     201msgstr ""
     202"Tropfen auf einem Textblock diesen Kommentar neu zuweisen (und alle "
     203"Antworten), um es"
     204
     205#: commentpress-ajax/cp-ajax-comments.php:412
     206msgid "Move"
     207msgstr "Bewege"
     208
     209#: commentpress-core/assets/includes/theme/theme-functions.php:160
     210#: commentpress-core/assets/includes/theme/theme-functions.php:182
     211#: commentpress-core/assets/includes/theme/theme-functions.php:196
     212msgid "Site Image"
     213msgstr "Site-Bild"
     214
     215#: commentpress-core/assets/includes/theme/theme-functions.php:164
     216#: commentpress-core/assets/includes/theme/theme-functions.php:169
     217msgid "Select %s"
     218msgstr "Wähle %s"
     219
     220#: commentpress-core/assets/includes/theme/theme-functions.php:165
     221msgid "Change %s"
     222msgstr "Änderungen"
     223
     224#: commentpress-core/assets/includes/theme/theme-functions.php:166
     225msgid "Remove %s"
     226msgstr "Entfernen %s"
     227
     228#: commentpress-core/assets/includes/theme/theme-functions.php:167
     229msgid "Default %s"
     230msgstr "Standard %s"
     231
     232#: commentpress-core/assets/includes/theme/theme-functions.php:168
     233msgid "No %s selected"
     234msgstr "Keine %s ausgewählt"
     235
     236#: commentpress-core/assets/includes/theme/theme-functions.php:170
     237msgid "Choose %s"
     238msgstr "Wähle %s"
     239
     240#: commentpress-core/assets/includes/theme/theme-functions.php:197
     241msgid ""
     242"Choose an image to represent this site. Other plugins may use this image to "
     243"illustrate this site - in multisite directory listings, for example."
     244msgstr ""
     245"Wählen Sie ein Bild dieser Website darzustellen. Andere Plugins können "
     246"dieses Bild verwenden diese Seite zu veranschaulichen - in Multi-Site-"
     247"Verzeichnislisten, zum Beispiel."
     248
     249#: commentpress-core/assets/includes/theme/theme-functions.php:224
     250msgid "Site Logo"
     251msgstr "Seitenlogo"
     252
     253#: commentpress-core/assets/includes/theme/theme-functions.php:238
     254msgid "Logo Image"
     255msgstr "Logo"
     256
     257#: commentpress-core/assets/includes/theme/theme-functions.php:239
     258msgid ""
     259"You may prefer to display an image instead of text in the header of your "
     260"site. The image must be a maximum of 70px tall. If it is less tall, then you "
     261"can adjust the vertical alignment using the \"Top padding in px\" setting "
     262"below."
     263msgstr ""
     264"anstelle von Text in der Kopfzeile Ihrer Website Sie können es vorziehen, um "
     265"ein Bild anzuzeigen. Das Bild darf maximal 70 Pixel groß sein. Wenn es "
     266"weniger groß ist, dann können Sie die vertikale Ausrichtung mit dem \"Top-"
     267"Polsterung in Pixel\" Einstellung unten anpassen."
     268
     269#: commentpress-core/assets/includes/theme/theme-functions.php:254
     270msgid "Top padding in px"
     271msgstr "Top-Polsterung in Pixel"
     272
     273#: commentpress-core/assets/includes/theme/theme-functions.php:286
     274msgid "Header Background Colour"
     275msgstr "Header-Hintergrundfarbe"
     276
     277#: commentpress-core/assets/includes/theme/theme-functions.php:309
     278msgid "Customize"
     279msgstr "modifizieren"
     280
     281#: commentpress-core/assets/includes/theme/theme-functions.php:383
     282msgid "Group avatar"
     283msgstr "Gruppenbild"
     284
     285#: commentpress-core/assets/includes/theme/theme-functions.php:443
     286msgid "Logo"
     287msgstr "Logo"
     288
     289#: commentpress-core/assets/includes/theme/theme-functions.php:1205
     290#: commentpress-core/class_commentpress_display.php:571
     291#: commentpress-multisite/class_commentpress_mu_bp.php:855
     292msgid " &amp; "
     293msgstr " &amp;"
     294
     295#: commentpress-core/assets/includes/theme/theme-functions.php:1233
     296#: commentpress-core/assets/includes/theme/theme-functions.php:1249
     297#: commentpress-core/class_commentpress_display.php:601
     298#: commentpress-core/class_commentpress_display.php:621
     299#: themes/commentpress-flat/image.php:54
     300#: themes/commentpress-modern/image.php:54
    40301#: themes/commentpress-theme/author.php:138
    41 msgid "Permanent Link:"
    42 msgstr "Permanenter Link:"
    43 
    44 #: themes/commentpress-theme/author.php:143
    45 msgid "No posts by this author."
    46 msgstr "Keine Einträge dieses Autors."
    47 
    48 #: themes/commentpress-theme/author.php:117
    49 msgid "Jabber / Google Talk"
    50 msgstr "Jabber / Google Talk"
    51 
    52 #: themes/commentpress-theme/author.php:112
    53 msgid "AIM"
    54 msgstr "AIM"
    55 
    56 #: themes/commentpress-theme/author.php:107
    57 msgid "Yahoo IM"
    58 msgstr "Yahoo IM"
    59 
    60 #: themes/commentpress-theme/author.php:102
    61 msgid "Email"
    62 msgstr "E-Mail-Adresse:"
    63 
    64 #: themes/commentpress-modern/taxonomy-comment_tags.php:51
    65 #: themes/commentpress-theme/taxonomy-comment_tags.php:51
    66 msgid "Comments Tagged &#8216;%s&#8217;"
    67 msgstr "Kommentare Tagged & # 8216;% s & # 8217;"
    68 
    69 #: themes/commentpress-modern/taxonomy-comment_tags.php:60
    70 #: themes/commentpress-theme/taxonomy-comment_tags.php:60
    71 msgid "No Comments Found"
    72 msgstr "Keine Kommentare vorhanden"
    73 
    74 #: themes/commentpress-modern/taxonomy-comment_tags.php:62
    75 #: themes/commentpress-theme/taxonomy-comment_tags.php:62
    76 msgid "Sorry, but there are no comments for this tag."
    77 msgstr "Sorry, aber es gibt keine Kommentare zu diesem Tag."
    78 
    79 #: themes/commentpress-modern/toc.php:30 themes/commentpress-theme/toc.php:29
    80 msgid "TOC"
    81 msgstr "TOC"
    82 
    83 #: themes/commentpress-theme/assets/templates/navigation.php:99
    84 msgid "Blog Archives: "
    85 msgstr "Blog Archiv:"
    86 
    87 #: themes/commentpress-theme/author.php:92
    88 msgid "Profile"
    89 msgstr "Profile"
    90 
    91 #: themes/commentpress-modern/single.php:231
    92 msgid "You can follow any comments on this entry through the %s feed."
    93 msgstr "Sie können alle Kommentare zu diesem Eintrag über den Feed s% folgen."
    94 
    95 #: themes/commentpress-modern/single.php:250
    96 #: themes/commentpress-theme/single.php:201
    97 msgid "You can leave a comment, or %s from your own site."
    98 msgstr "Sie können einen Kommentar hinterlassen, oder% s von Ihrer Website hierher setzen."
    99 
    100 #: themes/commentpress-modern/single.php:416
    101 #: themes/commentpress-theme/single.php:356
    102 msgid "Post Not Found"
    103 msgstr "Dieser Beitrag konnte nicht gefunden werden."
    104 
    105 #: themes/commentpress-modern/single.php:418
    106 #: themes/commentpress-theme/single.php:358
    107 msgid "Sorry, no posts matched your criteria."
    108 msgstr "Sorry, es gibt keinen Beitrag, der deinen Suchkriterien entspricht."
    109 
    110 #: themes/commentpress-modern/single.php:213
    111 msgid "Categories:"
    112 msgstr "Kategorien"
    113 
    114 #: themes/commentpress-modern/search.php:40
    115 #: themes/commentpress-theme/search.php:25
    116 msgid "Search Results for"
    117 msgstr "Suchergebnisse für "
    118 
    119 #: themes/commentpress-modern/search.php:112
    120 #: themes/commentpress-theme/search.php:88
    121 msgid "Nothing found for"
    122 msgstr "Nichts gefunden"
    123 
    124 #: themes/commentpress-modern/search.php:114
    125 #: themes/commentpress-theme/search.php:90
    126 msgid "Try a different search?"
    127 msgstr "Versuchen Sie eine andere Suche?"
    128 
    129 #: themes/commentpress-modern/searchform.php:19
    130 #: themes/commentpress-modern/searchform.php:44
    131 #: themes/commentpress-theme/searchform.php:19
    132 #: themes/commentpress-theme/searchform.php:44
    133 msgid "Search for:"
    134 msgstr "Suche nach:"
    135 
    136 #: themes/commentpress-modern/page.php:107
    137 #: themes/commentpress-modern/single.php:106
    138 #: themes/commentpress-theme/single.php:106
    139 msgid "Literal"
    140 msgstr "wörtlich"
    141 
    142 #: themes/commentpress-modern/page.php:115
    143 #: themes/commentpress-modern/single.php:114
    144 #: themes/commentpress-theme/single.php:114
    145 msgid "Original"
    146 msgstr "Original"
    147 
    148 #: themes/commentpress-modern/page.php:262
    149 #: themes/commentpress-theme/page.php:113
    150 msgid "Page %s"
    151 msgstr "Seite %s"
    152 
    153 #: themes/commentpress-modern/image.php:84
    154 #: themes/commentpress-theme/image.php:84
    155 msgid "You are welcome to leave a comment, or %s from your own site."
    156 msgstr "Schreiben Sie einen Kommentar oder % s auf Ihrer eigenen Seite."
    157 
    158 #: themes/commentpress-modern/image.php:103
    159 #: themes/commentpress-modern/single.php:269
    160 #: themes/commentpress-theme/image.php:103
    161 #: themes/commentpress-theme/single.php:220
    162 msgid "Comments are currently closed, but you can %s from your own site."
    163 msgstr "Kommentare sind derzeit geschlossen, aber Sie können % s aus Ihrer eigenen Website."
    164 
    165 #: themes/commentpress-modern/image.php:113
    166 #: themes/commentpress-modern/single.php:279
    167 #: themes/commentpress-theme/image.php:113
    168 #: themes/commentpress-theme/single.php:230
    169 msgid "You can leave a comment. Pinging is currently not allowed."
    170 msgstr "Sie können einen Kommentar hinterlassen. Pingen ist im Augenblick nicht erlaubt."
    171 
    172 #: themes/commentpress-modern/image.php:121
    173 #: themes/commentpress-modern/single.php:287
    174 #: themes/commentpress-theme/image.php:121
    175 #: themes/commentpress-theme/single.php:238
    176 msgid "Both comments and pings are currently closed."
    177 msgstr "Kommentare und Pings sind derzeit geschlossen."
    178 
    179 #: themes/commentpress-modern/image.php:129
    180 #: themes/commentpress-modern/single.php:295
    181 #: themes/commentpress-theme/image.php:129
    182 #: themes/commentpress-theme/single.php:246
    183 msgid "Edit this entry"
    184 msgstr "Eintrag bearbeiten"
    185 
    186 #: themes/commentpress-modern/image.php:137
    187 #: themes/commentpress-theme/image.php:137
    188 msgid "Next Image &raquo;"
    189 msgstr "Nächstes Bild &raquo;"
    190 
    191 #: themes/commentpress-modern/image.php:141
    192 #: themes/commentpress-theme/image.php:141
    193 msgid "&laquo; Previous Image"
    194 msgstr "&laquo; Vorheriges Bild"
    195 
    196 #: themes/commentpress-modern/image.php:158
    197 #: themes/commentpress-theme/image.php:158
    198 msgid "Sorry, no attachments matched your criteria."
    199 msgstr "Tut mir leid, kein Anhang passt zu deinen Kriterien."
    200 
    201 #: themes/commentpress-modern/index.php:64
    202 #: themes/commentpress-theme/index.php:49
    203 msgid "No blog posts found"
    204 msgstr "Keine Blog-Beiträge gefunden"
    205 
    206 #: themes/commentpress-modern/index.php:66
    207 #: themes/commentpress-theme/index.php:51
    208 msgid "There are no blog posts yet."
    209 msgstr "Es gibt keine Blog-Beiträge."
    210 
    211 #: themes/commentpress-modern/index.php:72
    212 #: themes/commentpress-theme/index.php:57
    213 msgid "Go to your dashboard to add one."
    214 msgstr "Gehen Sie zu Ihrem Dashboard."
    215 
    216 #: themes/commentpress-modern/index.php:78
    217 #: themes/commentpress-theme/index.php:63
    218 msgid "If you were looking for something that hasn't been found, try using the search form below."
    219 msgstr "Wenn Sie etwas nicht gefunden haben, benutzen Sie das Suchformular unten."
    220 
    221 #: themes/commentpress-modern/links.php:30
    222 #: themes/commentpress-theme/links.php:29
    223 msgid "Links:"
    224 msgstr "Links:"
    225 
    226 #: themes/commentpress-modern/image.php:48
    227 #: themes/commentpress-theme/image.php:48
    228 msgid "Read the rest of the text &raquo;"
    229 msgstr "Lesen Sie den Rest des Textes &raquo;"
    230 
    231 #: themes/commentpress-modern/image.php:53
    232 #: themes/commentpress-theme/image.php:53
    233 msgid "This image was posted on %1$s at %2$s and is filed under %3$s."
    234 msgstr "Dieses Bild wurde auf %1$ in %2$ veröffentlicht und wurde unter %3$ abgelegt."
    235 
    236 #: themes/commentpress-modern/image.php:62
    237 #: themes/commentpress-modern/single.php:224
    238 #: themes/commentpress-theme/image.php:62
    239 #: themes/commentpress-theme/single.php:174
    240 msgid "RSS 2.0"
    241 msgstr "RSS 2.0"
    242 
    243 #: themes/commentpress-modern/image.php:68
    244 #: themes/commentpress-theme/image.php:68
    245 msgid "You can follow any comments on this image through the %s feed."
    246 msgstr "Sie können alle Kommentare zu diesem Bild mit dem Feed %s folgen."
    247 
    248 #: themes/commentpress-modern/image.php:77
    249 #: themes/commentpress-modern/image.php:96
    250 #: themes/commentpress-modern/single.php:243
    251 #: themes/commentpress-modern/single.php:262
    252 #: themes/commentpress-theme/image.php:77
    253 #: themes/commentpress-theme/image.php:96
    254 #: themes/commentpress-theme/single.php:194
    255 #: themes/commentpress-theme/single.php:213
    256 msgid "trackback"
    257 msgstr "Trackback"
    258 
    259 #: themes/commentpress-modern/image.php:25
    260 #: themes/commentpress-modern/image.php:27
    261 #: themes/commentpress-theme/image.php:25
    262 #: themes/commentpress-theme/image.php:27
    263 msgid "Back to gallery"
    264 msgstr "Zurück zur Galerie"
    265 
    266 #: themes/commentpress-modern/image.php:25
    267 #: themes/commentpress-theme/image.php:25
    268 msgid "Permalink for this image"
    269 msgstr "Permalink für dieses Bild"
    270 
    271 #: themes/commentpress-modern/image.php:40
    272 #: themes/commentpress-theme/image.php:40
    273 msgid "Untitled"
    274 msgstr "Unbenannt"
    275 
    276 #: themes/commentpress-modern/functions.php:843
    277 #: themes/commentpress-theme/functions.php:713
    278 msgid "Comments on the Blog"
    279 msgstr "Kommentare zum Blog"
    280 
    281 #: themes/commentpress-modern/functions.php:849
    282 #: themes/commentpress-theme/functions.php:719
    283 msgid "Comments on the Pages"
    284 msgstr "Kommentare zu den Seiten"
    285 
    286 #: themes/commentpress-modern/group.php:52
    287 #: themes/commentpress-theme/group.php:54
    288 msgid "Group Members"
    289 msgstr "Gruppenmitglieder"
    290 
    291 #. translators: header image description
    292 #: themes/commentpress-modern/functions.php:96
    293 #: themes/commentpress-theme/functions.php:88
    294 msgid "Abstract Green"
    295 msgstr "Abstract Green"
    296 
    297 #. translators: header image description
    298 #: themes/commentpress-modern/functions.php:102
    299 #: themes/commentpress-theme/functions.php:94
    300 msgid "Abstract Red"
    301 msgstr "Abstract Red"
    302 
    303 #. translators: header image description
    304 #: themes/commentpress-modern/functions.php:108
    305 #: themes/commentpress-theme/functions.php:100
    306 msgid "Abstract Blue"
    307 msgstr "Abstract Blue"
    308 
    309 #. translators: header image description
    310 #: themes/commentpress-modern/functions.php:114
    311 #: themes/commentpress-theme/functions.php:106
    312 msgid "Abstract Violet"
    313 msgstr "Abstrakt Violet"
    314 
    315 #: themes/commentpress-modern/functions.php:580
    316 #: themes/commentpress-theme/functions.php:458
    317 msgid "Next page with comments"
    318 msgstr "Nächste Seite mit Kommentaren"
    319 
    320 #: themes/commentpress-modern/functions.php:610
    321 #: themes/commentpress-theme/functions.php:486
    322 msgid "Previous page with comments"
    323 msgstr "Vorherige Seite mit Kommentaren"
    324 
    325 #: themes/commentpress-modern/functions.php:745
    326 #: themes/commentpress-theme/functions.php:617
    327 msgid "Password protected"
    328 msgstr "Passwortgeschützt"
    329 
    330 #: commentpress-core/class_commentpress_nav.php:1022
    331 msgid "Cannot represent numbers larger than 4999 in plain ASCII."
    332 msgstr "Zahlen größer als 4999 können in einfachen ASCII nicht dargestellt werden."
    333 
    334 #: commentpress-core.php:116
    335 msgid "CommentPress Core Error: file \"%s\" is missing from the plugin directory."
    336 msgstr "CommentPress Core-Fehler: Datei \"%s\" fehlt aus dem Plugin-Verzeichnis."
    337 
    338 #: commentpress-core.php:269
    339 msgid "Donate!"
    340 msgstr "Spenden!"
    341 
    342 #: themes/commentpress-modern/footer-wp-activate.php:42
    343 #: themes/commentpress-modern/footer.php:30
    344 #: themes/commentpress-theme/footer-wp-activate.php:42
    345 #: themes/commentpress-theme/footer.php:23
    346 msgid "Website content"
    347 msgstr "Website-Content"
    348 
    349 #: themes/commentpress-modern/footer-wp-activate.php:42
    350 #: themes/commentpress-modern/footer.php:30
    351 #: themes/commentpress-theme/footer-wp-activate.php:42
    352 #: themes/commentpress-theme/footer.php:23
    353 msgid "All rights reserved."
    354 msgstr "Alle Rechte vorbehalten."
    355 
    356 #: themes/commentpress-modern/category.php:31
    357 #: themes/commentpress-theme/category.php:31
    358 msgid "Posts Tagged &#8216;%s&#8217;"
    359 msgstr "Beiträge mit dem Stichwort &#8216;%s&#8217;"
    360 
    361 #: themes/commentpress-modern/comments.php:26
    362 #: themes/commentpress-theme/comments.php:26
    363 msgid "Enter the password to view comments"
    364 msgstr "Geben Sie das Passwort ein, um Kommentare anzusehen."
    365 
    366 #: themes/commentpress-modern/comments.php:105
    367 #: themes/commentpress-theme/comments.php:106
    368 msgid "on the whole page"
    369 msgstr "zu dieser Seite"
    370 
    371 #: themes/commentpress-modern/comments.php:129
    372 #: themes/commentpress-modern/comments.php:148
    373 #: themes/commentpress-theme/comments.php:130
    374 #: themes/commentpress-theme/comments.php:154
    375 msgid "Leave a comment on the whole page"
    376 msgstr "Kommentar zu dieser Seite schreiben"
    377 
    378 #: themes/commentpress-modern/comments.php:143
    379 #: themes/commentpress-theme/comments.php:149
    380 msgid "No comments on the whole page"
    381 msgstr "Keine Kommentare zu dieser Seite"
    382 
    383 #: themes/commentpress-modern/comments.php:157
    384 #: themes/commentpress-theme/comments.php:165
    385 msgid "Comments are closed."
    386 msgstr "Die Kommentare sind geschloßen."
    387 
    388 #: themes/commentpress-modern/author.php:155
    389 msgid "Posts written by"
    390 msgstr "Beiträge geschrieben von"
    391 
    392 #: themes/commentpress-modern/author.php:206
    393 msgid "Pages written by"
    394 msgstr "Seiten geschrieben von"
    395 
    396 #: themes/commentpress-modern/assets/widgets/widgets.php:49
    397 #: themes/commentpress-theme/assets/widgets/widgets.php:49
    398 msgid "Automatically add paragraphs"
    399 msgstr "Absätze automatisch hinzufügen"
    400 
    401 #: themes/commentpress-modern/assets/templates/toc_sidebar.php:46
    402 msgid "Special Pages"
    403 msgstr "Spezielle Seiten"
    404 
    405 #: themes/commentpress-modern/assets/widgets/widgets.php:11
    406 #: themes/commentpress-theme/assets/widgets/widgets.php:11
    407 msgid "This widget is supplied by the CommentPress Default Theme for placing HTML in the page footer - for example, copyright or licensing information"
    408 msgstr "Dieses Widget wird von der CommentPress Default Theme geliefert HTML für die Platzierung in der Fußleiste - zum Beispiel, das Urheberrecht oder Lizenzinformationen"
    409 
    410 #: themes/commentpress-modern/assets/widgets/widgets.php:14
    411 #: themes/commentpress-theme/assets/widgets/widgets.php:14
    412 msgid "Page Footer"
    413 msgstr "Fußzeile"
    414 
    415 #: themes/commentpress-modern/assets/widgets/widgets.php:44
    416 #: themes/commentpress-theme/assets/widgets/widgets.php:44
    417 msgid "Title:"
    418 msgstr "Überschrift:"
    419 
    420 #: themes/commentpress-modern/assets/templates/page_navigation.php:14
    421 #: themes/commentpress-theme/assets/templates/navigation.php:20
    422 msgid "Older Entries"
    423 msgstr "Ältere Eintrage"
    424 
    425 #: themes/commentpress-modern/assets/templates/page_navigation.php:15
    426 #: themes/commentpress-theme/assets/templates/navigation.php:21
    427 msgid "Newer Entries"
    428 msgstr "Neuere Einträge"
    429 
    430 #: themes/commentpress-modern/assets/templates/page_navigation.php:100
    431 #: themes/commentpress-modern/assets/templates/page_navigation.php:122
    432 #: themes/commentpress-modern/assets/templates/page_navigation.php:144
    433 msgid "More Results"
    434 msgstr "Mehr Ergebnisse"
    435 
    436 #: themes/commentpress-modern/assets/templates/page_navigation.php:101
    437 #: themes/commentpress-modern/assets/templates/page_navigation.php:123
    438 #: themes/commentpress-modern/assets/templates/page_navigation.php:145
    439 msgid "Previous Results"
    440 msgstr "Vorherige Ergebnisse"
    441 
    442 #: themes/commentpress-modern/assets/templates/toc_sidebar.php:32
    443 #: themes/commentpress-modern/searchform.php:24
    444 #: themes/commentpress-modern/searchform.php:48
    445 #: themes/commentpress-theme/searchform.php:24
    446 #: themes/commentpress-theme/searchform.php:48
    447 msgid "Search"
    448 msgstr "Suche"
    449 
    450 #: themes/commentpress-modern/assets/templates/navigation.php:55
    451 #: themes/commentpress-theme/assets/templates/navigation.php:186
    452 msgid "Group Home Page"
    453 msgstr "Gruppen Homepage"
    454 
    455 #: themes/commentpress-modern/assets/templates/navigation.php:69
    456 #: themes/commentpress-theme/assets/templates/navigation.php:200
    457 msgid "Home Page"
    458 msgstr "Home Page"
    459 
    460 #: themes/commentpress-modern/assets/templates/navigation.php:137
    461 #: themes/commentpress-modern/assets/templates/navigation.php:155
    462 #: themes/commentpress-modern/assets/templates/user_links.php:59
    463 #: themes/commentpress-modern/assets/templates/user_links.php:77
    464 #: themes/commentpress-theme/assets/templates/user_links.php:59
    465 #: themes/commentpress-theme/assets/templates/user_links.php:77
    466 msgid "Create a new document"
    467 msgstr "Erstellen Sie ein neues Dokument"
    468 
    469 #: themes/commentpress-modern/assets/templates/navigation.php:176
    470 #: themes/commentpress-modern/assets/templates/user_links.php:96
    471 #: themes/commentpress-theme/assets/templates/user_links.php:96
    472 msgid "Dashboard"
    473 msgstr "Übersicht"
    474 
    475 #: themes/commentpress-modern/assets/templates/header_body.php:46
    476 msgid "Discuss"
    477 msgstr "Diskutieren"
    478 
    479 #: themes/commentpress-modern/assets/templates/navigation.php:31
    480 #: themes/commentpress-theme/assets/templates/navigation.php:162
    481 msgid "Site Home Page"
    482 msgstr "Site-Homepage"
    483 
    484 #: themes/commentpress-modern/assets/templates/header_body.php:44
    485 msgid "Navigate"
    486 msgstr "Navigieren"
    487 
    488 #: themes/commentpress-modern/assets/templates/header_body.php:45
    489 #: themes/commentpress-modern/page.php:100
    490 #: themes/commentpress-modern/single.php:99
    491 #: themes/commentpress-theme/single.php:99
    492 msgid "Content"
    493 msgstr "Inhalt"
    494 
    495 #: themes/commentpress-modern/assets/templates/comments_by_para.php:48
    496 #: themes/commentpress-modern/assets/templates/comments_in_page.php:29
    497 #: themes/commentpress-theme/assets/templates/comments_by_para.php:40
    498 #: themes/commentpress-theme/assets/templates/comments_in_page.php:29
    499 msgid "Comments are closed"
    500 msgstr "Kommentare deaktivert"
    501 
    502 #: themes/commentpress-modern/assets/templates/header_body.php:19
    503 #: themes/commentpress-theme/assets/templates/header_body.php:19
    504 msgid "Skip to Content"
    505 msgstr "Springe zum Inhalt"
    506 
    507 #: themes/commentpress-modern/assets/templates/header_body.php:21
    508 #: themes/commentpress-theme/assets/templates/header_body.php:21
    509 msgid "Skip to Table of Contents"
    510 msgstr "Direkt zum Inhalt"
    511 
    512 #: themes/commentpress-modern/assets/templates/header_body.php:32
    513 #: themes/commentpress-theme/assets/templates/header_body.php:34
    514 msgid "Home"
    515 msgstr "Anfang"
    516 
    517 #: themes/commentpress-modern/assets/templates/comment_form.php:137
    518 #: themes/commentpress-theme/assets/templates/comment_form.php:117
    519 msgid "Your comment"
    520 msgstr "Ihr Kommentar"
    521 
    522 #: themes/commentpress-modern/assets/templates/comment_form.php:188
    523 #: themes/commentpress-theme/assets/templates/comment_form.php:168
    524 msgid "Submit Comment"
    525 msgstr "Kommentar abschicken"
    526 
    527 #: themes/commentpress-modern/assets/templates/comment_form.php:125
    528 #: themes/commentpress-theme/assets/templates/comment_form.php:105
    529 msgid "Mail (will not be published)"
    530 msgstr "Mailadresse (wird nicht veröffentlicht)"
    531 
    532 #: themes/commentpress-modern/assets/templates/comment_form.php:128
    533 #: themes/commentpress-theme/assets/templates/comment_form.php:108
    534 #: themes/commentpress-theme/author.php:97
    535 msgid "Website"
    536 msgstr "Webseite"
    537 
    538 #: themes/commentpress-modern/assets/templates/comment_form.php:122
    539 #: themes/commentpress-modern/assets/templates/comment_form.php:125
    540 #: themes/commentpress-theme/assets/templates/comment_form.php:102
    541 #: themes/commentpress-theme/assets/templates/comment_form.php:105
    542 msgid "required"
    543 msgstr "benötigt"
    544 
    545 #: themes/commentpress-modern/assets/templates/comment_form.php:122
    546 #: themes/commentpress-theme/assets/templates/comment_form.php:102
    547 msgid "Name"
    548 msgstr "Name"
    549 
    550 #: themes/commentpress-modern/assets/templates/comment_form.php:118
    551 #: themes/commentpress-theme/assets/templates/comment_form.php:98
    552 msgid "Log out"
    553 msgstr "Abmelden"
    554 
    555 #: themes/commentpress-modern/assets/templates/comment_form.php:114
    556 #: themes/commentpress-theme/assets/templates/comment_form.php:94
    557 msgid "Your details"
    558 msgstr "Ihre Details"
    559 
    560 #: themes/commentpress-modern/assets/templates/comment_form.php:118
    561 #: themes/commentpress-theme/assets/templates/comment_form.php:98
    562 msgid "Logged in as"
    563 msgstr "Angemeldet als"
    564 
    565 #: themes/commentpress-modern/assets/templates/comment_form.php:118
    566 #: themes/commentpress-theme/assets/templates/comment_form.php:98
    567 msgid "Log out of this account"
    568 msgstr "Von diesem Konto abmelden"
    569 
    570 #: themes/commentpress-modern/assets/templates/comment_form.php:89
    571 #: themes/commentpress-modern/assets/templates/comment_form.php:204
    572 #: themes/commentpress-theme/assets/templates/comment_form.php:69
    573 #: themes/commentpress-theme/assets/templates/comment_form.php:184
    574 msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
    575 msgstr "Du musst <a href=\"%s\"> angemeldet sein </a> um zu kommentieren."
    576 
    577 #: themes/commentpress-modern/assets/templates/comment_form.php:80
    578 #: themes/commentpress-theme/assets/templates/comment_form.php:60
    579 msgid "Leave a Comment"
    580 msgstr "Schreiben Sie einen Kommentar"
    581 
    582 #: themes/commentpress-modern/archives.php:132
    583 #: themes/commentpress-theme/archives.php:132
    584 msgid "No tags yet"
    585 msgstr "Noch keine Tags Tags"
    586 
    587 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:18
    588 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:26
    589 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:18
    590 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:26
    591 msgid "Recent Comments on this Page"
    592 msgstr "Neueste Kommentare zu dieser Seite"
    593 
    594 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:25
    595 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:25
    596 msgid "Recent Comments on this Post"
    597 msgstr "Neue Kommentare zu diesem Beitrag"
    598 
    599 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:46
    600 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:46
    601 msgid "Recent Comments in this Document"
    602 msgstr "Aktuelle Kommentare zu diesem Dokument"
    603 
    604 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:167
    605 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:167
    606 msgid "Recent Activity in your Documents"
    607 msgstr "Letzte Aktivitäten in Ihrer Dokumente"
    608 
    609 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:175
    610 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:175
    611 msgid "Recent Activity in Public Documents"
    612 msgstr "Letzte Aktivitäten in Öffentliche Dokumente"
    613 
    614 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:250
    615 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:250
    616 msgid "Recently Active Members"
    617 msgstr "Kürzlich aktive Mitglieder"
    618 
    619 #: themes/commentpress-modern/assets/templates/activity_sidebar.php:302
    620 #: themes/commentpress-theme/assets/templates/activity_sidebar.php:302
    621 msgid "Who's Online"
    622 msgstr "Wer ist online"
    623 
    624 #: themes/commentpress-modern/archives.php:100
    625 #: themes/commentpress-theme/archives.php:100
    626 msgid "Tags"
    627 msgstr "Schlagworte (Tags)"
    628 
    629 #: themes/commentpress-modern/archives.php:58
    630 #: themes/commentpress-theme/archives.php:58
    631 msgid "Categories"
    632 msgstr "Kategorien"
    633 
    634 #: themes/commentpress-modern/archive.php:94
    635 #: themes/commentpress-modern/blog.php:63
    636 #: themes/commentpress-modern/category.php:71
    637 #: themes/commentpress-modern/directory.php:89
    638 #: themes/commentpress-modern/page.php:384
    639 #: themes/commentpress-modern/welcome.php:166
    640 #: themes/commentpress-theme/archive.php:68
    641 #: themes/commentpress-theme/blog.php:62
    642 #: themes/commentpress-theme/category.php:60
    643 #: themes/commentpress-theme/directory.php:89
    644 #: themes/commentpress-theme/page.php:136
    645 #: themes/commentpress-theme/welcome.php:95
    646 msgid "Sorry, but you are looking for something that isn't here."
    647 msgstr "Leider nicht gefunden."
    648 
    649 #: themes/commentpress-modern/archives.php:46
    650 #: themes/commentpress-theme/archives.php:46
    651 msgid "Archives by Month"
    652 msgstr "Archiv nach Monat"
    653 
     302#: themes/commentpress-theme/image.php:54
     303msgid "l, F jS, Y"
     304msgstr "l, d. F Y"
     305
     306#: commentpress-core/assets/includes/theme/theme-functions.php:1272
     307msgid "Source: "
     308msgstr "Quelle:"
     309
     310#: commentpress-core/assets/includes/theme/theme-functions.php:1332
     311#: commentpress-core/class_commentpress_display.php:680
     312msgid "Posts by %s"
     313msgstr "Beitrag von %s"
     314
     315#: commentpress-core/assets/includes/theme/theme-functions.php:1373
     316msgid "See comment in context"
     317msgstr "Siehe Kommentar in Zusammenhang"
     318
     319#: commentpress-core/assets/includes/theme/theme-functions.php:1376
     320#: themes/commentpress-flat/archive.php:48
     321#: themes/commentpress-flat/author.php:166
     322#: themes/commentpress-modern/archive.php:48
     323#: themes/commentpress-modern/author.php:166
     324#: themes/commentpress-theme/archive.php:33
     325msgid "F jS, Y"
     326msgstr "F jS, Y"
     327
     328#: commentpress-core/assets/includes/theme/theme-functions.php:1427
     329#: commentpress-core/assets/includes/theme/theme-functions.php:1530
     330#: commentpress-core/assets/includes/theme/theme-functions.php:1814
     331#: commentpress-multisite/class_commentpress_mu_bp.php:590
     332msgid "Anonymous"
     333msgstr "Unbekannt"
     334
     335#: commentpress-core/assets/includes/theme/theme-functions.php:1433
     336msgid "%1$s by %2$s on %3$s"
     337msgstr "%1$s von %2$s auf %3$s"
     338
     339#: commentpress-core/assets/includes/theme/theme-functions.php:1463
     340msgid "%1$s on %2$s on %3$s"
     341msgstr "%2 zu %2$ auf %3$"
     342
     343#: commentpress-core/assets/includes/theme/theme-functions.php:1627
     344#: commentpress-core/class_commentpress.php:1568
     345#: commentpress-core/class_commentpress_db.php:3729
     346msgid "Comments by Commenter"
     347msgstr "Kommentar von Kommentator"
     348
     349#: commentpress-core/assets/includes/theme/theme-functions.php:1846
     350#: commentpress-core/assets/includes/theme/theme-functions.php:2861
     351msgid "Comment awaiting moderation"
     352msgstr "Kommentar auf Moderation wart"
     353
     354#: commentpress-core/assets/includes/theme/theme-functions.php:1914
     355#: commentpress-core/assets/includes/theme/theme-functions.php:2948
     356msgid "%1$s at %2$s"
     357msgstr "%1$s bei %2$s"
     358
     359#: commentpress-core/assets/includes/theme/theme-functions.php:1923
     360msgid "See in context"
     361msgstr "Siehe in Zusammenhang"
     362
     363#: commentpress-core/assets/includes/theme/theme-functions.php:1965
     364msgid "Image"
     365msgstr "Bild"
     366
     367#: commentpress-core/assets/includes/theme/theme-functions.php:1972
     368msgid "Video"
     369msgstr "Video"
     370
     371#: commentpress-core/assets/includes/theme/theme-functions.php:1980
     372msgid "File"
     373msgstr "Datum"
     374
     375#: commentpress-core/assets/includes/theme/theme-functions.php:2058
     376msgid "the whole %s"
     377msgstr "das ganze %s"
     378
     379#: commentpress-core/assets/includes/theme/theme-functions.php:2083
     380msgid "Permalink for comments on %s"
     381msgstr "Permalink für Kommentare zu %s"
     382
     383#: commentpress-core/assets/includes/theme/theme-functions.php:2100
     384msgid "%1$s on <span class=\"source_block\">%2$s</span>"
     385msgstr "%1$s auf <span class=\"source_block\">%2$s</span>"
     386
     387#: commentpress-core/assets/includes/theme/theme-functions.php:2128
     388msgid "pingback or trackback"
     389msgstr "Pingback oder Trackback"
     390
     391#: commentpress-core/assets/includes/theme/theme-functions.php:2131
     392msgid "Permalink for pingbacks and trackbacks"
     393msgstr "Permalink für Pingbacks und Trackbacks"
     394
     395#: commentpress-core/assets/includes/theme/theme-functions.php:2174
     396#: commentpress-core/class_commentpress_parser.php:348
     397msgid "paragraph"
     398msgstr "Absatz"
     399
     400#: commentpress-core/assets/includes/theme/theme-functions.php:2181
     401msgid "%1$s %2$s"
     402msgstr "%1$s %2$s"
     403
     404#: commentpress-core/assets/includes/theme/theme-functions.php:2188
     405msgid "Permalink for comments on %1$s %2$s"
     406msgstr "Permalink für Kommentare auf %1$s %2$s"
     407
     408#: commentpress-core/assets/includes/theme/theme-functions.php:2206
     409msgid "%1$s on <span class=\"source_block\">%2$s %3$s</span>"
     410msgstr "%1$s auf <span class=\"source_block\">%2$s %3$s</span>"
     411
     412#: commentpress-core/assets/includes/theme/theme-functions.php:2428
     413msgid "It appears that this paragraph is a duplicate of a previous one."
     414msgstr "Es scheint, dass dieser Absatz ein Duplikat eines vorherige."
     415
     416#: commentpress-core/assets/includes/theme/theme-functions.php:2472
     417msgid "Login to leave a comment on %s"
     418msgstr "Anmelden um ein Kommentar auf %s zu schrieben"
     419
     420#: commentpress-core/assets/includes/theme/theme-functions.php:2525
     421msgid "Leave a comment on %s"
     422msgstr "Kommentar schreiben zu %s"
     423
     424#: commentpress-core/assets/includes/theme/theme-functions.php:2642
     425msgid "Leave a Reply"
     426msgstr "Antworten"
     427
     428#: commentpress-core/assets/includes/theme/theme-functions.php:2643
     429#: themes/commentpress-flat/assets/templates/comment_form.php:81
     430#: themes/commentpress-modern/assets/templates/comment_form.php:81
     431#: themes/commentpress-theme/assets/templates/comment_form.php:61
     432msgid "Leave a Reply to %s"
     433msgstr "Hinterlasse eine Antwort auf %s"
     434
     435#: commentpress-core/assets/includes/theme/theme-functions.php:2644
     436msgid "Leave a Comment on %s"
     437msgstr "Kommentar schreiben zu %s"
     438
     439#: commentpress-core/assets/includes/theme/theme-functions.php:2734
     440msgid "Reply"
     441msgstr "Antwort"
     442
     443#: commentpress-core/assets/includes/theme/theme-functions.php:2735
     444msgid "Log in to Reply"
     445msgstr "Zum Kommentieren anmelden"
     446
     447#: commentpress-core/assets/includes/theme/theme-functions.php:2896
     448msgid "Reply to %s"
     449msgstr "Antwort an %s"
     450
     451#: commentpress-core/assets/includes/theme/theme-functions.php:2921
     452msgid "Edit this comment"
     453msgstr "Diesen Kommentar bearbeiten"
     454
     455#: commentpress-core/assets/includes/theme/theme-functions.php:2927
     456#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
     457#: themes/commentpress-flat/category.php:59
     458#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/search.php:94
    654459#: themes/commentpress-modern/archive.php:82
    655460#: themes/commentpress-modern/blog.php:51
     
    662467#: themes/commentpress-theme/index.php:41
    663468#: themes/commentpress-theme/search.php:70
    664 msgid "1 Comment &#187;"
    665 msgstr "Ein Kommentar &#187;"
    666 
    667 #: themes/commentpress-modern/archive.php:82
    668 #: themes/commentpress-modern/blog.php:51
    669 #: themes/commentpress-modern/category.php:59
    670 #: themes/commentpress-modern/index.php:56
    671 #: themes/commentpress-modern/search.php:94
    672 #: themes/commentpress-theme/archive.php:56
    673 #: themes/commentpress-theme/blog.php:50
    674 #: themes/commentpress-theme/category.php:48
    675 #: themes/commentpress-theme/index.php:41
    676 #: themes/commentpress-theme/search.php:70
    677 msgid "% Comments &#187;"
    678 msgstr "% Kommentare &#187;"
    679 
    680 #: themes/commentpress-modern/archive.php:92
    681 #: themes/commentpress-modern/blog.php:61
    682 #: themes/commentpress-modern/category.php:69
    683 #: themes/commentpress-modern/image.php:156
    684 #: themes/commentpress-theme/archive.php:66
    685 #: themes/commentpress-theme/blog.php:60
    686 #: themes/commentpress-theme/category.php:58
    687 #: themes/commentpress-theme/image.php:156
    688 msgid "Not Found"
     469msgid "Edit"
     470msgstr "Bearbeiten"
     471
     472#: commentpress-core/assets/includes/theme/theme-functions.php:2963
     473msgid "Permalink for this comment"
     474msgstr "Permalink für diesen Kommentar"
     475
     476#: commentpress-core/assets/includes/theme/theme-functions.php:3236
     477#: themes/commentpress-flat/functions.php:506
     478#: themes/commentpress-modern/functions.php:575
     479#: themes/commentpress-theme/functions.php:452
     480msgid "Next page"
     481msgstr "Nächste Seite"
     482
     483#: commentpress-core/assets/includes/theme/theme-functions.php:3237
     484#: themes/commentpress-flat/functions.php:536
     485#: themes/commentpress-modern/functions.php:605
     486#: themes/commentpress-theme/functions.php:480
     487msgid "Previous page"
     488msgstr "Vorherige Seite"
     489
     490#: commentpress-core/assets/includes/theme/theme-functions.php:3255
     491msgid "Pages: "
     492msgstr "Seiten:"
     493
     494#: commentpress-core/assets/includes/theme/theme-functions.php:3997
     495msgid "Untitled Widget"
     496msgstr "Unerkannt Widget"
     497
     498#: commentpress-core/assets/includes/theme/theme-functions.php:4094
     499msgid "Newer version"
     500msgstr "Neuere Version"
     501
     502#: commentpress-core/assets/includes/theme/theme-functions.php:4129
     503msgid "Older version"
     504msgstr "Ältere Version"
     505
     506#: commentpress-core/assets/widgets/widget-license.php:40
     507#: themes/commentpress-flat/assets/widgets/widgets.php:40
     508msgid "CommentPress Footer Text"
     509msgstr "CommentPress Fusszeile"
     510
     511#: commentpress-core/assets/widgets/widget-license.php:132
     512#: themes/commentpress-flat/assets/widgets/widgets.php:132
     513msgid "Title:"
     514msgstr "Überschrift:"
     515
     516#: commentpress-core/assets/widgets/widget-license.php:138
     517#: themes/commentpress-flat/assets/widgets/widgets.php:138
     518msgid "Automatically add paragraphs"
     519msgstr "Absätze automatisch hinzufügen"
     520
     521#: commentpress-core/class_commentpress.php:389
     522msgid "CommentPress Core has been updated. Please visit the "
     523msgstr "CommentPress Kern wurde aktualisiert. Bitte besuchen Sie die"
     524
     525#: commentpress-core/class_commentpress.php:389
     526msgid "Settings Page"
     527msgstr "Einstellungen"
     528
     529#: commentpress-core/class_commentpress.php:434
     530#: commentpress-core/class_commentpress_display.php:1382
     531#: commentpress-multisite/class_commentpress_mu_admin.php:845
     532#: commentpress-multisite/class_commentpress_mu_admin.php:1067
     533msgid "CommentPress Core Settings"
     534msgstr "CommentPress Core-Einstellungen"
     535
     536#. Plugin Name of the plugin/theme
     537#: commentpress-core/class_commentpress.php:435
     538#: commentpress-multisite/class_commentpress_mu_admin.php:846
     539msgid "CommentPress Core"
     540msgstr "CommentPress Kern"
     541
     542#: commentpress-core/class_commentpress.php:835
     543#: commentpress-core/class_commentpress.php:844
     544msgid "CommentPress Core Options"
     545msgstr "CommentPress Core-Optionen"
     546
     547#: commentpress-core/class_commentpress.php:857
     548msgid "Workflow"
     549msgstr "Arbeitsablauf"
     550
     551#: commentpress-core/class_commentpress.php:905
     552msgid "Page Title Visibility"
     553msgstr "Page Titel Sichtbarkeit"
     554
     555#: commentpress-core/class_commentpress.php:925
     556msgid "Show page title"
     557msgstr "Seitentitel anzeigen"
     558
     559#: commentpress-core/class_commentpress.php:926
     560msgid "Hide page title"
     561msgstr "Seiten-Titel verstecken"
     562
     563#: commentpress-core/class_commentpress.php:938
     564msgid "Page Meta Visibility"
     565msgstr "Seite Meta Sichtbarkeit"
     566
     567#: commentpress-core/class_commentpress.php:958
     568#: commentpress-core/class_commentpress_display.php:1487
     569#: commentpress-core/class_commentpress_display.php:1847
     570msgid "Show page meta"
     571msgstr "Zeige Seite meta"
     572
     573#: commentpress-core/class_commentpress.php:959
     574#: commentpress-core/class_commentpress_display.php:1488
     575#: commentpress-core/class_commentpress_display.php:1848
     576msgid "Hide page meta"
     577msgstr "Ausblenden Seite meta"
     578
     579#: commentpress-core/class_commentpress.php:978
     580msgid "Page Number Format"
     581msgstr "Seitenzahlenformat"
     582
     583#: commentpress-core/class_commentpress.php:998
     584msgid "Arabic numerals"
     585msgstr "arabische Ziffern"
     586
     587#: commentpress-core/class_commentpress.php:999
     588msgid "Roman numerals"
     589msgstr "römische Zahlen"
     590
     591#: commentpress-core/class_commentpress.php:1016
     592msgid "Page Layout"
     593msgstr "Seitenlayout"
     594
     595#: commentpress-core/class_commentpress.php:1036
     596msgid "Standard"
     597msgstr "Standard"
     598
     599#: commentpress-core/class_commentpress.php:1037
     600msgid "Wide"
     601msgstr "Gross"
     602
     603#: commentpress-core/class_commentpress.php:1085
     604msgid "This post already has a new version"
     605msgstr "Dieser Beitrag hat bereits eine neue Version"
     606
     607#: commentpress-core/class_commentpress.php:1091
     608msgid "Edit new version"
     609msgstr "Neue Version bearbeiten"
     610
     611#: commentpress-core/class_commentpress.php:1104
     612msgid "Versioning"
     613msgstr "Versionierung"
     614
     615#: commentpress-core/class_commentpress.php:1107
     616msgid "Create new version"
     617msgstr "Neue Version erstellen"
     618
     619#: commentpress-core/class_commentpress.php:1156
     620#: commentpress-core/class_commentpress.php:1189
     621msgid "CommentPress Core Help"
     622msgstr "CommentPress Core-Hilfe"
     623
     624#: commentpress-core/class_commentpress.php:1258
     625msgid ""
     626"This comment has been marked as spam. Please contact a site administrator."
     627msgstr ""
     628"Dieser Kommentar wurde als Spam markiert. Bitte kontaktieren Sie einen "
     629"Administrator der Website."
     630
     631#: commentpress-core/class_commentpress.php:1546
     632#: commentpress-core/class_commentpress_db.php:3555
     633#: themes/commentpress-flat/assets/templates/navigation.php:82
     634#: themes/commentpress-modern/assets/templates/navigation.php:82
     635#: themes/commentpress-theme/assets/templates/navigation.php:237
     636msgid "Title Page"
     637msgstr "Titelseite"
     638
     639#: commentpress-core/class_commentpress.php:1551
     640#: commentpress-core/class_commentpress_db.php:3676
     641#: themes/commentpress-flat/functions.php:763
     642#: themes/commentpress-modern/functions.php:832
     643#: themes/commentpress-theme/functions.php:701
     644msgid "All Comments"
     645msgstr "Alle Kommentare"
     646
     647#: commentpress-core/class_commentpress.php:1555
     648#: commentpress-core/class_commentpress_db.php:3623
     649#: themes/commentpress-flat/comments-general.php:34
     650#: themes/commentpress-modern/comments-general.php:34
     651#: themes/commentpress-theme/comments-general.php:33
     652msgid "General Comments"
     653msgstr "Allgemeine Kommentare"
     654
     655#: commentpress-core/class_commentpress.php:1559
     656#: commentpress-core/class_commentpress_db.php:3782
     657#: themes/commentpress-theme/assets/templates/navigation.php:77
     658msgid "Blog"
     659msgstr "Seite"
     660
     661#: commentpress-core/class_commentpress.php:1564
     662#: commentpress-core/class_commentpress_db.php:3838
     663msgid "Blog Archive"
     664msgstr "Blogarchiv"
     665
     666#: commentpress-core/class_commentpress.php:1572
     667msgid "Members"
     668msgstr "Anmeldungen"
     669
     670#: commentpress-core/class_commentpress.php:2443
     671msgid "Text Formatting"
     672msgstr "Textformatierung"
     673
     674#: commentpress-core/class_commentpress.php:2519
     675msgid "Default Sidebar"
     676msgstr "Standardseitenleiste"
     677
     678#: commentpress-core/class_commentpress.php:2539
     679#: commentpress-core/class_commentpress_display.php:1823
     680#: commentpress-core/class_commentpress_display.php:2241
     681#: themes/commentpress-flat/assets/templates/toc_sidebar.php:15
     682#: themes/commentpress-modern/assets/templates/toc_sidebar.php:15
     683#: themes/commentpress-theme/sidebar.php:156
     684msgid "Contents"
     685msgstr "Inhalt"
     686
     687#: commentpress-core/class_commentpress.php:2540
     688#: commentpress-core/class_commentpress_display.php:1824
     689#: commentpress-core/class_commentpress_display.php:2242
     690#: themes/commentpress-flat/assets/templates/activity_sidebar.php:72
     691#: themes/commentpress-flat/assets/templates/header_body.php:35
     692#: themes/commentpress-flat/sidebar.php:119
     693#: themes/commentpress-modern/assets/templates/activity_sidebar.php:72
     694#: themes/commentpress-modern/sidebar.php:119
     695#: themes/commentpress-theme/assets/templates/activity_sidebar.php:72
     696#: themes/commentpress-theme/sidebar.php:109
     697msgid "Activity"
     698msgstr "Aktivität"
     699
     700#: commentpress-core/class_commentpress.php:2564
     701msgid "Starting Paragraph Number"
     702msgstr "Ab Absatznummer"
     703
     704#: commentpress-core/class_commentpress_db.php:1295
     705#: commentpress-multisite/class_commentpress_mu_admin.php:378
     706msgid "You must supply an option to option_exists()"
     707msgstr "Sie müssen eine Option option_exists () liefern"
     708
     709#: commentpress-core/class_commentpress_db.php:1321
     710#: commentpress-multisite/class_commentpress_mu_admin.php:401
     711msgid "You must supply an option to option_get()"
     712msgstr "Sie müssen eine Option option_get () liefern"
     713
     714#: commentpress-core/class_commentpress_db.php:1346
     715#: commentpress-multisite/class_commentpress_mu_admin.php:423
     716msgid "You must supply an option to option_set()"
     717msgstr "Sie müssen eine Option option_set () liefern"
     718
     719#: commentpress-core/class_commentpress_db.php:1354
     720#: commentpress-multisite/class_commentpress_mu_admin.php:428
     721msgid "You must supply the option as a string to option_set()"
     722msgstr "Sie müssen die Option als String liefern zu option_set ()"
     723
     724#: commentpress-core/class_commentpress_db.php:1378
     725#: commentpress-multisite/class_commentpress_mu_admin.php:449
     726msgid "You must supply an option to option_delete()"
     727msgstr "Sie müssen eine Option option_delete () liefern"
     728
     729#: commentpress-core/class_commentpress_db.php:1403
     730msgid "You must supply an option to option_wp_exists()"
     731msgstr "Sie müssen eine Option option_wp_exists () liefern"
     732
     733#: commentpress-core/class_commentpress_db.php:1439
     734msgid "You must supply an option to option_wp_get()"
     735msgstr "Sie müssen eine Option option_wp_get () liefern"
     736
     737#: commentpress-core/class_commentpress_db.php:1464
     738msgid "You must supply an option to option_wp_set()"
     739msgstr "Sie müssen eine Option option_wp_set () liefern"
     740
     741#: commentpress-core/class_commentpress_db.php:3473
     742msgid "Copy of "
     743msgstr "Kopie von"
     744
     745#: commentpress-core/class_commentpress_db.php:3561
     746#: commentpress-multisite/class_commentpress_mu_ms.php:749
     747msgid ""
     748"Welcome to your new CommentPress site, which allows your readers to comment "
     749"paragraph-by-paragraph or line-by-line in the margins of a text. Annotate, "
     750"gloss, workshop, debate: with CommentPress you can do all of these things on "
     751"a finer-grained level, turning a document into a conversation.\n"
     752"\n"
     753"This is your title page. Edit it to suit your needs. It has been "
     754"automatically set as your homepage but if you want another page as your "
     755"homepage, set it in <em>WordPress</em> &#8594; <em>Settings</em> &#8594; <em>"
     756"Reading</em>.\n"
     757"\n"
     758"You can also set a number of options in <em>WordPress</em> &#8594; <em>"
     759"Settings</em> &#8594; <em>CommentPress</em> to make the site work the way "
     760"you want it to. Use the Theme Customizer to change the way your site looks "
     761"in <em>WordPress</em> &#8594; <em>Appearance</em> &#8594; <em>Customize</em>."
     762" For help with structuring, formatting and reading text in CommentPress, "
     763"please refer to the <a href=\"http://www.futureofthebook.org/commentpress/\">"
     764"CommentPress website</a>."
     765msgstr ""
     766"Willkommen in Ihrem neuen CommentPress Website, die Ihre Leser ermöglicht "
     767"Absatz-by-Absatz zu kommentieren oder Zeile-für-Zeile am Rande eines Textes. "
     768"Anmerken, Glanz, Werkstatt, Debatte: mit CommentPress können Sie all diese "
     769"Dinge auf eine feinere Ebene tun, um ein Dokument in ein Gespräch "
     770"einschalten.\n"
     771"\n"
     772"Dies ist Ihre Titelseite. Bearbeiten Sie es an Ihre Bedürfnisse anpassen. Es "
     773"wurde als Ihre Homepage automatisch eingestellt, aber wenn Sie eine andere "
     774"Seite als Startseite wollen, setzen Sie ihn in <em>Wordpress</em> &#8594; "
     775"<em>Einstellungen</em> &#8594; <em>Lesen</em>.\n"
     776"\n"
     777"Sie können auch eine Reihe von Optionen in <em>Wordpress</em> &#8594; "
     778"festgelegt; <em>Einstellungen</em> &#8594; <em>CommentPress</em> auf der "
     779"Seite machen die Art und Weise arbeiten Sie es wollen. Verwenden Sie das "
     780"Theme Customizer, um die Art und Weise ändern, um Ihre Website sieht in <em>"
     781"Wordpress</em> &#8594; <em>Aussehen</em> &#8594; <em>Anpassen</em>. Für "
     782"Hilfe bei der Strukturierung, Formatierung und das Lesen von Text in "
     783"CommentPress, finden Sie in der <a href=\"http://www.futureofthebook."
     784"org/commentpress/\">CommentPress Website</a>."
     785
     786#: commentpress-core/class_commentpress_db.php:3629
     787#: commentpress-core/class_commentpress_db.php:3682
     788#: commentpress-core/class_commentpress_db.php:3735
     789#: commentpress-core/class_commentpress_db.php:3788
     790#: commentpress-core/class_commentpress_db.php:3844
     791#: commentpress-core/class_commentpress_db.php:3897
     792msgid ""
     793"Do not delete this page. Page content is generated with a custom template."
     794msgstr ""
     795"Verpassen Sie nicht diese Seite zu löschen. Seiteninhalt wird mit einer "
     796"benutzerdefinierten Vorlage erzeugt."
     797
     798#: commentpress-core/class_commentpress_db.php:3891
     799#: commentpress-core/class_commentpress_display.php:1445
     800#: themes/commentpress-flat/assets/templates/toc_dropdown.php:9
     801#: themes/commentpress-flat/assets/templates/toc_sidebar.php:78
     802#: themes/commentpress-flat/functions.php:70
     803#: themes/commentpress-modern/assets/templates/toc_dropdown.php:9
     804#: themes/commentpress-modern/assets/templates/toc_sidebar.php:78
     805#: themes/commentpress-modern/functions.php:126
     806#: themes/commentpress-theme/assets/templates/toc_dropdown.php:9
     807#: themes/commentpress-theme/assets/templates/toc_sidebar.php:9
     808#: themes/commentpress-theme/functions.php:118
     809msgid "Table of Contents"
     810msgstr "Inhaltsverzeichnis"
     811
     812#: commentpress-core/class_commentpress_display.php:326
     813msgid "Quote &amp; Comment"
     814msgstr "Zitat & amp; Kommentar"
     815
     816#: commentpress-core/class_commentpress_display.php:329
     817msgid "Quote"
     818msgstr "Zitat"
     819
     820#: commentpress-core/class_commentpress_display.php:340
     821msgid ""
     822"You have not yet submitted your comment. Are you sure you want to discard it?"
     823msgstr ""
     824"Sie haben noch nicht Ihren Kommentar abgegeben. Sind Sie sicher, dass Sie es "
     825"zu verwerfen?"
     826
     827#: commentpress-core/class_commentpress_display.php:341
     828msgid "Discard"
     829msgstr "Verwerfen"
     830
     831#: commentpress-core/class_commentpress_display.php:342
     832msgid "Keep"
     833msgstr "Behalte"
     834
     835#: commentpress-core/class_commentpress_display.php:343
     836msgid "Back"
     837msgstr "Zurück"
     838
     839#: commentpress-core/class_commentpress_display.php:1186
     840msgid "Minimise all Comment Sections"
     841msgstr "Minimieren Sie alle Kommentare Abschnitte"
     842
     843#: commentpress-core/class_commentpress_display.php:1191
     844msgid "Minimise all Activity Sections"
     845msgstr "Minimieren Sie alle Aktivität Abschnitte"
     846
     847#: commentpress-core/class_commentpress_display.php:1196
     848msgid "Minimise all Contents Sections"
     849msgstr "Minimieren Sie alle Inhalte Abschnitte"
     850
     851#: commentpress-core/class_commentpress_display.php:1218
     852msgid "Minimise Header"
     853msgstr "Header minimieren"
     854
     855#: commentpress-core/class_commentpress_display.php:1345
     856msgid " The following options have become available in the new version."
     857msgstr " Die folgenden Optionen sind in der neuen Version verfügbar."
     858
     859#: commentpress-core/class_commentpress_display.php:1350
     860msgid "CommentPress Core Upgrade"
     861msgstr "CommentPress Core Upgrade"
     862
     863#: commentpress-core/class_commentpress_display.php:1360
     864msgid "Please upgrade CommentPress Core"
     865msgstr "Bitte aktualisieren Sie CommentPress Core"
     866
     867#: commentpress-core/class_commentpress_display.php:1362
     868msgid "It looks like you are running an older version of CommentPress Core."
     869msgstr "Sie benutzen eine ältere Version von CommentPress-Core."
     870
     871#: commentpress-core/class_commentpress_display.php:1373
     872#: commentpress-multisite/class_commentpress_mu_admin.php:1061
     873msgid "Upgrade"
     874msgstr "Upgrade"
     875
     876#: commentpress-core/class_commentpress_display.php:1419
     877msgid ""
     878"When a supplied CommentPress theme (or a valid CommentPress child theme) is "
     879"active, the following options modify its behaviour."
     880msgstr ""
     881"Wenn ein CommentPress Theme (oder eine gültige CommentPress Child-Theme) "
     882"aktiv ist, ändern Sie die folgenden Optionen dessen Verhalten."
     883
     884#: commentpress-core/class_commentpress_display.php:1425
     885#: commentpress-multisite/class_commentpress_mu_ms.php:500
     886msgid "Global Options"
     887msgstr "Globale Optionen"
     888
     889#: commentpress-core/class_commentpress_display.php:1447
     890msgid ""
     891"Choose how you want your Table of Contents to appear and function.<br />\n"
     892"\t\t<strong style=\"color: red;\">NOTE!</strong> When Chapters are Pages, "
     893"the TOC will always show Sub-Pages, since collapsing the TOC makes no sense "
     894"in that situation."
     895msgstr ""
     896"Wählen Sie, wie Sie Ihre Inhaltsverzeichnis erscheinen und Funktion soll. "
     897"<br />\n"
     898"<strong style=\"color: red;\">HINWEIS!</strong> Wenn die Kapitel Seiten sind,"
     899" wird der TOC immer auf Unterseiten zeigen, da die TOC kollabiert in dieser "
     900"Situation keinen Sinn macht."
     901
     902#: commentpress-core/class_commentpress_display.php:1460
     903msgid "Page Display Options"
     904msgstr "Seite Anzeigeoptionen"
     905
     906#: commentpress-core/class_commentpress_display.php:1465
     907#: commentpress-core/class_commentpress_display.php:1799
     908msgid ""
     909"Enable Featured Images (Note: if you have already implemented this in a "
     910"child theme, you should choose \"No\")"
     911msgstr ""
     912"Aktivieren Besondere Aufnahmen (Hinweis: Wenn Sie dies bereits bei einem "
     913"Kind Thema umgesetzt haben, sollten Sie \"Nein\")"
     914
     915#: commentpress-core/class_commentpress_display.php:1467
     916#: commentpress-core/class_commentpress_display.php:1730
     917#: commentpress-core/class_commentpress_display.php:1754
     918#: commentpress-core/class_commentpress_display.php:1800
     919#: commentpress-core/class_commentpress_display.php:2312
     920#: commentpress-core/class_commentpress_display.php:2342
     921msgid "Yes"
     922msgstr "Ja"
     923
     924#: commentpress-core/class_commentpress_display.php:1468
     925#: commentpress-core/class_commentpress_display.php:1731
     926#: commentpress-core/class_commentpress_display.php:1755
     927#: commentpress-core/class_commentpress_display.php:1801
     928#: commentpress-core/class_commentpress_display.php:2313
     929#: commentpress-core/class_commentpress_display.php:2343
     930msgid "No"
     931msgstr "Nein"
     932
     933#: commentpress-core/class_commentpress_display.php:1476
     934msgid "Default page title visibility (can be overridden on individual pages)"
     935msgstr ""
     936"Standardseite Titel Sichtbarkeit (kann auf einzelnen Seiten außer Kraft "
     937"gesetzt werden)"
     938
     939#: commentpress-core/class_commentpress_display.php:1478
     940#: commentpress-core/class_commentpress_display.php:2009
     941msgid "Show page titles"
     942msgstr "Seitentitel anzeigen"
     943
     944#: commentpress-core/class_commentpress_display.php:1479
     945#: commentpress-core/class_commentpress_display.php:2010
     946msgid "Hide page titles"
     947msgstr "Seitentitel ausblenden"
     948
     949#: commentpress-core/class_commentpress_display.php:1485
     950msgid "Default page meta visibility (can be overridden on individual pages)"
     951msgstr ""
     952"Standardseite Information Sichtbarkeit (kann auf einzelnen Seiten außer "
     953"Kraft gesetzt werden)"
     954
     955#: commentpress-core/class_commentpress_display.php:1496
     956msgid "Blog excerpt length"
     957msgstr "Blog-Ausschnitt Länge"
     958
     959#: commentpress-core/class_commentpress_display.php:1497
     960msgid "words"
     961msgstr "Wörter"
     962
     963#: commentpress-core/class_commentpress_display.php:1506
     964msgid "Commenting Options"
     965msgstr "Kommentar-Optionen"
     966
     967#: commentpress-core/class_commentpress_display.php:1520
     968msgid "Theme Customisation"
     969msgstr "Theme Anpassung"
     970
     971#: commentpress-core/class_commentpress_display.php:1522
     972msgid ""
     973"You can set a custom background colour in <em>Appearance &#8594; "
     974"Background</em>.<br />\n"
     975"\t\tYou can also set a custom header image and header text colour in <em>"
     976"Appearance &#8594; Header</em>.<br />\n"
     977"\t\tBelow are extra options for changing how the theme functions."
     978msgstr ""
     979"Sie können eine benutzerdefinierte Hintergrundfarbe in <em>"
     980"Erscheinungsbild</em> &#8594; <em>Hintergrund</em>. <br />\n"
     981"Sie können auch einen benutzerdefinierten Header-Bild und Kopftextfarbe in "
     982"<em>Erscheinungsbild</em> &#8594; <em>Header</em>. <br />\n"
     983"Im Folgenden finden Sie zusätzliche Optionen für die Änderung, wie das Thema "
     984"Funktionen."
     985
     986#: commentpress-core/class_commentpress_display.php:1529
     987#: commentpress-core/class_commentpress_display.php:2030
     988msgid "Scroll speed"
     989msgstr "Scrollgeschwindigkeit"
     990
     991#: commentpress-core/class_commentpress_display.php:1530
     992#: commentpress-core/class_commentpress_display.php:2031
     993msgid "milliseconds"
     994msgstr "Millisekunden"
     995
     996#: commentpress-core/class_commentpress_display.php:1534
     997#: commentpress-core/class_commentpress_display.php:2048
     998msgid "Minimum page width"
     999msgstr "Mindestseitenbreite"
     1000
     1001#: commentpress-core/class_commentpress_display.php:1535
     1002#: commentpress-core/class_commentpress_display.php:2049
     1003msgid "pixels"
     1004msgstr "Pixeln"
     1005
     1006#: commentpress-core/class_commentpress_display.php:1580
     1007#: commentpress-core/class_commentpress_formatter.php:100
     1008#: commentpress-multisite/class_commentpress_mu_bp.php:1407
     1009msgid "Default Text Format"
     1010msgstr "Standard-Text-Format"
     1011
     1012#: commentpress-core/class_commentpress_display.php:1586
     1013msgid " (can be overridden on individual pages)"
     1014msgstr " (Kann auf einzelne Seiten überschrieben werden)"
     1015
     1016#: commentpress-core/class_commentpress_display.php:1634
     1017#: commentpress-core/class_commentpress_display.php:1922
     1018#: commentpress-multisite/class_commentpress_mu_admin.php:696
     1019#: commentpress-multisite/class_commentpress_mu_bp.php:2038
     1020#: commentpress-multisite/class_commentpress_mu_bp.php:2297
     1021msgid "Enable Custom Workflow"
     1022msgstr "Custom-Workflow aktivieren"
     1023
     1024#: commentpress-core/class_commentpress_display.php:1685
     1025msgid "Post Types on which CommentPress Core is enabled."
     1026msgstr "Beitragstypen, auf denen CommentPress Core aktiviert ist."
     1027
     1028#: commentpress-core/class_commentpress_display.php:1776
     1029#: commentpress-core/class_commentpress_display.php:2425
     1030msgid "Show paragraph meta (Number and Comment Icon)"
     1031msgstr "Zeige Absatz Informationen (Nummer und Kommentar-Symbol)"
     1032
     1033#: commentpress-core/class_commentpress_display.php:1777
     1034#: commentpress-core/class_commentpress_display.php:2427
     1035msgid "Always"
     1036msgstr "Immer"
     1037
     1038#: commentpress-core/class_commentpress_display.php:1778
     1039#: commentpress-core/class_commentpress_display.php:2428
     1040msgid "On rollover"
     1041msgstr "On rollover"
     1042
     1043#: commentpress-core/class_commentpress_display.php:1822
     1044#: commentpress-core/class_commentpress_display.php:2240
     1045msgid ""
     1046"Which sidebar do you want to be active by default? (can be overridden on "
     1047"individual pages)"
     1048msgstr ""
     1049"Welche Sidebar soll standardmäßig aktiv sein? (Kann auf einzelne Seiten "
     1050"überschrieben werden)"
     1051
     1052#: commentpress-core/class_commentpress_display.php:1846
     1053msgid "Show or hide page meta by default"
     1054msgstr "Seiten Information standardmäßig ein- oder ausblenden"
     1055
     1056#: commentpress-core/class_commentpress_display.php:1877
     1057msgid "Blog Type"
     1058msgstr "Blog-Typ"
     1059
     1060#: commentpress-core/class_commentpress_display.php:1943
     1061#: commentpress-core/class_commentpress_display.php:2178
     1062msgid "Appearance of TOC for posts"
     1063msgstr "Aussehen des Inhaltsverzeichnisses für Beiträge"
     1064
     1065#: commentpress-core/class_commentpress_display.php:1944
     1066#: commentpress-core/class_commentpress_display.php:2179
     1067msgid "Extended information"
     1068msgstr "Erweiterte Informationen"
     1069
     1070#: commentpress-core/class_commentpress_display.php:1945
     1071#: commentpress-core/class_commentpress_display.php:2180
     1072msgid "Just the title"
     1073msgstr "Nur der Titel"
     1074
     1075#: commentpress-core/class_commentpress_display.php:1965
     1076#: commentpress-core/class_commentpress_display.php:2122
     1077msgid "Comment form editor"
     1078msgstr "Kommentar Formular-Editor"
     1079
     1080#: commentpress-core/class_commentpress_display.php:1966
     1081#: commentpress-core/class_commentpress_display.php:2123
     1082msgid "Rich-text Editor"
     1083msgstr "Rich-Text-Editor"
     1084
     1085#: commentpress-core/class_commentpress_display.php:1967
     1086#: commentpress-core/class_commentpress_display.php:2124
     1087msgid "Plain-text Editor"
     1088msgstr "Plain-Text-Editor"
     1089
     1090#: commentpress-core/class_commentpress_display.php:1986
     1091#: commentpress-core/class_commentpress_display.php:2126
     1092msgid "Default comment form behaviour"
     1093msgstr "Standardkommentarverhalten"
     1094
     1095#: commentpress-core/class_commentpress_display.php:1987
     1096#: commentpress-core/class_commentpress_display.php:2127
     1097msgid "Promote reading"
     1098msgstr "Lesen bewerben"
     1099
     1100#: commentpress-core/class_commentpress_display.php:1988
     1101#: commentpress-core/class_commentpress_display.php:2128
     1102msgid "Promote commenting"
     1103msgstr "Kommentieren bewerben"
     1104
     1105#: commentpress-core/class_commentpress_display.php:2008
     1106msgid "Show or hide page titles by default"
     1107msgstr "Seitentitel standardmäßig ein- oder ausblenden"
     1108
     1109#: commentpress-core/class_commentpress_display.php:2095
     1110msgid "Reset options to plugin defaults"
     1111msgstr "Plugin Einstellungen zurücksetzen"
     1112
     1113#: commentpress-core/class_commentpress_display.php:2168
     1114msgid "Table of Contents contains"
     1115msgstr "Inhaltsverzeichnis enthält"
     1116
     1117#: commentpress-core/class_commentpress_display.php:2169
     1118msgid "Posts"
     1119msgstr "Beiträge"
     1120
     1121#: commentpress-core/class_commentpress_display.php:2170
     1122#: commentpress-core/class_commentpress_display.php:2173
     1123#: commentpress-multisite/class_commentpress_mu_bp.php:346
     1124msgid "Pages"
     1125msgstr "Seite"
     1126
     1127#: commentpress-core/class_commentpress_display.php:2172
     1128msgid "Chapters are"
     1129msgstr "Die Kapitel sind"
     1130
     1131#: commentpress-core/class_commentpress_display.php:2174
     1132msgid "Headings"
     1133msgstr "Überschriften"
     1134
     1135#: commentpress-core/class_commentpress_display.php:2279
     1136msgid ""
     1137"Enable \"live\" comment refreshing (Please note: may cause heavy load on "
     1138"your server)"
     1139msgstr ""
     1140"Aktivieren Sie \"live\" Kommentar erfrischend (Bitte beachten Sie: "
     1141"verursachen schwere Last auf dem Server)"
     1142
     1143#: commentpress-core/class_commentpress_display.php:2398
     1144msgid "Post Types on which CommentPress Core is enabled"
     1145msgstr "Beitragstypen, auf denen CommentPress Core aktiviert ist"
     1146
     1147#: commentpress-core/class_commentpress_display.php:2452
     1148#: commentpress-multisite/class_commentpress_mu_admin.php:1054
     1149#: commentpress-multisite/class_commentpress_mu_ms.php:579
     1150msgid "Save Changes"
     1151msgstr "Änderungen speichern."
     1152
     1153#: commentpress-core/class_commentpress_editor.php:339
     1154msgid "Author Mode: Write"
     1155msgstr "Autorenmodus: Schreiben"
     1156
     1157#: commentpress-core/class_commentpress_editor.php:341
     1158msgid "Author Mode: Comment"
     1159msgstr "Autor Modus: Kommentar"
     1160
     1161#: commentpress-core/class_commentpress_editor.php:459
     1162msgid "Options"
     1163msgstr "Optionen"
     1164
     1165#: commentpress-core/class_commentpress_editor.php:585
     1166#: commentpress-core/class_commentpress_editor.php:623
     1167#: commentpress-core/class_commentpress_editor.php:667
     1168#: commentpress-core/class_commentpress_editor.php:705
     1169#: commentpress-core/class_commentpress_editor.php:742
     1170msgid "Option saved"
     1171msgstr "Option gespeichert"
     1172
     1173#: commentpress-core/class_commentpress_editor.php:591
     1174#: commentpress-core/class_commentpress_editor.php:629
     1175#: commentpress-core/class_commentpress_editor.php:673
     1176#: commentpress-core/class_commentpress_editor.php:710
     1177#: commentpress-core/class_commentpress_editor.php:747
     1178msgid "Could not save this option."
     1179msgstr "Könnte diese Option nicht speichern."
     1180
     1181#: commentpress-core/class_commentpress_editor.php:870
     1182#: commentpress-core/class_commentpress_editor.php:873
     1183msgid "Switch to Commenting Mode"
     1184msgstr "Wechseln Sie in den Kommentarmodus"
     1185
     1186#: commentpress-core/class_commentpress_editor.php:878
     1187#: commentpress-core/class_commentpress_editor.php:881
     1188msgid "Switch to Writing Mode"
     1189msgstr "Wechseln Sie in den Schreibmodus"
     1190
     1191#: commentpress-core/class_commentpress_formatter.php:119
     1192#: commentpress-multisite/class_commentpress_mu_bp.php:1425
     1193msgid "Prose"
     1194msgstr "Prosa"
     1195
     1196#: commentpress-core/class_commentpress_formatter.php:120
     1197#: commentpress-multisite/class_commentpress_mu_bp.php:1426
     1198msgid "Poetry"
     1199msgstr "Poesie"
     1200
     1201#: commentpress-core/class_commentpress_nav.php:1122
     1202msgid "Cannot represent numbers larger than 4999 in plain ASCII."
     1203msgstr ""
     1204"Zahlen größer als 4999 können in einfachen ASCII nicht dargestellt werden."
     1205
     1206#: commentpress-core/class_commentpress_parser.php:339
     1207msgid "block"
     1208msgstr "block"
     1209
     1210#: commentpress-core/class_commentpress_parser.php:343
     1211msgid "line"
     1212msgstr "Linie"
     1213
     1214#: commentpress-core/class_commentpress_workflow.php:112
     1215#: commentpress-multisite/class_commentpress_mu_bp.php:1464
     1216msgid "Enable Translation Workflow"
     1217msgstr "Übersetzungs-Workflow aktivieren"
     1218
     1219#: commentpress-core/class_commentpress_workflow.php:169
     1220#: themes/commentpress-flat/page.php:333
     1221#: themes/commentpress-flat/single.php:350
     1222#: themes/commentpress-modern/page.php:338
     1223#: themes/commentpress-modern/single.php:355
     1224#: themes/commentpress-theme/single.php:306
     1225msgid "Original Text"
     1226msgstr "Original Text"
     1227
     1228#: commentpress-core/class_commentpress_workflow.php:193
     1229#: themes/commentpress-flat/page.php:306
     1230#: themes/commentpress-flat/single.php:323
     1231#: themes/commentpress-modern/page.php:311
     1232#: themes/commentpress-modern/single.php:328
     1233#: themes/commentpress-theme/single.php:279
     1234msgid "Literal Translation"
     1235msgstr "Wörtliche Übersetzung"
     1236
     1237#: commentpress-core/class_commentpress_workflow.php:231
     1238msgid "Translations"
     1239msgstr "Übersetzungen"
     1240
     1241#: commentpress-core.php:116
     1242msgid ""
     1243"CommentPress Core Error: file \"%s\" is missing from the plugin directory."
     1244msgstr ""
     1245"CommentPress Core-Fehler: Datei \"%s\" fehlt aus dem Plugin-Verzeichnis."
     1246
     1247#: commentpress-core.php:259
     1248msgid "Settings"
     1249msgstr "Einstellungen"
     1250
     1251#: commentpress-core.php:263
     1252msgid "Donate!"
     1253msgstr "Spenden!"
     1254
     1255#: commentpress-multisite/class_commentpress_mu_admin.php:471
     1256msgid "You must supply an option to option_wpms_exists()"
     1257msgstr "Sie müssen eine Option für option_wpms_exists () angeben."
     1258
     1259#: commentpress-multisite/class_commentpress_mu_admin.php:498
     1260msgid "You must supply an option to option_wpms_get()"
     1261msgstr "Sie müssen eine Option für option_wpms_get () angeben."
     1262
     1263#: commentpress-multisite/class_commentpress_mu_admin.php:520
     1264msgid "You must supply an option to option_wpms_set()"
     1265msgstr "Sie müssen eine Option für option_wpms_set () angeben."
     1266
     1267#: commentpress-multisite/class_commentpress_mu_admin.php:741
     1268#: commentpress-multisite/class_commentpress_mu_bp.php:2067
     1269#: commentpress-multisite/class_commentpress_mu_bp.php:2326
     1270msgid "Document Type"
     1271msgstr "Dokumenttyp"
     1272
     1273#: commentpress-multisite/class_commentpress_mu_admin.php:913
     1274msgid ""
     1275"CommentPress Core has detected that a previous version of CommentPress is "
     1276"active on this site. Please visit the <a href=\"options-general.php?"
     1277"page=commentpress_admin\">Settings Page</a> to upgrade."
     1278msgstr ""
     1279"CommentPress Core hat erkannt, dass eine frühere Version von CommentPress "
     1280"auf dieser Seite aktiv ist. Bitte besuchen Sie die <a href=\"options-general."
     1281"php?page=commentpress_admin\">Einstellungen Seite</a> zu aktualisieren."
     1282
     1283#: commentpress-multisite/class_commentpress_mu_admin.php:931
     1284msgid "Deactivate CommentPress Core"
     1285msgstr "CommentPress Core deaktivieren"
     1286
     1287#: commentpress-multisite/class_commentpress_mu_admin.php:1053
     1288msgid "Activate CommentPress"
     1289msgstr "CommentPress aktivieren"
     1290
     1291#: commentpress-multisite/class_commentpress_mu_admin.php:1060
     1292msgid "Upgrade to CommentPress Core"
     1293msgstr "Upgrade auf CommentPress Core"
     1294
     1295#: commentpress-multisite/class_commentpress_mu_admin.php:1075
     1296msgid "Activation"
     1297msgstr "Aktivierung"
     1298
     1299#: commentpress-multisite/class_commentpress_mu_bp.php:351
     1300msgid "Commented on a page"
     1301msgstr "Kommentierte auf einer Seite"
     1302
     1303#: commentpress-multisite/class_commentpress_mu_bp.php:353
     1304msgid "%1$s commented on the <a href=\"%2$s\">page</a>"
     1305msgstr "%1$s kommentierte auf der <a href=\"%2$s\">Seite</a>"
     1306
     1307#: commentpress-multisite/class_commentpress_mu_bp.php:354
     1308msgid "%1$s commented on the <a href=\"%2$s\">page</a>, on the site %3$s"
     1309msgstr ""
     1310"%1$s kommentierte auf der <a href=\"%2$s\">Seite</a>, auf dem Site %3$s"
     1311
     1312#: commentpress-multisite/class_commentpress_mu_bp.php:600
     1313#: commentpress-multisite/class_commentpress_mu_bp.php:611
     1314#: commentpress-multisite/class_commentpress_mu_bp.php:623
     1315#: commentpress-multisite/class_commentpress_mu_bp.php:818
     1316msgid "post"
     1317msgstr "Veröffentlichen"
     1318
     1319#: commentpress-multisite/class_commentpress_mu_bp.php:659
     1320msgid "comment"
     1321msgstr "Kommentar"
     1322
     1323#: commentpress-multisite/class_commentpress_mu_bp.php:664
     1324msgid "%s left a %s on a %s %s in the group %s:"
     1325msgstr "%s hinterließ %s auf einem %s %s in der Gruppe %s:"
     1326
     1327#: commentpress-multisite/class_commentpress_mu_bp.php:884
     1328msgid "%s updated a %s %s in the group %s:"
     1329msgstr "%s aktualisierte %s %s in der Gruppe %s:"
     1330
     1331#: commentpress-multisite/class_commentpress_mu_bp.php:895
     1332msgid "%s wrote a new %s %s in the group %s:"
     1333msgstr "%s hat einen neuen %s %s in der Gruppe %s:"
     1334
     1335#: commentpress-multisite/class_commentpress_mu_bp.php:1094
     1336msgid "CommentPress Comments"
     1337msgstr "CommentPress Kommentare"
     1338
     1339#: commentpress-multisite/class_commentpress_mu_bp.php:1117
     1340msgid "CommentPress Posts"
     1341msgstr "CommentPress Beiträge"
     1342
     1343#: commentpress-multisite/class_commentpress_mu_bp.php:1186
     1344#: commentpress-multisite/class_commentpress_mu_workshop.php:84
     1345msgid "Document"
     1346msgstr "Dokument"
     1347
     1348#: commentpress-multisite/class_commentpress_mu_bp.php:1239
     1349msgid "Document Home Page"
     1350msgstr "Document Homepage"
     1351
     1352#: commentpress-multisite/class_commentpress_mu_bp.php:1362
     1353msgid "View Site"
     1354msgstr "Seite anzeigen"
     1355
     1356#: commentpress-multisite/class_commentpress_mu_bp.php:1369
     1357#: commentpress-multisite/class_commentpress_mu_bp.php:1383
     1358msgid "View Document"
     1359msgstr "Dokument ansehen"
     1360
     1361#: commentpress-multisite/class_commentpress_mu_bp.php:1376
     1362msgid "View Group Blog"
     1363msgstr "Gruppenblog anzeigen"
     1364
     1365#: commentpress-multisite/class_commentpress_mu_bp.php:1576
     1366msgid "Create a New Site"
     1367msgstr "Neue Website anlegen"
     1368
     1369#: commentpress-multisite/class_commentpress_mu_bp.php:2005
     1370msgid ""
     1371"Select the options for your new CommentPress-enabled blog. Note: if you "
     1372"choose an existing blog as a group blog, setting these options will have no "
     1373"effect."
     1374msgstr ""
     1375"Wählen Sie die Optionen für die neue CommentPress-fähigen Blog. Hinweis: "
     1376"Wenn Sie einen bestehenden Blog als Gruppen-Blog wählen, haben diese "
     1377"Optionen keinen Effekt."
     1378
     1379#: commentpress-multisite/class_commentpress_mu_bp.php:2013
     1380#: commentpress-multisite/class_commentpress_mu_bp.php:2275
     1381#: commentpress-multisite/class_commentpress_mu_ms.php:211
     1382msgid "Enable CommentPress"
     1383msgstr "Aktivieren Sie CommentPress"
     1384
     1385#: commentpress-multisite/class_commentpress_mu_bp.php:2020
     1386msgid ""
     1387"When you create a group blog, you can choose to enable it as a CommentPress "
     1388"blog. This is a \"one time only\" option because you cannot disable "
     1389"CommentPress from here once the group blog is created. Note: if you choose "
     1390"an existing blog as a group blog, setting this option will have no effect."
     1391msgstr ""
     1392"Wenn Sie eine Gruppen-Blog erstellen, können Sie es als CommentPress Blog "
     1393"aktivieren. Dieser Vorgang kann nicht rückgängig gemacht werden, da man "
     1394"CommentPress nicht deaktivieren kann, sobald der Gruppen-Blog erstellt wurde."
     1395" Hinweis: Wenn Sie einen bestehenden Blog als Gruppen-Blog wählen, hat diese "
     1396"Option keine Auswirkung."
     1397
     1398#: commentpress-multisite/class_commentpress_mu_bp.php:2100
     1399#: commentpress-multisite/class_commentpress_mu_bp.php:2361
     1400msgid "CommentPress Options"
     1401msgstr "CommentPress Optionen"
     1402
     1403#: commentpress-multisite/class_commentpress_mu_bp.php:2268
     1404#: commentpress-multisite/class_commentpress_mu_ms.php:203
     1405msgid "Select the options for your new CommentPress document."
     1406msgstr "Wählen Sie die Optionen für Ihr neues CommentPress Dokument."
     1407
     1408#: commentpress-multisite/class_commentpress_mu_bp.php:2280
     1409#: commentpress-multisite/class_commentpress_mu_ms.php:218
     1410msgid "Do you want to make the new site a CommentPress document?"
     1411msgstr "Möchten Sie die neue Site zu ein CommentPress Dokument machen?"
     1412
     1413#: commentpress-multisite/class_commentpress_mu_bp.php:2502
     1414msgid "BuddyPress &amp; Groupblog Settings"
     1415msgstr "BuddyPress &amp; Gruppenblog Einstellungen"
     1416
     1417#: commentpress-multisite/class_commentpress_mu_bp.php:2504
     1418msgid ""
     1419"Configure how CommentPress interacts with BuddyPress and BuddyPress "
     1420"Groupblog."
     1421msgstr ""
     1422"Konfigurieren, wie CommentPress interagiert mit Buddypress und Buddy "
     1423"Groupblog."
     1424
     1425#: commentpress-multisite/class_commentpress_mu_bp.php:2509
     1426msgid "Reset BuddyPress settings"
     1427msgstr "BuddyPress Einstellungen zurücksetzen"
     1428
     1429#: commentpress-multisite/class_commentpress_mu_bp.php:2514
     1430msgid "Make all new Groupblogs CommentPress-enabled"
     1431msgstr "Machen Sie alle neuen Gruppenblog CommentPress-fähigen"
     1432
     1433#: commentpress-multisite/class_commentpress_mu_bp.php:2521
     1434msgid "Private Groups must have Private Groupblogs"
     1435msgstr "Private Gruppen müssen Privat-Gruppenblogs haben"
     1436
     1437#: commentpress-multisite/class_commentpress_mu_bp.php:2526
     1438msgid "Require user login to post comments on Groupblogs"
     1439msgstr "Erfordert Anmeldung, um Kommentare in Gruppenblogs zu posten."
     1440
     1441#: commentpress-multisite/class_commentpress_mu_bp.php:2625
     1442msgid "Select theme for CommentPress Groupblogs"
     1443msgstr "Wählen Sie Thema für CommentPress Gruppenblogs"
     1444
     1445#: commentpress-multisite/class_commentpress_mu_ms.php:131
     1446#: commentpress-multisite/class_commentpress_mu_ms.php:132
     1447msgid "CommentPress"
     1448msgstr "CommentPress"
     1449
     1450#: commentpress-multisite/class_commentpress_mu_ms.php:235
     1451msgid "CommentPress:"
     1452msgstr "CommentPress:"
     1453
     1454#: commentpress-multisite/class_commentpress_mu_ms.php:463
     1455msgid "You do not have permission to access this page."
     1456msgstr ""
     1457"Sie verfügen nicht über die notwendigen Berechtigungen, um diese Seite "
     1458"aufzurufen."
     1459
     1460#: commentpress-multisite/class_commentpress_mu_ms.php:469
     1461msgid "Options saved."
     1462msgstr "Einstellungen gespeichert."
     1463
     1464#: commentpress-multisite/class_commentpress_mu_ms.php:481
     1465msgid "CommentPress Network Settings"
     1466msgstr "CommentPress Netzwerkeinstellungen"
     1467
     1468#: commentpress-multisite/class_commentpress_mu_ms.php:494
     1469msgid "Multisite Settings"
     1470msgstr "Multisite-Einstellungen"
     1471
     1472#: commentpress-multisite/class_commentpress_mu_ms.php:496
     1473msgid ""
     1474"Configure how your CommentPress Network behaves. Site-specific options are "
     1475"set on the CommentPress Core Settings page for that site."
     1476msgstr ""
     1477"Konfigurieren Sie, wie Sie Ihre CommentPress Netzwerk verhält. Die "
     1478"ortsspezifische Optionen sind auf der CommentPress Core-Seite Einstellungen "
     1479"für diese Website eingestellt."
     1480
     1481#: commentpress-multisite/class_commentpress_mu_ms.php:505
     1482msgid "Reset Multisite options"
     1483msgstr "Multisite Einstellungen zurücksetzen"
     1484
     1485#: commentpress-multisite/class_commentpress_mu_ms.php:510
     1486msgid "Make all new sites CommentPress-enabled"
     1487msgstr "Machen Sie alle neuen Sites CommentPress-fähigen"
     1488
     1489#: commentpress-multisite/class_commentpress_mu_ms.php:515
     1490msgid ""
     1491"Disable Translation Workflow (Recommended because it is still very "
     1492"experimental)"
     1493msgstr ""
     1494"Deaktivieren Sie Übersetzungs-Workflow (empfohlen, da es immer noch sehr "
     1495"experimentell ist)"
     1496
     1497#: commentpress-multisite/class_commentpress_mu_workshop.php:85
     1498msgid "Documents"
     1499msgstr "Dokumente"
     1500
     1501#: commentpress-multisite/class_commentpress_mu_workshop.php:86
     1502msgid "document"
     1503msgstr "Dokument"
     1504
     1505#: commentpress-multisite/class_commentpress_mu_workshop.php:140
     1506msgid "%s Comments"
     1507msgstr "%s Kommentare"
     1508
     1509#: commentpress-multisite/class_commentpress_mu_workshop.php:159
     1510msgid "%s Posts"
     1511msgstr "%s Beiträge"
     1512
     1513#: commentpress-multisite/class_commentpress_mu_workshop.php:178
     1514msgid "%s post"
     1515msgstr "%s Beitrag"
     1516
     1517#: commentpress-multisite/class_commentpress_mu_workshop.php:240
     1518msgid "Recent Comments in this %s"
     1519msgstr "Aktuelle Kommentare in diesem %s"
     1520
     1521#: commentpress-multisite/class_commentpress_mu_workshop.php:253
     1522msgid "Recent Comments in Site Blog"
     1523msgstr "Aktuelle Kommentare im Blog"
     1524
     1525#: commentpress-multisite/class_commentpress_mu_workshop.php:282
     1526msgid "Comments on %s Posts"
     1527msgstr "Kommentare zu %s Beiträgen"
     1528
     1529#: commentpress-multisite/class_commentpress_mu_workshop.php:307
     1530msgid "Comments on %s Pages"
     1531msgstr "Kommentare zu %s Seiten"
     1532
     1533#: commentpress-multisite/class_commentpress_mu_workshop.php:335
     1534msgid "Recent Activity in your %s"
     1535msgstr "Letzte Aktivitäten in Ihrem %s"
     1536
     1537#: commentpress-multisite/class_commentpress_mu_workshop.php:363
     1538msgid "Recent Activity in Public %s"
     1539msgstr "Letzte Aktivitäten in öffentlichen %s"
     1540
     1541#: commentpress-multisite/class_commentpress_mu_workshop.php:391
     1542msgid "%s Home Page"
     1543msgstr "%s Home"
     1544
     1545#: commentpress-multisite/class_commentpress_mu_workshop.php:411
     1546msgid "Visit %s"
     1547msgstr "Besuche %s"
     1548
     1549#: commentpress-multisite/class_commentpress_mu_workshop.php:578
     1550msgid "Change the name of a Group \"Document\"?"
     1551msgstr "Ändern Sie den Namen einer Gruppe \"Dokument\"?"
     1552
     1553#: commentpress-multisite/class_commentpress_mu_workshop.php:583
     1554msgid "Singular name for a Group \"Document\""
     1555msgstr "Singular Name für eine Gruppe \"Dokument\""
     1556
     1557#: commentpress-multisite/class_commentpress_mu_workshop.php:588
     1558msgid "Plural name for Group \"Documents\""
     1559msgstr "Plural Name für die Gruppe \"Dokumente\""
     1560
     1561#: commentpress-multisite/class_commentpress_mu_workshop.php:680
     1562msgid "Workshop"
     1563msgstr "Workshop"
     1564
     1565#: commentpress-multisite/class_commentpress_mu_workshop.php:696
     1566msgid "Workshops"
     1567msgstr "Workshops"
     1568
     1569#: themes/commentpress-flat/404.php:23
     1570#: themes/commentpress-flat/directory.php:87
     1571#: themes/commentpress-flat/page.php:377
     1572#: themes/commentpress-flat/welcome.php:158
     1573#: themes/commentpress-modern/404.php:23
     1574#: themes/commentpress-modern/directory.php:87
     1575#: themes/commentpress-modern/page.php:382
     1576#: themes/commentpress-modern/welcome.php:158
     1577#: themes/commentpress-theme/404.php:23
     1578#: themes/commentpress-theme/directory.php:87
     1579#: themes/commentpress-theme/page.php:134
     1580#: themes/commentpress-theme/welcome.php:93
     1581msgid "Page Not Found"
    6891582msgstr "Seite nicht gefunden"
    6901583
    691 #: themes/commentpress-modern/archive.php:82
    692 #: themes/commentpress-modern/blog.php:51
    693 #: themes/commentpress-modern/category.php:59
    694 #: themes/commentpress-modern/index.php:56
    695 #: themes/commentpress-modern/page.php:232
    696 #: themes/commentpress-modern/search.php:94
    697 #: themes/commentpress-theme/archive.php:56
    698 #: themes/commentpress-theme/blog.php:50
    699 #: themes/commentpress-theme/category.php:48
    700 #: themes/commentpress-theme/index.php:41 themes/commentpress-theme/page.php:73
    701 #: themes/commentpress-theme/search.php:70
    702 msgid "Posted in"
    703 msgstr "Gepostet in"
    704 
    705 #: themes/commentpress-modern/archive.php:82
    706 #: themes/commentpress-modern/blog.php:51
    707 #: themes/commentpress-modern/category.php:59
    708 #: themes/commentpress-modern/index.php:56
    709 #: themes/commentpress-modern/search.php:94
    710 #: themes/commentpress-theme/archive.php:56
    711 #: themes/commentpress-theme/blog.php:50
    712 #: themes/commentpress-theme/category.php:48
    713 #: themes/commentpress-theme/index.php:41
    714 #: themes/commentpress-theme/search.php:70
    715 msgid "No Comments &#187;"
    716 msgstr "Keine Kommentare &#187;"
    717 
     1584#: themes/commentpress-flat/archive.php:44
     1585#: themes/commentpress-flat/category.php:29
     1586#: themes/commentpress-modern/archive.php:44
     1587#: themes/commentpress-modern/category.php:29
     1588#: themes/commentpress-theme/archive.php:29
     1589#: themes/commentpress-theme/category.php:29
     1590msgid "Archive for the &#8216;%s&#8217; Category"
     1591msgstr "Archiv für die &#8216;%s&#8217; Kategorie"
     1592
     1593#: themes/commentpress-flat/archive.php:46
     1594#: themes/commentpress-modern/archive.php:46
     1595#: themes/commentpress-theme/archive.php:31
     1596msgid "Posts Tagged"
     1597msgstr "Posts Tagged"
     1598
     1599#: themes/commentpress-flat/archive.php:48
     1600#: themes/commentpress-flat/archive.php:50
     1601#: themes/commentpress-flat/archive.php:52
     1602#: themes/commentpress-modern/archive.php:48
     1603#: themes/commentpress-modern/archive.php:50
     1604#: themes/commentpress-modern/archive.php:52
     1605#: themes/commentpress-theme/archive.php:33
     1606#: themes/commentpress-theme/archive.php:35
     1607#: themes/commentpress-theme/archive.php:37
     1608msgid "Archive for"
     1609msgstr "Archiv für "
     1610
     1611#: themes/commentpress-flat/archive.php:50
     1612#: themes/commentpress-modern/archive.php:50
     1613#: themes/commentpress-theme/archive.php:35
     1614msgid "F, Y"
     1615msgstr "F Y"
     1616
     1617#: themes/commentpress-flat/archive.php:52
     1618#: themes/commentpress-modern/archive.php:52
     1619#: themes/commentpress-theme/archive.php:37
     1620msgid "Y"
     1621msgstr "Y"
     1622
     1623#: themes/commentpress-flat/archive.php:54
     1624#: themes/commentpress-modern/archive.php:54
     1625#: themes/commentpress-theme/archive.php:39
     1626msgid "Author Archive"
     1627msgstr "Autoren-Archiv"
     1628
     1629#: themes/commentpress-flat/archive.php:56
     1630#: themes/commentpress-flat/assets/templates/archive_sidebar.php:9
     1631#: themes/commentpress-flat/category.php:33
     1632#: themes/commentpress-modern/archive.php:56
     1633#: themes/commentpress-modern/assets/templates/archive_sidebar.php:9
     1634#: themes/commentpress-modern/category.php:33
     1635#: themes/commentpress-theme/archive.php:41
     1636#: themes/commentpress-theme/assets/templates/archive_sidebar.php:9
     1637#: themes/commentpress-theme/category.php:33
     1638msgid "Archives"
     1639msgstr "Archiv"
     1640
     1641#: themes/commentpress-flat/archive.php:63 themes/commentpress-flat/blog.php:41
     1642#: themes/commentpress-flat/category.php:40
     1643#: themes/commentpress-flat/index.php:46 themes/commentpress-flat/search.php:75
    7181644#: themes/commentpress-modern/archive.php:63
    7191645#: themes/commentpress-modern/blog.php:41
     
    7291655msgstr "Permalink zu"
    7301656
     1657#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
     1658#: themes/commentpress-flat/category.php:59
     1659#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/page.php:227
     1660#: themes/commentpress-flat/search.php:94
     1661#: themes/commentpress-flat/single.php:202
    7311662#: themes/commentpress-modern/archive.php:82
    7321663#: themes/commentpress-modern/blog.php:51
     
    7451676msgstr "Tags: "
    7461677
    747 #: themes/commentpress-modern/archive.php:56
    748 #: themes/commentpress-modern/assets/templates/archive_sidebar.php:9
    749 #: themes/commentpress-modern/category.php:33
    750 #: themes/commentpress-theme/archive.php:41
    751 #: themes/commentpress-theme/assets/templates/archive_sidebar.php:9
    752 #: themes/commentpress-theme/category.php:33
    753 msgid "Archives"
    754 msgstr "Archiv"
    755 
    756 #: themes/commentpress-modern/archive.php:52
    757 #: themes/commentpress-theme/archive.php:37
    758 msgid "Y"
    759 msgstr "Y"
    760 
    761 #: themes/commentpress-modern/archive.php:54
    762 #: themes/commentpress-theme/archive.php:39
    763 msgid "Author Archive"
    764 msgstr "Autoren-Archiv"
    765 
    766 #: themes/commentpress-modern/archive.php:44
    767 #: themes/commentpress-modern/category.php:29
    768 #: themes/commentpress-theme/archive.php:29
    769 #: themes/commentpress-theme/category.php:29
    770 msgid "Archive for the &#8216;%s&#8217; Category"
    771 msgstr "Archiv für die & # 8216;% s & # 8217; Kategorie"
    772 
    773 #: themes/commentpress-modern/archive.php:46
    774 #: themes/commentpress-theme/archive.php:31
    775 msgid "Posts Tagged"
    776 msgstr "Posts Tagged"
    777 
    778 #: themes/commentpress-modern/archive.php:48
    779 #: themes/commentpress-modern/archive.php:50
    780 #: themes/commentpress-modern/archive.php:52
    781 #: themes/commentpress-theme/archive.php:33
    782 #: themes/commentpress-theme/archive.php:35
    783 #: themes/commentpress-theme/archive.php:37
    784 msgid "Archive for"
    785 msgstr "Archiv für "
    786 
    787 #: themes/commentpress-modern/archive.php:50
    788 #: themes/commentpress-theme/archive.php:35
    789 msgid "F, Y"
    790 msgstr "F Y"
    791 
    792 #: commentpress-multisite/class_commentpress_mu_workshop.php:517
    793 msgid "Change the name of a Group \"Document\"?"
    794 msgstr "Ändern Sie den Namen einer Gruppe \"Dokument\"?"
    795 
    796 #: commentpress-multisite/class_commentpress_mu_workshop.php:522
    797 msgid "Singular name for a Group \"Document\""
    798 msgstr "Singular Name für eine Gruppe \"Dokument\""
    799 
    800 #: commentpress-multisite/class_commentpress_mu_workshop.php:527
    801 msgid "Plural name for Group \"Documents\""
    802 msgstr "Plural Name für die Gruppe \"Dokumente\""
    803 
    804 #: commentpress-multisite/class_commentpress_mu_workshop.php:615
    805 msgid "Workshop"
    806 msgstr "Workshop"
    807 
    808 #: commentpress-multisite/class_commentpress_mu_workshop.php:629
    809 msgid "Workshops"
    810 msgstr "Workshops"
    811 
    812 #: themes/commentpress-modern/404.php:23
    813 #: themes/commentpress-modern/directory.php:87
    814 #: themes/commentpress-modern/page.php:382
    815 #: themes/commentpress-modern/welcome.php:164
    816 #: themes/commentpress-theme/404.php:23
    817 #: themes/commentpress-theme/directory.php:87
    818 #: themes/commentpress-theme/page.php:134
    819 #: themes/commentpress-theme/welcome.php:93
    820 msgid "Page Not Found"
    821 msgstr "Seite nicht gefunden"
    822 
    823 #: commentpress-multisite/class_commentpress_mu_ms.php:474
    824 msgid "CommentPress Network Settings"
    825 msgstr "CommentPress Netzwerkeinstellungen"
    826 
    827 #: commentpress-multisite/class_commentpress_mu_ms.php:487
    828 msgid "Multisite Settings"
    829 msgstr "Multisite-Einstellungen"
    830 
    831 #: commentpress-multisite/class_commentpress_mu_ms.php:489
    832 msgid "Configure how your CommentPress Network behaves. Site-specific options are set on the CommentPress Core Settings page for that site."
    833 msgstr "Konfigurieren Sie, wie Sie Ihre CommentPress Netzwerk verhält. Die ortsspezifische Optionen sind auf der CommentPress Core-Seite Einstellungen für diese Website eingestellt."
    834 
    835 #: commentpress-multisite/class_commentpress_mu_ms.php:498
    836 msgid "Reset Multisite options"
    837 msgstr "Multisite Einstellungen zurücksetzen"
    838 
    839 #: commentpress-multisite/class_commentpress_mu_ms.php:503
    840 msgid "Make all new sites CommentPress-enabled"
    841 msgstr "Machen Sie alle neuen Sites CommentPress-fähigen"
    842 
    843 #: commentpress-multisite/class_commentpress_mu_ms.php:508
    844 msgid "Disable Translation Workflow (Recommended because it is still very experimental)"
    845 msgstr "Deaktivieren Sie Übersetzungs-Workflow (empfohlen, da es immer noch sehr experimentell ist)"
    846 
    847 #: commentpress-multisite/class_commentpress_mu_workshop.php:103
    848 msgid "%s Comments"
    849 msgstr "%s Kommentare"
    850 
    851 #: commentpress-multisite/class_commentpress_mu_workshop.php:120
    852 msgid "%s Posts"
    853 msgstr "%s Beiträge"
    854 
    855 #: commentpress-multisite/class_commentpress_mu_workshop.php:137
    856 msgid "%s post"
    857 msgstr "%s Beitrag"
    858 
    859 #: commentpress-multisite/class_commentpress_mu_workshop.php:193
    860 msgid "Recent Comments in this %s"
    861 msgstr "Aktuelle Kommentare in diesem % s"
    862 
    863 #: commentpress-multisite/class_commentpress_mu_workshop.php:206
    864 msgid "Recent Comments in Site Blog"
    865 msgstr "Aktuelle Kommentare im Blog"
    866 
    867 #: commentpress-multisite/class_commentpress_mu_workshop.php:233
    868 msgid "Comments on %s Posts"
    869 msgstr "Kommentare zu %s Beiträgen"
    870 
    871 #: commentpress-multisite/class_commentpress_mu_workshop.php:256
    872 msgid "Comments on %s Pages"
    873 msgstr "Kommentare zu %s Seiten"
    874 
    875 #: commentpress-multisite/class_commentpress_mu_workshop.php:282
    876 msgid "Recent Activity in your %s"
    877 msgstr "Letzte Aktivitäten in Ihrem %s"
    878 
    879 #: commentpress-multisite/class_commentpress_mu_workshop.php:308
    880 msgid "Recent Activity in Public %s"
    881 msgstr "Letzte Aktivitäten in öffentlichen %s"
    882 
    883 #: commentpress-multisite/class_commentpress_mu_workshop.php:334
    884 msgid "%s Home Page"
    885 msgstr "%s Home"
    886 
    887 #: commentpress-multisite/class_commentpress_mu_workshop.php:352
    888 msgid "Visit %s"
    889 msgstr "Besuche %s"
    890 
    891 #: commentpress-multisite/class_commentpress_mu_ms.php:462
    892 msgid "Options saved."
    893 msgstr "Einstellungen gespeichert."
    894 
    895 #: commentpress-multisite/class_commentpress_mu_bp.php:1862
    896 msgid "Select the options for your new CommentPress-enabled blog. Note: if you choose an existing blog as a group blog, setting these options will have no effect."
    897 msgstr "Wählen Sie die Optionen für die neue CommentPress-fähigen Blog. Hinweis: Wenn Sie einen bestehenden Blog als Gruppen-Blog wählen, haben diese Optionen keinen Effekt."
    898 
    899 #: commentpress-multisite/class_commentpress_mu_bp.php:1870
    900 #: commentpress-multisite/class_commentpress_mu_bp.php:2138
    901 #: commentpress-multisite/class_commentpress_mu_ms.php:210
    902 msgid "Enable CommentPress"
    903 msgstr "Aktivieren Sie CommentPress"
    904 
    905 #: commentpress-multisite/class_commentpress_mu_bp.php:1877
    906 msgid "When you create a group blog, you can choose to enable it as a CommentPress blog. This is a \"one time only\" option because you cannot disable CommentPress from here once the group blog is created. Note: if you choose an existing blog as a group blog, setting this option will have no effect."
    907 msgstr "Wenn Sie eine Gruppen-Blog erstellen, können Sie es als CommentPress Blog aktivieren. Dieser Vorgang kann nicht rückgängig gemacht werden, da man CommentPress nicht deaktivieren kann, sobald der Gruppen-Blog erstellt wurde. Hinweis: Wenn Sie einen bestehenden Blog als Gruppen-Blog wählen, hat diese Option keine Auswirkung."
    908 
    909 #: commentpress-multisite/class_commentpress_mu_bp.php:1959
    910 #: commentpress-multisite/class_commentpress_mu_bp.php:2224
    911 msgid "CommentPress Options"
    912 msgstr "CommentPress Optionen"
    913 
    914 #: commentpress-multisite/class_commentpress_mu_bp.php:2131
    915 #: commentpress-multisite/class_commentpress_mu_ms.php:202
    916 msgid "Select the options for your new CommentPress document."
    917 msgstr "Wählen Sie die Optionen für Ihr neues CommentPress Dokument."
    918 
    919 #: commentpress-multisite/class_commentpress_mu_bp.php:2143
    920 #: commentpress-multisite/class_commentpress_mu_ms.php:217
    921 msgid "Do you want to make the new site a CommentPress document?"
    922 msgstr "Möchten Sie die neue Site zu ein CommentPress Dokument machen?"
    923 
    924 #: commentpress-multisite/class_commentpress_mu_bp.php:2358
    925 msgid "BuddyPress &amp; Groupblog Settings"
    926 msgstr "BuddyPress &amp; Gruppenblog Einstellungen"
    927 
    928 #: commentpress-multisite/class_commentpress_mu_bp.php:2360
    929 msgid "Configure how CommentPress interacts with BuddyPress and BuddyPress Groupblog."
    930 msgstr "Konfigurieren, wie CommentPress interagiert mit Buddypress und Buddy Groupblog."
    931 
    932 #: commentpress-multisite/class_commentpress_mu_bp.php:2365
    933 msgid "Reset BuddyPress settings"
    934 msgstr "BuddyPress Einstellungen zurücksetzen"
    935 
    936 #: commentpress-multisite/class_commentpress_mu_bp.php:2370
    937 msgid "Make all new Groupblogs CommentPress-enabled"
    938 msgstr "Machen Sie alle neuen Gruppenblog CommentPress-fähigen"
    939 
    940 #: commentpress-multisite/class_commentpress_mu_bp.php:2377
    941 msgid "Private Groups must have Private Groupblogs"
    942 msgstr "Private Gruppen müssen Privat-Gruppenblogs haben"
    943 
    944 #: commentpress-multisite/class_commentpress_mu_bp.php:2382
    945 msgid "Require user login to post comments on Groupblogs"
    946 msgstr "Erfordert Anmeldung, um Kommentare in Gruppenblogs zu posten."
    947 
    948 #: commentpress-multisite/class_commentpress_mu_bp.php:2479
    949 msgid "Select theme for CommentPress Groupblogs"
    950 msgstr "Wählen Sie Thema für CommentPress Gruppenblogs"
    951 
    952 #: commentpress-multisite/class_commentpress_mu_ms.php:131
    953 #: commentpress-multisite/class_commentpress_mu_ms.php:132
    954 msgid "CommentPress"
    955 msgstr "CommentPress"
    956 
    957 #: commentpress-multisite/class_commentpress_mu_ms.php:234
    958 msgid "CommentPress:"
    959 msgstr "CommentPress:"
    960 
    961 #: commentpress-multisite/class_commentpress_mu_ms.php:456
    962 msgid "You do not have permission to access this page."
    963 msgstr "Sie verfügen nicht über die notwendigen Berechtigungen, um diese Seite aufzurufen."
    964 
    965 #: commentpress-multisite/class_commentpress_mu_bp.php:1301
    966 #: commentpress-multisite/class_commentpress_mu_bp.php:1315
    967 msgid "View Document"
    968 msgstr "Dokument ansehen"
    969 
    970 #: commentpress-multisite/class_commentpress_mu_bp.php:1308
    971 msgid "View Group Blog"
    972 msgstr "Gruppenblog anzeigen"
    973 
    974 #: commentpress-multisite/class_commentpress_mu_bp.php:1492
    975 msgid "Create a New Site"
    976 msgstr "Neue Website anlegen"
    977 
    978 #: commentpress-multisite/class_commentpress_mu_bp.php:610
    979 msgid "comment"
    980 msgstr "Kommentar"
    981 
    982 #: commentpress-multisite/class_commentpress_mu_bp.php:615
    983 msgid "%s left a %s on a %s %s in the group %s:"
    984 msgstr "%s hinterließ %s auf einem %s %s in der Gruppe %s:"
    985 
    986 #: commentpress-multisite/class_commentpress_mu_bp.php:831
    987 msgid "%s updated a %s %s in the group %s:"
    988 msgstr "%s aktualisierte %s %s in der Gruppe %s:"
    989 
    990 #: commentpress-multisite/class_commentpress_mu_bp.php:842
    991 msgid "%s wrote a new %s %s in the group %s:"
    992 msgstr "%s hat einen neuen %s %s in der Gruppe %s:"
    993 
    994 #: commentpress-multisite/class_commentpress_mu_bp.php:1038
    995 msgid "CommentPress Comments"
    996 msgstr "CommentPress Kommentare"
    997 
    998 #: commentpress-multisite/class_commentpress_mu_bp.php:1061
    999 msgid "CommentPress Posts"
    1000 msgstr "CommentPress Beiträge"
    1001 
    1002 #: commentpress-multisite/class_commentpress_mu_bp.php:1126
    1003 msgid "Document"
    1004 msgstr "Dokument"
    1005 
    1006 #: commentpress-multisite/class_commentpress_mu_bp.php:1175
    1007 msgid "Document Home Page"
    1008 msgstr "Document Homepage"
    1009 
    1010 #: commentpress-multisite/class_commentpress_mu_bp.php:1294
    1011 msgid "View Site"
    1012 msgstr "Seite anzeigen"
    1013 
    1014 #: commentpress-multisite/class_commentpress_mu_admin.php:453
    1015 msgid "You must supply an option to option_wpms_exists()"
    1016 msgstr "Sie müssen eine Option für option_wpms_exists () angeben."
    1017 
    1018 #: commentpress-multisite/class_commentpress_mu_admin.php:478
    1019 msgid "You must supply an option to option_wpms_get()"
    1020 msgstr "Sie müssen eine Option für option_wpms_get () angeben."
    1021 
    1022 #: commentpress-multisite/class_commentpress_mu_admin.php:499
    1023 msgid "You must supply an option to option_wpms_set()"
    1024 msgstr "Sie müssen eine Option für option_wpms_set () angeben."
    1025 
    1026 #: commentpress-multisite/class_commentpress_mu_admin.php:715
    1027 #: commentpress-multisite/class_commentpress_mu_bp.php:1924
    1028 #: commentpress-multisite/class_commentpress_mu_bp.php:2189
    1029 msgid "Document Type"
    1030 msgstr "Dokumenttyp"
    1031 
    1032 #: commentpress-multisite/class_commentpress_mu_admin.php:885
    1033 msgid "CommentPress Core has detected that a previous version of CommentPress is active on this site. Please visit the <a href=\"options-general.php?page=commentpress_admin\">Settings Page</a> to upgrade."
    1034 msgstr "CommentPress Core hat erkannt, dass eine frühere Version von CommentPress auf dieser Seite aktiv ist. Bitte besuchen Sie die <a href=\"options-general.php?page=commentpress_admin\"> Einstellungen Seite </a> zu aktualisieren."
    1035 
    1036 #: commentpress-multisite/class_commentpress_mu_admin.php:1019
    1037 msgid "Activate CommentPress"
    1038 msgstr "CommentPress aktivieren"
    1039 
    1040 #: commentpress-multisite/class_commentpress_mu_admin.php:1026
    1041 msgid "Upgrade to CommentPress Core"
    1042 msgstr "Upgrade auf CommentPress Core"
    1043 
    1044 #: commentpress-multisite/class_commentpress_mu_admin.php:1041
    1045 msgid "Activation"
    1046 msgstr "Aktivierung"
    1047 
    1048 #: commentpress-multisite/class_commentpress_mu_admin.php:901
    1049 msgid "Deactivate CommentPress Core"
    1050 msgstr "CommentPress Core deaktivieren"
    1051 
    1052 #: commentpress-multisite/class_commentpress_mu_bp.php:551
    1053 #: commentpress-multisite/class_commentpress_mu_bp.php:562
    1054 #: commentpress-multisite/class_commentpress_mu_bp.php:574
    1055 #: commentpress-multisite/class_commentpress_mu_bp.php:765
    1056 msgid "post"
    1057 msgstr "Veröffentlichen"
    1058 
    1059 #: commentpress-core.php:265
    1060 msgid "Settings"
    1061 msgstr "Einstellungen"
    1062 
    1063 #: commentpress-core/class_commentpress_editor.php:577
    1064 #: commentpress-core/class_commentpress_editor.php:615
    1065 #: commentpress-core/class_commentpress_editor.php:659
    1066 #: commentpress-core/class_commentpress_editor.php:697
    1067 #: commentpress-core/class_commentpress_editor.php:734
    1068 msgid "Option saved"
    1069 msgstr "Option gespeichert"
    1070 
    1071 #: commentpress-core/class_commentpress_editor.php:583
    1072 #: commentpress-core/class_commentpress_editor.php:621
    1073 #: commentpress-core/class_commentpress_editor.php:665
    1074 #: commentpress-core/class_commentpress_editor.php:702
    1075 #: commentpress-core/class_commentpress_editor.php:739
    1076 msgid "Could not save this option."
    1077 msgstr "Könnte diese Option nicht speichern."
    1078 
    1079 #: commentpress-core/class_commentpress_editor.php:856
    1080 #: commentpress-core/class_commentpress_editor.php:859
    1081 msgid "Switch to Commenting Mode"
    1082 msgstr "Wechseln Sie in den Kommentarmodus"
    1083 
    1084 #: commentpress-core/class_commentpress_editor.php:864
    1085 #: commentpress-core/class_commentpress_editor.php:867
    1086 msgid "Switch to Writing Mode"
    1087 msgstr "Wechseln Sie in den Schreibmodus"
    1088 
    1089 #: commentpress-core/class_commentpress_formatter.php:115
    1090 #: commentpress-multisite/class_commentpress_mu_bp.php:1353
    1091 msgid "Prose"
    1092 msgstr "Prosa"
    1093 
    1094 #: commentpress-core/class_commentpress_formatter.php:116
    1095 #: commentpress-multisite/class_commentpress_mu_bp.php:1354
    1096 msgid "Poetry"
    1097 msgstr "Poesie"
    1098 
    1099 #: commentpress-core/class_commentpress_workflow.php:108
    1100 #: commentpress-multisite/class_commentpress_mu_bp.php:1388
    1101 msgid "Enable Translation Workflow"
    1102 msgstr "Übersetzungs-Workflow aktivieren"
    1103 
    1104 #: commentpress-core/class_commentpress_workflow.php:161
    1105 #: themes/commentpress-modern/page.php:338
    1106 #: themes/commentpress-modern/single.php:355
    1107 #: themes/commentpress-theme/single.php:306
    1108 msgid "Original Text"
    1109 msgstr "Original Text"
    1110 
    1111 #: commentpress-core/class_commentpress_workflow.php:185
    1112 #: themes/commentpress-modern/page.php:311
    1113 #: themes/commentpress-modern/single.php:328
    1114 #: themes/commentpress-theme/single.php:279
    1115 msgid "Literal Translation"
    1116 msgstr "Wörtliche Übersetzung"
    1117 
    1118 #: commentpress-core/class_commentpress_workflow.php:221
    1119 msgid "Translations"
    1120 msgstr "Übersetzungen"
    1121 
    1122 #: commentpress-core/class_commentpress_editor.php:337
    1123 msgid "Author Mode: Write"
    1124 msgstr "Autorenmodus: Schreiben"
    1125 
    1126 #: commentpress-core/class_commentpress_editor.php:339
    1127 msgid "Author Mode: Comment"
    1128 msgstr "Autor Modus: Kommentar"
    1129 
    1130 #: commentpress-core/class_commentpress_editor.php:451
    1131 msgid "Options"
    1132 msgstr "Optionen"
    1133 
    1134 #: commentpress-core/class_commentpress_display.php:2036
    1135 msgid "Chapters are"
    1136 msgstr "Die Kapitel sind"
    1137 
    1138 #: commentpress-core/class_commentpress_display.php:2038
    1139 msgid "Headings"
    1140 msgstr "Überschriften"
    1141 
    1142 #: commentpress-core/class_commentpress_display.php:2137
    1143 msgid "Enable \"live\" comment refreshing (Please note: may cause heavy load on your server)"
    1144 msgstr "Aktivieren Sie \"live\" Kommentar erfrischend (Bitte beachten Sie: verursachen schwere Last auf dem Server)"
    1145 
    1146 #: commentpress-core/class_commentpress_display.php:2189
    1147 #: commentpress-multisite/class_commentpress_mu_admin.php:1020
    1148 #: commentpress-multisite/class_commentpress_mu_ms.php:576
    1149 msgid "Save Changes"
    1150 msgstr "Änderungen speichern."
    1151 
    1152 #: commentpress-core/class_commentpress_display.php:2034
    1153 #: commentpress-core/class_commentpress_display.php:2037
    1154 msgid "Pages"
    1155 msgstr "Seite"
    1156 
    1157 #: commentpress-core/class_commentpress_display.php:1502
    1158 #: commentpress-core/class_commentpress_display.php:1920
    1159 msgid "Minimum page width"
    1160 msgstr "Mindestseitenbreite"
    1161 
    1162 #: commentpress-core/class_commentpress_display.php:1503
    1163 #: commentpress-core/class_commentpress_display.php:1921
    1164 msgid "pixels"
    1165 msgstr "Pixeln"
    1166 
    1167 #: commentpress-core/class_commentpress_display.php:1546
    1168 #: commentpress-core/class_commentpress_formatter.php:98
    1169 #: commentpress-multisite/class_commentpress_mu_bp.php:1337
    1170 msgid "Default Text Format"
    1171 msgstr "Standard-Text-Format"
    1172 
    1173 #: commentpress-core/class_commentpress_display.php:1552
    1174 msgid " (can be overridden on individual pages)"
    1175 msgstr " (Kann auf einzelne Seiten überschrieben werden)"
    1176 
    1177 #: commentpress-core/class_commentpress_display.php:1600
    1178 #: commentpress-core/class_commentpress_display.php:1794
    1179 #: commentpress-multisite/class_commentpress_mu_admin.php:672
    1180 #: commentpress-multisite/class_commentpress_mu_bp.php:1895
    1181 #: commentpress-multisite/class_commentpress_mu_bp.php:2160
    1182 msgid "Enable Custom Workflow"
    1183 msgstr "Custom-Workflow aktivieren "
    1184 
    1185 #: commentpress-core/class_commentpress_display.php:1648
    1186 #: commentpress-core/class_commentpress_display.php:2164
    1187 msgid "Show paragraph meta (Number and Comment Icon)"
    1188 msgstr "Zeige Absatz Informationen (Nummer und Kommentar-Symbol)"
    1189 
    1190 #: commentpress-core/class_commentpress_display.php:1649
    1191 #: commentpress-core/class_commentpress_display.php:2166
    1192 msgid "Always"
    1193 msgstr "Immer"
    1194 
    1195 #: commentpress-core/class_commentpress_display.php:1650
    1196 #: commentpress-core/class_commentpress_display.php:2167
    1197 msgid "On rollover"
    1198 msgstr "On rollover"
    1199 
    1200 #: commentpress-core/class_commentpress_display.php:1694
    1201 #: commentpress-core/class_commentpress_display.php:2100
    1202 msgid "Which sidebar do you want to be active by default? (can be overridden on individual pages)"
    1203 msgstr "Welche Sidebar soll standardmäßig aktiv sein? (Kann auf einzelne Seiten überschrieben werden)"
    1204 
    1205 #: commentpress-core/class_commentpress_display.php:1718
    1206 msgid "Show or hide page meta by default"
    1207 msgstr "Seiten Information standardmäßig ein- oder ausblenden"
    1208 
    1209 #: commentpress-core/class_commentpress_display.php:1749
    1210 msgid "Blog Type"
    1211 msgstr "Blog-Typ"
    1212 
    1213 #: commentpress-core/class_commentpress_display.php:1815
    1214 #: commentpress-core/class_commentpress_display.php:2040
    1215 msgid "Appearance of TOC for posts"
    1216 msgstr "Aussehen des Inhaltsverzeichnisses für Beiträge"
    1217 
    1218 #: commentpress-core/class_commentpress_display.php:1816
    1219 #: commentpress-core/class_commentpress_display.php:2041
    1220 msgid "Extended information"
    1221 msgstr "Erweiterte Informationen"
    1222 
    1223 #: commentpress-core/class_commentpress_display.php:1817
    1224 #: commentpress-core/class_commentpress_display.php:2042
    1225 msgid "Just the title"
    1226 msgstr "Nur der Titel"
    1227 
    1228 #: commentpress-core/class_commentpress_display.php:1837
    1229 #: commentpress-core/class_commentpress_display.php:1988
    1230 msgid "Comment form editor"
    1231 msgstr "Kommentar Formular-Editor"
    1232 
    1233 #: commentpress-core/class_commentpress_display.php:1838
    1234 #: commentpress-core/class_commentpress_display.php:1989
    1235 msgid "Rich-text Editor"
    1236 msgstr "Rich-Text-Editor"
    1237 
    1238 #: commentpress-core/class_commentpress_display.php:1839
    1239 #: commentpress-core/class_commentpress_display.php:1990
    1240 msgid "Plain-text Editor"
    1241 msgstr "Plain-Text-Editor"
    1242 
    1243 #: commentpress-core/class_commentpress_display.php:1858
    1244 #: commentpress-core/class_commentpress_display.php:1992
    1245 msgid "Default comment form behaviour"
    1246 msgstr "Standardkommentarverhalten"
    1247 
    1248 #: commentpress-core/class_commentpress_display.php:1859
    1249 #: commentpress-core/class_commentpress_display.php:1993
    1250 msgid "Promote reading"
    1251 msgstr "Lesen bewerben"
    1252 
    1253 #: commentpress-core/class_commentpress_display.php:1860
    1254 #: commentpress-core/class_commentpress_display.php:1994
    1255 msgid "Promote commenting"
    1256 msgstr "Kommentieren bewerben"
    1257 
    1258 #: commentpress-core/class_commentpress_display.php:1880
    1259 msgid "Show or hide page titles by default"
    1260 msgstr "Seitentitel standardmäßig ein- oder ausblenden"
    1261 
    1262 #: commentpress-core/class_commentpress_display.php:1963
    1263 msgid "Reset options to plugin defaults"
    1264 msgstr "Plugin Einstellungen zurücksetzen"
    1265 
    1266 #: commentpress-core/class_commentpress_display.php:2032
    1267 msgid "Table of Contents contains"
    1268 msgstr "Inhaltsverzeichnis enthält"
    1269 
    1270 #: commentpress-core/class_commentpress_display.php:2033
    1271 msgid "Posts"
    1272 msgstr "Beiträge"
    1273 
    1274 #: commentpress-core/class_commentpress_display.php:1444
    1275 msgid "Default page title visibility (can be overridden on individual pages)"
    1276 msgstr "Standardseite Titel Sichtbarkeit (kann auf einzelnen Seiten außer Kraft gesetzt werden)"
    1277 
    1278 #: commentpress-core/class_commentpress_display.php:1446
    1279 #: commentpress-core/class_commentpress_display.php:1881
    1280 msgid "Show page titles"
    1281 msgstr "Seitentitel anzeigen"
    1282 
    1283 #: commentpress-core/class_commentpress_display.php:1447
    1284 #: commentpress-core/class_commentpress_display.php:1882
    1285 msgid "Hide page titles"
    1286 msgstr "Seitentitel ausblenden"
    1287 
    1288 #: commentpress-core/class_commentpress_display.php:1453
    1289 msgid "Default page meta visibility (can be overridden on individual pages)"
    1290 msgstr "Standardseite Information Sichtbarkeit (kann auf einzelnen Seiten außer Kraft gesetzt werden)"
    1291 
    1292 #: commentpress-core/class_commentpress_display.php:1464
    1293 msgid "Blog excerpt length"
    1294 msgstr "Blog-Ausschnitt Länge"
    1295 
    1296 #: commentpress-core/class_commentpress_display.php:1465
    1297 msgid "words"
    1298 msgstr "Wörter"
    1299 
    1300 #: commentpress-core/class_commentpress_display.php:1474
    1301 msgid "Commenting Options"
    1302 msgstr "Kommentar-Optionen"
    1303 
    1304 #: commentpress-core/class_commentpress_display.php:1488
    1305 msgid "Theme Customisation"
    1306 msgstr "Theme Anpassung"
    1307 
    1308 #: commentpress-core/class_commentpress_display.php:1490
    1309 msgid ""
    1310 "You can set a custom background colour in <em>Appearance &#8594; Background</em>.<br />\n"
    1311 "\t\tYou can also set a custom header image and header text colour in <em>Appearance &#8594; Header</em>.<br />\n"
    1312 "\t\tBelow are extra options for changing how the theme functions."
    1313 msgstr ""
    1314 "Sie können eine benutzerdefinierte Hintergrundfarbe in <em> Erscheinungsbild & # 8594 festgelegt; Hintergrund </ em>. <br />\n"
    1315 "Sie können auch einen benutzerdefinierten Header-Bild und Kopftextfarbe in <em> Erscheinungsbild & # 8594 festgelegt; Header </ em>. <br />\n"
    1316 "Im Folgenden finden Sie zusätzliche Optionen für die Änderung, wie das Thema Funktionen."
    1317 
    1318 #: commentpress-core/assets/includes/theme/theme-functions.php:292
    1319 msgid "Header Background Colour"
    1320 msgstr "Header-Hintergrundfarbe"
    1321 
    1322 #: commentpress-core/class_commentpress_display.php:1497
    1323 #: commentpress-core/class_commentpress_display.php:1902
    1324 msgid "Scroll speed"
    1325 msgstr "Scrollgeschwindigkeit"
    1326 
    1327 #: commentpress-core/class_commentpress_display.php:1498
    1328 #: commentpress-core/class_commentpress_display.php:1903
    1329 msgid "milliseconds"
    1330 msgstr "Millisekunden"
    1331 
    1332 #: commentpress-core/class_commentpress_display.php:1438
    1333 #: commentpress-core/class_commentpress_display.php:1673
    1334 msgid "No"
    1335 msgstr "Nein"
    1336 
    1337 #: commentpress-core/class_commentpress_display.php:1200
    1338 msgid "Minimise Header"
    1339 msgstr "Header minimieren"
    1340 
    1341 #: commentpress-core/class_commentpress_display.php:1321
    1342 msgid " The following options have become available in the new version."
    1343 msgstr " Die folgenden Optionen sind in der neuen Version verfügbar."
    1344 
    1345 #: commentpress-core/class_commentpress_display.php:1326
    1346 msgid "CommentPress Core Upgrade"
    1347 msgstr "CommentPress Core Upgrade"
    1348 
    1349 #: commentpress-core/class_commentpress_display.php:1336
    1350 msgid "Please upgrade CommentPress Core"
    1351 msgstr "Bitte aktualisieren Sie CommentPress Core"
    1352 
    1353 #: commentpress-core/class_commentpress_display.php:1338
    1354 msgid "It looks like you are running an older version of CommentPress Core."
    1355 msgstr "Sie benutzen eine ältere Version von CommentPress-Core."
    1356 
    1357 #: commentpress-core/class_commentpress_display.php:1349
    1358 #: commentpress-multisite/class_commentpress_mu_admin.php:1027
    1359 msgid "Upgrade"
    1360 msgstr "Upgrade"
    1361 
    1362 #: commentpress-core/class_commentpress_display.php:1393
    1363 msgid "When a supplied CommentPress theme (or a valid CommentPress child theme) is active, the following options modify its behaviour."
    1364 msgstr "Wenn ein CommentPress Theme (oder eine gültige CommentPress Child-Theme) aktiv ist, ändern Sie die folgenden Optionen dessen Verhalten."
    1365 
    1366 #: commentpress-core/class_commentpress_display.php:1399
    1367 #: commentpress-multisite/class_commentpress_mu_ms.php:493
    1368 msgid "Global Options"
    1369 msgstr "Globale Optionen"
    1370 
    1371 #: commentpress-core/class_commentpress_display.php:1417
    1372 msgid ""
    1373 "Choose how you want your Table of Contents to appear and function.<br />\n"
    1374 "\t\t<strong style=\"color: red;\">NOTE!</strong> When Chapters are Pages, the TOC will always show Sub-Pages, since collapsing the TOC makes no sense in that situation."
    1375 msgstr ""
    1376 "Wählen Sie, wie Sie Ihre Inhaltsverzeichnis erscheinen und Funktion soll. <br />\n"
    1377 "<Strong style = \"color: red;\">! HINWEIS </ strong> Wenn die Kapitel Seiten sind, wird der TOC immer auf Unterseiten zeigen, da die TOC kollabiert in dieser Situation keinen Sinn macht."
    1378 
    1379 #: commentpress-core/class_commentpress_display.php:1430
    1380 msgid "Page Display Options"
    1381 msgstr "Seite Anzeigeoptionen"
    1382 
    1383 #: commentpress-core/class_commentpress_display.php:1435
    1384 #: commentpress-core/class_commentpress_display.php:1671
    1385 msgid "Enable Featured Images (Note: if you have already implemented this in a child theme, you should choose \"No\")"
    1386 msgstr "Aktivieren Besondere Aufnahmen (Hinweis: Wenn Sie dies bereits bei einem Kind Thema umgesetzt haben, sollten Sie \"Nein\")"
    1387 
    1388 #: commentpress-core/class_commentpress_display.php:1437
    1389 #: commentpress-core/class_commentpress_display.php:1672
    1390 msgid "Yes"
    1391 msgstr "Ja"
    1392 
    1393 #: commentpress-core/class_commentpress_display.php:322
    1394 msgid "Keep"
    1395 msgstr "Behalte"
    1396 
    1397 #: commentpress-core/class_commentpress_display.php:323
    1398 msgid "Back"
    1399 msgstr "Zurück"
    1400 
    1401 #: commentpress-core/class_commentpress_display.php:1170
    1402 msgid "Minimise all Comment Sections"
    1403 msgstr "Minimieren Sie alle Kommentare Abschnitte"
    1404 
    1405 #: commentpress-core/class_commentpress_display.php:1175
    1406 msgid "Minimise all Activity Sections"
    1407 msgstr "Minimieren Sie alle Aktivität Abschnitte"
    1408 
    1409 #: commentpress-core/class_commentpress_display.php:1180
    1410 msgid "Minimise all Contents Sections"
    1411 msgstr "Minimieren Sie alle Inhalte Abschnitte"
    1412 
    1413 #: commentpress-core/class_commentpress_display.php:306
    1414 msgid "Quote &amp; Comment"
    1415 msgstr "Zitat & amp; Kommentar"
    1416 
    1417 #: commentpress-core/class_commentpress_display.php:309
    1418 msgid "Quote"
    1419 msgstr "Zitat"
    1420 
    1421 #: commentpress-core/class_commentpress_display.php:320
    1422 msgid "You have not yet submitted your comment. Are you sure you want to discard it?"
    1423 msgstr "Sie haben noch nicht Ihren Kommentar abgegeben. Sind Sie sicher, dass Sie es zu verwerfen?"
    1424 
    1425 #: commentpress-core/class_commentpress_display.php:321
    1426 msgid "Discard"
    1427 msgstr "Verwerfen"
    1428 
    1429 #: commentpress-core/class_commentpress.php:2474
    1430 #: commentpress-core/class_commentpress_display.php:1696
    1431 #: commentpress-core/class_commentpress_display.php:2102
    1432 #: themes/commentpress-modern/sidebar.php:119
    1433 #: themes/commentpress-theme/sidebar.php:109
    1434 msgid "Activity"
    1435 msgstr "Aktivität"
    1436 
    1437 #: commentpress-core/class_commentpress.php:2497
    1438 msgid "Starting Paragraph Number"
    1439 msgstr "Ab Absatznummer"
    1440 
    1441 #: commentpress-core/class_commentpress_db.php:1151
    1442 #: commentpress-multisite/class_commentpress_mu_admin.php:366
    1443 msgid "You must supply an option to option_exists()"
    1444 msgstr "Sie müssen eine Option option_exists () liefern"
    1445 
    1446 #: commentpress-core/class_commentpress_db.php:1175
    1447 #: commentpress-multisite/class_commentpress_mu_admin.php:387
    1448 msgid "You must supply an option to option_get()"
    1449 msgstr "Sie müssen eine Option option_get () liefern"
    1450 
    1451 #: commentpress-core/class_commentpress_db.php:1199
    1452 #: commentpress-multisite/class_commentpress_mu_admin.php:408
    1453 msgid "You must supply an option to option_set()"
    1454 msgstr "Sie müssen eine Option option_set () liefern"
    1455 
    1456 #: commentpress-core/class_commentpress_db.php:1207
    1457 #: commentpress-multisite/class_commentpress_mu_admin.php:413
    1458 msgid "You must supply the option as a string to option_set()"
    1459 msgstr "Sie müssen die Option als String liefern zu option_set ()"
    1460 
    1461 #: commentpress-core/class_commentpress_db.php:1230
    1462 #: commentpress-multisite/class_commentpress_mu_admin.php:433
    1463 msgid "You must supply an option to option_delete()"
    1464 msgstr "Sie müssen eine Option option_delete () liefern"
    1465 
    1466 #: commentpress-core/class_commentpress_db.php:1253
    1467 msgid "You must supply an option to option_wp_exists()"
    1468 msgstr "Sie müssen eine Option option_wp_exists () liefern"
    1469 
    1470 #: commentpress-core/class_commentpress_db.php:1287
    1471 msgid "You must supply an option to option_wp_get()"
    1472 msgstr "Sie müssen eine Option option_wp_get () liefern"
    1473 
    1474 #: commentpress-core/class_commentpress_db.php:1311
    1475 msgid "You must supply an option to option_wp_set()"
    1476 msgstr "Sie müssen eine Option option_wp_set () liefern"
    1477 
    1478 #: commentpress-core/class_commentpress_db.php:3207
    1479 msgid "Copy of "
    1480 msgstr "Kopie von"
    1481 
    1482 #: commentpress-core/class_commentpress_db.php:3293
    1483 #: commentpress-multisite/class_commentpress_mu_ms.php:730
    1484 msgid ""
    1485 "Welcome to your new CommentPress site, which allows your readers to comment paragraph-by-paragraph or line-by-line in the margins of a text. Annotate, gloss, workshop, debate: with CommentPress you can do all of these things on a finer-grained level, turning a document into a conversation.\n"
    1486 "\n"
    1487 "This is your title page. Edit it to suit your needs. It has been automatically set as your homepage but if you want another page as your homepage, set it in <em>WordPress</em> &#8594; <em>Settings</em> &#8594; <em>Reading</em>.\n"
    1488 "\n"
    1489 "You can also set a number of options in <em>WordPress</em> &#8594; <em>Settings</em> &#8594; <em>CommentPress</em> to make the site work the way you want it to. Use the Theme Customizer to change the way your site looks in <em>WordPress</em> &#8594; <em>Appearance</em> &#8594; <em>Customize</em>. For help with structuring, formatting and reading text in CommentPress, please refer to the <a href=\"http://www.futureofthebook.org/commentpress/\">CommentPress website</a>."
    1490 msgstr ""
    1491 "Willkommen in Ihrem neuen CommentPress Website, die Ihre Leser ermöglicht Absatz-by-Absatz zu kommentieren oder Zeile-für-Zeile am Rande eines Textes. Anmerken, Glanz, Werkstatt, Debatte: mit CommentPress können Sie all diese Dinge auf eine feinere Ebene tun, um ein Dokument in ein Gespräch einschalten.\n"
    1492 "\n"
    1493 "Dies ist Ihre Titelseite. Bearbeiten Sie es an Ihre Bedürfnisse anpassen. Es wurde als Ihre Homepage automatisch eingestellt, aber wenn Sie eine andere Seite als Startseite wollen, setzen Sie ihn in <em> Wordpress </ em> & # 8594; <Em> Einstellungen </ em> & # 8594; <Em> Lesen </ em>.\n"
    1494 "\n"
    1495 "Sie können auch eine Reihe von Optionen in <em> Wordpress </ em> & # 8594 festgelegt; <Em> Einstellungen </ em> & # 8594; <Em> CommentPress </ em> auf der Seite machen die Art und Weise arbeiten Sie es wollen. Verwenden Sie das Theme Customizer, um die Art und Weise ändern, um Ihre Website sieht in <em> Wordpress </ em> & # 8594; <Em> Aussehen </ em> & # 8594; <Em> Anpassen </ em>. Für Hilfe bei der Strukturierung, Formatierung und das Lesen von Text in CommentPress, finden Sie in der <a href=\"http://www.futureofthebook.org/commentpress/\"> CommentPress Website </a>."
    1496 
    1497 #: commentpress-core/class_commentpress_db.php:3359
    1498 #: commentpress-core/class_commentpress_db.php:3410
    1499 #: commentpress-core/class_commentpress_db.php:3461
    1500 #: commentpress-core/class_commentpress_db.php:3512
    1501 #: commentpress-core/class_commentpress_db.php:3566
    1502 #: commentpress-core/class_commentpress_db.php:3617
    1503 msgid "Do not delete this page. Page content is generated with a custom template."
    1504 msgstr "Verpassen Sie nicht diese Seite zu löschen. Seiteninhalt wird mit einer benutzerdefinierten Vorlage erzeugt."
    1505 
    1506 #: commentpress-core/class_commentpress_db.php:3611
    1507 #: commentpress-core/class_commentpress_display.php:1415
    1508 #: themes/commentpress-modern/assets/templates/toc_dropdown.php:9
    1509 #: themes/commentpress-modern/assets/templates/toc_sidebar.php:68
    1510 #: themes/commentpress-modern/functions.php:126
    1511 #: themes/commentpress-theme/assets/templates/toc_dropdown.php:9
    1512 #: themes/commentpress-theme/assets/templates/toc_sidebar.php:9
    1513 #: themes/commentpress-theme/functions.php:118
    1514 msgid "Table of Contents"
    1515 msgstr "Inhaltsverzeichnis"
    1516 
    1517 #: commentpress-core/class_commentpress.php:1526
    1518 #: commentpress-core/class_commentpress_db.php:3560
    1519 msgid "Blog Archive"
    1520 msgstr "Blogarchiv"
    1521 
    1522 #: commentpress-core/class_commentpress.php:1534
    1523 msgid "Members"
    1524 msgstr "Anmeldungen"
    1525 
    1526 #: commentpress-core/class_commentpress.php:2378
    1527 msgid "Text Formatting"
    1528 msgstr "Textformatierung"
    1529 
    1530 #: commentpress-core/class_commentpress.php:2453
    1531 msgid "Default Sidebar"
    1532 msgstr "Standardseitenleiste"
    1533 
    1534 #: commentpress-core/class_commentpress.php:2473
    1535 #: commentpress-core/class_commentpress_display.php:1695
    1536 #: commentpress-core/class_commentpress_display.php:2101
    1537 #: themes/commentpress-modern/assets/templates/toc_sidebar.php:15
    1538 #: themes/commentpress-theme/sidebar.php:156
    1539 msgid "Contents"
    1540 msgstr "Inhalt"
    1541 
    1542 #: commentpress-core/class_commentpress.php:1517
    1543 #: commentpress-core/class_commentpress_db.php:3353
    1544 #: themes/commentpress-modern/comments-general.php:34
    1545 #: themes/commentpress-theme/comments-general.php:33
    1546 msgid "General Comments"
    1547 msgstr "Allgemeine Kommentare"
    1548 
    1549 #: commentpress-core/class_commentpress.php:1521
    1550 #: commentpress-core/class_commentpress_db.php:3506
    1551 #: themes/commentpress-theme/assets/templates/navigation.php:76
    1552 msgid "Blog"
    1553 msgstr "Seite"
    1554 
    1555 #: commentpress-core/class_commentpress.php:1020
    1556 msgid "Wide"
    1557 msgstr "Gross"
    1558 
    1559 #: commentpress-core/class_commentpress.php:1068
    1560 msgid "This post already has a new version"
    1561 msgstr "Dieser Beitrag hat bereits eine neue Version"
    1562 
    1563 #: commentpress-core/class_commentpress.php:1074
    1564 msgid "Edit new version"
    1565 msgstr "Neue Version bearbeiten"
    1566 
    1567 #: commentpress-core/class_commentpress.php:1087
    1568 msgid "Versioning"
    1569 msgstr "Versionierung"
    1570 
    1571 #: commentpress-core/class_commentpress.php:1090
    1572 msgid "Create new version"
    1573 msgstr "Neue Version erstellen"
    1574 
    1575 #: commentpress-core/class_commentpress.php:1137
    1576 #: commentpress-core/class_commentpress.php:1168
    1577 msgid "CommentPress Core Help"
    1578 msgstr "CommentPress Core-Hilfe"
    1579 
    1580 #: commentpress-core/class_commentpress.php:1233
    1581 msgid "This comment has been marked as spam. Please contact a site administrator."
    1582 msgstr "Dieser Kommentar wurde als Spam markiert. Bitte kontaktieren Sie einen Administrator der Website."
    1583 
    1584 #: commentpress-core/class_commentpress.php:1508
    1585 #: commentpress-core/class_commentpress_db.php:3287
    1586 #: themes/commentpress-modern/assets/templates/navigation.php:82
    1587 #: themes/commentpress-theme/assets/templates/navigation.php:213
    1588 msgid "Title Page"
    1589 msgstr "Titelseite"
    1590 
    1591 #: commentpress-core/class_commentpress.php:1513
    1592 #: commentpress-core/class_commentpress_db.php:3404
    1593 #: themes/commentpress-modern/functions.php:831
    1594 #: themes/commentpress-theme/functions.php:701
    1595 msgid "All Comments"
    1596 msgstr "Alle Kommentare"
    1597 
    1598 #: commentpress-core/assets/includes/theme/theme-functions.php:3698
    1599 msgid "CommentPress Footer"
    1600 msgstr "CommentPress Footer"
    1601 
    1602 #: commentpress-core/assets/includes/theme/theme-functions.php:3700
    1603 msgid "An optional widget area in the page footer of the CommentPress theme"
    1604 msgstr "Ein optionales Widget Bereich in der Fußleiste des CommentPress Thema"
    1605 
    1606 #: commentpress-core/assets/includes/theme/theme-functions.php:3874
    1607 msgid "Newer version"
    1608 msgstr "Neuere Version"
    1609 
    1610 #: commentpress-core/assets/includes/theme/theme-functions.php:3909
    1611 msgid "Older version"
    1612 msgstr "Ältere Version"
    1613 
    1614 #: commentpress-core/class_commentpress.php:381
    1615 msgid "CommentPress Core has been updated. Please visit the "
    1616 msgstr "CommentPress Kern wurde aktualisiert. Bitte besuchen Sie die"
    1617 
    1618 #: commentpress-core/class_commentpress.php:381
    1619 msgid "Settings Page"
    1620 msgstr "Einstellungen"
    1621 
    1622 #: commentpress-core/class_commentpress.php:426
    1623 #: commentpress-core/class_commentpress_display.php:1358
    1624 #: commentpress-multisite/class_commentpress_mu_admin.php:817
    1625 #: commentpress-multisite/class_commentpress_mu_admin.php:1033
    1626 msgid "CommentPress Core Settings"
    1627 msgstr "CommentPress Core-Einstellungen"
    1628 
    1629 #. Plugin Name of the plugin/theme
    1630 #: commentpress-core/class_commentpress.php:427
    1631 #: commentpress-multisite/class_commentpress_mu_admin.php:818
    1632 msgid "CommentPress Core"
    1633 msgstr "CommentPress Kern"
    1634 
    1635 #: commentpress-core/class_commentpress.php:818
    1636 #: commentpress-core/class_commentpress.php:827
    1637 msgid "CommentPress Core Options"
    1638 msgstr "CommentPress Core-Optionen"
    1639 
    1640 #: commentpress-core/class_commentpress.php:840
    1641 msgid "Workflow"
    1642 msgstr "Arbeitsablauf"
    1643 
    1644 #: commentpress-core/class_commentpress.php:888
    1645 msgid "Page Title Visibility"
    1646 msgstr "Page Titel Sichtbarkeit"
    1647 
    1648 #: commentpress-core/class_commentpress.php:908
    1649 msgid "Show page title"
    1650 msgstr "Seitentitel anzeigen"
    1651 
    1652 #: commentpress-core/class_commentpress.php:909
    1653 msgid "Hide page title"
    1654 msgstr "Seiten-Titel verstecken"
    1655 
    1656 #: commentpress-core/class_commentpress.php:921
    1657 msgid "Page Meta Visibility"
    1658 msgstr "Seite Meta Sichtbarkeit"
    1659 
    1660 #: commentpress-core/class_commentpress.php:941
    1661 #: commentpress-core/class_commentpress_display.php:1455
    1662 #: commentpress-core/class_commentpress_display.php:1719
    1663 msgid "Show page meta"
    1664 msgstr "Zeige Seite meta"
    1665 
    1666 #: commentpress-core/class_commentpress.php:942
    1667 #: commentpress-core/class_commentpress_display.php:1456
    1668 #: commentpress-core/class_commentpress_display.php:1720
    1669 msgid "Hide page meta"
    1670 msgstr "Ausblenden Seite meta"
    1671 
    1672 #: commentpress-core/class_commentpress.php:961
    1673 msgid "Page Number Format"
    1674 msgstr "Seitenzahlenformat"
    1675 
    1676 #: commentpress-core/class_commentpress.php:981
    1677 msgid "Arabic numerals"
    1678 msgstr "arabische Ziffern"
    1679 
    1680 #: commentpress-core/class_commentpress.php:982
    1681 msgid "Roman numerals"
    1682 msgstr "römische Zahlen"
    1683 
    1684 #: commentpress-core/class_commentpress.php:999
    1685 msgid "Page Layout"
    1686 msgstr "Seitenlayout"
    1687 
    1688 #: commentpress-core/class_commentpress.php:1019
    1689 msgid "Standard"
    1690 msgstr "Standard"
    1691 
    1692 #: commentpress-core/assets/includes/theme/theme-functions.php:3052
    1693 msgid "Pages: "
    1694 msgstr "Seiten:"
    1695 
    1696 #: commentpress-core/assets/includes/theme/theme-functions.php:3034
    1697 #: themes/commentpress-modern/functions.php:604
    1698 #: themes/commentpress-theme/functions.php:480
    1699 msgid "Previous page"
    1700 msgstr "Vorherige Seite"
    1701 
    1702 #: commentpress-core/assets/includes/theme/theme-functions.php:2760
    1703 msgid "Permalink for this comment"
    1704 msgstr "Permalink für diesen Kommentar"
    1705 
    1706 #: commentpress-core/assets/includes/theme/theme-functions.php:3033
    1707 #: themes/commentpress-modern/functions.php:574
    1708 #: themes/commentpress-theme/functions.php:452
    1709 msgid "Next page"
    1710 msgstr "Nächste Seite"
    1711 
    1712 #: commentpress-core/assets/includes/theme/theme-functions.php:2718
    1713 msgid "Edit this comment"
    1714 msgstr "Diesen Kommentar bearbeiten"
    1715 
    1716 #: commentpress-core/assets/includes/theme/theme-functions.php:2724
     1678#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
     1679#: themes/commentpress-flat/category.php:59
     1680#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/page.php:227
     1681#: themes/commentpress-flat/search.php:94
     1682#: themes/commentpress-modern/archive.php:82
     1683#: themes/commentpress-modern/blog.php:51
     1684#: themes/commentpress-modern/category.php:59
     1685#: themes/commentpress-modern/index.php:56
     1686#: themes/commentpress-modern/page.php:232
     1687#: themes/commentpress-modern/search.php:94
     1688#: themes/commentpress-theme/archive.php:56
     1689#: themes/commentpress-theme/blog.php:50
     1690#: themes/commentpress-theme/category.php:48
     1691#: themes/commentpress-theme/index.php:41 themes/commentpress-theme/page.php:73
     1692#: themes/commentpress-theme/search.php:70
     1693msgid "Posted in"
     1694msgstr "Gepostet in"
     1695
     1696#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
     1697#: themes/commentpress-flat/category.php:59
     1698#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/search.php:94
    17171699#: themes/commentpress-modern/archive.php:82
    17181700#: themes/commentpress-modern/blog.php:51
     
    17251707#: themes/commentpress-theme/index.php:41
    17261708#: themes/commentpress-theme/search.php:70
    1727 msgid "Edit"
    1728 msgstr "Bearbeiten"
    1729 
    1730 #: commentpress-core/assets/includes/theme/theme-functions.php:2693
    1731 msgid "Reply to %s"
    1732 msgstr "Antwort an %s"
    1733 
    1734 #: commentpress-core/assets/includes/theme/theme-functions.php:2537
    1735 msgid "Log in to Reply"
    1736 msgstr "Zum Kommentieren anmelden"
    1737 
    1738 #: commentpress-core/assets/includes/theme/theme-functions.php:2447
    1739 #: themes/commentpress-modern/assets/templates/comment_form.php:81
    1740 #: themes/commentpress-theme/assets/templates/comment_form.php:61
    1741 msgid "Leave a Reply to %s"
    1742 msgstr "Hinterlasse eine Antwort auf %s"
    1743 
    1744 #: commentpress-core/assets/includes/theme/theme-functions.php:2448
    1745 msgid "Leave a Comment on %s"
    1746 msgstr "Kommentar schreiben zu %s"
    1747 
    1748 #: commentpress-core/assets/includes/theme/theme-functions.php:2491
    1749 #: commentpress-core/assets/includes/theme/theme-functions.php:2502
    1750 msgid "Paragraph %s"
    1751 msgstr "Ziffer% s"
    1752 
    1753 #: commentpress-core/assets/includes/theme/theme-functions.php:2536
    1754 msgid "Reply"
    1755 msgstr "Antwort"
    1756 
    1757 #: commentpress-core/assets/includes/theme/theme-functions.php:1932
    1758 msgid "See in context"
    1759 msgstr "Siehe in Zusammenhang"
    1760 
    1761 #: commentpress-core/assets/includes/theme/theme-functions.php:2067
    1762 #: commentpress-core/assets/includes/theme/theme-functions.php:2075
    1763 msgid "the whole page"
    1764 msgstr "dieser Seite"
    1765 
    1766 #: commentpress-core/assets/includes/theme/theme-functions.php:2074
    1767 msgid "the whole post"
    1768 msgstr "diesem Beitrag"
    1769 
    1770 #: commentpress-core/assets/includes/theme/theme-functions.php:2081
    1771 #: commentpress-core/assets/includes/theme/theme-functions.php:2192
    1772 msgid "Permalink for comments on %s"
    1773 msgstr "Permalink für Kommentare zu %s"
    1774 
    1775 #: commentpress-core/assets/includes/theme/theme-functions.php:2136
    1776 msgid "Permalink for pingbacks and trackbacks"
    1777 msgstr "Permalink für Pingbacks und Trackbacks"
    1778 
    1779 #: commentpress-core/assets/includes/theme/theme-functions.php:2160
    1780 #: commentpress-core/assets/includes/theme/theme-functions.php:2183
    1781 msgid "paragraph"
    1782 msgstr "Absatz"
    1783 
    1784 #: commentpress-core/assets/includes/theme/theme-functions.php:2167
    1785 msgid "block"
    1786 msgstr "block"
    1787 
    1788 #: commentpress-core/assets/includes/theme/theme-functions.php:2174
    1789 msgid "line"
    1790 msgstr "Linie"
    1791 
    1792 #: commentpress-core/assets/includes/theme/theme-functions.php:2248
    1793 msgid "It appears that this paragraph is a duplicate of a previous one."
    1794 msgstr "Es scheint, dass dieser Absatz ein Duplikat eines vorherige."
    1795 
    1796 #: commentpress-core/assets/includes/theme/theme-functions.php:2288
    1797 msgid "Login to leave a comment on "
    1798 msgstr "Anmelden, um einen Kommentar zu hinterlassen auf"
    1799 
    1800 #: commentpress-core/assets/includes/theme/theme-functions.php:2323
    1801 msgid "Leave a comment on %s"
    1802 msgstr "Kommentar schreiben zu %s"
    1803 
    1804 #: commentpress-core/assets/includes/theme/theme-functions.php:2446
    1805 msgid "Leave a Reply"
    1806 msgstr "Antworten"
    1807 
    1808 #: commentpress-core/assets/includes/theme/theme-functions.php:1442
    1809 msgid "%1$s by %2$s on %3$s"
    1810 msgstr "% 1 $ s von% 2 $ s auf% 3 $ s"
    1811 
    1812 #: commentpress-core/assets/includes/theme/theme-functions.php:1472
    1813 msgid "%1$s on %2$s on %3$s"
    1814 msgstr "%2 zu %2$ auf %3$"
    1815 
    1816 #: commentpress-core/assets/includes/theme/theme-functions.php:1636
    1817 #: commentpress-core/class_commentpress.php:1530
    1818 #: commentpress-core/class_commentpress_db.php:3455
    1819 msgid "Comments by Commenter"
    1820 msgstr "Kommentar von Kommentator"
    1821 
    1822 #: commentpress-core/assets/includes/theme/theme-functions.php:1855
    1823 #: commentpress-core/assets/includes/theme/theme-functions.php:2658
    1824 msgid "Comment awaiting moderation"
    1825 msgstr "Kommentar auf Moderation wart"
    1826 
    1827 #: commentpress-core/assets/includes/theme/theme-functions.php:1923
    1828 #: commentpress-core/assets/includes/theme/theme-functions.php:2745
    1829 msgid "%1$s at %2$s"
    1830 msgstr "%1$s bei %2$s"
    1831 
    1832 #: commentpress-core/assets/includes/theme/theme-functions.php:1382
    1833 msgid "See comment in context"
    1834 msgstr "Siehe Kommentar in Zusammenhang"
    1835 
    1836 #: commentpress-core/assets/includes/theme/theme-functions.php:1385
    1837 #: themes/commentpress-modern/archive.php:48
    1838 #: themes/commentpress-modern/author.php:166
    1839 #: themes/commentpress-theme/archive.php:33
    1840 msgid "F jS, Y"
    1841 msgstr "F jS, Y"
    1842 
    1843 #: commentpress-core/assets/includes/theme/theme-functions.php:1436
    1844 #: commentpress-core/assets/includes/theme/theme-functions.php:1539
    1845 #: commentpress-core/assets/includes/theme/theme-functions.php:1823
    1846 #: commentpress-multisite/class_commentpress_mu_bp.php:541
    1847 msgid "Anonymous"
    1848 msgstr "Unbekannt"
    1849 
    1850 #: commentpress-core/assets/includes/theme/theme-functions.php:1281
    1851 msgid "Source: "
    1852 msgstr "Quelle:"
    1853 
    1854 #: commentpress-core/assets/includes/theme/theme-functions.php:1341
    1855 #: commentpress-core/class_commentpress_display.php:655
    1856 msgid "Posts by %s"
    1857 msgstr "Beitrag von %s"
    1858 
    1859 #: commentpress-core/assets/includes/theme/theme-functions.php:1212
    1860 #: commentpress-core/class_commentpress_display.php:546
    1861 #: commentpress-multisite/class_commentpress_mu_bp.php:802
    1862 msgid " &amp; "
    1863 msgstr " &amp;"
    1864 
    1865 #: commentpress-core/assets/includes/theme/theme-functions.php:1240
    1866 #: commentpress-core/assets/includes/theme/theme-functions.php:1256
    1867 #: commentpress-core/class_commentpress_display.php:576
    1868 #: commentpress-core/class_commentpress_display.php:596
    1869 #: themes/commentpress-modern/image.php:54
     1709msgid "No Comments &#187;"
     1710msgstr "Keine Kommentare &#187;"
     1711
     1712#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
     1713#: themes/commentpress-flat/category.php:59
     1714#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/search.php:94
     1715#: themes/commentpress-modern/archive.php:82
     1716#: themes/commentpress-modern/blog.php:51
     1717#: themes/commentpress-modern/category.php:59
     1718#: themes/commentpress-modern/index.php:56
     1719#: themes/commentpress-modern/search.php:94
     1720#: themes/commentpress-theme/archive.php:56
     1721#: themes/commentpress-theme/blog.php:50
     1722#: themes/commentpress-theme/category.php:48
     1723#: themes/commentpress-theme/index.php:41
     1724#: themes/commentpress-theme/search.php:70
     1725msgid "1 Comment &#187;"
     1726msgstr "Ein Kommentar &#187;"
     1727
     1728#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
     1729#: themes/commentpress-flat/category.php:59
     1730#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/search.php:94
     1731#: themes/commentpress-modern/archive.php:82
     1732#: themes/commentpress-modern/blog.php:51
     1733#: themes/commentpress-modern/category.php:59
     1734#: themes/commentpress-modern/index.php:56
     1735#: themes/commentpress-modern/search.php:94
     1736#: themes/commentpress-theme/archive.php:56
     1737#: themes/commentpress-theme/blog.php:50
     1738#: themes/commentpress-theme/category.php:48
     1739#: themes/commentpress-theme/index.php:41
     1740#: themes/commentpress-theme/search.php:70
     1741msgid "% Comments &#187;"
     1742msgstr "% Kommentare &#187;"
     1743
     1744#: themes/commentpress-flat/archive.php:92 themes/commentpress-flat/blog.php:61
     1745#: themes/commentpress-flat/category.php:69
     1746#: themes/commentpress-flat/image.php:156
     1747#: themes/commentpress-modern/archive.php:92
     1748#: themes/commentpress-modern/blog.php:61
     1749#: themes/commentpress-modern/category.php:69
     1750#: themes/commentpress-modern/image.php:156
     1751#: themes/commentpress-theme/archive.php:66
     1752#: themes/commentpress-theme/blog.php:60
     1753#: themes/commentpress-theme/category.php:58
     1754#: themes/commentpress-theme/image.php:156
     1755msgid "Not Found"
     1756msgstr "Seite nicht gefunden"
     1757
     1758#: themes/commentpress-flat/archive.php:94 themes/commentpress-flat/blog.php:63
     1759#: themes/commentpress-flat/category.php:71
     1760#: themes/commentpress-flat/directory.php:89
     1761#: themes/commentpress-flat/page.php:379
     1762#: themes/commentpress-flat/welcome.php:160
     1763#: themes/commentpress-modern/archive.php:94
     1764#: themes/commentpress-modern/blog.php:63
     1765#: themes/commentpress-modern/category.php:71
     1766#: themes/commentpress-modern/directory.php:89
     1767#: themes/commentpress-modern/page.php:384
     1768#: themes/commentpress-modern/welcome.php:160
     1769#: themes/commentpress-theme/archive.php:68
     1770#: themes/commentpress-theme/blog.php:62
     1771#: themes/commentpress-theme/category.php:60
     1772#: themes/commentpress-theme/directory.php:89
     1773#: themes/commentpress-theme/page.php:136
     1774#: themes/commentpress-theme/welcome.php:95
     1775msgid "Sorry, but you are looking for something that isn't here."
     1776msgstr "Leider nicht gefunden."
     1777
     1778#: themes/commentpress-flat/archives.php:46
     1779#: themes/commentpress-modern/archives.php:46
     1780#: themes/commentpress-theme/archives.php:46
     1781msgid "Archives by Month"
     1782msgstr "Archiv nach Monat"
     1783
     1784#: themes/commentpress-flat/archives.php:58
     1785#: themes/commentpress-modern/archives.php:58
     1786#: themes/commentpress-theme/archives.php:58
     1787msgid "Categories"
     1788msgstr "Kategorien"
     1789
     1790#: themes/commentpress-flat/archives.php:100
     1791#: themes/commentpress-modern/archives.php:100
     1792#: themes/commentpress-theme/archives.php:100
     1793msgid "Tags"
     1794msgstr "Schlagworte (Tags)"
     1795
     1796#: themes/commentpress-flat/archives.php:132
     1797#: themes/commentpress-modern/archives.php:132
     1798#: themes/commentpress-theme/archives.php:132
     1799msgid "No tags yet"
     1800msgstr "Noch keine Tags Tags"
     1801
     1802#: themes/commentpress-flat/assets/templates/activity_sidebar.php:33
     1803#: themes/commentpress-modern/assets/templates/activity_sidebar.php:33
     1804#: themes/commentpress-theme/assets/templates/activity_sidebar.php:33
     1805msgid "Recent Comments on this %s"
     1806msgstr "Neueste Kommentare über diese %s"
     1807
     1808#: themes/commentpress-flat/assets/templates/activity_sidebar.php:51
     1809#: themes/commentpress-modern/assets/templates/activity_sidebar.php:51
     1810#: themes/commentpress-theme/assets/templates/activity_sidebar.php:51
     1811msgid "Recent Comments in this Document"
     1812msgstr "Aktuelle Kommentare zu diesem Dokument"
     1813
     1814#: themes/commentpress-flat/assets/templates/activity_sidebar.php:175
     1815#: themes/commentpress-modern/assets/templates/activity_sidebar.php:175
     1816#: themes/commentpress-theme/assets/templates/activity_sidebar.php:172
     1817msgid "Recent Activity in your Documents"
     1818msgstr "Letzte Aktivitäten in Ihrer Dokumente"
     1819
     1820#: themes/commentpress-flat/assets/templates/activity_sidebar.php:183
     1821#: themes/commentpress-modern/assets/templates/activity_sidebar.php:183
     1822#: themes/commentpress-theme/assets/templates/activity_sidebar.php:180
     1823msgid "Recent Activity in Public Documents"
     1824msgstr "Letzte Aktivitäten in Öffentliche Dokumente"
     1825
     1826#: themes/commentpress-flat/assets/templates/activity_sidebar.php:258
     1827#: themes/commentpress-modern/assets/templates/activity_sidebar.php:258
     1828#: themes/commentpress-theme/assets/templates/activity_sidebar.php:255
     1829msgid "Recently Active Members"
     1830msgstr "Kürzlich aktive Mitglieder"
     1831
     1832#: themes/commentpress-flat/assets/templates/activity_sidebar.php:310
     1833#: themes/commentpress-modern/assets/templates/activity_sidebar.php:310
     1834#: themes/commentpress-theme/assets/templates/activity_sidebar.php:307
     1835msgid "Who's Online"
     1836msgstr "Wer ist online"
     1837
     1838#: themes/commentpress-flat/assets/templates/comment_form.php:80
     1839#: themes/commentpress-modern/assets/templates/comment_form.php:80
     1840#: themes/commentpress-theme/assets/templates/comment_form.php:60
     1841msgid "Leave a Comment"
     1842msgstr "Schreiben Sie einen Kommentar"
     1843
     1844#: themes/commentpress-flat/assets/templates/comment_form.php:89
     1845#: themes/commentpress-flat/assets/templates/comment_form.php:204
     1846#: themes/commentpress-modern/assets/templates/comment_form.php:89
     1847#: themes/commentpress-modern/assets/templates/comment_form.php:204
     1848#: themes/commentpress-theme/assets/templates/comment_form.php:69
     1849#: themes/commentpress-theme/assets/templates/comment_form.php:184
     1850msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
     1851msgstr "Du musst <a href=\"%s\">angemeldet sein</a> um zu kommentieren."
     1852
     1853#: themes/commentpress-flat/assets/templates/comment_form.php:114
     1854#: themes/commentpress-modern/assets/templates/comment_form.php:114
     1855#: themes/commentpress-theme/assets/templates/comment_form.php:94
     1856msgid "Your details"
     1857msgstr "Ihre Details"
     1858
     1859#: themes/commentpress-flat/assets/templates/comment_form.php:118
     1860#: themes/commentpress-modern/assets/templates/comment_form.php:118
     1861#: themes/commentpress-theme/assets/templates/comment_form.php:98
     1862msgid "Logged in as"
     1863msgstr "Angemeldet als"
     1864
     1865#: themes/commentpress-flat/assets/templates/comment_form.php:118
     1866#: themes/commentpress-modern/assets/templates/comment_form.php:118
     1867#: themes/commentpress-theme/assets/templates/comment_form.php:98
     1868msgid "Log out of this account"
     1869msgstr "Von diesem Konto abmelden"
     1870
     1871#: themes/commentpress-flat/assets/templates/comment_form.php:118
     1872#: themes/commentpress-modern/assets/templates/comment_form.php:118
     1873#: themes/commentpress-theme/assets/templates/comment_form.php:98
     1874msgid "Log out"
     1875msgstr "Abmelden"
     1876
     1877#: themes/commentpress-flat/assets/templates/comment_form.php:122
     1878#: themes/commentpress-modern/assets/templates/comment_form.php:122
     1879#: themes/commentpress-theme/assets/templates/comment_form.php:102
     1880msgid "Name"
     1881msgstr "Name"
     1882
     1883#: themes/commentpress-flat/assets/templates/comment_form.php:122
     1884#: themes/commentpress-flat/assets/templates/comment_form.php:125
     1885#: themes/commentpress-modern/assets/templates/comment_form.php:122
     1886#: themes/commentpress-modern/assets/templates/comment_form.php:125
     1887#: themes/commentpress-theme/assets/templates/comment_form.php:102
     1888#: themes/commentpress-theme/assets/templates/comment_form.php:105
     1889msgid "required"
     1890msgstr "benötigt"
     1891
     1892#: themes/commentpress-flat/assets/templates/comment_form.php:125
     1893#: themes/commentpress-modern/assets/templates/comment_form.php:125
     1894#: themes/commentpress-theme/assets/templates/comment_form.php:105
     1895msgid "Mail (will not be published)"
     1896msgstr "Mailadresse (wird nicht veröffentlicht)"
     1897
     1898#: themes/commentpress-flat/assets/templates/comment_form.php:128
     1899#: themes/commentpress-modern/assets/templates/comment_form.php:128
     1900#: themes/commentpress-theme/assets/templates/comment_form.php:108
     1901#: themes/commentpress-theme/author.php:97
     1902msgid "Website"
     1903msgstr "Webseite"
     1904
     1905#: themes/commentpress-flat/assets/templates/comment_form.php:137
     1906#: themes/commentpress-modern/assets/templates/comment_form.php:137
     1907#: themes/commentpress-theme/assets/templates/comment_form.php:117
     1908msgid "Your comment"
     1909msgstr "Ihr Kommentar"
     1910
     1911#: themes/commentpress-flat/assets/templates/comment_form.php:188
     1912#: themes/commentpress-modern/assets/templates/comment_form.php:188
     1913#: themes/commentpress-theme/assets/templates/comment_form.php:168
     1914msgid "Submit Comment"
     1915msgstr "Kommentar abschicken"
     1916
     1917#: themes/commentpress-flat/assets/templates/comments_by_para.php:48
     1918#: themes/commentpress-flat/assets/templates/comments_in_page.php:29
     1919#: themes/commentpress-modern/assets/templates/comments_by_para.php:48
     1920#: themes/commentpress-modern/assets/templates/comments_in_page.php:29
     1921#: themes/commentpress-theme/assets/templates/comments_by_para.php:40
     1922#: themes/commentpress-theme/assets/templates/comments_in_page.php:29
     1923msgid "Comments are closed"
     1924msgstr "Kommentare deaktivert"
     1925
     1926#: themes/commentpress-flat/assets/templates/header_body.php:19
     1927#: themes/commentpress-modern/assets/templates/header_body.php:19
     1928#: themes/commentpress-theme/assets/templates/header_body.php:19
     1929msgid "Skip to Content"
     1930msgstr "Springe zum Inhalt"
     1931
     1932#: themes/commentpress-flat/assets/templates/header_body.php:21
     1933#: themes/commentpress-modern/assets/templates/header_body.php:21
     1934#: themes/commentpress-theme/assets/templates/header_body.php:21
     1935msgid "Skip to Table of Contents"
     1936msgstr "Direkt zum Inhalt"
     1937
     1938#: themes/commentpress-flat/assets/templates/header_body.php:33
     1939#: themes/commentpress-modern/assets/templates/header_body.php:44
     1940msgid "Navigate"
     1941msgstr "Navigieren"
     1942
     1943#: themes/commentpress-flat/assets/templates/header_body.php:40
     1944#: themes/commentpress-modern/assets/templates/header_body.php:32
     1945#: themes/commentpress-theme/assets/templates/header_body.php:34
     1946msgid "Home"
     1947msgstr "Anfang"
     1948
     1949#: themes/commentpress-flat/assets/templates/navigation.php:31
     1950#: themes/commentpress-modern/assets/templates/navigation.php:31
     1951#: themes/commentpress-theme/assets/templates/navigation.php:186
     1952msgid "Site Home Page"
     1953msgstr "Site-Homepage"
     1954
     1955#: themes/commentpress-flat/assets/templates/navigation.php:55
     1956#: themes/commentpress-modern/assets/templates/navigation.php:55
     1957#: themes/commentpress-theme/assets/templates/navigation.php:210
     1958msgid "Group Home Page"
     1959msgstr "Gruppen Homepage"
     1960
     1961#: themes/commentpress-flat/assets/templates/navigation.php:69
     1962#: themes/commentpress-modern/assets/templates/navigation.php:69
     1963#: themes/commentpress-theme/assets/templates/navigation.php:224
     1964msgid "Home Page"
     1965msgstr "Home Page"
     1966
     1967#: themes/commentpress-flat/assets/templates/navigation.php:137
     1968#: themes/commentpress-flat/assets/templates/navigation.php:155
     1969#: themes/commentpress-flat/assets/templates/user_links.php:59
     1970#: themes/commentpress-flat/assets/templates/user_links.php:77
     1971#: themes/commentpress-modern/assets/templates/navigation.php:137
     1972#: themes/commentpress-modern/assets/templates/navigation.php:155
     1973#: themes/commentpress-modern/assets/templates/user_links.php:59
     1974#: themes/commentpress-modern/assets/templates/user_links.php:77
     1975#: themes/commentpress-theme/assets/templates/user_links.php:59
     1976#: themes/commentpress-theme/assets/templates/user_links.php:77
     1977msgid "Create a new document"
     1978msgstr "Erstellen Sie ein neues Dokument"
     1979
     1980#: themes/commentpress-flat/assets/templates/navigation.php:176
     1981#: themes/commentpress-flat/assets/templates/user_links.php:96
     1982#: themes/commentpress-modern/assets/templates/navigation.php:176
     1983#: themes/commentpress-modern/assets/templates/user_links.php:96
     1984#: themes/commentpress-theme/assets/templates/user_links.php:96
     1985msgid "Dashboard"
     1986msgstr "Übersicht"
     1987
     1988#: themes/commentpress-flat/assets/templates/page_navigation.php:14
     1989#: themes/commentpress-modern/assets/templates/page_navigation.php:14
     1990#: themes/commentpress-theme/assets/templates/navigation.php:20
     1991msgid "Older Entries"
     1992msgstr "Ältere Eintrage"
     1993
     1994#: themes/commentpress-flat/assets/templates/page_navigation.php:15
     1995#: themes/commentpress-modern/assets/templates/page_navigation.php:15
     1996#: themes/commentpress-theme/assets/templates/navigation.php:21
     1997msgid "Newer Entries"
     1998msgstr "Neuere Einträge"
     1999
     2000#: themes/commentpress-flat/assets/templates/page_navigation.php:100
     2001#: themes/commentpress-flat/assets/templates/page_navigation.php:122
     2002#: themes/commentpress-flat/assets/templates/page_navigation.php:144
     2003#: themes/commentpress-modern/assets/templates/page_navigation.php:100
     2004#: themes/commentpress-modern/assets/templates/page_navigation.php:122
     2005#: themes/commentpress-modern/assets/templates/page_navigation.php:144
     2006#: themes/commentpress-theme/assets/templates/navigation.php:110
     2007#: themes/commentpress-theme/assets/templates/navigation.php:133
     2008msgid "More Results"
     2009msgstr "Mehr Ergebnisse"
     2010
     2011#: themes/commentpress-flat/assets/templates/page_navigation.php:101
     2012#: themes/commentpress-flat/assets/templates/page_navigation.php:123
     2013#: themes/commentpress-flat/assets/templates/page_navigation.php:145
     2014#: themes/commentpress-modern/assets/templates/page_navigation.php:101
     2015#: themes/commentpress-modern/assets/templates/page_navigation.php:123
     2016#: themes/commentpress-modern/assets/templates/page_navigation.php:145
     2017#: themes/commentpress-theme/assets/templates/navigation.php:111
     2018#: themes/commentpress-theme/assets/templates/navigation.php:134
     2019msgid "Previous Results"
     2020msgstr "Vorherige Ergebnisse"
     2021
     2022#: themes/commentpress-flat/assets/templates/toc_sidebar.php:39
     2023#: themes/commentpress-flat/searchform.php:24
     2024#: themes/commentpress-flat/searchform.php:48
     2025#: themes/commentpress-modern/assets/templates/toc_sidebar.php:39
     2026#: themes/commentpress-modern/searchform.php:24
     2027#: themes/commentpress-modern/searchform.php:48
     2028#: themes/commentpress-theme/searchform.php:24
     2029#: themes/commentpress-theme/searchform.php:48
     2030msgid "Search"
     2031msgstr "Suche"
     2032
     2033#: themes/commentpress-flat/assets/templates/toc_sidebar.php:54
     2034#: themes/commentpress-modern/assets/templates/toc_sidebar.php:54
     2035msgid "Special Pages"
     2036msgstr "Spezielle Seiten"
     2037
     2038#: themes/commentpress-flat/author.php:155
     2039#: themes/commentpress-modern/author.php:155
     2040msgid "Posts written by"
     2041msgstr "Beiträge geschrieben von"
     2042
     2043#: themes/commentpress-flat/author.php:206
     2044#: themes/commentpress-modern/author.php:206
     2045msgid "Pages written by"
     2046msgstr "Seiten geschrieben von"
     2047
     2048#: themes/commentpress-flat/category.php:31
     2049#: themes/commentpress-modern/category.php:31
     2050#: themes/commentpress-theme/category.php:31
     2051msgid "Posts Tagged &#8216;%s&#8217;"
     2052msgstr "Beiträge mit dem Stichwort &#8216;%s&#8217;"
     2053
     2054#: themes/commentpress-flat/comments.php:26
     2055#: themes/commentpress-modern/comments.php:26
     2056#: themes/commentpress-theme/comments.php:26
     2057msgid "Enter the password to view comments"
     2058msgstr "Geben Sie das Passwort ein, um Kommentare anzusehen."
     2059
     2060#: themes/commentpress-flat/comments.php:105
     2061#: themes/commentpress-modern/comments.php:105
     2062#: themes/commentpress-theme/comments.php:106
     2063msgid "on the whole page"
     2064msgstr "zu dieser Seite"
     2065
     2066#: themes/commentpress-flat/comments.php:129
     2067#: themes/commentpress-flat/comments.php:148
     2068#: themes/commentpress-modern/comments.php:129
     2069#: themes/commentpress-modern/comments.php:148
     2070#: themes/commentpress-theme/comments.php:130
     2071#: themes/commentpress-theme/comments.php:154
     2072msgid "Leave a comment on the whole page"
     2073msgstr "Kommentar zu dieser Seite schreiben"
     2074
     2075#: themes/commentpress-flat/comments.php:143
     2076#: themes/commentpress-modern/comments.php:143
     2077#: themes/commentpress-theme/comments.php:149
     2078msgid "No comments on the whole page"
     2079msgstr "Keine Kommentare zu dieser Seite"
     2080
     2081#: themes/commentpress-flat/comments.php:157
     2082#: themes/commentpress-modern/comments.php:157
     2083#: themes/commentpress-theme/comments.php:165
     2084msgid "Comments are closed."
     2085msgstr "Die Kommentare sind geschloßen."
     2086
     2087#: themes/commentpress-flat/footer-wp-activate.php:50
     2088#: themes/commentpress-flat/footer.php:38
     2089#: themes/commentpress-modern/footer-wp-activate.php:50
     2090#: themes/commentpress-modern/footer.php:38
     2091#: themes/commentpress-theme/footer-wp-activate.php:42
     2092#: themes/commentpress-theme/footer.php:23
     2093msgid "Website content"
     2094msgstr "Website-Content"
     2095
     2096#: themes/commentpress-flat/footer-wp-activate.php:50
     2097#: themes/commentpress-flat/footer.php:38
     2098#: themes/commentpress-modern/footer-wp-activate.php:50
     2099#: themes/commentpress-modern/footer.php:38
     2100#: themes/commentpress-theme/footer-wp-activate.php:42
     2101#: themes/commentpress-theme/footer.php:23
     2102msgid "All rights reserved."
     2103msgstr "Alle Rechte vorbehalten."
     2104
     2105#: themes/commentpress-flat/functions.php:71
     2106#: themes/commentpress-modern/functions.php:127
     2107msgid "Footer"
     2108msgstr "Fußzeile"
     2109
     2110#: themes/commentpress-flat/functions.php:512
     2111#: themes/commentpress-modern/functions.php:581
     2112#: themes/commentpress-theme/functions.php:458
     2113msgid "Next page with comments"
     2114msgstr "Nächste Seite mit Kommentaren"
     2115
     2116#: themes/commentpress-flat/functions.php:542
     2117#: themes/commentpress-modern/functions.php:611
     2118#: themes/commentpress-theme/functions.php:486
     2119msgid "Previous page with comments"
     2120msgstr "Vorherige Seite mit Kommentaren"
     2121
     2122#: themes/commentpress-flat/functions.php:677
     2123#: themes/commentpress-modern/functions.php:746
     2124#: themes/commentpress-theme/functions.php:617
     2125msgid "Password protected"
     2126msgstr "Passwortgeschützt"
     2127
     2128#: themes/commentpress-flat/functions.php:775
     2129#: themes/commentpress-modern/functions.php:844
     2130#: themes/commentpress-theme/functions.php:713
     2131msgid "Comments on the Blog"
     2132msgstr "Kommentare zum Blog"
     2133
     2134#: themes/commentpress-flat/functions.php:781
     2135#: themes/commentpress-modern/functions.php:850
     2136#: themes/commentpress-theme/functions.php:719
     2137msgid "Comments on the Pages"
     2138msgstr "Kommentare zu den Seiten"
     2139
     2140#: themes/commentpress-flat/functions.php:1067
     2141#: themes/commentpress-modern/functions.php:1116
     2142#: themes/commentpress-theme/functions.php:826
     2143msgid "CommentPress Footer"
     2144msgstr "CommentPress Footer"
     2145
     2146#: themes/commentpress-flat/functions.php:1078
     2147#: themes/commentpress-modern/functions.php:1127
     2148msgid "Navigation Top"
     2149msgstr "Navigation oben"
     2150
     2151#: themes/commentpress-flat/functions.php:1089
     2152#: themes/commentpress-modern/functions.php:1138
     2153msgid "Navigation Bottom"
     2154msgstr "Navigation untem"
     2155
     2156#: themes/commentpress-flat/functions.php:1100
     2157#: themes/commentpress-modern/functions.php:1149
     2158msgid "Activity Top"
     2159msgstr "Activität Oben"
     2160
     2161#: themes/commentpress-flat/functions.php:1111
     2162#: themes/commentpress-modern/functions.php:1160
     2163msgid "Activity Bottom"
     2164msgstr "Activität Unten"
     2165
     2166#: themes/commentpress-flat/group.php:52
     2167#: themes/commentpress-modern/group.php:52
     2168#: themes/commentpress-theme/group.php:54
     2169msgid "Group Members"
     2170msgstr "Gruppenmitglieder"
     2171
     2172#: themes/commentpress-flat/image.php:25 themes/commentpress-flat/image.php:27
     2173#: themes/commentpress-modern/image.php:25
     2174#: themes/commentpress-modern/image.php:27
     2175#: themes/commentpress-theme/image.php:25
     2176#: themes/commentpress-theme/image.php:27
     2177msgid "Back to gallery"
     2178msgstr "Zurück zur Galerie"
     2179
     2180#: themes/commentpress-flat/image.php:25
     2181#: themes/commentpress-modern/image.php:25
     2182#: themes/commentpress-theme/image.php:25
     2183msgid "Permalink for this image"
     2184msgstr "Permalink für dieses Bild"
     2185
     2186#: themes/commentpress-flat/image.php:40
     2187#: themes/commentpress-modern/image.php:40
     2188#: themes/commentpress-theme/image.php:40
     2189msgid "Untitled"
     2190msgstr "Unbenannt"
     2191
     2192#: themes/commentpress-flat/image.php:48
     2193#: themes/commentpress-modern/image.php:48
     2194#: themes/commentpress-theme/image.php:48
     2195msgid "Read the rest of the text &raquo;"
     2196msgstr "Lesen Sie den Rest des Textes &raquo;"
     2197
     2198#: themes/commentpress-flat/image.php:53
     2199#: themes/commentpress-modern/image.php:53
     2200#: themes/commentpress-theme/image.php:53
     2201msgid "This image was posted on %1$s at %2$s and is filed under %3$s."
     2202msgstr ""
     2203"Dieses Bild wurde auf %1$ in %2$ veröffentlicht und wurde unter %3$ abgelegt."
     2204
     2205#: themes/commentpress-flat/image.php:62
     2206#: themes/commentpress-flat/single.php:219
     2207#: themes/commentpress-modern/image.php:62
     2208#: themes/commentpress-modern/single.php:224
     2209#: themes/commentpress-theme/image.php:62
     2210#: themes/commentpress-theme/single.php:174
     2211msgid "RSS 2.0"
     2212msgstr "RSS 2.0"
     2213
     2214#: themes/commentpress-flat/image.php:68
     2215#: themes/commentpress-modern/image.php:68
     2216#: themes/commentpress-theme/image.php:68
     2217msgid "You can follow any comments on this image through the %s feed."
     2218msgstr "Sie können alle Kommentare zu diesem Bild mit dem Feed %s folgen."
     2219
     2220#: themes/commentpress-flat/image.php:77 themes/commentpress-flat/image.php:96
     2221#: themes/commentpress-flat/single.php:238
     2222#: themes/commentpress-flat/single.php:257
     2223#: themes/commentpress-modern/image.php:77
     2224#: themes/commentpress-modern/image.php:96
     2225#: themes/commentpress-modern/single.php:243
     2226#: themes/commentpress-modern/single.php:262
     2227#: themes/commentpress-theme/image.php:77
     2228#: themes/commentpress-theme/image.php:96
     2229#: themes/commentpress-theme/single.php:194
     2230#: themes/commentpress-theme/single.php:213
     2231msgid "trackback"
     2232msgstr "Trackback"
     2233
     2234#: themes/commentpress-flat/image.php:84
     2235#: themes/commentpress-modern/image.php:84
     2236#: themes/commentpress-theme/image.php:84
     2237msgid "You are welcome to leave a comment, or %s from your own site."
     2238msgstr "Schreiben Sie einen Kommentar oder %s auf Ihrer eigenen Seite."
     2239
     2240#: themes/commentpress-flat/image.php:103
     2241#: themes/commentpress-flat/single.php:264
     2242#: themes/commentpress-modern/image.php:103
     2243#: themes/commentpress-modern/single.php:269
     2244#: themes/commentpress-theme/image.php:103
     2245#: themes/commentpress-theme/single.php:220
     2246msgid "Comments are currently closed, but you can %s from your own site."
     2247msgstr ""
     2248"Kommentare sind derzeit geschlossen, aber Sie können %s aus Ihrer eigenen "
     2249"Website."
     2250
     2251#: themes/commentpress-flat/image.php:113
     2252#: themes/commentpress-flat/single.php:274
     2253#: themes/commentpress-modern/image.php:113
     2254#: themes/commentpress-modern/single.php:279
     2255#: themes/commentpress-theme/image.php:113
     2256#: themes/commentpress-theme/single.php:230
     2257msgid "You can leave a comment. Pinging is currently not allowed."
     2258msgstr ""
     2259"Sie können einen Kommentar hinterlassen. Pingen ist im Augenblick nicht "
     2260"erlaubt."
     2261
     2262#: themes/commentpress-flat/image.php:121
     2263#: themes/commentpress-flat/single.php:282
     2264#: themes/commentpress-modern/image.php:121
     2265#: themes/commentpress-modern/single.php:287
     2266#: themes/commentpress-theme/image.php:121
     2267#: themes/commentpress-theme/single.php:238
     2268msgid "Both comments and pings are currently closed."
     2269msgstr "Kommentare und Pings sind derzeit geschlossen."
     2270
     2271#: themes/commentpress-flat/image.php:129
     2272#: themes/commentpress-flat/single.php:290
     2273#: themes/commentpress-modern/image.php:129
     2274#: themes/commentpress-modern/single.php:295
     2275#: themes/commentpress-theme/image.php:129
     2276#: themes/commentpress-theme/single.php:246
     2277msgid "Edit this entry"
     2278msgstr "Eintrag bearbeiten"
     2279
     2280#: themes/commentpress-flat/image.php:137
     2281#: themes/commentpress-modern/image.php:137
     2282#: themes/commentpress-theme/image.php:137
     2283msgid "Next Image &raquo;"
     2284msgstr "Nächstes Bild &raquo;"
     2285
     2286#: themes/commentpress-flat/image.php:141
     2287#: themes/commentpress-modern/image.php:141
     2288#: themes/commentpress-theme/image.php:141
     2289msgid "&laquo; Previous Image"
     2290msgstr "&laquo; Vorheriges Bild"
     2291
     2292#: themes/commentpress-flat/image.php:158
     2293#: themes/commentpress-modern/image.php:158
     2294#: themes/commentpress-theme/image.php:158
     2295msgid "Sorry, no attachments matched your criteria."
     2296msgstr "Tut mir leid, kein Anhang passt zu deinen Kriterien."
     2297
     2298#: themes/commentpress-flat/index.php:64
     2299#: themes/commentpress-modern/index.php:64
     2300#: themes/commentpress-theme/index.php:49
     2301msgid "No blog posts found"
     2302msgstr "Keine Blog-Beiträge gefunden"
     2303
     2304#: themes/commentpress-flat/index.php:66
     2305#: themes/commentpress-modern/index.php:66
     2306#: themes/commentpress-theme/index.php:51
     2307msgid "There are no blog posts yet."
     2308msgstr "Es gibt keine Blog-Beiträge."
     2309
     2310#: themes/commentpress-flat/index.php:72
     2311#: themes/commentpress-modern/index.php:72
     2312#: themes/commentpress-theme/index.php:57
     2313msgid "Go to your dashboard to add one."
     2314msgstr "Gehen Sie zu Ihrem Dashboard."
     2315
     2316#: themes/commentpress-flat/index.php:78
     2317#: themes/commentpress-modern/index.php:78
     2318#: themes/commentpress-theme/index.php:63
     2319msgid ""
     2320"If you were looking for something that hasn't been found, try using the "
     2321"search form below."
     2322msgstr ""
     2323"Wenn Sie etwas nicht gefunden haben, benutzen Sie das Suchformular unten."
     2324
     2325#: themes/commentpress-flat/links.php:30
     2326#: themes/commentpress-modern/links.php:30
     2327#: themes/commentpress-theme/links.php:29
     2328msgid "Links:"
     2329msgstr "Links:"
     2330
     2331#: themes/commentpress-flat/page.php:100 themes/commentpress-flat/single.php:99
     2332#: themes/commentpress-modern/assets/templates/header_body.php:45
     2333#: themes/commentpress-modern/page.php:100
     2334#: themes/commentpress-modern/single.php:99
     2335#: themes/commentpress-theme/single.php:99
     2336msgid "Content"
     2337msgstr "Inhalt"
     2338
     2339#: themes/commentpress-flat/page.php:107
     2340#: themes/commentpress-flat/single.php:106
     2341#: themes/commentpress-modern/page.php:107
     2342#: themes/commentpress-modern/single.php:106
     2343#: themes/commentpress-theme/single.php:106
     2344msgid "Literal"
     2345msgstr "wörtlich"
     2346
     2347#: themes/commentpress-flat/page.php:115
     2348#: themes/commentpress-flat/single.php:114
     2349#: themes/commentpress-modern/page.php:115
     2350#: themes/commentpress-modern/single.php:114
     2351#: themes/commentpress-theme/single.php:114
     2352msgid "Original"
     2353msgstr "Original"
     2354
     2355#: themes/commentpress-flat/page.php:257
     2356#: themes/commentpress-modern/page.php:262
     2357#: themes/commentpress-theme/page.php:113
     2358msgid "Page %s"
     2359msgstr "Seite %s"
     2360
     2361#: themes/commentpress-flat/search.php:40
     2362#: themes/commentpress-modern/search.php:40
     2363#: themes/commentpress-theme/search.php:25
     2364msgid "Search Results for"
     2365msgstr "Suchergebnisse für "
     2366
     2367#: themes/commentpress-flat/search.php:112
     2368#: themes/commentpress-modern/search.php:112
     2369#: themes/commentpress-theme/search.php:88
     2370msgid "Nothing found for"
     2371msgstr "Nichts gefunden"
     2372
     2373#: themes/commentpress-flat/search.php:114
     2374#: themes/commentpress-modern/search.php:114
     2375#: themes/commentpress-theme/search.php:90
     2376msgid "Try a different search?"
     2377msgstr "Versuchen Sie eine andere Suche?"
     2378
     2379#: themes/commentpress-flat/searchform.php:19
     2380#: themes/commentpress-flat/searchform.php:44
     2381#: themes/commentpress-modern/searchform.php:19
     2382#: themes/commentpress-modern/searchform.php:44
     2383#: themes/commentpress-theme/searchform.php:19
     2384#: themes/commentpress-theme/searchform.php:44
     2385msgid "Search for:"
     2386msgstr "Suche nach:"
     2387
     2388#: themes/commentpress-flat/single.php:208
     2389#: themes/commentpress-modern/single.php:213
     2390msgid "Categories:"
     2391msgstr "Kategorien"
     2392
     2393#: themes/commentpress-flat/single.php:226
     2394#: themes/commentpress-modern/single.php:231
     2395msgid "You can follow any comments on this entry through the %s feed."
     2396msgstr "Sie können alle Kommentare zu diesem Eintrag über den Feed %s folgen."
     2397
     2398#: themes/commentpress-flat/single.php:245
     2399#: themes/commentpress-modern/single.php:250
     2400#: themes/commentpress-theme/single.php:201
     2401msgid "You can leave a comment, or %s from your own site."
     2402msgstr ""
     2403"Sie können einen Kommentar hinterlassen, oder %s von Ihrer Website hierher "
     2404"setzen."
     2405
     2406#: themes/commentpress-flat/single.php:411
     2407#: themes/commentpress-modern/single.php:416
     2408#: themes/commentpress-theme/single.php:356
     2409msgid "Post Not Found"
     2410msgstr "Dieser Beitrag konnte nicht gefunden werden."
     2411
     2412#: themes/commentpress-flat/single.php:413
     2413#: themes/commentpress-modern/single.php:418
     2414#: themes/commentpress-theme/single.php:358
     2415msgid "Sorry, no posts matched your criteria."
     2416msgstr "Sorry, es gibt keinen Beitrag, der deinen Suchkriterien entspricht."
     2417
     2418#: themes/commentpress-flat/taxonomy-comment_tags.php:51
     2419#: themes/commentpress-modern/taxonomy-comment_tags.php:51
     2420#: themes/commentpress-theme/taxonomy-comment_tags.php:51
     2421msgid "Comments Tagged &#8216;%s&#8217;"
     2422msgstr "Kommentare Tagged &#8216;%s&#8217;"
     2423
     2424#: themes/commentpress-flat/taxonomy-comment_tags.php:60
     2425#: themes/commentpress-modern/taxonomy-comment_tags.php:60
     2426#: themes/commentpress-theme/taxonomy-comment_tags.php:60
     2427msgid "No Comments Found"
     2428msgstr "Keine Kommentare vorhanden"
     2429
     2430#: themes/commentpress-flat/taxonomy-comment_tags.php:62
     2431#: themes/commentpress-modern/taxonomy-comment_tags.php:62
     2432#: themes/commentpress-theme/taxonomy-comment_tags.php:62
     2433msgid "Sorry, but there are no comments for this tag."
     2434msgstr "Sorry, aber es gibt keine Kommentare zu diesem Tag."
     2435
     2436#: themes/commentpress-flat/toc.php:30 themes/commentpress-modern/toc.php:30
     2437#: themes/commentpress-theme/toc.php:29
     2438msgid "TOC"
     2439msgstr "TOC"
     2440
     2441#: themes/commentpress-modern/assets/templates/header_body.php:46
     2442msgid "Discuss"
     2443msgstr "Diskutieren"
     2444
     2445#. translators: header image description
     2446#: themes/commentpress-modern/functions.php:96
     2447#: themes/commentpress-theme/functions.php:88
     2448msgid "Abstract Green"
     2449msgstr "Abstract Green"
     2450
     2451#. translators: header image description
     2452#: themes/commentpress-modern/functions.php:102
     2453#: themes/commentpress-theme/functions.php:94
     2454msgid "Abstract Red"
     2455msgstr "Abstract Red"
     2456
     2457#. translators: header image description
     2458#: themes/commentpress-modern/functions.php:108
     2459#: themes/commentpress-theme/functions.php:100
     2460msgid "Abstract Blue"
     2461msgstr "Abstract Blue"
     2462
     2463#. translators: header image description
     2464#: themes/commentpress-modern/functions.php:114
     2465#: themes/commentpress-theme/functions.php:106
     2466msgid "Abstract Violet"
     2467msgstr "Abstrakt Violet"
     2468
     2469#: themes/commentpress-theme/assets/templates/navigation.php:100
     2470msgid "Blog Archives: "
     2471msgstr "Blog Archiv:"
     2472
     2473#: themes/commentpress-theme/author.php:92
     2474msgid "Profile"
     2475msgstr "Profile"
     2476
     2477#: themes/commentpress-theme/author.php:102
     2478msgid "Email"
     2479msgstr "E-Mail-Adresse:"
     2480
     2481#: themes/commentpress-theme/author.php:107
     2482msgid "Yahoo IM"
     2483msgstr "Yahoo IM"
     2484
     2485#: themes/commentpress-theme/author.php:112
     2486msgid "AIM"
     2487msgstr "AIM"
     2488
     2489#: themes/commentpress-theme/author.php:117
     2490msgid "Jabber / Google Talk"
     2491msgstr "Jabber / Google Talk"
     2492
     2493#: themes/commentpress-theme/author.php:126
     2494#: themes/commentpress-theme/author.php:128
     2495msgid "Posts by"
     2496msgstr "Beiträge von"
     2497
    18702498#: themes/commentpress-theme/author.php:138
    1871 #: themes/commentpress-theme/image.php:54
    1872 msgid "l, F jS, Y"
    1873 msgstr "l, d. F Y"
    1874 
    1875 #: commentpress-core/assets/includes/theme/theme-functions.php:393
    1876 msgid "Group avatar"
    1877 msgstr "Gruppenbild"
    1878 
    1879 #: commentpress-core/assets/includes/theme/theme-functions.php:453
    1880 msgid "Logo"
    1881 msgstr "Logo"
    1882 
    1883 #: commentpress-core/assets/includes/theme/theme-functions.php:243
    1884 msgid "Logo Image"
    1885 msgstr "Logo"
    1886 
    1887 #: commentpress-core/assets/includes/theme/theme-functions.php:244
    1888 msgid "You may prefer to display an image instead of text in the header of your site. The image must be a maximum of 70px tall. If it is less tall, then you can adjust the vertical alignment using the \"Top padding in px\" setting below."
    1889 msgstr "anstelle von Text in der Kopfzeile Ihrer Website Sie können es vorziehen, um ein Bild anzuzeigen. Das Bild darf maximal 70 Pixel groß sein. Wenn es weniger groß ist, dann können Sie die vertikale Ausrichtung mit dem \"Top-Polsterung in Pixel\" Einstellung unten anpassen."
    1890 
    1891 #: commentpress-core/assets/includes/theme/theme-functions.php:259
    1892 msgid "Top padding in px"
    1893 msgstr "Top-Polsterung in Pixel"
    1894 
    1895 #: commentpress-core/assets/includes/theme/theme-functions.php:317
    1896 msgid "Customize"
    1897 msgstr "modifizieren"
    1898 
    1899 #: commentpress-core/assets/includes/theme/theme-functions.php:164
    1900 #: commentpress-core/assets/includes/theme/theme-functions.php:186
    1901 #: commentpress-core/assets/includes/theme/theme-functions.php:200
    1902 msgid "Site Image"
    1903 msgstr "Site-Bild"
    1904 
    1905 #: commentpress-core/assets/includes/theme/theme-functions.php:168
    1906 #: commentpress-core/assets/includes/theme/theme-functions.php:173
    1907 msgid "Select %s"
    1908 msgstr "Wähle %s"
    1909 
    1910 #: commentpress-core/assets/includes/theme/theme-functions.php:169
    1911 msgid "Change %s"
    1912 msgstr "Änderungen"
    1913 
    1914 #: commentpress-core/assets/includes/theme/theme-functions.php:170
    1915 msgid "Remove %s"
    1916 msgstr "Entfernen% s"
    1917 
    1918 #: commentpress-core/assets/includes/theme/theme-functions.php:171
    1919 msgid "Default %s"
    1920 msgstr "Standard% s"
    1921 
    1922 #: commentpress-core/assets/includes/theme/theme-functions.php:172
    1923 msgid "No %s selected"
    1924 msgstr "Keine% s ausgewählt"
    1925 
    1926 #: commentpress-core/assets/includes/theme/theme-functions.php:174
    1927 msgid "Choose %s"
    1928 msgstr "Wähle %s"
    1929 
    1930 #: commentpress-core/assets/includes/theme/theme-functions.php:201
    1931 msgid "Choose an image to represent this site. Other plugins may use this image to illustrate this site - in multisite directory listings, for example."
    1932 msgstr "Wählen Sie ein Bild dieser Website darzustellen. Andere Plugins können dieses Bild verwenden diese Seite zu veranschaulichen - in Multi-Site-Verzeichnislisten, zum Beispiel."
    1933 
    1934 #: commentpress-core/assets/includes/theme/theme-functions.php:229
    1935 msgid "Site Logo"
    1936 msgstr "Seitenlogo"
    1937 
    1938 #: commentpress-ajax/cp-ajax-comments.php:387
    1939 msgid "Drop on to a text-block to reassign this comment (and any replies) to it"
    1940 msgstr "Tropfen auf einem Textblock diesen Kommentar neu zuweisen (und alle Antworten), um es"
    1941 
    1942 #: commentpress-ajax/cp-ajax-comments.php:393
    1943 msgid "Move"
    1944 msgstr "Bewege"
    1945 
    1946 #: commentpress-ajax/cp-ajax-comments.php:171
    1947 #: commentpress-core/class_commentpress.php:2475
    1948 #: commentpress-core/class_commentpress_display.php:1697
    1949 #: commentpress-core/class_commentpress_display.php:2103
    1950 #: themes/commentpress-modern/assets/templates/comments_sidebar.php:20
    1951 #: themes/commentpress-modern/sidebar.php:68
    1952 #: themes/commentpress-theme/assets/templates/comments_sidebar.php:20
    1953 #: themes/commentpress-theme/sidebar.php:62
    1954 msgid "Comments"
    1955 msgstr "Kommentare"
    1956 
    1957 #: commentpress-ajax/cp-ajax-comments.php:163
    1958 msgid "Are you sure you want to assign the comment and its replies to the textblock? This action cannot be undone."
    1959 msgstr "Sind Sie sicher, dass Sie den Kommentar und ihre Antworten auf den Textblock zugewiesen werden? Diese Aktion kann nicht rückgängig gemacht werden."
    1960 
    1961 #: commentpress-ajax/cp-ajax-comments.php:164
    1962 msgid "Submitting..."
    1963 msgstr "Einreichen ..."
    1964 
    1965 #: commentpress-ajax/cp-ajax-comments.php:165
    1966 msgid "Please wait while the comments are reassigned. The page will refresh when this has been done."
    1967 msgstr "Bitte warten Sie, während die Kommentare neu zugewiesen werden. Die Seite wird aktualisiert, wenn dies geschehen ist."
    1968 
    1969 #: commentpress-ajax/cp-ajax-comments.php:169
    1970 #: commentpress-core/assets/includes/theme/theme-functions.php:1382
    1971 #: commentpress-core/class_commentpress_display.php:306
    1972 #: themes/commentpress-modern/assets/templates/comment_form.php:139
    1973 #: themes/commentpress-theme/assets/templates/comment_form.php:119
    1974 msgid "Comment"
    1975 msgstr "Kommentar"
    1976 
    1977 #: commentpress-ajax/cp-ajax-comments.php:157
    1978 msgid "Please enter your comment."
    1979 msgstr "Bitte geben Sie Ihren Kommentar."
    1980 
    1981 #: commentpress-ajax/cp-ajax-comments.php:158
    1982 msgid "Your comment has been added."
    1983 msgstr "Ihr Kommentar wurde hinzugefügt."
    1984 
    1985 #: commentpress-ajax/cp-ajax-comments.php:159
    1986 msgid "AJAX error!"
    1987 msgstr "AJAX-Fehler!"
    1988 
    1989 #: commentpress-ajax/cp-ajax-comments.php:162
    1990 #: commentpress-core/class_commentpress_display.php:319
    1991 msgid "Are you sure?"
    1992 msgstr "Bist du sicher?"
    1993 
    1994 #: commentpress-ajax/cp-ajax-comments.php:153
    1995 msgid "Loading..."
    1996 msgstr "Bitte warten..."
    1997 
    1998 #: commentpress-ajax/cp-ajax-comments.php:154
    1999 msgid "Please enter your name."
    2000 msgstr "Bitte Namen eingeben."
    2001 
    2002 #: commentpress-ajax/cp-ajax-comments.php:155
    2003 msgid "Please enter your email address."
    2004 msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein"
    2005 
    2006 #: commentpress-ajax/cp-ajax-comments.php:156
    2007 msgid "Please enter a valid email address."
    2008 msgstr "Bitte geben Sie eine gültige Email-Adresse an"
    2009 
    2010 # @ commentpress-core
    2011 #: themes/commentpress-modern/functions.php:2930
    2012 #: themes/commentpress-modern/functions.php:3041
    2013 #: themes/commentpress-theme/functions.php:2857
    2014 #: themes/commentpress-theme/functions.php:2968
    2015 #, php-format
    2016 msgid "<span class=\"cp_comment_num\">%d</span> <span class=\"cp_comment_word\">Comment</span> on "
    2017 msgid_plural "<span class=\"cp_comment_num\">%d</span> <span class=\"cp_comment_word\">Comments</span> on "
    2018 msgstr[0] "<span class=\"cp_comment_num\">%d</span> <span class=\"cp_comment_word\">Kommentare</span> zu "
    2019 msgstr[1] "<span class=\"cp_comment_num\">%d</span> <span class=\"cp_comment_word\">Kommentare</span> zu "
     2499msgid "Permanent Link:"
     2500msgstr "Permanenter Link:"
     2501
     2502#: themes/commentpress-theme/author.php:143
     2503msgid "No posts by this author."
     2504msgstr "Keine Einträge dieses Autors."
     2505
     2506#: themes/commentpress-theme/single.php:181
     2507msgid ""
     2508"This entry is filed under %1$s. You can follow any comments on this entry "
     2509"through the %2$s feed."
     2510msgstr ""
     2511"Dieser Eintrag wird unter %1$s abgelegt. Sie können alle Kommentare zu "
     2512"diesem Eintrag über den Feed %2$s folgen."
     2513
     2514#. Plugin URI of the plugin/theme
     2515msgid "http://www.futureofthebook.org/commentpress/"
     2516msgstr "http://www.futureofthebook.org/commentpress/"
     2517
     2518#. Description of the plugin/theme
     2519msgid ""
     2520"CommentPress allows readers to comment in the margins of a text. You can use "
     2521"it to annotate, gloss, workshop, debate and more!"
     2522msgstr ""
     2523"CommentPress erlaubt dem Leser am Rande eines Textes zu äußern. Sie können "
     2524"es verwenden, um mit Anmerkungen versehen, Glanz, Werkstatt, Debatte und "
     2525"vieles mehr!"
     2526
     2527#. Author of the plugin/theme
     2528msgid "Institute for the Future of the Book"
     2529msgstr "Institut für die Zukunft des Buches"
     2530
     2531#. Author URI of the plugin/theme
     2532msgid "http://www.futureofthebook.org"
     2533msgstr "http://www.futureofthebook.org"
  • commentpress-core/trunk/languages/commentpress-core.pot

    r1773352 r1782116  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: CommentPress Core 3.9.7\n"
     5"Project-Id-Version: CommentPress Core 3.9.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/commentpress-core\n"
    7 "POT-Creation-Date: 2017-11-22 17:14:32+00:00\n"
     7"POT-Creation-Date: 2017-12-06 12:22:46+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    6868
    6969#: commentpress-ajax/cp-ajax-comments.php:186
    70 #: commentpress-core/class_commentpress.php:2532
     70#: commentpress-core/class_commentpress.php:2541
    7171#: commentpress-core/class_commentpress_display.php:1825
    72 #: commentpress-core/class_commentpress_display.php:2241
     72#: commentpress-core/class_commentpress_display.php:2243
    7373#: commentpress-multisite/class_commentpress_mu_bp.php:352
    7474#: themes/commentpress-flat/assets/templates/comments_sidebar.php:20
     
    212212
    213213#: commentpress-core/assets/includes/theme/theme-functions.php:1627
    214 #: commentpress-core/class_commentpress.php:1573
    215 #: commentpress-core/class_commentpress_db.php:3728
     214#: commentpress-core/class_commentpress.php:1568
     215#: commentpress-core/class_commentpress_db.php:3729
    216216msgid "Comments by Commenter"
    217217msgstr ""
     
    428428msgstr ""
    429429
    430 #: commentpress-core/class_commentpress.php:840
    431 #: commentpress-core/class_commentpress.php:849
     430#: commentpress-core/class_commentpress.php:835
     431#: commentpress-core/class_commentpress.php:844
    432432msgid "CommentPress Core Options"
    433433msgstr ""
    434434
    435 #: commentpress-core/class_commentpress.php:862
     435#: commentpress-core/class_commentpress.php:857
    436436msgid "Workflow"
    437437msgstr ""
    438438
    439 #: commentpress-core/class_commentpress.php:910
     439#: commentpress-core/class_commentpress.php:905
    440440msgid "Page Title Visibility"
    441441msgstr ""
    442442
    443 #: commentpress-core/class_commentpress.php:930
     443#: commentpress-core/class_commentpress.php:925
    444444msgid "Show page title"
    445445msgstr ""
    446446
    447 #: commentpress-core/class_commentpress.php:931
     447#: commentpress-core/class_commentpress.php:926
    448448msgid "Hide page title"
    449449msgstr ""
    450450
    451 #: commentpress-core/class_commentpress.php:943
     451#: commentpress-core/class_commentpress.php:938
    452452msgid "Page Meta Visibility"
    453453msgstr ""
    454454
    455 #: commentpress-core/class_commentpress.php:963
     455#: commentpress-core/class_commentpress.php:958
    456456#: commentpress-core/class_commentpress_display.php:1487
    457457#: commentpress-core/class_commentpress_display.php:1847
     
    459459msgstr ""
    460460
    461 #: commentpress-core/class_commentpress.php:964
     461#: commentpress-core/class_commentpress.php:959
    462462#: commentpress-core/class_commentpress_display.php:1488
    463463#: commentpress-core/class_commentpress_display.php:1848
     
    465465msgstr ""
    466466
    467 #: commentpress-core/class_commentpress.php:983
     467#: commentpress-core/class_commentpress.php:978
    468468msgid "Page Number Format"
    469469msgstr ""
    470470
    471 #: commentpress-core/class_commentpress.php:1003
     471#: commentpress-core/class_commentpress.php:998
    472472msgid "Arabic numerals"
    473473msgstr ""
    474474
    475 #: commentpress-core/class_commentpress.php:1004
     475#: commentpress-core/class_commentpress.php:999
    476476msgid "Roman numerals"
    477477msgstr ""
    478478
    479 #: commentpress-core/class_commentpress.php:1021
     479#: commentpress-core/class_commentpress.php:1016
    480480msgid "Page Layout"
    481481msgstr ""
    482482
    483 #: commentpress-core/class_commentpress.php:1041
     483#: commentpress-core/class_commentpress.php:1036
    484484msgid "Standard"
    485485msgstr ""
    486486
    487 #: commentpress-core/class_commentpress.php:1042
     487#: commentpress-core/class_commentpress.php:1037
    488488msgid "Wide"
    489489msgstr ""
    490490
    491 #: commentpress-core/class_commentpress.php:1090
     491#: commentpress-core/class_commentpress.php:1085
    492492msgid "This post already has a new version"
    493493msgstr ""
    494494
    495 #: commentpress-core/class_commentpress.php:1096
     495#: commentpress-core/class_commentpress.php:1091
    496496msgid "Edit new version"
    497497msgstr ""
    498498
    499 #: commentpress-core/class_commentpress.php:1109
     499#: commentpress-core/class_commentpress.php:1104
    500500msgid "Versioning"
    501501msgstr ""
    502502
    503 #: commentpress-core/class_commentpress.php:1112
     503#: commentpress-core/class_commentpress.php:1107
    504504msgid "Create new version"
    505505msgstr ""
    506506
    507 #: commentpress-core/class_commentpress.php:1161
    508 #: commentpress-core/class_commentpress.php:1194
     507#: commentpress-core/class_commentpress.php:1156
     508#: commentpress-core/class_commentpress.php:1189
    509509msgid "CommentPress Core Help"
    510510msgstr ""
    511511
    512 #: commentpress-core/class_commentpress.php:1263
     512#: commentpress-core/class_commentpress.php:1258
    513513msgid "This comment has been marked as spam. Please contact a site administrator."
    514514msgstr ""
    515515
    516 #: commentpress-core/class_commentpress.php:1551
    517 #: commentpress-core/class_commentpress_db.php:3554
     516#: commentpress-core/class_commentpress.php:1546
     517#: commentpress-core/class_commentpress_db.php:3555
    518518#: themes/commentpress-flat/assets/templates/navigation.php:82
    519519#: themes/commentpress-modern/assets/templates/navigation.php:82
     
    522522msgstr ""
    523523
    524 #: commentpress-core/class_commentpress.php:1556
    525 #: commentpress-core/class_commentpress_db.php:3675
     524#: commentpress-core/class_commentpress.php:1551
     525#: commentpress-core/class_commentpress_db.php:3676
    526526#: themes/commentpress-flat/functions.php:763
    527527#: themes/commentpress-modern/functions.php:832
     
    530530msgstr ""
    531531
    532 #: commentpress-core/class_commentpress.php:1560
    533 #: commentpress-core/class_commentpress_db.php:3622
     532#: commentpress-core/class_commentpress.php:1555
     533#: commentpress-core/class_commentpress_db.php:3623
    534534#: themes/commentpress-flat/comments-general.php:34
    535535#: themes/commentpress-modern/comments-general.php:34
     
    538538msgstr ""
    539539
    540 #: commentpress-core/class_commentpress.php:1564
    541 #: commentpress-core/class_commentpress_db.php:3781
     540#: commentpress-core/class_commentpress.php:1559
     541#: commentpress-core/class_commentpress_db.php:3782
    542542#: themes/commentpress-theme/assets/templates/navigation.php:77
    543543msgid "Blog"
    544544msgstr ""
    545545
    546 #: commentpress-core/class_commentpress.php:1569
    547 #: commentpress-core/class_commentpress_db.php:3837
     546#: commentpress-core/class_commentpress.php:1564
     547#: commentpress-core/class_commentpress_db.php:3838
    548548msgid "Blog Archive"
    549549msgstr ""
    550550
    551 #: commentpress-core/class_commentpress.php:1577
     551#: commentpress-core/class_commentpress.php:1572
    552552msgid "Members"
    553553msgstr ""
    554554
    555 #: commentpress-core/class_commentpress.php:2434
     555#: commentpress-core/class_commentpress.php:2443
    556556msgid "Text Formatting"
    557557msgstr ""
    558558
    559 #: commentpress-core/class_commentpress.php:2510
     559#: commentpress-core/class_commentpress.php:2519
    560560msgid "Default Sidebar"
    561561msgstr ""
    562562
    563 #: commentpress-core/class_commentpress.php:2530
     563#: commentpress-core/class_commentpress.php:2539
    564564#: commentpress-core/class_commentpress_display.php:1823
    565 #: commentpress-core/class_commentpress_display.php:2239
     565#: commentpress-core/class_commentpress_display.php:2241
    566566#: themes/commentpress-flat/assets/templates/toc_sidebar.php:15
    567567#: themes/commentpress-modern/assets/templates/toc_sidebar.php:15
     
    570570msgstr ""
    571571
    572 #: commentpress-core/class_commentpress.php:2531
     572#: commentpress-core/class_commentpress.php:2540
    573573#: commentpress-core/class_commentpress_display.php:1824
    574 #: commentpress-core/class_commentpress_display.php:2240
     574#: commentpress-core/class_commentpress_display.php:2242
    575575#: themes/commentpress-flat/assets/templates/activity_sidebar.php:72
    576576#: themes/commentpress-flat/assets/templates/header_body.php:35
     
    583583msgstr ""
    584584
    585 #: commentpress-core/class_commentpress.php:2555
     585#: commentpress-core/class_commentpress.php:2564
    586586msgid "Starting Paragraph Number"
    587587msgstr ""
     
    624624msgstr ""
    625625
    626 #: commentpress-core/class_commentpress_db.php:3472
     626#: commentpress-core/class_commentpress_db.php:3473
    627627msgid "Copy of "
    628628msgstr ""
    629629
    630 #: commentpress-core/class_commentpress_db.php:3560
     630#: commentpress-core/class_commentpress_db.php:3561
    631631#: commentpress-multisite/class_commentpress_mu_ms.php:749
    632632msgid ""
     
    638638msgstr ""
    639639
    640 #: commentpress-core/class_commentpress_db.php:3628
    641 #: commentpress-core/class_commentpress_db.php:3681
    642 #: commentpress-core/class_commentpress_db.php:3734
    643 #: commentpress-core/class_commentpress_db.php:3787
    644 #: commentpress-core/class_commentpress_db.php:3843
    645 #: commentpress-core/class_commentpress_db.php:3896
     640#: commentpress-core/class_commentpress_db.php:3629
     641#: commentpress-core/class_commentpress_db.php:3682
     642#: commentpress-core/class_commentpress_db.php:3735
     643#: commentpress-core/class_commentpress_db.php:3788
     644#: commentpress-core/class_commentpress_db.php:3844
     645#: commentpress-core/class_commentpress_db.php:3897
    646646msgid "Do not delete this page. Page content is generated with a custom template."
    647647msgstr ""
    648648
    649 #: commentpress-core/class_commentpress_db.php:3890
     649#: commentpress-core/class_commentpress_db.php:3891
    650650#: commentpress-core/class_commentpress_display.php:1445
    651651#: themes/commentpress-flat/assets/templates/toc_dropdown.php:9
     
    750750#: commentpress-core/class_commentpress_display.php:1754
    751751#: commentpress-core/class_commentpress_display.php:1800
    752 #: commentpress-core/class_commentpress_display.php:2310
    753 #: commentpress-core/class_commentpress_display.php:2340
     752#: commentpress-core/class_commentpress_display.php:2312
     753#: commentpress-core/class_commentpress_display.php:2342
    754754msgid "Yes"
    755755msgstr ""
     
    759759#: commentpress-core/class_commentpress_display.php:1755
    760760#: commentpress-core/class_commentpress_display.php:1801
    761 #: commentpress-core/class_commentpress_display.php:2311
    762 #: commentpress-core/class_commentpress_display.php:2341
     761#: commentpress-core/class_commentpress_display.php:2313
     762#: commentpress-core/class_commentpress_display.php:2343
    763763msgid "No"
    764764msgstr ""
     
    852852
    853853#: commentpress-core/class_commentpress_display.php:1728
    854 #: commentpress-core/class_commentpress_display.php:2303
     854#: commentpress-core/class_commentpress_display.php:2305
    855855msgid "Note: when comments are closed on an entry and there are no comments on that entry, if this option is set to \"Yes\" then the content will not be parsed for paragraphs, lines or blocks. Comments will also not be parsed, meaning that the entry behaves the same as content which is not commentable. Default prior to 3.8.10 was \"No\" - all content was always parsed."
    856856msgstr ""
     
    865865
    866866#: commentpress-core/class_commentpress_display.php:1776
    867 #: commentpress-core/class_commentpress_display.php:2423
     867#: commentpress-core/class_commentpress_display.php:2425
    868868msgid "Show paragraph meta (Number and Comment Icon)"
    869869msgstr ""
    870870
    871871#: commentpress-core/class_commentpress_display.php:1777
    872 #: commentpress-core/class_commentpress_display.php:2425
     872#: commentpress-core/class_commentpress_display.php:2427
    873873msgid "Always"
    874874msgstr ""
    875875
    876876#: commentpress-core/class_commentpress_display.php:1778
    877 #: commentpress-core/class_commentpress_display.php:2426
     877#: commentpress-core/class_commentpress_display.php:2428
    878878msgid "On rollover"
    879879msgstr ""
    880880
    881881#: commentpress-core/class_commentpress_display.php:1822
    882 #: commentpress-core/class_commentpress_display.php:2238
     882#: commentpress-core/class_commentpress_display.php:2240
    883883msgid "Which sidebar do you want to be active by default? (can be overridden on individual pages)"
    884884msgstr ""
     
    893893
    894894#: commentpress-core/class_commentpress_display.php:1943
    895 #: commentpress-core/class_commentpress_display.php:2176
     895#: commentpress-core/class_commentpress_display.php:2178
    896896msgid "Appearance of TOC for posts"
    897897msgstr ""
    898898
    899899#: commentpress-core/class_commentpress_display.php:1944
    900 #: commentpress-core/class_commentpress_display.php:2177
     900#: commentpress-core/class_commentpress_display.php:2179
    901901msgid "Extended information"
    902902msgstr ""
    903903
    904904#: commentpress-core/class_commentpress_display.php:1945
    905 #: commentpress-core/class_commentpress_display.php:2178
     905#: commentpress-core/class_commentpress_display.php:2180
    906906msgid "Just the title"
    907907msgstr ""
     
    967967msgstr ""
    968968
    969 #: commentpress-core/class_commentpress_display.php:2277
     969#: commentpress-core/class_commentpress_display.php:2176
     970msgid "Show Sub-Pages"
     971msgstr ""
     972
     973#: commentpress-core/class_commentpress_display.php:2279
    970974msgid "Enable \"live\" comment refreshing (Please note: may cause heavy load on your server)"
    971975msgstr ""
    972976
    973 #: commentpress-core/class_commentpress_display.php:2308
     977#: commentpress-core/class_commentpress_display.php:2310
    974978msgid "Disable CommentPress on entries with no comments. (can be overridden on individual entries)"
    975979msgstr ""
    976980
    977 #: commentpress-core/class_commentpress_display.php:2338
     981#: commentpress-core/class_commentpress_display.php:2340
    978982msgid "Enable automatic page navigation (controls appearance of page numbering and navigation arrows on hierarchical pages)"
    979983msgstr ""
    980984
    981 #: commentpress-core/class_commentpress_display.php:2396
     985#: commentpress-core/class_commentpress_display.php:2398
    982986msgid "Post Types on which CommentPress Core is enabled"
    983987msgstr ""
    984988
    985 #: commentpress-core/class_commentpress_display.php:2450
     989#: commentpress-core/class_commentpress_display.php:2452
    986990#: commentpress-multisite/class_commentpress_mu_admin.php:1054
    987991#: commentpress-multisite/class_commentpress_mu_ms.php:579
     
    10551059
    10561060#: commentpress-core/class_commentpress_workflow.php:169
    1057 #: themes/commentpress-flat/page.php:338
    1058 #: themes/commentpress-flat/single.php:355
     1061#: themes/commentpress-flat/page.php:333
     1062#: themes/commentpress-flat/single.php:350
    10591063#: themes/commentpress-modern/page.php:338
    10601064#: themes/commentpress-modern/single.php:355
     
    10641068
    10651069#: commentpress-core/class_commentpress_workflow.php:193
    1066 #: themes/commentpress-flat/page.php:311
    1067 #: themes/commentpress-flat/single.php:328
     1070#: themes/commentpress-flat/page.php:306
     1071#: themes/commentpress-flat/single.php:323
    10681072#: themes/commentpress-modern/page.php:311
    10691073#: themes/commentpress-modern/single.php:328
     
    13791383#: themes/commentpress-flat/404.php:23
    13801384#: themes/commentpress-flat/directory.php:87
    1381 #: themes/commentpress-flat/page.php:382
     1385#: themes/commentpress-flat/page.php:377
    13821386#: themes/commentpress-flat/welcome.php:158
    13831387#: themes/commentpress-modern/404.php:23
     
    14671471#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
    14681472#: themes/commentpress-flat/category.php:59
    1469 #: themes/commentpress-flat/index.php:56 themes/commentpress-flat/page.php:232
     1473#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/page.php:227
    14701474#: themes/commentpress-flat/search.php:94
    1471 #: themes/commentpress-flat/single.php:207
     1475#: themes/commentpress-flat/single.php:202
    14721476#: themes/commentpress-modern/archive.php:82
    14731477#: themes/commentpress-modern/blog.php:51
     
    14881492#: themes/commentpress-flat/archive.php:82 themes/commentpress-flat/blog.php:51
    14891493#: themes/commentpress-flat/category.php:59
    1490 #: themes/commentpress-flat/index.php:56 themes/commentpress-flat/page.php:232
     1494#: themes/commentpress-flat/index.php:56 themes/commentpress-flat/page.php:227
    14911495#: themes/commentpress-flat/search.php:94
    14921496#: themes/commentpress-modern/archive.php:82
     
    15691573#: themes/commentpress-flat/category.php:71
    15701574#: themes/commentpress-flat/directory.php:89
    1571 #: themes/commentpress-flat/page.php:384
     1575#: themes/commentpress-flat/page.php:379
    15721576#: themes/commentpress-flat/welcome.php:160
    15731577#: themes/commentpress-modern/archive.php:94
     
    20392043
    20402044#: themes/commentpress-flat/image.php:62
    2041 #: themes/commentpress-flat/single.php:224
     2045#: themes/commentpress-flat/single.php:219
    20422046#: themes/commentpress-modern/image.php:62
    20432047#: themes/commentpress-modern/single.php:224
     
    20542058
    20552059#: themes/commentpress-flat/image.php:77 themes/commentpress-flat/image.php:96
    2056 #: themes/commentpress-flat/single.php:243
    2057 #: themes/commentpress-flat/single.php:262
     2060#: themes/commentpress-flat/single.php:238
     2061#: themes/commentpress-flat/single.php:257
    20582062#: themes/commentpress-modern/image.php:77
    20592063#: themes/commentpress-modern/image.php:96
     
    20742078
    20752079#: themes/commentpress-flat/image.php:103
    2076 #: themes/commentpress-flat/single.php:269
     2080#: themes/commentpress-flat/single.php:264
    20772081#: themes/commentpress-modern/image.php:103
    20782082#: themes/commentpress-modern/single.php:269
     
    20832087
    20842088#: themes/commentpress-flat/image.php:113
    2085 #: themes/commentpress-flat/single.php:279
     2089#: themes/commentpress-flat/single.php:274
    20862090#: themes/commentpress-modern/image.php:113
    20872091#: themes/commentpress-modern/single.php:279
     
    20922096
    20932097#: themes/commentpress-flat/image.php:121
    2094 #: themes/commentpress-flat/single.php:287
     2098#: themes/commentpress-flat/single.php:282
    20952099#: themes/commentpress-modern/image.php:121
    20962100#: themes/commentpress-modern/single.php:287
     
    21012105
    21022106#: themes/commentpress-flat/image.php:129
    2103 #: themes/commentpress-flat/single.php:295
     2107#: themes/commentpress-flat/single.php:290
    21042108#: themes/commentpress-modern/image.php:129
    21052109#: themes/commentpress-modern/single.php:295
     
    21812185msgstr ""
    21822186
    2183 #: themes/commentpress-flat/page.php:262
     2187#: themes/commentpress-flat/page.php:257
    21842188#: themes/commentpress-modern/page.php:262
    21852189#: themes/commentpress-theme/page.php:113
     
    22142218msgstr ""
    22152219
    2216 #: themes/commentpress-flat/single.php:213
     2220#: themes/commentpress-flat/single.php:208
    22172221#: themes/commentpress-modern/single.php:213
    22182222msgid "Categories:"
    22192223msgstr ""
    22202224
    2221 #: themes/commentpress-flat/single.php:231
     2225#: themes/commentpress-flat/single.php:226
    22222226#: themes/commentpress-modern/single.php:231
    22232227msgid "You can follow any comments on this entry through the %s feed."
    22242228msgstr ""
    22252229
    2226 #: themes/commentpress-flat/single.php:250
     2230#: themes/commentpress-flat/single.php:245
    22272231#: themes/commentpress-modern/single.php:250
    22282232#: themes/commentpress-theme/single.php:201
     
    22302234msgstr ""
    22312235
    2232 #: themes/commentpress-flat/single.php:416
     2236#: themes/commentpress-flat/single.php:411
    22332237#: themes/commentpress-modern/single.php:416
    22342238#: themes/commentpress-theme/single.php:356
     
    22362240msgstr ""
    22372241
    2238 #: themes/commentpress-flat/single.php:418
     2242#: themes/commentpress-flat/single.php:413
    22392243#: themes/commentpress-modern/single.php:418
    22402244#: themes/commentpress-theme/single.php:358
  • commentpress-core/trunk/readme.txt

    r1773352 r1782116  
    55Requires at least: 3.4
    66Tested up to: 4.9
    7 Stable tag: 3.9.7
     7Stable tag: 3.9.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    214214== Changelog ==
    215215
     216<h4>3.9.8</h4>
     217
     218* Fixes date display when displaying Table of Contents as posts
     219* Fixes menu expansion on page load with unusual hierarchies
     220* German translation fixes
     221
    216222<h4>3.9.7</h4>
    217223
  • commentpress-core/trunk/themes/commentpress-flat/assets/css/bp-overrides.css

    r1695759 r1782116  
    9494#buddypress div#pag-bottom
    9595{
    96     margin-top: 0;
     96    margin-top: 0;
    9797}
    9898
     
    647647    float: none;
    648648    margin: 0;
     649    width: 80px;
     650    height: 80px;
    649651}
    650652
     
    669671#buddypress ul.item-list li div.item-meta
    670672{
    671     margin-left: 64px;
    672     width: 65%;
     673    margin-left: 90px;
     674    width: 60%;
    673675    line-height: 1;
    674676    padding-bottom: 0.3em;
     
    694696#buddypress ul.item-list li div.action
    695697{
    696     right: 15px;
    697     top: 15px;
    698 }
    699 
     698    right: 15px;
     699    top: 15px;
     700}
     701
     702#buddypress .group-members-list ul.item-list li div.action
     703{
     704    position: static;
     705    clear: left;
     706    padding-top: 12px;
     707    text-align: left;
     708}
    700709
    701710
     
    729738#buddypress #activity-stream
    730739{
    731     margin-top: 0;
    732     padding: 0;
     740    margin-top: 0;
     741    padding: 0;
    733742}
    734743
     
    755764}
    756765
    757 #buddypress #activity-stream img.avatar
     766#buddypress #activity-stream img.avatar,
     767#whats-new-avatar img.avatar,
     768.group_members.dir-list img.avatar,
     769body.rendez-vous .item-list .rendez-vous-avatar
    758770{
    759771    margin-right: 0;
    760772    margin-bottom: 0;
    761773    vertical-align: middle;
     774    width: 50px;
     775    height: 50px;
     776}
     777
     778body.rendez-vous .item-list .rendez-vous-avatar
     779{
     780    width: 80px;
     781    height: 80px;
     782}
     783
     784#buddypress #activity-stream li.mini img.avatar,
     785#buddypress #activity-stream .activity-header img.avatar
     786{
     787    width: 20px;
     788    height: 20px;
     789}
     790
     791.activity-permalink #buddypress #activity-stream .activity-avatar img.avatar
     792{
     793    width: 150px;
     794    height: 150px;
    762795}
    763796
     
    799832{
    800833    padding: 0;
    801     border-left: none;
    802     margin-top: 0;
    803     margin-bottom: 0;
     834    border-left: none;
     835    margin-top: 0;
     836    margin-bottom: 0;
    804837}
    805838
     
    809842{
    810843    padding: 15px;
    811     border-left: 10px solid #ddd;
     844    border-left: 10px solid #ddd;
    812845}
    813846
     
    825858#buddypress ul.activity-list > li:first-child
    826859{
    827     padding-top: 15px;
     860    padding-top: 15px;
    828861}
    829862
     
    943976{
    944977    padding: 0;
    945     border-left: none;
    946     margin-top: 0;
    947     margin-bottom: 0;
     978    border-left: none;
     979    margin-top: 0;
     980    margin-bottom: 0;
    948981}
    949982
     
    958991#buddypress div.activity-comments ul
    959992{
    960     margin-right: 0;
    961     background: #f5f5f5;
    962     -moz-border-radius: 4px;
    963     -webkit-border-radius: 4px;
    964     border-radius: 4px;
    965     padding: 0 0 0 10px;
     993    margin-right: 0;
     994    background: #f5f5f5;
     995    -moz-border-radius: 4px;
     996    -webkit-border-radius: 4px;
     997    border-radius: 4px;
     998    padding: 0 0 0 10px;
    966999}
    9671000
    9681001#buddypress li.has-comments div.activity-comments
    9691002{
    970     margin-top: 15px;
     1003    margin-top: 15px;
    9711004}
    9721005
    9731006#buddypress .activity-list .activity-content
    9741007{
    975     margin-bottom: 0;
     1008    margin-bottom: 0;
    9761009}
    9771010
     
    9801013{
    9811014    padding-left: 0;
    982     border-left: 0;
     1015    border-left: 0;
    9831016}
    9841017
     
    9961029body.group-home #buddypress ul.item-list.activity-list > li
    9971030{
    998     border-left: none;
     1031    border-left: none;
    9991032}
    10001033
     
    13101343{
    13111344    font-size: 0.9em;
    1312     margin-left: 64px;
    1313     width: 65%;
     1345    margin-left: 90px;
     1346    width: 60%;
    13141347}
    13151348
     
    13591392    font-size: 80%;
    13601393    line-height: 1;
     1394}
     1395
     1396@media all and (max-width: 782px) {
     1397    body.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions
     1398    {
     1399        width: 100%;
     1400    }
    13611401}
    13621402
     
    15791619#buddypress #signup_form.standard-form input[type="email"]
    15801620{
    1581     width: 90%;
     1621    width: 90%;
    15821622}
    15831623
     
    22862326}
    22872327
     2328#buddypress .group-members-list ul.item-list p.joined.item-meta
     2329{
     2330    font-size: 90%;
     2331    margin-top: 0;
     2332    padding-top: 0;
     2333    line-height: 1;
     2334}
     2335
    22882336
    22892337
     
    26692717#activity_sidebar li.groups
    26702718{
    2671     border-left: 10px solid #761D19;
    2672     margin-bottom: 0;
     2719    border-left: 10px solid #761D19;
     2720    margin-bottom: 0;
    26732721}
    26742722
     
    35813629.sidebar_container .widget_bp_groups_widget .widget_wrapper,
    35823630.sidebar_container .widget_bp_core_login_widget .widget_wrapper,
    3583 .sidebar_container .widget_bp_core_whos_online_widget .widget_wrapper
     3631.sidebar_container .widget_bp_blogs_widget .widget_wrapper,
     3632.sidebar_container .widget_bp_core_whos_online_widget .widget_wrapper,
     3633.sidebar_container .widget_bp_core_recently_active_widget .widget_wrapper
    35843634{
    35853635    padding: 10px;
     
    37043754.widget.buddypress #bp-login-widget-form label
    37053755{
     3756    margin-top: 0.5rem;
    37063757    margin-bottom: 0.2rem;
     3758    font-size: 80%;
    37073759}
    37083760
     
    37383790    text-decoration: none;
    37393791}
     3792
     3793@media all and (max-width: 1400px) {
     3794
     3795    .widget.buddypress #bp-login-widget-form label
     3796    {
     3797        font-size: 100%;
     3798        margin-top: 1rem;
     3799    }
     3800
     3801}
     3802
     3803
     3804
     3805/* BuddyPress Latest Posts Widget */
     3806.widget_bp_blogs_widget ul#blog-post-list
     3807{
     3808    margin: 0;
     3809}
     3810
     3811.widget_bp_blogs_widget ul#blog-post-list
     3812{
     3813    margin: 0;
     3814    list-style: none;
     3815}
     3816
     3817.widget_bp_blogs_widget ul#blog-post-list li
     3818{
     3819    list-style: none;
     3820    padding-bottom: 10px;
     3821}
     3822
     3823.widget_bp_blogs_widget ul#blog-post-list .activity-header
     3824{
     3825    margin-bottom: 1em;
     3826}
     3827
     3828.widget_bp_blogs_widget ul#blog-post-list .activity-header p
     3829{
     3830    margin: 0;
     3831    line-height: 1.5;
     3832}
     3833
     3834.widget_bp_blogs_widget ul#blog-post-list .activity-inner
     3835{
     3836    clear: left;
     3837    background-color: #fff;
     3838    padding: 1% 2% 1% 4%;
     3839    -moz-border-radius: 20px;
     3840    -khtml-border-radius: 20px;
     3841    -webkit-border-radius: 20px;
     3842    border-radius: 20px;
     3843    -moz-border-top-left-radius: 0;
     3844    -khtml-border-top-left-radius: 0;
     3845    -webkit-border-top-left-radius: 0;
     3846    border-top-left-radius: 0;
     3847    -moz-border-bottom-right-radius: 0;
     3848    -khtml-border-bottom-right-radius: 0;
     3849    -webkit-border-bottom-right-radius: 0;
     3850    border-bottom-right-radius: 0;
     3851}
     3852
    37403853
    37413854
     
    39424055#activity_sidebar li.groups
    39434056{
    3944     border-left: 10px solid #b4b797;
     4057    border-left: 10px solid #b4b797;
    39454058}
    39464059
     
    39644077body.blogtype-0
    39654078{
    3966     background: #C0D5BF;
     4079    background: #C0D5BF;
    39674080}
    39684081
     
    39734086body.is-groupblog.blogtype-0 #activity_sidebar
    39744087{
    3975     background: #C0D5BF !important;
     4088    background: #C0D5BF !important;
    39764089}
    39774090
     
    39914104ul.item-list li.groupblogtype-0 .item-desc a
    39924105{
    3993     color: #a1c19f;
     4106    color: #a1c19f;
    39944107}
    39954108
     
    39994112#buddypress ul.activity-list li.groupblogtype-0
    40004113{
    4001     border-left: 10px solid #a1c19f;
     4114    border-left: 10px solid #a1c19f;
    40024115}
    40034116
     
    40054118#activity_sidebar li.groupblogtype-0
    40064119{
    4007     border-left: 10px solid #a1c19f;
     4120    border-left: 10px solid #a1c19f;
    40084121}
    40094122
     
    40934206#buddypress ul.activity-list li.groupblogtype-1
    40944207{
    4095     border-left: 10px solid #85a896;
     4208    border-left: 10px solid #85a896;
    40964209}
    40974210
     
    40994212#activity_sidebar li.groupblogtype-1
    41004213{
    4101     border-left: 10px solid #85a896;
     4214    border-left: 10px solid #85a896;
    41024215}
    41034216
     
    41744287body.blogtype-2
    41754288{
    4176     background: #cbd5b4;
     4289    background: #cbd5b4;
    41774290}
    41784291
     
    41834296body.is-groupblog.blogtype-2 #activity_sidebar
    41844297{
    4185     background: #cbd5b4 !important;
     4298    background: #cbd5b4 !important;
    41864299}
    41874300
     
    42014314ul.item-list li.groupblogtype-2 .item-desc a
    42024315{
    4203     color: #b4c293;
     4316    color: #b4c293;
    42044317}
    42054318
     
    42094322#buddypress ul.activity-list li.groupblogtype-2
    42104323{
    4211     border-left: 10px solid #b4c293;
     4324    border-left: 10px solid #b4c293;
    42124325}
    42134326
     
    42154328#activity_sidebar li.groupblogtype-2
    42164329{
    4217     border-left: 10px solid #b4c293;
     4330    border-left: 10px solid #b4c293;
    42184331}
    42194332
  • commentpress-core/trunk/themes/commentpress-flat/assets/css/bp-overrides.min.css

    r1695759 r1782116  
    1 #content .post label.accessibly-hidden,#document_search label.accessibly-hidden{left:-999em;position:absolute}#buddypress div.item-list-tabs ul li.feed a{background:url(../images/buddypress/rss.png) center left no-repeat;margin-left:5px;padding-left:20px}a.button.loading,a.loading,a.loading:hover,div.activity-comments form.loading,input.loading,input.loading:hover,input[type=submit].loading,input[type=button].loading,input[type=reset].loading,ul li.loading a{background-image:url(../images/buddypress/ajax-loader.gif);background-repeat:no-repeat}#buddypress div.item-list-tabs ul li.loading a{background-position:.5em .8em;padding-left:2em!important}#buddypress .generic-button{display:inline-block;margin-left:.5em}.clear{clear:left}body.buddypress_page #page_wrapper{min-height:0}div.dir-list{background:#fff}#buddypress div.pagination{margin:0;background:#f4f4f4;border-top:1px solid #ddd;padding:4px 0}#buddypress div.pagination:after{content:"";display:block;height:0;clear:both}#buddypress div.pagination .pag-count{font-family:sans-serif;text-transform:none}#buddypress div#pag-bottom{margin-top:0}body.buddypress_page #content{padding:0;margin:0}div#content.error-404{margin:0 12%;padding:6% 0}#buddypress .item-body{margin:0;padding:19px}#groups-list .group-subscription-div a,.acomment-meta a,.activity-header a,.comment-meta a,.meta a,body.create-blog #content a{text-decoration:underline}#document_search input#search-terms{width:95%;margin-bottom:.5em}#buddypress div.dir-search{margin:-42px 19px 0 0}#buddypress div.dir-search input[type=text]{font-family:sans-serif;font-size:80%;line-height:1.6}#buddypress li.groups-members-search form{padding:2px}#buddypress li.groups-members-search input[type=text]{font-family:sans-serif}#content .post #search-form{margin:0 7px}#content .post input#search-submit{margin:1px 0 0 5px;line-height:10px;color:#777}#buddypress form#whats-new-form,.home-page form#whats-new-form,form#whats-new-form{padding:36px;margin:0}#buddypress #item-body form#whats-new-form{padding:3%;margin:0;border-top:none;border-bottom:1px solid #B5BFB2;background-color:#CBFFBD}#buddypress form#whats-new-form #whats-new-content{margin-left:54px;padding:0 0 0 22px}#buddypress form#whats-new-form p.activity-greeting,form#whats-new-form h5{color:#fff;font-weight:400;font-size:1em;text-transform:uppercase;margin:0 0 0 76px;padding:0 0 10px;line-height:.6}div.item-list-tabs ul,form.dir-form{padding:0}#item-body form#whats-new-form h5,#item-body form#whats-new-form p.activity-greeting{color:#000}#buddypress form#whats-new-form textarea{background:#fff;border:1px inset #ccc;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-family:inherit;font-size:14px}#buddypress form#whats-new-form #whats-new-submit{margin-top:0}#buddypress form#whats-new-form #whats-new-options select{margin-top:4px}body.directory.logged-in #content form.dir-form h3{color:#fff}div.item-list-tabs ul li.last{float:right;margin:7px 0 0}#buddypress div#subnav.item-list-tabs{margin:0;background:#fff}#buddypress div#subnav.item-list-tabs ul li.last{margin-top:4px;margin-right:4px;margin-bottom:4px}div.item-list-tabs ul li.last select{max-width:175px}div.item-list-tabs ul li a,div.item-list-tabs ul li span{display:block;padding:5px 10px;text-decoration:none}div.item-list-tabs ul li a span{background:#eee;border-radius:50%;border:1px solid #999;color:#444;display:inline;font-size:70%;margin-left:1px;padding:2px 4px;text-align:center;vertical-align:middle}div.item-list-tabs ul li.current a,div.item-list-tabs ul li.selected a{background-color:#eee;color:#555;opacity:.8;font-weight:700;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-left-radius:0;border-top-right-radius:0}body.activity h2.post_title,body.blogs h2.post_title,body.groups h2.post_title,span.user-nicename{font-weight:400;font-family:sans-serif}div.item-list-tabs ul li a:hover span,div.item-list-tabs ul li.current a span,div.item-list-tabs ul li.selected a span{background-color:#eee}div.item-list-tabs ul li.current a span,div.item-list-tabs ul li.selected a span{background-color:#fff}div.item-list-tabs ul{margin:0}div.item-list-tabs ul li{list-style:none;float:left;margin:5px 0 0;font-family:sans-serif;font-size:.7em;line-height:22px!important;text-transform:uppercase}div.item-list-tabs ul li:first-child{margin-left:0}div.item-list-tabs ul li select{text-transform:none}#buddypress div.item-list-tabs ul li a:focus,#buddypress div.item-list-tabs ul li a:hover{text-decoration:underline}#buddypress div.item-list-tabs ul li a,#buddypress div.item-list-tabs ul li a:active,#buddypress div.item-list-tabs ul li span{display:block;padding:10px 8px;text-decoration:none;line-height:1;color:#fff}#buddypress div#subnav.item-list-tabs ul{margin:0}#buddypress div#subnav.item-list-tabs ul li a,#buddypress div#subnav.item-list-tabs ul li span{color:#222}#buddypress div#subnav.item-list-tabs ul li.current a,#buddypress div#subnav.item-list-tabs ul li.selected a,div.item-list-tabs ul li.feed a{color:#555}#group-settings-form hr,div#group-create-body hr{display:none}#buddypress .standard-form{padding:19px}body.group-create #buddypress .standard-form{padding:0}#buddypress .standard-form label,#buddypress .standard-form span.label{color:#888;margin-top:1.5em;font-size:1em}#buddypress .standard-form div.radio{margin-bottom:12px}#buddypress .standard-form div.radio ul li{margin-bottom:5px;list-style:disc;text-transform:none;line-height:1.3}form#send_message_form ul li,ul#group-admins,ul#group-admins li,ul#group-mods,ul#group-mods li,ul#groupblog-details li,ul.button-nav li{list-style:none}#buddypress .standard-form textarea{height:300px}#blogs-directory-form a.button,#content a.button,#groups-directory-form a.button,.standard-form a.button,body.create-blog.buddypress_page #content a.button{vertical-align:35%;text-decoration:none}.standard-form .left-menu{padding:0 0 20px;float:left}.standard-form .main-column{margin-left:190px}.standard-form label,.standard-form span.label{text-transform:uppercase}div#comments_sidebar table,div#respond .defaultSkin table{width:auto}#commentform textarea{width:99%}div#sidebar table.mceLayout,div#sidebar table.mceToolbar{margin:0;width:auto}div.dir-search input[type=text]{padding:5px 5px 3px}#buddypress table.notification-settings .no,#buddypress table.notification-settings .yes{font-family:sans-serif;font-size:80%;text-transform:uppercase}.standard-form #group-email-settings{margin-top:2em}.standard-form #group-email-settings p{margin:.5em 0;padding:0;line-height:1.3}#buddypress ul.item-list{margin:0}#buddypress ul.item-list li{list-style:none;border-bottom:1px solid #eee;padding:15px;position:relative;overflow:visible}#buddypress ul.item-list>li{border-left:10px solid #eee}#buddypress ul#member-list.item-list>li{border-left:none}#buddypress ul.item-list li .item-avatar{line-height:0;float:left;margin:0 10px 0 0}#buddypress ul.item-list li .item-avatar img.avatar{vertical-align:middle;float:none;margin:0}#buddypress ul.item-list li .item-avatar a:focus{outline:#5b9dd9 solid 2px}#buddypress ul.item-list li .item-avatar a,#buddypress ul.item-list li .item-avatar a:active{outline:0}#buddypress ul.item-list li div.item-title,#buddypress ul.item-list li h4{font-size:1.2em}#buddypress ul.item-list li div.item-meta,#buddypress ul.item-list li div.item-title{margin-left:64px;width:65%;line-height:1;padding-bottom:.3em}#buddypress ul.item-list li div.item-title span.update{display:block;line-height:1.6}#buddypress ul.item-list li div.item-meta{padding-bottom:0}#buddypress ul.item-list li div.action{right:15px;top:15px}body.activity h2.post_title{margin:0;font-size:1.6em;padding:21px 19px 15px;color:#fff}body.directory.activity h2.post_title{display:none}body.activity h2.post_title a{color:#fff}#buddypress #activity-stream{margin-top:0;padding:0}#buddypress #activity-stream .activity-header p{margin:0;line-height:1.6}#buddypress .activity-list .activity-avatar{margin:0 10px 0 0}#buddypress .activity-list .activity-avatar a:focus{outline:#5b9dd9 solid 2px}#buddypress .activity-list .activity-avatar a,#buddypress .activity-list .activity-avatar:active{outline:0}#buddypress #activity-stream img.avatar{margin-right:0;margin-bottom:0;vertical-align:middle}#whats-new-post-in-box{color:#fff;font-family:sans-serif;text-transform:uppercase;font-size:12px}ul.item-list.activity-list li{padding-bottom:0;clear:left}ul.item-list.activity-list li:after{content:"";display:block;height:0;clear:both}.activity-list li.mini{padding-right:15px}ul.item-list.activity-list>li{padding:0;border-left:none;margin-top:0;margin-bottom:0}ul#blogs-list>li .blog-wrapper,ul#groups-list>li .group-wrapper,ul.item-list.activity-list>li .activity-wrapper{padding:15px;border-left:10px solid #ddd}ul.item-list.activity-list li.has-comments{padding-bottom:0}ul.item-list.activity-list li.load-more,ul.item-list.activity-list li.load-newest{margin:0!important}#buddypress ul.activity-list>li:first-child{padding-top:15px}#buddypress .activity-list .activity-content .activity-inner,#buddypress .activity-list .activity-content blockquote{margin:10px 10px 5px 0;overflow:hidden}#buddypress .activity-list li.load-more a:focus,#buddypress .activity-list li.load-newest a:focus{text-decoration:underline}#buddypress .activity-list li.load-more a,#buddypress .activity-list li.load-more a:active,#buddypress .activity-list li.load-newest a #buddypress .activity-list li.load-newest a:active{font-family:sans-serif;text-transform:uppercase;text-decoration:none;font-size:.9em;display:block;width:20%;margin:0 auto}#buddypress .activity-list li.load-more.loading a,#buddypress .activity-list li.load-newest.loading a{background-repeat:no-repeat;background-position:0 .3em}.activity-inner>p{margin-bottom:.5em;line-height:1.3}div.activity-meta{margin:12px 0 0}#item-body div.acomment-options a,#item-body div.activity-meta a{color:#777}body.activity-permalink .activity-list>li:first-child .activity-wrapper{padding:30px}body.activity-permalink .activity-list li .activity-content{background-color:#f8f8f8}body.activity-permalink .activity-list li .activity-header>p{background:0 0;height:auto}#buddypress ul.item-list .activity-inner ol,#buddypress ul.item-list .activity-inner ul{margin:0 0 0 26px;border:none}#buddypress ul.item-list .activity-inner>ol,#buddypress ul.item-list .activity-inner>ul{margin:0 0 8px 26px;border:none}#buddypress ul.item-list .activity-inner ul li{padding:0 0 2px;list-style-type:disc;list-style-position:outside;overflow:visible;border:none}#buddypress ul.item-list .activity-inner ol li{padding:0 0 2px;list-style-type:decimal;list-style-position:outside;overflow:visible;border:none}ul#blogs-list>li,ul#groups-list>li{padding:0;border-left:none;margin-top:0;margin-bottom:0}#buddypress div.activity-comments ul{margin-right:0;background:#f5f5f5;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:0 0 0 10px}#buddypress li.has-comments div.activity-comments{margin-top:15px}#buddypress .activity-list .activity-content{margin-bottom:0}#buddypress ul.item-list.activity-list li.load-more,#buddypress ul.item-list.activity-list li.load-newest{padding-left:0;border-left:0}#buddypress ul.item-list.activity-list div.activity-comments li{padding-bottom:1px}#buddypress div.activity-comments li form.ac-form{margin-right:0}body.group-home #buddypress ul.item-list.activity-list>li{border-left:none}.activity-list .activity-content .activity-header,.activity-list .activity-content .comment-header,span.activity{font-family:sans-serif;text-transform:none;color:#666}#activity_sidebar span.activity{font-size:80%}.activity-list li .activity-inreplyto{font-family:sans-serif;line-height:1.3;margin-top:2px}.activity-list .activity-content .activity-header,.activity-list .activity-content .comment-header{color:#666;font-size:.7em;line-height:200%}#buddypress .activity-list li.mini{font-size:inherit}#item-body .activity-list .activity-content .activity-header p,#item-body .activity-list .activity-content .comment-header p{padding:0}div#item-header div#item-meta{font-size:14px;color:#fff;overflow:hidden;margin:15px 0 5px;padding-bottom:10px}body#main_blog div#item-header div#item-meta,body.buddypress div#item-header div#item-meta{font-size:1em;line-height:1.2}#buddypress #activity-stream div.acomment-avatar img{margin-right:14px}#buddypress div.activity-comments div.acomment-content{padding:1px;margin-right:5px}div.activity-comments div.acomment-content p{margin-bottom:.5em}#buddypress div.activity-comments div.acomment-meta{font-size:.6em;font-family:sans-serif}#buddypress .acomment-options{font-size:90%;font-family:sans-serif;text-transform:uppercase;margin-top:2px}#buddypress .ac-reply-cancel{font-size:70%;margin-left:.5em;font-family:sans-serif;text-transform:uppercase}#buddypress li.mini .ac-reply-cancel{font-size:60%}#item-body p,.item-body p{padding:.2em 0 .5em;margin-bottom:0}div.activity-comments ul{margin-top:0;margin-bottom:0;margin-left:0}div.activity-comments form.root{margin-top:15px;margin-bottom:1px;clear:left}div.activity-comments form textarea{font-size:14px;padding:1px}.action .meta{font-family:sans-serif}li#blogs-order-select{margin-right:4px}body.activity-permalink #buddypress .activity-list>li:first-child{padding:19px}body.activity-permalink #buddypress .activity-list li .activity-content{margin-left:170px;margin-right:0;padding:15px 15px 8px}body.activity-permalink #buddypress div.activity-comments{clear:none}body.activity-permalink #buddypress #activity-stream .activity-header p{margin:0 0 .7em;padding:0;font-size:110%}#buddypress div.activity-comments form .ac-textarea{padding-bottom:0}body.blogs h2.post_title{margin:0;font-size:1.6em;padding:21px 19px 15px;color:#fff}body.blogs.create-blog h2.post_title{margin-bottom:19px}body.blogs h2.post_title a,body.create-blog #content h2.post_title a{color:#fff;text-decoration:none}div.blog-button{padding:0;line-height:1.6}#buddypress ul.item-list li div.meta{margin-top:8px;font-size:75%}body.group-create #buddypress #group-create-body h2,body.group-create #content h4:first-child{margin-top:0}body.group-create #buddypress #group-create-body p{padding:0;margin:.7em 0}#buddypress #item-body div.bp-avatar-status p#bp-avatar-feedback,#buddypress #item-body div.bp-avatar-status p.success,#buddypress #item-body div.bp-cover-image-status p.success,#buddypress #item-body p.warning,body.group-create #buddypress #group-create-body .bp-avatar-status p,body.group-create #buddypress #group-create-body .bp-cover-image-status p,body.group-create #buddypress #group-create-body p#bp-avatar-feedback{font-family:sans-serif;font-size:80%;padding:.5em .7em}ul#groupblog-details{margin:0}body.groups h2.post_title{margin:0;font-size:1.6em;padding:21px 19px 15px;color:#fff}body.groups h2.post_title a{color:#fff}#buddypress ul#groups-list.item-list li{padding-bottom:1px}#buddypress ul.item-list li div.item-desc{font-size:.9em;margin-left:64px;width:65%}body.single-item.groups #item-header span.activity,body.single-item.groups #item-header span.highlight{padding-top:0}#buddypress #item-header span.activity{color:#eee}#delete-group-avatar-button{padding:12px 0 0}body.group-admin.delete-group #buddypress .standard-form{padding-bottom:24px}#buddypress div.bp-avatar-nav{font-family:sans-serif;font-size:80%;text-transform:uppercase}body.buddypress #buddypress div#item-header div#item-actions h2,body.buddypress #buddypress div#item-header div#item-actions h3{font-size:80%;line-height:1}body.group-admin #content #item-body .bp-widget,body.group-admin.group-blog #group-settings-form{margin-bottom:1em}body.bp-user h2.post_title,body.members h2.post_title{font-size:1.6em;font-weight:400;font-family:sans-serif;margin:0;color:#fff;padding:.5em;line-height:1}body.bp-user h2.post_title a,body.members h2.post_title a{color:#fff}span.user-nicename{color:#fff;font-size:16px}.dir-search input[type=text],.standard-form input[type=text],.standard-form input[type=password],.standard-form select,.standard-form textarea{font-family:sans-serif}#latest-update a{background:#fff;border:1px solid #ccc;color:#777;font-size:small;cursor:pointer;outline:0;text-align:center;text-decoration:none;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-family:sans-serif;margin-top:1px;line-height:10px;padding:2px 6px}#latest-update a:hover{background:#ededed;border:1px solid #bbb;color:#555;outline:0;text-decoration:none}div.profile{padding:0 19px 19px}#buddypress div.profile>.standard-form{padding:0}table.profile-fields td,table.profile-fields th{padding:.2em;border:1px solid #f5f5f5}table.profile-fields td.label{padding:.2em .2em .5em}#profile-edit-form{padding:0 0 19px}ul.button-nav{margin:0}#buddypress p#bp-cover-image-feedback{padding:.5em;font-family:sans-serif;font-size:80%}#buddypress #cover-image-container #header-cover-image{background-position:center center}#buddypress .field-visibility-settings,#buddypress .field-visibility-settings-notoggle,#buddypress .field-visibility-settings-toggle{font-size:80%}#buddypress .standard-form p.description{font-size:100%;margin:0 0 5px}body.activation #content h2.post_title,body.registration #content h2.post_title{margin:0;font-size:1.6em;font-weight:400;padding:21px 19px 15px;color:#fff;font-family:sans-serif}body.registration #content h2.post_title a{color:#fff}body.registration #signup_form:after{content:"";display:block;height:0;clear:both}#buddypress .standard-form #basic-details-section,#buddypress .standard-form #blog-details-section,#buddypress .standard-form #profile-details-section{float:none;width:auto}#buddypress #signup_form.standard-form input[type=email]{width:90%}body.activation #content h2.post_title a{color:#fff}#activate-page{padding:19px}body.create-blog #setupform{padding:7px 19px 19px}body.create-blog #content .post{padding-bottom:1px}body.create-blog #content p{font-size:1em;line-height:1.5;padding:0 19px}body.create-blog #content #setupform p{font-size:1em;line-height:1.5;padding:0}body.create-blog #content #setupform label{font-family:sans-serif;font-size:1.1em;font-weight:700;text-transform:uppercase;margin:0 .5em 0 0;padding:0}body.create-blog #content #setupform .prefix_address{font-family:sans-serif;font-size:14px}body.create-blog #content #setupform #blogname{width:50%;margin-bottom:15px}body.create-blog #content #cp-multisite-options .cp-workflow-type label,body.create-blog #content #setupform label.checkbox{color:#000;font-size:14px;font-weight:700;margin:5px 0;text-transform:none}body.create-blog #content #cp-multisite-options .cp-workflow-type label{font-size:15px}body.create-blog #content #cp-multisite-options .cp-workflow-type{margin:15px 0 5px}.standard-form#signup_form div.submit{float:none;text-align:right}body.create-blog #setupform #submit{background:#fff;font-size:90%}body.create-blog #cp-multisite-options{margin-bottom:19px;padding:19px;border:1px solid #DDD}body.create-blog #cp-multisite-options h4{font-family:sans-serif;font-weight:700;font-size:1.1em;line-height:1.5;padding:0;text-transform:uppercase}body.create-blog #content #cp-multisite-options p{font-size:1em;line-height:1.5;padding:0 0 7px}body.create-blog #content #cp-multisite-options .checkbox{color:#000;margin:0 0 5px}body.create-blog #content #cp-multisite-options .checkbox label{color:#000;font-size:15px;text-transform:none}body.create-blog #content #setupform p.error{border:1px solid #E1CA82;border:#A71A1A;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-weight:400;margin-top:5px;margin-bottom:5px;text-decoration:none;background:#DB1717;background-image:-webkit-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-moz-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-o-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));clear:left;color:#fff;font-size:12px;display:block;padding:5px 10px}#buddypress div#message.updated{margin:0 19px}#buddypress div#message p{margin-top:0;border:none}#account-delete-form #message.info{margin:0 0 15px}#buddypress table#message-threads{margin:0;width:auto;vertical-align:top}#buddypress table#message-threads tr th{padding:0 5px;font-family:sans-serif;text-transform:uppercase;font-size:80%}#buddypress table#message-threads tr td{padding:10px 5px}#buddypress table#message-threads img.avatar{vertical-align:middle}#buddypress table#message-threads tr td.thread-from{font-family:sans-serif;text-transform:uppercase;font-size:1em;font-weight:400;width:50%}#buddypress table#message-threads tr td.thread-from span.activity{display:block}#buddypress table#message-threads tr td.thread-options{width:20%!important}#buddypress table#message-threads tr td.thread-options a.button{vertical-align:5%}#buddypress table#message-threads .thread-info{width:30%}#buddypress table#message-threads tr td.thread-info p{font-family:sans-serif;text-transform:uppercase;font-size:16px;padding:0;margin:0}#buddypress table#message-threads tr td.thread-info p.thread-excerpt{font-family:Georgia,serif;text-transform:none}#buddypress table#message-threads tr td.thread-options a{font-family:sans-serif;text-transform:uppercase;font-size:80%}div.messages-options-nav{margin:0}#messages_search{font-size:85%;vertical-align:bottom}form#send_message_form{padding-bottom:19px}form#send_message_form ul{margin:0;padding:0}li span.unread-count,tr.unread span.unread-count{background:#d00;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:50%;color:#fff;font-weight:700;font-family:sans-serif;padding:2px 6px;font-size:90%}#message-thread{margin:19px}#message-recipients span.highlight{color:#222}#content #message-recipients a.button{vertical-align:15%}div#message-thread div.message-box{margin:0;background:#f5f5f5;border-bottom:1px solid #fff}div#message-thread strong a{text-transform:uppercase;font-size:15px;font-weight:400;padding-top:2px}form#send-reply{padding:19px 0}form#send-reply div.message-box{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}li.friend-tab span{font-family:sans-serif;font-size:12px}li.friend-tab img.avatar{margin-right:3px;margin-bottom:3px;vertical-align:middle}table#groups-notification-settings{margin-bottom:0}body.create-blog #content h3,body.directory.logged-in #content h3,body.registration #content h2,body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3,h3#message-subject{font-size:1.6em;font-weight:400;color:#761D19;margin:12px 0 6px;padding:0 7px}body.directory.activity.buddypress_page #content h3{margin:0}body.create-blog #content h3,body.registration #content h2,h3#message-subject{padding-left:0;padding-right:0}body.create-blog #content h3{padding-bottom:19px}#register-page #cp-multisite-options h4,#register-page #signup_form h2,body.directory.logged-in #content h4,body.group-admin #content #group-settings-form h2,body.group-admin #content #item-body h3,body.group-admin #content #item-body h4,body.group-admin #group-create-body h2,body.group-admin #group-create-body h3,body.group-admin.group-blog #group-settings-form h2,body.group-create #content h4,body.group-create #group-create-body h2,body.group-create #group-create-body h3,body.registration #content h4,div.profile h4{font-size:1.3em;font-weight:400;color:#761D19;margin:24px 0 12px;padding:0}body.group-admin #content #item-body form h3,body.group-admin #content #item-body h2:first-child,body.group-admin #content #item-body h3:first-child,body.group-admin #content #item-body h4:first-child{margin-top:0}body.create-blog #cp-multisite-options h4{margin:0}body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3{padding:19px 19px 12px}#activate-page h2,#activate-page h3,body.create-blog.buddypress_page #content h3,body.directory #content h3,body.group-create #content form.standard-form>h3{font-size:1.6em;font-weight:400;font-family:sans-serif;color:#fff;padding:21px 19px 15px;margin:0}#activate-page h2,#activate-page h3,body.create-blog.buddypress_page #content h3{margin-top:0;margin-bottom:19px;padding-bottom:19px}body.directory #content form.dir-form h3{font-size:1.6em;font-weight:400;color:#fff;padding:21px 19px 15px;margin:0}body.group-admin #content div#item-header h2,div#item-header h2{font-weight:400;color:#fff;font-size:28px;line-height:120%;margin:0 0 15px}.item-title a,.item-title a:active,ul#admins-list h5 a,ul#member-list h5 a,ul#members-list h5 a,ul#mods-list h5 a{font-size:1.2em;text-decoration:none}.item-title a,div#item-header h2 a{color:#761D19;font-family:sans-serif;text-transform:uppercase}.item-title a:focus{text-decoration:underline}div#item-header h2 a{font-weight:400}#item-nav ul,ul#group-admins,ul#group-mods{margin:0}div#item-header div#item-actions h3{font-weight:400;font-family:sans-serif;color:#fff}div#item-header ul img.avatar,div#item-header ul.avatars img.avatar{margin:2px 0 2px 2px}ul#admins-list h5,ul#member-list h5,ul#members-list h5,ul#mods-list h5{font-weight:400}#buddypress #admins-list li,#buddypress #members-list li,#buddypress #mods-list li{border-left:none;overflow:auto;padding:8px 0}body.directory #buddypress #members-list li,body.followers #buddypress #members-list li,body.following #buddypress #members-list li,body.friends #buddypress #members-list li{overflow:auto;padding:15px}ul#members-list.item-list li div.item-meta,ul#members-list.item-list li div.item-title{width:auto}ul#members-list.item-list li div.item-title span.activity-read-more a{font-size:12px}table.notifications{margin:0;text-align:left}table.notifications td:first-child,table.notifications th.icon{display:none}table.notifications th.title{width:55%}#activity_sidebar ul.item-list.cp-online-members li div.item-title,#activity_sidebar ul.item-list.cp-online-members li h4,#activity_sidebar ul.item-list.cp-recently-active li div.item-title,#activity_sidebar ul.item-list.cp-recently-active li h4{width:auto}#content table.notifications a.button{vertical-align:10%;text-decoration:none}#activity_sidebar ul.item-list.cp-online-members{margin:0;padding:0;border-bottom:none}#activity_sidebar ul.item-list.cp-online-members li{padding:10px;border-top:none;border-bottom:1px solid #eee;position:static}#activity_sidebar ul.item-list.cp-online-members li a{display:inline;padding:0;font-size:110%;background:0 0}#activity_sidebar ul.item-list.cp-online-members li .item-avatar{float:left;padding:0 10px 0 0}#activity_sidebar ul.item-list.cp-online-members li .item-avatar a:focus{outline:#fff solid 1px}#activity_sidebar ul.item-list.cp-online-members li .item-avatar a,#activity_sidebar ul.item-list.cp-online-members li .item-avatar a:active{outline:0}#activity_sidebar ul.item-list.cp-online-members li img.avatar{border:none;float:none;margin:0;vertical-align:middle}#activity_sidebar ul.item-list.cp-recently-active{margin:0;padding:0;border-bottom:none}#activity_sidebar ul.item-list.cp-recently-active li{padding:10px;border-top:none;border-bottom:1px solid #eee;position:static}#activity_sidebar ul.item-list.cp-recently-active li a{display:inline;padding:0;font-size:110%;background:0 0}#activity_sidebar ul.item-list.cp-recently-active li .item-avatar{float:left;padding:0 10px 0 0}#activity_sidebar ul.item-list.cp-recently-active li .item-avatar a:focus{outline:#fff solid 1px}#activity_sidebar ul.item-list.cp-recently-active li .item-avatar a,#activity_sidebar ul.item-list.cp-recently-active li .item-avatar a:active{outline:0}#activity_sidebar ul.item-list.cp-recently-active li img.avatar{border:none;float:none;margin:0;vertical-align:middle}.single-item #content.groupblog .group-subscription-div a{color:#fff}.single-item #content.groupblog.groupblogtype-0 .group-subscription-div a,.single-item #content.groupblog.groupblogtype-1 .group-subscription-div a,.single-item #content.groupblog.groupblogtype-2 .group-subscription-div a,.single-item .group-subscription-div a{color:#ccc}#buddypress .generic-button a.group-sub{line-height:2.4}#buddypress div#item-header div.generic-button.group-subscription-options{margin:0}#groups-dir-list .group-subscription-div,#groups-list .group-subscription-div{font-family:sans-serif;padding-top:0;padding-bottom:0;margin-bottom:12px;text-transform:uppercase}a.group-subscription-options-link{text-decoration:underline}#content #groups-dir-list .group-subscription-options,#content #groups-list .group-subscription-options{position:absolute}.single-item .group-subscription-div{font-size:11px;text-transform:uppercase;font-weight:400;font-family:sans-serif;padding:.5em 0 1em}.single-item .group-subscription-div a:hover{color:#fff}#ass-email-subscriptions-options-page{padding:9px 19px 25px}#ass-email-subscriptions-options-page h3{font-size:1.3em;font-weight:400;margin:12px 0;padding:0}#ass-email-subscriptions-options-page label{color:#888;font-weight:700;margin:10px 0 0;text-transform:uppercase;font-family:sans-serif;font-size:100%}#ass-email-subscriptions-options-page .ass-email-type{margin:14px 0}#ass-email-subscriptions-options-page .ass-email-type input{margin-right:5px}#ass-email-subscriptions-options-page .ass-email-explain{font-size:100%;margin-top:4px}form#settings-form table.notification-settings td,form#settings-form table.notification-settings th{padding:2px}form#settings-form table.notification-settings tbody tr{border-bottom:1px solid #eee}#activity_sidebar .groupsites_comments_output .comment-content,#activity_sidebar .workshop_comments_output .comment-content{border-bottom:none}table#groups-notification-settings.notification-settings{margin-bottom:20px}ul#admins-list h5 .ass_manage_members_links,ul#members-list h5 .ass_manage_members_links,ul#mods-list h5 .ass_manage_members_links{text-transform:uppercase;font-size:9px;font-weight:400;font-family:sans-serif}ul#admins-list h5 .ass_manage_members_links a,ul#members-list h5 .ass_manage_members_links a,ul#mods-list h5 .ass_manage_members_links a{font-size:9px;font-weight:400;font-family:sans-serif}body.groups.announcements #item-body{padding:0}body.groups.announcements #item-body h3{font-size:1.3em;font-weight:400;margin:16px 0 12px;padding:9px 19px}body.groups.announcements #item-body>p{margin:.2em 0 .6em;padding:0 19px}body.groups.announcements #item-body #whats-new-form{margin:1.5em 0 0}ul#groupblog-details li{padding-top:10px;padding-bottom:10px}.standard-form #groupblog-details input[type=text]{width:15em!important;-moz-border-radius:1px;-webkit-border-radius:1px;border-radius:1px}.standard-form #groupblog-details input#blog_title{padding:6px}.standard-form #groupblog-details input#blogname{padding:2px}.standard-form p.description{font-size:12px}#groupblog-members li{margin-left:1.2em;margin-bottom:5px;list-style:disc}#activity_sidebar li.groups{margin-bottom:0}#activity_sidebar .workshop_comments_output .comment-identifier p{margin-top:0;padding:0;font-size:70%;font-style:normal;font-family:sans-serif;color:#222;line-height:1.3}#activity_sidebar .workshop_comments_output .comment-identifier p img{display:none;vertical-align:middle}#bpgsites-post-in-box{margin:.4em}#bpgsites-post-in-box span,.bpgsites_comment_group{font-family:sans-serif;text-transform:uppercase}.bpgsites_comment_group_header{font-size:70%;font-weight:700;padding:10px 0 5px}.bpgsites_comment_group_header:first-child{padding-top:0}#bpgsites-post-in-box select,#bpgsites-post-in-box span,.bpgsites_comment_group_label{font-size:70%}#comments_in_page_wrapper .comments_container h3.bpgsites_group_filter_heading{padding:0;background-color:#d6d6d6}#comments_in_page_wrapper .comments_container h3.bpgsites_group_filter_heading:hover{background-color:#ccc}#comments_in_page_wrapper .comments_container #bpgsites_group_filter{background-color:#dfdfdf}@media all and (max-width:1200px){.bpgsites_comment_group{padding:5px}.bpgsites_comment_group_label{padding:5px;font-size:100%}}#activity_sidebar .groupsites_comments_output li.groups{border-left:none;margin-bottom:0}#activity_sidebar .groupsites_comments_output .comment-identifier p{margin-top:0;padding:0;font-size:70%;font-style:normal;font-family:sans-serif;color:#222;line-height:1.3}#activity_sidebar .groupsites_comments_output .comment-identifier p img{display:none;vertical-align:middle}body.bp-docs #content{padding:0;margin:0;min-height:0}body.bp-docs h2.post_title{margin:0;font-size:1.6em;font-weight:400;font-family:sans-serif;padding:21px 19px 15px;color:#fff}body.bp-docs h2.post_title a{color:#fff}body.bp-docs div.docs-info-header{margin:0;padding:2%;background:#fafafa;border-top:1px solid #ddd;text-transform:uppercase;font-family:sans-serif;font-size:90%}body.bp-docs .doc-meta-box table,body.bp-docs .doc-meta-box table td,body.bp-docs div.doc-content{border:none}body.bp-docs p.currently-viewing{margin:0}table.doctable{margin:0}table.doctable tr td a{text-transform:uppercase;font-family:sans-serif;font-size:85%}table.doctable .row-actions a{font-size:75%}table.doctable tr td,table.doctable tr th{padding:4px;vertical-align:middle}body.bp-docs #doc-group-summary img.avatar,body.bp-docs .doc-meta-box table td{vertical-align:top}table.doctable tr th{font-family:sans-serif;font-size:80%;text-transform:uppercase}table.doctable tr td{line-height:1.2;padding:8px 4px}table.doctable tr td.title-cell>p{font-size:90%;margin:.4em 0}table.doctable tr td.groups-cell ul{margin:0}table.doctable tr td.groups-cell ul li img.avatar{float:left;margin-right:.4em}#buddypress p.no-docs{padding:9px 19px 19px}#doc-content-textarea{width:99.9%}#buddypress .entry-content p.toggle-switch,#buddypress .toggle-switch{font-family:sans-serif;font-size:80%;font-weight:700;text-transform:uppercase;line-height:1.8}#buddypress .paperclip-jaunty,#buddypress .paperclip-vertical,#buddypress .plus-or-minus{margin-top:4px}body.bp-docs span.description{font-size:90%}body.bp-docs a.action.safe,body.bp-docs a.delete-doc-button{font-size:70%;margin-left:.5em;font-family:sans-serif;text-transform:uppercase;text-decoration:none}body.single-bp_doc .page_nav_lower,body.single-bp_doc .page_navigation{display:none}body.single-bp_doc #doc-meta,body.single-bp_doc .doc-meta,body.single-bp_doc .docs #comments{padding:19px}body.bp-docs .doc-tabs{border-bottom:3px solid #e6e6e6}body.bp-docs .doc-tabs ul{margin:20px 20px 0;border:none}body.bp-docs .doc-tabs li a{font-family:sans-serif;text-transform:uppercase;font-size:80%;background:#F7F7F7}body.bp-docs .doc-tabs li.current a{background:#e6e6e6}body.single-bp_doc div.doc-content{border:none;margin:0 12%;padding:3% 0;position:relative}body.bp-docs.bp-docs-edit div.doc-content{border:none;margin:0;padding:20px}body.bp-docs.bp-docs-create #buddypress h2{margin:0;padding:20px 20px 0}#bp-docs-single-doc-header{margin:0;padding:0 20px;border-top:1px solid #ddd}body.bp-docs #buddypress .standard-form{padding:0}body.bp-docs #buddypress div.doc-permissions{text-transform:uppercase;font-family:sans-serif;font-size:80%}#group-doc-options{padding:20px 0 0}body.group-create #group-doc-options h3{margin-bottom:0}table.group-docs-options td{padding-top:10px}table.group-docs-options td.label{width:250px!important;padding-top:0}#buddypress div#bp-docs-pagination{margin:0;background:#f4f4f4;border-top:1px solid #ddd;padding:4px 0 4px 10px}#buddypress div#bp-docs-pagination-count{left:10px;top:8px;font-family:sans-serif;font-size:80%}form#send-invite-form{margin-top:20px}div#invite-list{background:#f5f5f5;border:1px solid #e4e4e4;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;height:400px;margin:0 0 10px;overflow:auto;padding:5px;width:160px}#buddypress ul#invite-anyone-invite-list.item-list>li{border-left:none;padding:8px 0}#buddypress ul#invite-anyone-invite-list.item-list li div.action{right:0;top:8px}body.groups.invite-anyone #invite-anyone-invite-list .remove{background:#fff;background:-moz-linear-gradient(top,#fff 0,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fff 0,#ededed 100%);background:-o-linear-gradient(top,#fff 0,#ededed 100%);background:-ms-linear-gradient(top,#fff 0,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );background:linear-gradient(top,#fff 0,#ededed 100%);border:1px solid #ccc;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#777;cursor:pointer;font:400 12px/20px Arial,Tahoma,Verdana,sans-serif;outline:0;padding:4px 10px;text-align:center;text-decoration:none;line-height:14px;text-transform:none}body.groups.invite-anyone #invite-anyone-invite-list .remove:hover{background:#ededed;background:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#e0e0e0));background:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-ms-linear-gradient(top,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0', GradientType=0 );background:linear-gradient(top,#fff 0,#e0e0e0 100%);border:1px solid #bbb;color:#555;outline:0;text-decoration:none;text-transform:none}body.groups.invite-anyone #item-body,form#invite-anyone-by-email{padding:9px 19px 19px}body.groups.invite-anyone .left-menu{float:left}body.groups.invite-anyone .left-menu>p{line-height:1;padding:0;margin:0 0 1em}#create-group-form ul.first li{list-style:none}body.groups.invite-anyone #invite-anyone-invite-list h4{margin:0 0 0 60px}body.groups.invite-anyone #invite-anyone-invite-list h4 a{font-family:sans-serif;text-transform:uppercase;text-decoration:none}body.groups.invite-anyone #invite-anyone-member-list ul li{font-family:sans-serif;font-size:80%}ul#invite-anyone-group-list li{font-size:100%}#invite-anyone-by-email h4,body.sent-invites h4{margin:19px 0 12px;padding:0;font-size:1.6em;font-weight:400;color:#761D19}#groups-list .group-subscription-div,a.button,button,div.generic-button a,input[type=submit],input[type=button],input[type=reset],ul.button-nav li a{color:#777}body.sent-invites h4{margin:12px 19px}body.sent-invites #sent-invites-intro{font-size:1em;margin:12px 19px 0;padding-bottom:19px}body.sent-invites .ia-pagination{margin-left:19px;margin-right:19px}body.sent-invites .ia-pagination .currently-viewing{font-family:sans-serif;font-size:110%;font-style:normal}body.sent-invites table.invite-anyone-sent-invites{margin-top:0;margin-left:19px;width:94%}body.sent-invites table.invite-anyone-sent-invites thead th{font-size:80%;font-family:sans-serif;text-transform:uppercase;font-weight:400}body.sent-invites table.invite-anyone-sent-invites thead a{text-decoration:none}body.sent-invites ul#invite-anyone-clear-links{width:auto;margin:0;padding:0}body.sent-invites ul#invite-anyone-clear-links li{list-style:none;text-transform:uppercase;font-size:90%}form#invite-anyone-by-email #welcome-message{font-size:110%}body.invite-anyone form#invite-anyone-by-email p{margin:.7em 0;padding:0}ol#invite-anyone-steps{margin:0}ol#invite-anyone-steps #invite-anyone-custom-message,ol#invite-anyone-steps #invite-anyone-custom-subject,ol#invite-anyone-steps textarea.invite-anyone-email-addresses{width:97%;border:2px solid #ddd;padding:.5em;background:#fafafa}body.invite-anyone form#invite-anyone-by-email li label,body.invite-anyone form#invite-anyone-by-email li p,body.invite-anyone form#invite-anyone-by-email li strong{font-family:sans-serif}body.invite-anyone form#invite-anyone-by-email p.description{font-size:80%;margin:0}body.invite-anyone form#invite-anyone-by-email .submit{margin:.7em 0;padding:0}body.my-account #bbpress-forums{padding:19px}body.my-account #bbpress-forums h2.entry-title{font-size:2.2em;font-weight:400;margin:1em 0 .5em;padding:0}body.my-account #bbpress-forums h2.entry-title:first-child{margin-top:0}body.my-account #bbpress-forums .bbp-user-section p{font-size:140%}body.activity-permalink.buddypress_page #content{padding-bottom:19px}#register-page #signup_form h2,.item-title a,.standard-form label,.standard-form span.label,body#main_blog div#item-header div#item-actions h3,body.activate #content h3,body.activation.activate #content h2,body.create-blog #content h3,body.directory #content form.dir-form h3,body.directory #content h3,body.directory.logged-in #content form.dir-form h3,body.directory.logged-in #content h3,body.group-create #content form.standard-form>h3,body.registration #content h2,div#item-header h2,form#send-reply div.message-box .avatar-box strong,form#settings-form table.notification-settings th.title,span.highlight,table.notifications th,ul#admins-list h5,ul#member-list h5,ul#members-list h5,ul#mods-list h5{text-transform:uppercase}body.buddypress #content #buddypress div#item-header h2{font-size:1.6em;margin:0}body.buddypress #content #buddypress div#item-header h2.user-nicename{font-size:1.6em;margin-bottom:.6em;line-height:1.6;text-transform:none;text-shadow:0 0 9px #666}#activity_sidebar .widget.widget_bp_core_members_widget span.activity,#activity_sidebar .widget.widget_bp_groups_widget span.activity{font-size:11px}#register-page #cp-multisite-options h4{margin-top:0;margin-bottom:0}#buddypress .activity-header a,#groups-list .group-subscription-div a,body.create-blog #content a{text-decoration:none}#buddypress .activity-header a:focus,#groups-list .group-subscription-div a:focus,body.create-blog #content a:focus{text-decoration:underline}#buddypress .activity-header a:active,#groups-list .group-subscription-div a:active,body.create-blog #content a:active{text-decoration:none}body#main_blog #item-body form#whats-new-form,body.buddypress #item-body form#whats-new-form{background-color:#eee}body#main_blog div#item-header div#item-meta,body.buddypress div#item-header div#item-meta{color:#fff}.sidebar_container .widget_bp_core_login_widget .widget_wrapper,.sidebar_container .widget_bp_core_members_widget .widget_wrapper,.sidebar_container .widget_bp_core_whos_online_widget .widget_wrapper,.sidebar_container .widget_bp_groups_widget .widget_wrapper{padding:10px}.widget.buddypress div.item-options a.loading{padding-right:16px;background-position-x:right;background-position-y:2px}.widget.widget_bp_core_members_widget div.item-options,.widget.widget_bp_groups_widget div.item-options{padding:0}.widget.widget_bp_core_members_widget div.item-options a:focus{text-decoration:underline}.widget.widget_bp_core_members_widget div.item-options a,.widget.widget_bp_core_members_widget div.item-options a:active{color:#333;text-decoration:none}.widget.widget_bp_groups_widget div.item-options a:focus{text-decoration:underline}.widget.widget_bp_groups_widget div.item-options a,.widget.widget_bp_groups_widget div.item-options a:active{color:#333;text-decoration:none}#activity_sidebar .widget.widget_bp_groups_widget li{border:none}.bp-login-widget-user-avatar img.avatar{height:50px;width:50px;vertical-align:middle}.sidebar_container .widget.buddypress .bp-login-widget-user-links>div{margin:0}.sidebar_container .widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a:focus{text-decoration:underline}.sidebar_container .widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a,.sidebar_container .widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a:active{display:inline;padding:0;font-size:110%;background:0 0;text-transform:uppercase;text-decoration:none;font-weight:400}.widget.buddypress .bp-login-widget-user-logout a:focus{color:#761D19;text-decoration:underline}.widget.buddypress .bp-login-widget-user-logout a,.widget.buddypress .bp-login-widget-user-logout a:active{color:#000;font-size:90%;text-decoration:none}.widget.buddypress #bp-login-widget-form{padding-bottom:.4rem}.widget.buddypress #bp-login-widget-form label{margin-bottom:.2rem}.widget.buddypress #bp-login-widget-form>label:first-child{margin-top:.3rem}.widget.buddypress #bp-login-widget-form #bp-login-widget-user-login,.widget.buddypress #bp-login-widget-form #bp-login-widget-user-pass{padding:8px;border:1px solid #ccc;width:90%;letter-spacing:.3px}.widget.buddypress #bp-login-widget-form .forgetmenot{padding-bottom:.4rem}.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a:active,.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a:focus,.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a:hover{text-decoration:underline}.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a{color:#333;text-decoration:none}body#main_blog div#item-header div#item-meta{font-family:Georgia,Times,serif}#buddypress .profile h4,#buddypress form#whats-new-form p.activity-greeting,#buddypress span.highlight,.item-title a,.standard-form label,.standard-form span.label,.widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a,.widget.buddypress .bp-login-widget-user-logout a,body#main_blog div#item-header div#item-actions h3,body#main_blog.create-blog.buddypress_page #content .padder h3,body.activate #content h3,body.activation.activate #content h2,body.blogs h2.post_title a,body.create-blog #content h3,body.directory #content form.dir-form h3,body.directory #content h3,body.directory.logged-in #content form.dir-form h3,body.directory.logged-in #content h3,body.directory.logged-in #content h4,body.group-admin #content div#item-header h2,body.group-admin #content h2,body.group-admin #content h3,body.group-admin #content h4,body.group-admin #group-create-body h2,body.group-admin #group-create-body h3,body.group-create #content form.standard-form>h3,body.group-create #content h4,body.group-create #group-create-body h2,body.group-create #group-create-body h3,body.groups h2.post_title a,body.groups.announcements #item-body h3,body.members h2.post_title a,body.my-account #bbpress-forums h2.entry-title,body.registration #content h2,body.registration #content h4,body.sent-invites ul#invite-anyone-clear-links li,body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3,div#item-header h2,div#message-thread strong a,form#send-reply div.message-box .avatar-box strong,form#settings-form table.notification-settings th.title,form#whats-new-form h5,h3#message-subject,h3.activity-subscription-settings-title,table#message-threads tr td.thread-from,table#message-threads tr td.thread-info p,table.notifications th,ul#admins-list h5,ul#member-list h5,ul#members-list h5,ul#mods-list h5{font-family:"Open Sans",Helvetica,Arial,sans-serif}#activity_sidebar .groupsites_comments_output .comment-identifier p a,#activity_sidebar .workshop_comments_output .comment-identifier p a,#activity_sidebar ul.item-list.cp-online-members li a,#activity_sidebar ul.item-list.cp-recently-active li a,#ass-email-subscriptions-options-page h3,#buddypress .acomment-options a,#buddypress .activity-header a,#buddypress .activity-list li.load-more a,#buddypress .activity-list li.load-more a:active,#buddypress .activity-list li.load-newest a #buddypress .activity-list li.load-newest a:active,#buddypress table#message-threads tr td.thread-from a,#buddypress table#message-threads tr td.thread-info p a,#groups-list .group-subscription-div a,#invite-anyone-by-email h4,#item-body a,#message-recipients span.highlight a,#register-page #cp-multisite-options h4,.activity-header a,.activity-header a.activity-time-since,.item-title a,.standard-form label,.standard-form span.label,.widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a,body.create-blog #content #cp-multisite-options .cp-workflow-type label,body.create-blog #content #setupform label,body.create-blog #content a,body.create-blog #content h3,body.create-blog #cp-multisite-options h4,body.directory.logged-in #content h3,body.directory.logged-in #content h4,body.group-admin #content #group-settings-form h2,body.group-admin #content #item-body h3,body.group-admin #content #item-body h4,body.group-admin #group-create-body h2,body.group-admin #group-create-body h3,body.group-admin.group-blog #group-settings-form h2,body.group-create #content h4,body.group-create #group-create-body h2,body.group-create #group-create-body h3,body.groups.announcements #item-body h3,body.groups.invite-anyone #invite-anyone-invite-list h4 a,body.my-account #bbpress-forums h2.entry-title,body.registration #content h2,body.registration #content h4,body.sent-invites h4,body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3,div#item-header h2 a,div#message-thread strong a,div.profile h4,form#settings-form table.notification-settings th.title,h3#message-subject,table.doctable tr td a,table.notifications th,ul#admins-list h5,ul#admins-list h5 a,ul#member-list h5,ul#member-list h5 a,ul#members-list h5,ul#members-list h5 a,ul#mods-list h5,ul#mods-list h5 a,ul.item-list li div.item-desc{color:#b4b797}#content div.item-list-tabs#object-nav,body#main_blog .home-page form#whats-new-form,body#main_blog div.item-list-tabs,body#main_blog form#whats-new-form,body#main_blog form.dir-form,body#main_blog.create-blog.buddypress_page #content .padder h3,body.activation #content h2.post_title,body.activation.activate #content h2,body.activation.activate #content h3,body.activity h2.post_title,body.blogs h2.post_title,body.bp-docs h2.post_title,body.bp-user h2.post_title,body.buddypress div.item-list-tabs,body.buddypress form#whats-new-form,body.buddypress form.dir-form,body.directory #content h3,body.group-create #content form.standard-form>h3,body.groups h2.post_title,body.home-page form#whats-new-form,body.members h2.post_title,body.registration #content h2.post_title,div#item-header{background:#b4b797}#activity_sidebar li.groups{border-left:10px solid #b4b797}#buddypress #header-cover-image{background-color:#CCCBBF}body.blogtype-0{background:#C0D5BF}body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-0 #activity_sidebar,body.is-groupblog.blogtype-0 #comments_sidebar,body.is-groupblog.blogtype-0 #container{background:#C0D5BF!important}body#main_blog.groups.groupblogtype-0 #content div.item-list-tabs#object-nav,body#main_blog.groups.groupblogtype-0 div.item-list-tabs,body.groupblogtype-0 div#item-header,body.groups.groupblogtype-0 h2.post_title{background:#a1c19f}ul.item-list li.groupblogtype-0 .item-desc,ul.item-list li.groupblogtype-0 .item-desc a,ul.item-list li.groupblogtype-0 .item-desc p,ul.item-list li.groupblogtype-0 .item-title a{color:#a1c19f}#activity_sidebar li.groupblogtype-0,#buddypress ul#blogs-list li.groupblogtype-0,#buddypress ul#groups-list li.groupblogtype-0,#buddypress ul.activity-list li.groupblogtype-0{border-left:10px solid #a1c19f}body.blogtype-0 #activity_sidebar .comments_container{background-color:#F7F7EF}body.blogtype-0 h3.activity_heading{background-color:#a1c19f}body.blogtype-0 h3.activity_heading:hover{background-color:#83ad7f}body.blogtype-0 #activity_sidebar .workshop_comments_output .comment-identifier p a{color:#761D19}body.blogtype-0 #content .post.overridden_type-1 p{line-height:1.5;padding-bottom:24px}body.blogtype-0 #content .post.overridden_type-1 p.category-meta,body.blogtype-0 #content .post.overridden_type-1 p.postmetadata{padding-bottom:0}body.blogtype-1{background:#A2BDAF}body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-1 #activity_sidebar,body.is-groupblog.blogtype-1 #comments_sidebar,body.is-groupblog.blogtype-1 #container{background:#A2BDAF!important}body#main_blog.groups.groupblogtype-1 #content div.item-list-tabs#object-nav,body#main_blog.groups.groupblogtype-1 div.item-list-tabs,body.groupblogtype-1 div#item-header,body.groups.groupblogtype-1 h2.post_title{background:#85a896}ul.item-list li.groupblogtype-1 .item-title a,ul.item-list li.groupblogtype-1 div.item-desc,ul.item-list li.groupblogtype-1 div.item-desc a,ul.item-list li.groupblogtype-1 div.item-desc p{color:#85a896}#activity_sidebar li.groupblogtype-1,#buddypress ul#blogs-list li.groupblogtype-1,#buddypress ul#groups-list li.groupblogtype-1,#buddypress ul.activity-list li.groupblogtype-1{border-left:10px solid #85a896}body.blogtype-1 #activity_sidebar .comments_container{background-color:#F7F7EF}body.blogtype-1 h3.activity_heading{background-color:#85a896}body.blogtype-1 h3.activity_heading:hover{background-color:#68927c}body.blogtype-1 #activity_sidebar .workshop_comments_output .comment-identifier p a{color:#761D19}body.blogtype-1 #content .post p{line-height:1.5;padding-bottom:24px}body.blogtype-1 #content .post.overridden_type-0 p,body.commentpress_page.blogtype-1 #content .post p{line-height:1.5;padding-bottom:11px}body.commentpress_page.blogtype-1 #content #respond p{padding-bottom:0}body.blogtype-1 #content div.search_meta{padding-bottom:24px}body.blogtype-1 #content .post.overridden_type-0 div.search_meta{padding-bottom:7px}body.blogtype-1 #content div.search_meta p{margin:0;padding:0}body.blogtype-2{background:#cbd5b4}body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-2 #activity_sidebar,body.is-groupblog.blogtype-2 #comments_sidebar,body.is-groupblog.blogtype-2 #container{background:#cbd5b4!important}body#main_blog.groups.groupblogtype-2 #content div.item-list-tabs#object-nav,body#main_blog.groups.groupblogtype-2 div.item-list-tabs,body.groupblogtype-2 div#item-header,body.groups.groupblogtype-2 h2.post_title{background:#b4c293}ul.item-list li.groupblogtype-2 .item-desc,ul.item-list li.groupblogtype-2 .item-desc a,ul.item-list li.groupblogtype-2 .item-desc p,ul.item-list li.groupblogtype-2 .item-title a{color:#b4c293}#activity_sidebar li.groupblogtype-2,#buddypress ul#blogs-list li.groupblogtype-2,#buddypress ul#groups-list li.groupblogtype-2,#buddypress ul.activity-list li.groupblogtype-2{border-left:10px solid #b4c293}body.blogtype-2 #activity_sidebar .comments_container{background-color:#F7F7EF}body.blogtype-2 h3.activity_heading{background-color:#b4c293}body.blogtype-2 h3.activity_heading:hover{background-color:#9eb073}body.blogtype-2 #activity_sidebar .workshop_comments_output .comment-identifier p a{color:#761D19}@media all and (max-width:600px){body.buddypress #content #buddypress div#item-header h2.user-nicename{margin-bottom:0}}
     1#content .post label.accessibly-hidden,#document_search label.accessibly-hidden{left:-999em;position:absolute}#buddypress div.item-list-tabs ul li.feed a{background:url(../images/buddypress/rss.png) center left no-repeat;margin-left:5px;padding-left:20px}a.button.loading,a.loading,a.loading:hover,div.activity-comments form.loading,input.loading,input.loading:hover,input[type=submit].loading,input[type=button].loading,input[type=reset].loading,ul li.loading a{background-image:url(../images/buddypress/ajax-loader.gif);background-repeat:no-repeat}#buddypress div.item-list-tabs ul li.loading a{background-position:.5em .8em;padding-left:2em!important}#buddypress .generic-button{display:inline-block;margin-left:.5em}.clear{clear:left}body.buddypress_page #page_wrapper{min-height:0}div.dir-list{background:#fff}#buddypress div.pagination{margin:0;background:#f4f4f4;border-top:1px solid #ddd;padding:4px 0}#buddypress div.pagination:after{content:"";display:block;height:0;clear:both}#buddypress div.pagination .pag-count{font-family:sans-serif;text-transform:none}#buddypress div#pag-bottom{margin-top:0}body.buddypress_page #content{padding:0;margin:0}div#content.error-404{margin:0 12%;padding:6% 0}#buddypress .item-body{margin:0;padding:19px}#groups-list .group-subscription-div a,.acomment-meta a,.activity-header a,.comment-meta a,.meta a,body.create-blog #content a{text-decoration:underline}#document_search input#search-terms{width:95%;margin-bottom:.5em}#buddypress div.dir-search{margin:-42px 19px 0 0}#buddypress div.dir-search input[type=text]{font-family:sans-serif;font-size:80%;line-height:1.6}#buddypress li.groups-members-search form{padding:2px}#buddypress li.groups-members-search input[type=text]{font-family:sans-serif}#content .post #search-form{margin:0 7px}#content .post input#search-submit{margin:1px 0 0 5px;line-height:10px;color:#777}#buddypress form#whats-new-form,.home-page form#whats-new-form,form#whats-new-form{padding:36px;margin:0}#buddypress #item-body form#whats-new-form{padding:3%;margin:0;border-top:none;border-bottom:1px solid #B5BFB2;background-color:#CBFFBD}#buddypress form#whats-new-form #whats-new-content{margin-left:54px;padding:0 0 0 22px}#buddypress form#whats-new-form p.activity-greeting,form#whats-new-form h5{color:#fff;font-weight:400;font-size:1em;text-transform:uppercase;margin:0 0 0 76px;padding:0 0 10px;line-height:.6}div.item-list-tabs ul,form.dir-form{padding:0}#item-body form#whats-new-form h5,#item-body form#whats-new-form p.activity-greeting{color:#000}#buddypress form#whats-new-form textarea{background:#fff;border:1px inset #ccc;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-family:inherit;font-size:14px}#buddypress form#whats-new-form #whats-new-submit{margin-top:0}#buddypress form#whats-new-form #whats-new-options select{margin-top:4px}body.directory.logged-in #content form.dir-form h3{color:#fff}div.item-list-tabs ul li.last{float:right;margin:7px 0 0}#buddypress div#subnav.item-list-tabs{margin:0;background:#fff}#buddypress div#subnav.item-list-tabs ul li.last{margin-top:4px;margin-right:4px;margin-bottom:4px}div.item-list-tabs ul li.last select{max-width:175px}div.item-list-tabs ul li a,div.item-list-tabs ul li span{display:block;padding:5px 10px;text-decoration:none}div.item-list-tabs ul li a span{background:#eee;border-radius:50%;border:1px solid #999;color:#444;display:inline;font-size:70%;margin-left:1px;padding:2px 4px;text-align:center;vertical-align:middle}div.item-list-tabs ul li.current a,div.item-list-tabs ul li.selected a{background-color:#eee;color:#555;opacity:.8;font-weight:700;-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-left-radius:0;border-top-right-radius:0}body.activity h2.post_title,body.blogs h2.post_title,body.groups h2.post_title,span.user-nicename{font-weight:400;font-family:sans-serif}div.item-list-tabs ul li a:hover span,div.item-list-tabs ul li.current a span,div.item-list-tabs ul li.selected a span{background-color:#eee}div.item-list-tabs ul li.current a span,div.item-list-tabs ul li.selected a span{background-color:#fff}div.item-list-tabs ul{margin:0}div.item-list-tabs ul li{list-style:none;float:left;margin:5px 0 0;font-family:sans-serif;font-size:.7em;line-height:22px!important;text-transform:uppercase}div.item-list-tabs ul li:first-child{margin-left:0}div.item-list-tabs ul li select{text-transform:none}#buddypress div.item-list-tabs ul li a:focus,#buddypress div.item-list-tabs ul li a:hover{text-decoration:underline}#buddypress div.item-list-tabs ul li a,#buddypress div.item-list-tabs ul li a:active,#buddypress div.item-list-tabs ul li span{display:block;padding:10px 8px;text-decoration:none;line-height:1;color:#fff}#buddypress div#subnav.item-list-tabs ul{margin:0}#buddypress div#subnav.item-list-tabs ul li a,#buddypress div#subnav.item-list-tabs ul li span{color:#222}#buddypress div#subnav.item-list-tabs ul li.current a,#buddypress div#subnav.item-list-tabs ul li.selected a,div.item-list-tabs ul li.feed a{color:#555}#group-settings-form hr,div#group-create-body hr{display:none}#buddypress .standard-form{padding:19px}body.group-create #buddypress .standard-form{padding:0}#buddypress .standard-form label,#buddypress .standard-form span.label{color:#888;margin-top:1.5em;font-size:1em}#buddypress .standard-form div.radio{margin-bottom:12px}#buddypress .standard-form div.radio ul li{margin-bottom:5px;list-style:disc;text-transform:none;line-height:1.3}form#send_message_form ul li,ul#group-admins,ul#group-admins li,ul#group-mods,ul#group-mods li,ul#groupblog-details li,ul.button-nav li{list-style:none}#buddypress .standard-form textarea{height:300px}#blogs-directory-form a.button,#content a.button,#groups-directory-form a.button,.standard-form a.button,body.create-blog.buddypress_page #content a.button{vertical-align:35%;text-decoration:none}.standard-form .left-menu{padding:0 0 20px;float:left}.standard-form .main-column{margin-left:190px}.standard-form label,.standard-form span.label{text-transform:uppercase}div#comments_sidebar table,div#respond .defaultSkin table{width:auto}#commentform textarea{width:99%}div#sidebar table.mceLayout,div#sidebar table.mceToolbar{margin:0;width:auto}div.dir-search input[type=text]{padding:5px 5px 3px}#buddypress table.notification-settings .no,#buddypress table.notification-settings .yes{font-family:sans-serif;font-size:80%;text-transform:uppercase}.standard-form #group-email-settings{margin-top:2em}.standard-form #group-email-settings p{margin:.5em 0;padding:0;line-height:1.3}#buddypress ul.item-list{margin:0}#buddypress ul.item-list li{list-style:none;border-bottom:1px solid #eee;padding:15px;position:relative;overflow:visible}#buddypress ul.item-list>li{border-left:10px solid #eee}#buddypress ul#member-list.item-list>li{border-left:none}#buddypress ul.item-list li .item-avatar{line-height:0;float:left;margin:0 10px 0 0}#buddypress ul.item-list li .item-avatar img.avatar{vertical-align:middle;float:none;margin:0;width:80px;height:80px}#buddypress ul.item-list li .item-avatar a:focus{outline:#5b9dd9 solid 2px}#buddypress ul.item-list li .item-avatar a,#buddypress ul.item-list li .item-avatar a:active{outline:0}#buddypress ul.item-list li div.item-title,#buddypress ul.item-list li h4{font-size:1.2em}#buddypress ul.item-list li div.item-meta,#buddypress ul.item-list li div.item-title{margin-left:90px;width:60%;line-height:1;padding-bottom:.3em}#buddypress ul.item-list li div.item-title span.update{display:block;line-height:1.6}#buddypress ul.item-list li div.item-meta{padding-bottom:0}#buddypress ul.item-list li div.action{right:15px;top:15px}#buddypress .group-members-list ul.item-list li div.action{position:static;clear:left;padding-top:12px;text-align:left}body.activity h2.post_title{margin:0;font-size:1.6em;padding:21px 19px 15px;color:#fff}body.directory.activity h2.post_title{display:none}body.activity h2.post_title a{color:#fff}#buddypress #activity-stream{margin-top:0;padding:0}#buddypress #activity-stream .activity-header p{margin:0;line-height:1.6}#buddypress .activity-list .activity-avatar{margin:0 10px 0 0}#buddypress .activity-list .activity-avatar a:focus{outline:#5b9dd9 solid 2px}#buddypress .activity-list .activity-avatar a,#buddypress .activity-list .activity-avatar:active{outline:0}#buddypress #activity-stream img.avatar,#whats-new-avatar img.avatar,.group_members.dir-list img.avatar,body.rendez-vous .item-list .rendez-vous-avatar{margin-right:0;margin-bottom:0;vertical-align:middle;width:50px;height:50px}body.rendez-vous .item-list .rendez-vous-avatar{width:80px;height:80px}#buddypress #activity-stream .activity-header img.avatar,#buddypress #activity-stream li.mini img.avatar{width:20px;height:20px}.activity-permalink #buddypress #activity-stream .activity-avatar img.avatar{width:150px;height:150px}#whats-new-post-in-box{color:#fff;font-family:sans-serif;text-transform:uppercase;font-size:12px}ul.item-list.activity-list li{padding-bottom:0;clear:left}ul.item-list.activity-list li:after{content:"";display:block;height:0;clear:both}.activity-list li.mini{padding-right:15px}ul.item-list.activity-list>li{padding:0;border-left:none;margin-top:0;margin-bottom:0}ul#blogs-list>li .blog-wrapper,ul#groups-list>li .group-wrapper,ul.item-list.activity-list>li .activity-wrapper{padding:15px;border-left:10px solid #ddd}ul.item-list.activity-list li.has-comments{padding-bottom:0}ul.item-list.activity-list li.load-more,ul.item-list.activity-list li.load-newest{margin:0!important}#buddypress ul.activity-list>li:first-child{padding-top:15px}#buddypress .activity-list .activity-content .activity-inner,#buddypress .activity-list .activity-content blockquote{margin:10px 10px 5px 0;overflow:hidden}#buddypress .activity-list li.load-more a:focus,#buddypress .activity-list li.load-newest a:focus{text-decoration:underline}#buddypress .activity-list li.load-more a,#buddypress .activity-list li.load-more a:active,#buddypress .activity-list li.load-newest a #buddypress .activity-list li.load-newest a:active{font-family:sans-serif;text-transform:uppercase;text-decoration:none;font-size:.9em;display:block;width:20%;margin:0 auto}#buddypress .activity-list li.load-more.loading a,#buddypress .activity-list li.load-newest.loading a{background-repeat:no-repeat;background-position:0 .3em}.activity-inner>p{margin-bottom:.5em;line-height:1.3}div.activity-meta{margin:12px 0 0}#item-body div.acomment-options a,#item-body div.activity-meta a{color:#777}body.activity-permalink .activity-list>li:first-child .activity-wrapper{padding:30px}body.activity-permalink .activity-list li .activity-content{background-color:#f8f8f8}body.activity-permalink .activity-list li .activity-header>p{background:0 0;height:auto}#buddypress ul.item-list .activity-inner ol,#buddypress ul.item-list .activity-inner ul{margin:0 0 0 26px;border:none}#buddypress ul.item-list .activity-inner>ol,#buddypress ul.item-list .activity-inner>ul{margin:0 0 8px 26px;border:none}#buddypress ul.item-list .activity-inner ul li{padding:0 0 2px;list-style-type:disc;list-style-position:outside;overflow:visible;border:none}#buddypress ul.item-list .activity-inner ol li{padding:0 0 2px;list-style-type:decimal;list-style-position:outside;overflow:visible;border:none}ul#blogs-list>li,ul#groups-list>li{padding:0;border-left:none;margin-top:0;margin-bottom:0}#buddypress div.activity-comments ul{margin-right:0;background:#f5f5f5;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:0 0 0 10px}#buddypress li.has-comments div.activity-comments{margin-top:15px}#buddypress .activity-list .activity-content{margin-bottom:0}#buddypress ul.item-list.activity-list li.load-more,#buddypress ul.item-list.activity-list li.load-newest{padding-left:0;border-left:0}#buddypress ul.item-list.activity-list div.activity-comments li{padding-bottom:1px}#buddypress div.activity-comments li form.ac-form{margin-right:0}body.group-home #buddypress ul.item-list.activity-list>li{border-left:none}.activity-list .activity-content .activity-header,.activity-list .activity-content .comment-header,span.activity{font-family:sans-serif;text-transform:none;color:#666}#activity_sidebar span.activity{font-size:80%}.activity-list li .activity-inreplyto{font-family:sans-serif;line-height:1.3;margin-top:2px}.activity-list .activity-content .activity-header,.activity-list .activity-content .comment-header{color:#666;font-size:.7em;line-height:200%}#buddypress .activity-list li.mini{font-size:inherit}#item-body .activity-list .activity-content .activity-header p,#item-body .activity-list .activity-content .comment-header p{padding:0}div#item-header div#item-meta{font-size:14px;color:#fff;overflow:hidden;margin:15px 0 5px;padding-bottom:10px}body#main_blog div#item-header div#item-meta,body.buddypress div#item-header div#item-meta{font-size:1em;line-height:1.2}#buddypress #activity-stream div.acomment-avatar img{margin-right:14px}#buddypress div.activity-comments div.acomment-content{padding:1px;margin-right:5px}div.activity-comments div.acomment-content p{margin-bottom:.5em}#buddypress div.activity-comments div.acomment-meta{font-size:.6em;font-family:sans-serif}#buddypress .acomment-options{font-size:90%;font-family:sans-serif;text-transform:uppercase;margin-top:2px}#buddypress .ac-reply-cancel{font-size:70%;margin-left:.5em;font-family:sans-serif;text-transform:uppercase}#buddypress li.mini .ac-reply-cancel{font-size:60%}#item-body p,.item-body p{padding:.2em 0 .5em;margin-bottom:0}div.activity-comments ul{margin-top:0;margin-bottom:0;margin-left:0}div.activity-comments form.root{margin-top:15px;margin-bottom:1px;clear:left}div.activity-comments form textarea{font-size:14px;padding:1px}.action .meta{font-family:sans-serif}li#blogs-order-select{margin-right:4px}body.activity-permalink #buddypress .activity-list>li:first-child{padding:19px}body.activity-permalink #buddypress .activity-list li .activity-content{margin-left:170px;margin-right:0;padding:15px 15px 8px}body.activity-permalink #buddypress div.activity-comments{clear:none}body.activity-permalink #buddypress #activity-stream .activity-header p{margin:0 0 .7em;padding:0;font-size:110%}#buddypress div.activity-comments form .ac-textarea{padding-bottom:0}body.blogs h2.post_title{margin:0;font-size:1.6em;padding:21px 19px 15px;color:#fff}body.blogs.create-blog h2.post_title{margin-bottom:19px}body.blogs h2.post_title a,body.create-blog #content h2.post_title a{color:#fff;text-decoration:none}div.blog-button{padding:0;line-height:1.6}#buddypress ul.item-list li div.meta{margin-top:8px;font-size:75%}body.group-create #buddypress #group-create-body h2,body.group-create #content h4:first-child{margin-top:0}body.group-create #buddypress #group-create-body p{padding:0;margin:.7em 0}#buddypress #item-body div.bp-avatar-status p#bp-avatar-feedback,#buddypress #item-body div.bp-avatar-status p.success,#buddypress #item-body div.bp-cover-image-status p.success,#buddypress #item-body p.warning,body.group-create #buddypress #group-create-body .bp-avatar-status p,body.group-create #buddypress #group-create-body .bp-cover-image-status p,body.group-create #buddypress #group-create-body p#bp-avatar-feedback{font-family:sans-serif;font-size:80%;padding:.5em .7em}ul#groupblog-details{margin:0}body.groups h2.post_title{margin:0;font-size:1.6em;padding:21px 19px 15px;color:#fff}body.groups h2.post_title a{color:#fff}#buddypress ul#groups-list.item-list li{padding-bottom:1px}#buddypress ul.item-list li div.item-desc{font-size:.9em;margin-left:90px;width:60%}body.single-item.groups #item-header span.activity,body.single-item.groups #item-header span.highlight{padding-top:0}#buddypress #item-header span.activity{color:#eee}#delete-group-avatar-button{padding:12px 0 0}body.group-admin.delete-group #buddypress .standard-form{padding-bottom:24px}#buddypress div.bp-avatar-nav{font-family:sans-serif;font-size:80%;text-transform:uppercase}body.buddypress #buddypress div#item-header div#item-actions h2,body.buddypress #buddypress div#item-header div#item-actions h3{font-size:80%;line-height:1}@media all and (max-width:782px){body.single-item.groups #buddypress div#item-header #item-header-cover-image #item-actions{width:100%}}body.group-admin #content #item-body .bp-widget,body.group-admin.group-blog #group-settings-form{margin-bottom:1em}body.bp-user h2.post_title,body.members h2.post_title{font-size:1.6em;font-weight:400;font-family:sans-serif;margin:0;color:#fff;padding:.5em;line-height:1}body.bp-user h2.post_title a,body.members h2.post_title a{color:#fff}span.user-nicename{color:#fff;font-size:16px}.dir-search input[type=text],.standard-form input[type=text],.standard-form input[type=password],.standard-form select,.standard-form textarea{font-family:sans-serif}#latest-update a{background:#fff;border:1px solid #ccc;color:#777;font-size:small;cursor:pointer;outline:0;text-align:center;text-decoration:none;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-family:sans-serif;margin-top:1px;line-height:10px;padding:2px 6px}#latest-update a:hover{background:#ededed;border:1px solid #bbb;color:#555;outline:0;text-decoration:none}div.profile{padding:0 19px 19px}#buddypress div.profile>.standard-form{padding:0}table.profile-fields td,table.profile-fields th{padding:.2em;border:1px solid #f5f5f5}table.profile-fields td.label{padding:.2em .2em .5em}#profile-edit-form{padding:0 0 19px}ul.button-nav{margin:0}#buddypress p#bp-cover-image-feedback{padding:.5em;font-family:sans-serif;font-size:80%}#buddypress #cover-image-container #header-cover-image{background-position:center center}#buddypress .field-visibility-settings,#buddypress .field-visibility-settings-notoggle,#buddypress .field-visibility-settings-toggle{font-size:80%}#buddypress .standard-form p.description{font-size:100%;margin:0 0 5px}body.activation #content h2.post_title,body.registration #content h2.post_title{margin:0;font-size:1.6em;font-weight:400;padding:21px 19px 15px;color:#fff;font-family:sans-serif}body.registration #content h2.post_title a{color:#fff}body.registration #signup_form:after{content:"";display:block;height:0;clear:both}#buddypress .standard-form #basic-details-section,#buddypress .standard-form #blog-details-section,#buddypress .standard-form #profile-details-section{float:none;width:auto}#buddypress #signup_form.standard-form input[type=email]{width:90%}body.activation #content h2.post_title a{color:#fff}#activate-page{padding:19px}body.create-blog #setupform{padding:7px 19px 19px}body.create-blog #content .post{padding-bottom:1px}body.create-blog #content p{font-size:1em;line-height:1.5;padding:0 19px}body.create-blog #content #setupform p{font-size:1em;line-height:1.5;padding:0}body.create-blog #content #setupform label{font-family:sans-serif;font-size:1.1em;font-weight:700;text-transform:uppercase;margin:0 .5em 0 0;padding:0}body.create-blog #content #setupform .prefix_address{font-family:sans-serif;font-size:14px}body.create-blog #content #setupform #blogname{width:50%;margin-bottom:15px}body.create-blog #content #cp-multisite-options .cp-workflow-type label,body.create-blog #content #setupform label.checkbox{color:#000;font-size:14px;font-weight:700;margin:5px 0;text-transform:none}body.create-blog #content #cp-multisite-options .cp-workflow-type label{font-size:15px}body.create-blog #content #cp-multisite-options .cp-workflow-type{margin:15px 0 5px}.standard-form#signup_form div.submit{float:none;text-align:right}body.create-blog #setupform #submit{background:#fff;font-size:90%}body.create-blog #cp-multisite-options{margin-bottom:19px;padding:19px;border:1px solid #DDD}body.create-blog #cp-multisite-options h4{font-family:sans-serif;font-weight:700;font-size:1.1em;line-height:1.5;padding:0;text-transform:uppercase}body.create-blog #content #cp-multisite-options p{font-size:1em;line-height:1.5;padding:0 0 7px}body.create-blog #content #cp-multisite-options .checkbox{color:#000;margin:0 0 5px}body.create-blog #content #cp-multisite-options .checkbox label{color:#000;font-size:15px;text-transform:none}body.create-blog #content #setupform p.error{border:1px solid #E1CA82;border:#A71A1A;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;font-weight:400;margin-top:5px;margin-bottom:5px;text-decoration:none;background:#DB1717;background-image:-webkit-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-moz-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-o-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));clear:left;color:#fff;font-size:12px;display:block;padding:5px 10px}#buddypress div#message.updated{margin:0 19px}#buddypress div#message p{margin-top:0;border:none}#account-delete-form #message.info{margin:0 0 15px}#buddypress table#message-threads{margin:0;width:auto;vertical-align:top}#buddypress table#message-threads tr th{padding:0 5px;font-family:sans-serif;text-transform:uppercase;font-size:80%}#buddypress table#message-threads tr td{padding:10px 5px}#buddypress table#message-threads img.avatar{vertical-align:middle}#buddypress table#message-threads tr td.thread-from{font-family:sans-serif;text-transform:uppercase;font-size:1em;font-weight:400;width:50%}#buddypress table#message-threads tr td.thread-from span.activity{display:block}#buddypress table#message-threads tr td.thread-options{width:20%!important}#buddypress table#message-threads tr td.thread-options a.button{vertical-align:5%}#buddypress table#message-threads .thread-info{width:30%}#buddypress table#message-threads tr td.thread-info p{font-family:sans-serif;text-transform:uppercase;font-size:16px;padding:0;margin:0}#buddypress table#message-threads tr td.thread-info p.thread-excerpt{font-family:Georgia,serif;text-transform:none}#buddypress table#message-threads tr td.thread-options a{font-family:sans-serif;text-transform:uppercase;font-size:80%}div.messages-options-nav{margin:0}#messages_search{font-size:85%;vertical-align:bottom}form#send_message_form{padding-bottom:19px}form#send_message_form ul{margin:0;padding:0}li span.unread-count,tr.unread span.unread-count{background:#d00;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:50%;color:#fff;font-weight:700;font-family:sans-serif;padding:2px 6px;font-size:90%}#message-thread{margin:19px}#message-recipients span.highlight{color:#222}#content #message-recipients a.button{vertical-align:15%}div#message-thread div.message-box{margin:0;background:#f5f5f5;border-bottom:1px solid #fff}div#message-thread strong a{text-transform:uppercase;font-size:15px;font-weight:400;padding-top:2px}form#send-reply{padding:19px 0}form#send-reply div.message-box{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}li.friend-tab span{font-family:sans-serif;font-size:12px}li.friend-tab img.avatar{margin-right:3px;margin-bottom:3px;vertical-align:middle}table#groups-notification-settings{margin-bottom:0}body.create-blog #content h3,body.directory.logged-in #content h3,body.registration #content h2,body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3,h3#message-subject{font-size:1.6em;font-weight:400;color:#761D19;margin:12px 0 6px;padding:0 7px}body.directory.activity.buddypress_page #content h3{margin:0}body.create-blog #content h3,body.registration #content h2,h3#message-subject{padding-left:0;padding-right:0}body.create-blog #content h3{padding-bottom:19px}#register-page #cp-multisite-options h4,#register-page #signup_form h2,body.directory.logged-in #content h4,body.group-admin #content #group-settings-form h2,body.group-admin #content #item-body h3,body.group-admin #content #item-body h4,body.group-admin #group-create-body h2,body.group-admin #group-create-body h3,body.group-admin.group-blog #group-settings-form h2,body.group-create #content h4,body.group-create #group-create-body h2,body.group-create #group-create-body h3,body.registration #content h4,div.profile h4{font-size:1.3em;font-weight:400;color:#761D19;margin:24px 0 12px;padding:0}body.group-admin #content #item-body form h3,body.group-admin #content #item-body h2:first-child,body.group-admin #content #item-body h3:first-child,body.group-admin #content #item-body h4:first-child{margin-top:0}body.create-blog #cp-multisite-options h4{margin:0}body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3{padding:19px 19px 12px}#activate-page h2,#activate-page h3,body.create-blog.buddypress_page #content h3,body.directory #content h3,body.group-create #content form.standard-form>h3{font-size:1.6em;font-weight:400;font-family:sans-serif;color:#fff;padding:21px 19px 15px;margin:0}#activate-page h2,#activate-page h3,body.create-blog.buddypress_page #content h3{margin-top:0;margin-bottom:19px;padding-bottom:19px}body.directory #content form.dir-form h3{font-size:1.6em;font-weight:400;color:#fff;padding:21px 19px 15px;margin:0}body.group-admin #content div#item-header h2,div#item-header h2{font-weight:400;color:#fff;font-size:28px;line-height:120%;margin:0 0 15px}.item-title a,.item-title a:active,ul#admins-list h5 a,ul#member-list h5 a,ul#members-list h5 a,ul#mods-list h5 a{font-size:1.2em;text-decoration:none}.item-title a,div#item-header h2 a{color:#761D19;font-family:sans-serif;text-transform:uppercase}.item-title a:focus{text-decoration:underline}div#item-header h2 a{font-weight:400}#item-nav ul,ul#group-admins,ul#group-mods{margin:0}div#item-header div#item-actions h3{font-weight:400;font-family:sans-serif;color:#fff}div#item-header ul img.avatar,div#item-header ul.avatars img.avatar{margin:2px 0 2px 2px}ul#admins-list h5,ul#member-list h5,ul#members-list h5,ul#mods-list h5{font-weight:400}#buddypress #admins-list li,#buddypress #members-list li,#buddypress #mods-list li{border-left:none;overflow:auto;padding:8px 0}body.directory #buddypress #members-list li,body.followers #buddypress #members-list li,body.following #buddypress #members-list li,body.friends #buddypress #members-list li{overflow:auto;padding:15px}ul#members-list.item-list li div.item-meta,ul#members-list.item-list li div.item-title{width:auto}ul#members-list.item-list li div.item-title span.activity-read-more a{font-size:12px}#buddypress .group-members-list ul.item-list p.joined.item-meta{font-size:90%;margin-top:0;padding-top:0;line-height:1}table.notifications{margin:0;text-align:left}table.notifications td:first-child,table.notifications th.icon{display:none}table.notifications th.title{width:55%}#activity_sidebar ul.item-list.cp-online-members li div.item-title,#activity_sidebar ul.item-list.cp-online-members li h4,#activity_sidebar ul.item-list.cp-recently-active li div.item-title,#activity_sidebar ul.item-list.cp-recently-active li h4{width:auto}#content table.notifications a.button{vertical-align:10%;text-decoration:none}#activity_sidebar ul.item-list.cp-online-members{margin:0;padding:0;border-bottom:none}#activity_sidebar ul.item-list.cp-online-members li{padding:10px;border-top:none;border-bottom:1px solid #eee;position:static}#activity_sidebar ul.item-list.cp-online-members li a{display:inline;padding:0;font-size:110%;background:0 0}#activity_sidebar ul.item-list.cp-online-members li .item-avatar{float:left;padding:0 10px 0 0}#activity_sidebar ul.item-list.cp-online-members li .item-avatar a:focus{outline:#fff solid 1px}#activity_sidebar ul.item-list.cp-online-members li .item-avatar a,#activity_sidebar ul.item-list.cp-online-members li .item-avatar a:active{outline:0}#activity_sidebar ul.item-list.cp-online-members li img.avatar{border:none;float:none;margin:0;vertical-align:middle}#activity_sidebar ul.item-list.cp-recently-active{margin:0;padding:0;border-bottom:none}#activity_sidebar ul.item-list.cp-recently-active li{padding:10px;border-top:none;border-bottom:1px solid #eee;position:static}#activity_sidebar ul.item-list.cp-recently-active li a{display:inline;padding:0;font-size:110%;background:0 0}#activity_sidebar ul.item-list.cp-recently-active li .item-avatar{float:left;padding:0 10px 0 0}#activity_sidebar ul.item-list.cp-recently-active li .item-avatar a:focus{outline:#fff solid 1px}#activity_sidebar ul.item-list.cp-recently-active li .item-avatar a,#activity_sidebar ul.item-list.cp-recently-active li .item-avatar a:active{outline:0}#activity_sidebar ul.item-list.cp-recently-active li img.avatar{border:none;float:none;margin:0;vertical-align:middle}.single-item #content.groupblog .group-subscription-div a{color:#fff}.single-item #content.groupblog.groupblogtype-0 .group-subscription-div a,.single-item #content.groupblog.groupblogtype-1 .group-subscription-div a,.single-item #content.groupblog.groupblogtype-2 .group-subscription-div a,.single-item .group-subscription-div a{color:#ccc}#buddypress .generic-button a.group-sub{line-height:2.4}#buddypress div#item-header div.generic-button.group-subscription-options{margin:0}#groups-dir-list .group-subscription-div,#groups-list .group-subscription-div{font-family:sans-serif;padding-top:0;padding-bottom:0;margin-bottom:12px;text-transform:uppercase}a.group-subscription-options-link{text-decoration:underline}#content #groups-dir-list .group-subscription-options,#content #groups-list .group-subscription-options{position:absolute}.single-item .group-subscription-div{font-size:11px;text-transform:uppercase;font-weight:400;font-family:sans-serif;padding:.5em 0 1em}.single-item .group-subscription-div a:hover{color:#fff}#ass-email-subscriptions-options-page{padding:9px 19px 25px}#ass-email-subscriptions-options-page h3{font-size:1.3em;font-weight:400;margin:12px 0;padding:0}#ass-email-subscriptions-options-page label{color:#888;font-weight:700;margin:10px 0 0;text-transform:uppercase;font-family:sans-serif;font-size:100%}#ass-email-subscriptions-options-page .ass-email-type{margin:14px 0}#ass-email-subscriptions-options-page .ass-email-type input{margin-right:5px}#ass-email-subscriptions-options-page .ass-email-explain{font-size:100%;margin-top:4px}form#settings-form table.notification-settings td,form#settings-form table.notification-settings th{padding:2px}form#settings-form table.notification-settings tbody tr{border-bottom:1px solid #eee}#activity_sidebar .groupsites_comments_output .comment-content,#activity_sidebar .workshop_comments_output .comment-content{border-bottom:none}table#groups-notification-settings.notification-settings{margin-bottom:20px}ul#admins-list h5 .ass_manage_members_links,ul#members-list h5 .ass_manage_members_links,ul#mods-list h5 .ass_manage_members_links{text-transform:uppercase;font-size:9px;font-weight:400;font-family:sans-serif}ul#admins-list h5 .ass_manage_members_links a,ul#members-list h5 .ass_manage_members_links a,ul#mods-list h5 .ass_manage_members_links a{font-size:9px;font-weight:400;font-family:sans-serif}body.groups.announcements #item-body{padding:0}body.groups.announcements #item-body h3{font-size:1.3em;font-weight:400;margin:16px 0 12px;padding:9px 19px}body.groups.announcements #item-body>p{margin:.2em 0 .6em;padding:0 19px}body.groups.announcements #item-body #whats-new-form{margin:1.5em 0 0}ul#groupblog-details li{padding-top:10px;padding-bottom:10px}.standard-form #groupblog-details input[type=text]{width:15em!important;-moz-border-radius:1px;-webkit-border-radius:1px;border-radius:1px}.standard-form #groupblog-details input#blog_title{padding:6px}.standard-form #groupblog-details input#blogname{padding:2px}.standard-form p.description{font-size:12px}#groupblog-members li{margin-left:1.2em;margin-bottom:5px;list-style:disc}#activity_sidebar li.groups{margin-bottom:0}#activity_sidebar .workshop_comments_output .comment-identifier p{margin-top:0;padding:0;font-size:70%;font-style:normal;font-family:sans-serif;color:#222;line-height:1.3}#activity_sidebar .workshop_comments_output .comment-identifier p img{display:none;vertical-align:middle}#bpgsites-post-in-box{margin:.4em}#bpgsites-post-in-box span,.bpgsites_comment_group{font-family:sans-serif;text-transform:uppercase}.bpgsites_comment_group_header{font-size:70%;font-weight:700;padding:10px 0 5px}.bpgsites_comment_group_header:first-child{padding-top:0}#bpgsites-post-in-box select,#bpgsites-post-in-box span,.bpgsites_comment_group_label{font-size:70%}#comments_in_page_wrapper .comments_container h3.bpgsites_group_filter_heading{padding:0;background-color:#d6d6d6}#comments_in_page_wrapper .comments_container h3.bpgsites_group_filter_heading:hover{background-color:#ccc}#comments_in_page_wrapper .comments_container #bpgsites_group_filter{background-color:#dfdfdf}@media all and (max-width:1200px){.bpgsites_comment_group{padding:5px}.bpgsites_comment_group_label{padding:5px;font-size:100%}}#activity_sidebar .groupsites_comments_output li.groups{border-left:none;margin-bottom:0}#activity_sidebar .groupsites_comments_output .comment-identifier p{margin-top:0;padding:0;font-size:70%;font-style:normal;font-family:sans-serif;color:#222;line-height:1.3}#activity_sidebar .groupsites_comments_output .comment-identifier p img{display:none;vertical-align:middle}body.bp-docs #content{padding:0;margin:0;min-height:0}body.bp-docs h2.post_title{margin:0;font-size:1.6em;font-weight:400;font-family:sans-serif;padding:21px 19px 15px;color:#fff}body.bp-docs h2.post_title a{color:#fff}body.bp-docs div.docs-info-header{margin:0;padding:2%;background:#fafafa;border-top:1px solid #ddd;text-transform:uppercase;font-family:sans-serif;font-size:90%}body.bp-docs .doc-meta-box table,body.bp-docs .doc-meta-box table td,body.bp-docs div.doc-content{border:none}body.bp-docs p.currently-viewing{margin:0}table.doctable{margin:0}table.doctable tr td a{text-transform:uppercase;font-family:sans-serif;font-size:85%}table.doctable .row-actions a{font-size:75%}table.doctable tr td,table.doctable tr th{padding:4px;vertical-align:middle}body.bp-docs #doc-group-summary img.avatar,body.bp-docs .doc-meta-box table td{vertical-align:top}table.doctable tr th{font-family:sans-serif;font-size:80%;text-transform:uppercase}table.doctable tr td{line-height:1.2;padding:8px 4px}table.doctable tr td.title-cell>p{font-size:90%;margin:.4em 0}table.doctable tr td.groups-cell ul{margin:0}table.doctable tr td.groups-cell ul li img.avatar{float:left;margin-right:.4em}#buddypress p.no-docs{padding:9px 19px 19px}#doc-content-textarea{width:99.9%}#buddypress .entry-content p.toggle-switch,#buddypress .toggle-switch{font-family:sans-serif;font-size:80%;font-weight:700;text-transform:uppercase;line-height:1.8}#buddypress .paperclip-jaunty,#buddypress .paperclip-vertical,#buddypress .plus-or-minus{margin-top:4px}body.bp-docs span.description{font-size:90%}body.bp-docs a.action.safe,body.bp-docs a.delete-doc-button{font-size:70%;margin-left:.5em;font-family:sans-serif;text-transform:uppercase;text-decoration:none}body.single-bp_doc .page_nav_lower,body.single-bp_doc .page_navigation{display:none}body.single-bp_doc #doc-meta,body.single-bp_doc .doc-meta,body.single-bp_doc .docs #comments{padding:19px}body.bp-docs .doc-tabs{border-bottom:3px solid #e6e6e6}body.bp-docs .doc-tabs ul{margin:20px 20px 0;border:none}body.bp-docs .doc-tabs li a{font-family:sans-serif;text-transform:uppercase;font-size:80%;background:#F7F7F7}body.bp-docs .doc-tabs li.current a{background:#e6e6e6}body.single-bp_doc div.doc-content{border:none;margin:0 12%;padding:3% 0;position:relative}body.bp-docs.bp-docs-edit div.doc-content{border:none;margin:0;padding:20px}body.bp-docs.bp-docs-create #buddypress h2{margin:0;padding:20px 20px 0}#bp-docs-single-doc-header{margin:0;padding:0 20px;border-top:1px solid #ddd}body.bp-docs #buddypress .standard-form{padding:0}body.bp-docs #buddypress div.doc-permissions{text-transform:uppercase;font-family:sans-serif;font-size:80%}#group-doc-options{padding:20px 0 0}body.group-create #group-doc-options h3{margin-bottom:0}table.group-docs-options td{padding-top:10px}table.group-docs-options td.label{width:250px!important;padding-top:0}#buddypress div#bp-docs-pagination{margin:0;background:#f4f4f4;border-top:1px solid #ddd;padding:4px 0 4px 10px}#buddypress div#bp-docs-pagination-count{left:10px;top:8px;font-family:sans-serif;font-size:80%}form#send-invite-form{margin-top:20px}div#invite-list{background:#f5f5f5;border:1px solid #e4e4e4;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;height:400px;margin:0 0 10px;overflow:auto;padding:5px;width:160px}#buddypress ul#invite-anyone-invite-list.item-list>li{border-left:none;padding:8px 0}#buddypress ul#invite-anyone-invite-list.item-list li div.action{right:0;top:8px}body.groups.invite-anyone #invite-anyone-invite-list .remove{background:#fff;background:-moz-linear-gradient(top,#fff 0,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fff 0,#ededed 100%);background:-o-linear-gradient(top,#fff 0,#ededed 100%);background:-ms-linear-gradient(top,#fff 0,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );background:linear-gradient(top,#fff 0,#ededed 100%);border:1px solid #ccc;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#777;cursor:pointer;font:400 12px/20px Arial,Tahoma,Verdana,sans-serif;outline:0;padding:4px 10px;text-align:center;text-decoration:none;line-height:14px;text-transform:none}body.groups.invite-anyone #invite-anyone-invite-list .remove:hover{background:#ededed;background:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#e0e0e0));background:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-ms-linear-gradient(top,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0', GradientType=0 );background:linear-gradient(top,#fff 0,#e0e0e0 100%);border:1px solid #bbb;color:#555;outline:0;text-decoration:none;text-transform:none}body.groups.invite-anyone #item-body,form#invite-anyone-by-email{padding:9px 19px 19px}body.groups.invite-anyone .left-menu{float:left}body.groups.invite-anyone .left-menu>p{line-height:1;padding:0;margin:0 0 1em}#create-group-form ul.first li{list-style:none}body.groups.invite-anyone #invite-anyone-invite-list h4{margin:0 0 0 60px}body.groups.invite-anyone #invite-anyone-invite-list h4 a{font-family:sans-serif;text-transform:uppercase;text-decoration:none}body.groups.invite-anyone #invite-anyone-member-list ul li{font-family:sans-serif;font-size:80%}ul#invite-anyone-group-list li{font-size:100%}#invite-anyone-by-email h4,body.sent-invites h4{margin:19px 0 12px;padding:0;font-size:1.6em;font-weight:400;color:#761D19}#groups-list .group-subscription-div,a.button,button,div.generic-button a,input[type=submit],input[type=button],input[type=reset],ul.button-nav li a{color:#777}body.sent-invites h4{margin:12px 19px}body.sent-invites #sent-invites-intro{font-size:1em;margin:12px 19px 0;padding-bottom:19px}body.sent-invites .ia-pagination{margin-left:19px;margin-right:19px}body.sent-invites .ia-pagination .currently-viewing{font-family:sans-serif;font-size:110%;font-style:normal}body.sent-invites table.invite-anyone-sent-invites{margin-top:0;margin-left:19px;width:94%}body.sent-invites table.invite-anyone-sent-invites thead th{font-size:80%;font-family:sans-serif;text-transform:uppercase;font-weight:400}body.sent-invites table.invite-anyone-sent-invites thead a{text-decoration:none}body.sent-invites ul#invite-anyone-clear-links{width:auto;margin:0;padding:0}body.sent-invites ul#invite-anyone-clear-links li{list-style:none;text-transform:uppercase;font-size:90%}form#invite-anyone-by-email #welcome-message{font-size:110%}body.invite-anyone form#invite-anyone-by-email p{margin:.7em 0;padding:0}ol#invite-anyone-steps{margin:0}ol#invite-anyone-steps #invite-anyone-custom-message,ol#invite-anyone-steps #invite-anyone-custom-subject,ol#invite-anyone-steps textarea.invite-anyone-email-addresses{width:97%;border:2px solid #ddd;padding:.5em;background:#fafafa}body.invite-anyone form#invite-anyone-by-email li label,body.invite-anyone form#invite-anyone-by-email li p,body.invite-anyone form#invite-anyone-by-email li strong{font-family:sans-serif}body.invite-anyone form#invite-anyone-by-email p.description{font-size:80%;margin:0}body.invite-anyone form#invite-anyone-by-email .submit{margin:.7em 0;padding:0}body.my-account #bbpress-forums{padding:19px}body.my-account #bbpress-forums h2.entry-title{font-size:2.2em;font-weight:400;margin:1em 0 .5em;padding:0}body.my-account #bbpress-forums h2.entry-title:first-child{margin-top:0}body.my-account #bbpress-forums .bbp-user-section p{font-size:140%}body.activity-permalink.buddypress_page #content{padding-bottom:19px}#register-page #signup_form h2,.item-title a,.standard-form label,.standard-form span.label,body#main_blog div#item-header div#item-actions h3,body.activate #content h3,body.activation.activate #content h2,body.create-blog #content h3,body.directory #content form.dir-form h3,body.directory #content h3,body.directory.logged-in #content form.dir-form h3,body.directory.logged-in #content h3,body.group-create #content form.standard-form>h3,body.registration #content h2,div#item-header h2,form#send-reply div.message-box .avatar-box strong,form#settings-form table.notification-settings th.title,span.highlight,table.notifications th,ul#admins-list h5,ul#member-list h5,ul#members-list h5,ul#mods-list h5{text-transform:uppercase}body.buddypress #content #buddypress div#item-header h2{font-size:1.6em;margin:0}body.buddypress #content #buddypress div#item-header h2.user-nicename{font-size:1.6em;margin-bottom:.6em;line-height:1.6;text-transform:none;text-shadow:0 0 9px #666}#activity_sidebar .widget.widget_bp_core_members_widget span.activity,#activity_sidebar .widget.widget_bp_groups_widget span.activity{font-size:11px}#register-page #cp-multisite-options h4{margin-top:0;margin-bottom:0}#buddypress .activity-header a,#groups-list .group-subscription-div a,body.create-blog #content a{text-decoration:none}#buddypress .activity-header a:focus,#groups-list .group-subscription-div a:focus,body.create-blog #content a:focus{text-decoration:underline}#buddypress .activity-header a:active,#groups-list .group-subscription-div a:active,body.create-blog #content a:active{text-decoration:none}body#main_blog #item-body form#whats-new-form,body.buddypress #item-body form#whats-new-form{background-color:#eee}body#main_blog div#item-header div#item-meta,body.buddypress div#item-header div#item-meta{color:#fff}.sidebar_container .widget_bp_blogs_widget .widget_wrapper,.sidebar_container .widget_bp_core_login_widget .widget_wrapper,.sidebar_container .widget_bp_core_members_widget .widget_wrapper,.sidebar_container .widget_bp_core_recently_active_widget .widget_wrapper,.sidebar_container .widget_bp_core_whos_online_widget .widget_wrapper,.sidebar_container .widget_bp_groups_widget .widget_wrapper{padding:10px}.widget.buddypress div.item-options a.loading{padding-right:16px;background-position-x:right;background-position-y:2px}.widget.widget_bp_core_members_widget div.item-options,.widget.widget_bp_groups_widget div.item-options{padding:0}.widget.widget_bp_core_members_widget div.item-options a:focus{text-decoration:underline}.widget.widget_bp_core_members_widget div.item-options a,.widget.widget_bp_core_members_widget div.item-options a:active{color:#333;text-decoration:none}.widget.widget_bp_groups_widget div.item-options a:focus{text-decoration:underline}.widget.widget_bp_groups_widget div.item-options a,.widget.widget_bp_groups_widget div.item-options a:active{color:#333;text-decoration:none}#activity_sidebar .widget.widget_bp_groups_widget li{border:none}.bp-login-widget-user-avatar img.avatar{height:50px;width:50px;vertical-align:middle}.sidebar_container .widget.buddypress .bp-login-widget-user-links>div{margin:0}.sidebar_container .widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a:focus{text-decoration:underline}.sidebar_container .widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a,.sidebar_container .widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a:active{display:inline;padding:0;font-size:110%;background:0 0;text-transform:uppercase;text-decoration:none;font-weight:400}.widget.buddypress .bp-login-widget-user-logout a:focus{color:#761D19;text-decoration:underline}.widget.buddypress .bp-login-widget-user-logout a,.widget.buddypress .bp-login-widget-user-logout a:active{color:#000;font-size:90%;text-decoration:none}.widget.buddypress #bp-login-widget-form{padding-bottom:.4rem}.widget.buddypress #bp-login-widget-form label{margin-top:.5rem;margin-bottom:.2rem;font-size:80%}.widget.buddypress #bp-login-widget-form>label:first-child{margin-top:.3rem}.widget.buddypress #bp-login-widget-form #bp-login-widget-user-login,.widget.buddypress #bp-login-widget-form #bp-login-widget-user-pass{padding:8px;border:1px solid #ccc;width:90%;letter-spacing:.3px}.widget.buddypress #bp-login-widget-form .forgetmenot{padding-bottom:.4rem}.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a:active,.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a:focus,.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a:hover{text-decoration:underline}.widget.buddypress #bp-login-widget-form .bp-login-widget-register-link a{color:#333;text-decoration:none}@media all and (max-width:1400px){.widget.buddypress #bp-login-widget-form label{font-size:100%;margin-top:1rem}}.widget_bp_blogs_widget ul#blog-post-list{margin:0;list-style:none}.widget_bp_blogs_widget ul#blog-post-list li{list-style:none;padding-bottom:10px}.widget_bp_blogs_widget ul#blog-post-list .activity-header{margin-bottom:1em}.widget_bp_blogs_widget ul#blog-post-list .activity-header p{margin:0;line-height:1.5}.widget_bp_blogs_widget ul#blog-post-list .activity-inner{clear:left;background-color:#fff;padding:1% 2% 1% 4%;-moz-border-radius:0 20px;-khtml-border-radius:20px;-webkit-border-radius:0 20px;border-radius:0 20px;-khtml-border-top-left-radius:0;-khtml-border-bottom-right-radius:0}body#main_blog div#item-header div#item-meta{font-family:Georgia,Times,serif}#buddypress .profile h4,#buddypress form#whats-new-form p.activity-greeting,#buddypress span.highlight,.item-title a,.standard-form label,.standard-form span.label,.widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a,.widget.buddypress .bp-login-widget-user-logout a,body#main_blog div#item-header div#item-actions h3,body#main_blog.create-blog.buddypress_page #content .padder h3,body.activate #content h3,body.activation.activate #content h2,body.blogs h2.post_title a,body.create-blog #content h3,body.directory #content form.dir-form h3,body.directory #content h3,body.directory.logged-in #content form.dir-form h3,body.directory.logged-in #content h3,body.directory.logged-in #content h4,body.group-admin #content div#item-header h2,body.group-admin #content h2,body.group-admin #content h3,body.group-admin #content h4,body.group-admin #group-create-body h2,body.group-admin #group-create-body h3,body.group-create #content form.standard-form>h3,body.group-create #content h4,body.group-create #group-create-body h2,body.group-create #group-create-body h3,body.groups h2.post_title a,body.groups.announcements #item-body h3,body.members h2.post_title a,body.my-account #bbpress-forums h2.entry-title,body.registration #content h2,body.registration #content h4,body.sent-invites ul#invite-anyone-clear-links li,body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3,div#item-header h2,div#message-thread strong a,form#send-reply div.message-box .avatar-box strong,form#settings-form table.notification-settings th.title,form#whats-new-form h5,h3#message-subject,h3.activity-subscription-settings-title,table#message-threads tr td.thread-from,table#message-threads tr td.thread-info p,table.notifications th,ul#admins-list h5,ul#member-list h5,ul#members-list h5,ul#mods-list h5{font-family:"Open Sans",Helvetica,Arial,sans-serif}#activity_sidebar .groupsites_comments_output .comment-identifier p a,#activity_sidebar .workshop_comments_output .comment-identifier p a,#activity_sidebar ul.item-list.cp-online-members li a,#activity_sidebar ul.item-list.cp-recently-active li a,#ass-email-subscriptions-options-page h3,#buddypress .acomment-options a,#buddypress .activity-header a,#buddypress .activity-list li.load-more a,#buddypress .activity-list li.load-more a:active,#buddypress .activity-list li.load-newest a #buddypress .activity-list li.load-newest a:active,#buddypress table#message-threads tr td.thread-from a,#buddypress table#message-threads tr td.thread-info p a,#groups-list .group-subscription-div a,#invite-anyone-by-email h4,#item-body a,#message-recipients span.highlight a,#register-page #cp-multisite-options h4,.activity-header a,.activity-header a.activity-time-since,.item-title a,.standard-form label,.standard-form span.label,.widget.buddypress .bp-login-widget-user-links>div.bp-login-widget-user-link a,body.create-blog #content #cp-multisite-options .cp-workflow-type label,body.create-blog #content #setupform label,body.create-blog #content a,body.create-blog #content h3,body.create-blog #cp-multisite-options h4,body.directory.logged-in #content h3,body.directory.logged-in #content h4,body.group-admin #content #group-settings-form h2,body.group-admin #content #item-body h3,body.group-admin #content #item-body h4,body.group-admin #group-create-body h2,body.group-admin #group-create-body h3,body.group-admin.group-blog #group-settings-form h2,body.group-create #content h4,body.group-create #group-create-body h2,body.group-create #group-create-body h3,body.groups.announcements #item-body h3,body.groups.invite-anyone #invite-anyone-invite-list h4 a,body.my-account #bbpress-forums h2.entry-title,body.registration #content h2,body.registration #content h4,body.sent-invites h4,body.settings #content h3,body.settings.general #content h3,body.settings.my-account #content h3,div#item-header h2 a,div#message-thread strong a,div.profile h4,form#settings-form table.notification-settings th.title,h3#message-subject,table.doctable tr td a,table.notifications th,ul#admins-list h5,ul#admins-list h5 a,ul#member-list h5,ul#member-list h5 a,ul#members-list h5,ul#members-list h5 a,ul#mods-list h5,ul#mods-list h5 a,ul.item-list li div.item-desc{color:#b4b797}#content div.item-list-tabs#object-nav,body#main_blog .home-page form#whats-new-form,body#main_blog div.item-list-tabs,body#main_blog form#whats-new-form,body#main_blog form.dir-form,body#main_blog.create-blog.buddypress_page #content .padder h3,body.activation #content h2.post_title,body.activation.activate #content h2,body.activation.activate #content h3,body.activity h2.post_title,body.blogs h2.post_title,body.bp-docs h2.post_title,body.bp-user h2.post_title,body.buddypress div.item-list-tabs,body.buddypress form#whats-new-form,body.buddypress form.dir-form,body.directory #content h3,body.group-create #content form.standard-form>h3,body.groups h2.post_title,body.home-page form#whats-new-form,body.members h2.post_title,body.registration #content h2.post_title,div#item-header{background:#b4b797}#activity_sidebar li.groups{border-left:10px solid #b4b797}#buddypress #header-cover-image{background-color:#CCCBBF}body.blogtype-0{background:#C0D5BF}body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-0 #activity_sidebar,body.is-groupblog.blogtype-0 #comments_sidebar,body.is-groupblog.blogtype-0 #container{background:#C0D5BF!important}body#main_blog.groups.groupblogtype-0 #content div.item-list-tabs#object-nav,body#main_blog.groups.groupblogtype-0 div.item-list-tabs,body.groupblogtype-0 div#item-header,body.groups.groupblogtype-0 h2.post_title{background:#a1c19f}ul.item-list li.groupblogtype-0 .item-desc,ul.item-list li.groupblogtype-0 .item-desc a,ul.item-list li.groupblogtype-0 .item-desc p,ul.item-list li.groupblogtype-0 .item-title a{color:#a1c19f}#activity_sidebar li.groupblogtype-0,#buddypress ul#blogs-list li.groupblogtype-0,#buddypress ul#groups-list li.groupblogtype-0,#buddypress ul.activity-list li.groupblogtype-0{border-left:10px solid #a1c19f}body.blogtype-0 #activity_sidebar .comments_container{background-color:#F7F7EF}body.blogtype-0 h3.activity_heading{background-color:#a1c19f}body.blogtype-0 h3.activity_heading:hover{background-color:#83ad7f}body.blogtype-0 #activity_sidebar .workshop_comments_output .comment-identifier p a{color:#761D19}body.blogtype-0 #content .post.overridden_type-1 p{line-height:1.5;padding-bottom:24px}body.blogtype-0 #content .post.overridden_type-1 p.category-meta,body.blogtype-0 #content .post.overridden_type-1 p.postmetadata{padding-bottom:0}body.blogtype-1{background:#A2BDAF}body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-1 #activity_sidebar,body.is-groupblog.blogtype-1 #comments_sidebar,body.is-groupblog.blogtype-1 #container{background:#A2BDAF!important}body#main_blog.groups.groupblogtype-1 #content div.item-list-tabs#object-nav,body#main_blog.groups.groupblogtype-1 div.item-list-tabs,body.groupblogtype-1 div#item-header,body.groups.groupblogtype-1 h2.post_title{background:#85a896}ul.item-list li.groupblogtype-1 .item-title a,ul.item-list li.groupblogtype-1 div.item-desc,ul.item-list li.groupblogtype-1 div.item-desc a,ul.item-list li.groupblogtype-1 div.item-desc p{color:#85a896}#activity_sidebar li.groupblogtype-1,#buddypress ul#blogs-list li.groupblogtype-1,#buddypress ul#groups-list li.groupblogtype-1,#buddypress ul.activity-list li.groupblogtype-1{border-left:10px solid #85a896}body.blogtype-1 #activity_sidebar .comments_container{background-color:#F7F7EF}body.blogtype-1 h3.activity_heading{background-color:#85a896}body.blogtype-1 h3.activity_heading:hover{background-color:#68927c}body.blogtype-1 #activity_sidebar .workshop_comments_output .comment-identifier p a{color:#761D19}body.blogtype-1 #content .post p{line-height:1.5;padding-bottom:24px}body.blogtype-1 #content .post.overridden_type-0 p,body.commentpress_page.blogtype-1 #content .post p{line-height:1.5;padding-bottom:11px}body.commentpress_page.blogtype-1 #content #respond p{padding-bottom:0}body.blogtype-1 #content div.search_meta{padding-bottom:24px}body.blogtype-1 #content .post.overridden_type-0 div.search_meta{padding-bottom:7px}body.blogtype-1 #content div.search_meta p{margin:0;padding:0}body.blogtype-2{background:#cbd5b4}body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-2 #activity_sidebar,body.is-groupblog.blogtype-2 #comments_sidebar,body.is-groupblog.blogtype-2 #container{background:#cbd5b4!important}body#main_blog.groups.groupblogtype-2 #content div.item-list-tabs#object-nav,body#main_blog.groups.groupblogtype-2 div.item-list-tabs,body.groupblogtype-2 div#item-header,body.groups.groupblogtype-2 h2.post_title{background:#b4c293}ul.item-list li.groupblogtype-2 .item-desc,ul.item-list li.groupblogtype-2 .item-desc a,ul.item-list li.groupblogtype-2 .item-desc p,ul.item-list li.groupblogtype-2 .item-title a{color:#b4c293}#activity_sidebar li.groupblogtype-2,#buddypress ul#blogs-list li.groupblogtype-2,#buddypress ul#groups-list li.groupblogtype-2,#buddypress ul.activity-list li.groupblogtype-2{border-left:10px solid #b4c293}body.blogtype-2 #activity_sidebar .comments_container{background-color:#F7F7EF}body.blogtype-2 h3.activity_heading{background-color:#b4c293}body.blogtype-2 h3.activity_heading:hover{background-color:#9eb073}body.blogtype-2 #activity_sidebar .workshop_comments_output .comment-identifier p a{color:#761D19}@media all and (max-width:600px){body.buddypress #content #buddypress div#item-header h2.user-nicename{margin-bottom:0}}
  • commentpress-core/trunk/themes/commentpress-flat/assets/css/print.css

    r1695759 r1782116  
    132132    #main div.sharedaddy,
    133133
     134    /* JetPack contact form */
     135    form.contact-form,
     136
    134137    /* Featured Comments */
    135138    div.feature-burry-comments,
     
    417420        white-space: pre-wrap;
    418421        overflow: visible;
     422    }
     423
     424    .post .fluid-width-video-wrapper
     425    {
     426        width: auto !important;
     427        height: auto !important;
     428        min-height: 0 !important;
     429        color: #000;
     430        position: static !important;
     431        padding: 0 !important;
     432    }
     433
     434    .post .fluid-width-video-wrapper iframe,
     435    .post .fluid-width-video-wrapper object,
     436    .post .fluid-width-video-wrapper embed
     437    {
     438        width: auto !important;
     439        height: auto !important;
     440        min-height: 0 !important;
     441        color: #000;
     442        position: static !important;
    419443    }
    420444
  • commentpress-core/trunk/themes/commentpress-flat/assets/css/print.min.css

    r1695759 r1782116  
    1 @media print{*,:after,:before,html{background:#fff!important}img,span.captioned_image{page-break-after:avoid;page-break-inside:avoid}div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}*,:after,:before{-webkit-transition:none!important;-moz-transition:none!important;transition:none!important;box-sizing:inherit}html{color:#000;margin:0;padding:0}body,body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-3,body.is-groupblog.blogtype-4{background:#fff!important;color:#000;font-size:9pt;font-family:Georgia,serif;margin:24pt;padding:0}a{color:#000!important;text-decoration:underline}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6,h1,h2,h3,h4,h5,h6{padding-left:0;padding-right:0;color:#000;font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;page-break-after:avoid;page-break-inside:avoid;text-transform:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#000;text-decoration:none}#content div.sharedaddy,#document_search,#footer .menu,#header img,#main div.sharedaddy,#navigation,#respond,#respond_wrapper,#switcher,#tagline,#user_links,#wpadminbar,.comment-identifier span.comment-assign,.comment-identifier span.comment-edit,.comment-popover-holder,.comment-upvote,.cp_logo_image,.entry-category-meta,.entry-meta,.multipager,.no_comments,.page_navigation,.popover-holder,a.comment-edit-link,a.skip,div#activity_sidebar,div#toc_sidebar,div.fb_reset,div.feature-burry-comments,div.feature-bury-comments,div.reply,div.reply_to_para,div.sharedaddy,div.ui-helper-hidden-accessible,div.ui-helper-hidden-accessible div,div.ui-resizable-handle,div.ui-tooltip,img.avatar,p.edit_link,p.postmetadata,span.commenticonbox,span.off-left,ul#sidebar_tabs{display:none!important}#header,#title{position:static!important;top:auto;height:auto;border:none;margin:0;padding:0;min-height:0}#page_title,#title{float:none;margin:0;padding:0}#header #title h1,#header #title h1 a,#header #title h1 a:active,#header #title h1 a:hover,#header #title h1 a:link,#header #title h1 a:visited{display:block;width:auto;height:auto;letter-spacing:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:11pt;font-weight:400;color:#ccc!important;margin:0;padding:0;text-indent:0!important}.cp_featured_title_inner h2.post_title a,.post h2.post_title a{color:#000}#header #title h1{padding-left:24pt}body.commentpress_page #header #title h1,body.not_commentable #header #title h1{padding-left:0}#container{position:static!important;top:auto!important;background:#fff;width:auto!important;padding:0!important;margin:0!important}#content_container,#header,#main_wrapper,#page_wrapper,#wrapper,.sidebar_minimiser{float:none;position:static!important;width:auto!important;height:auto!important;padding:0;margin:0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;-khtml-box-shadow:none;box-shadow:none}#wrapper{z-index:auto;max-width:100%!important;min-width:100%!important}#container .cp_feature_image,.cp_feature_image{padding-top:6pt}#container .cp_feature_image .cp_featured_title .cp_featured_title_inner,.cp_feature_image .cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0}#container .cp_featured_title_inner h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none}#container #content,#content{padding:0;margin:0;height:auto;border:none}.post{padding:0 0 20pt 24pt;font-size:100%;border:none;border-bottom:1px solid #ccc}body.commentpress_page .post,body.not_commentable .post{padding:0 0 20pt}.post h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none;line-height:1.5}#content .post .search_meta,#content .post .search_meta cite,#content .post .search_meta p{margin:0;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:110%;color:#aaa;text-transform:none}#content .post .search_meta{margin:-2pt 0 24pt;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#content .post .search_meta a,#content .post .search_meta cite a{letter-spacing:0;color:#aaa;text-decoration:none;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}.post .textblock{position:relative!important;background:0 0!important}.post address,.post p,.post pre{margin:1em 0;padding:0;line-height:1.5}.selected_para{color:#000!important}.post ol,.post ul{width:auto!important;margin:1em 0 1em 2em;padding:0;line-height:1.5}.post ol li,.post ul li{margin-bottom:2pt;line-height:1.5}.post dd{line-height:1.5}.post pre{padding:1em;white-space:pre-wrap;overflow:visible}span.captioned_image{border:1px solid #ccc}li.list_commenticon{float:left;width:2.5em;color:#888;margin-left:-2.5em;list-style:none}ol ol li.list_commenticon,ol ul li.list_commenticon,ul ol li.list_commenticon,ul ul li.list_commenticon{visibility:hidden;float:left;height:1px;margin:0;padding:0}#footer,#sidebar{float:none;clear:left;max-width:100%!important;min-width:100%!important}span.para_marker{display:block;position:absolute!important;width:auto!important;margin-left:0;left:-32px!important;color:#ccc!important;background-color:transparent}blockquote p span.para_marker{margin-left:-10pt}ol span.para_marker,ul span.para_marker{margin-left:-2em}#content .post span.para_marker a,#content .post span.para_marker a span,span.para_marker a{font-size:8pt;color:#ccc!important;text-decoration:none}.running_header_bottom{text-align:center;margin:3em 0 1em;padding-bottom:1em}#comments_in_page_wrapper,#comments_in_page_wrapper .comments_container{width:100%;margin:0;padding:0}#comments_sidebar,#sidebar{width:auto!important;position:static!important}#comments_in_page_wrapper ul.all_comments_listing li>h3{font-size:14pt;color:#000;border-top:none;border-bottom:1px solid #ccc}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_wrapper{border-top:1px solid #ccc;border-bottom:none;page-break-inside:avoid}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_meta{padding:3px 0 0;border:none}#comments_in_page_wrapper .comment-content h1,#comments_in_page_wrapper .comment-content h2,#comments_in_page_wrapper .comment-content h3,#comments_in_page_wrapper .comment-content h4,#comments_in_page_wrapper .comment-content h5,#comments_in_page_wrapper .comment-content h6{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none;color:#000}.post p.comments_hl{padding:0;margin:.5em 0;font-size:16pt;font-weight:700;color:#000}.general_comments{margin:0;padding:0}.post .comments_container>h3{padding:0;margin:.5em 0 1em;font-size:16pt;font-weight:700;color:#000}#comments_in_page_wrapper .comment-content{margin:0;padding:0}#sidebar{height:auto!important;top:auto!important;left:auto!important}#comments_sidebar{border-bottom:1px solid #ccc;padding-bottom:16pt;padding-left:24pt}#sidebar .sidebar_container .sidebar_header{display:block;padding-top:10pt}#sidebar .sidebar_container .sidebar_header h2{display:block;margin-top:0;padding-top:10pt;font-size:16pt;font-weight:700;text-transform:none;color:#000}.sidebar_contents_wrapper{height:auto!important;overflow:visible}div#comments_sidebar .comments_container>h3{text-transform:none;color:#000;margin:1em 0 0;padding:0 0 .2em;font-size:12pt;font-weight:700;border:none}div#comments_sidebar .comments_container>h3 a{text-transform:none;display:inline;color:#000;margin:0;padding:0}div#comments_sidebar .comments_container>h3 span.source_block{text-transform:none;display:inline!important}ol.children,ol.commentlist{margin:0;padding:0}.post ol.children li,.post ol.children li.comment,.post ol.commentlist li,.post ol.commentlist li.comment,ol.children li,ol.children li.comment,ol.commentlist li,ol.commentlist li.comment{list-style:decimal;margin:0 0 0 20pt;padding:0}.comment-wrapper{page-break-inside:avoid}div#comments_sidebar .comments_container .comment-content{font-size:100%;padding:.2em 0 .5em;border:none!important}.comment-content,.comment-identifier{border:none}.comment-identifier a.comment_permalink,.comment-identifier cite{text-transform:none;letter-spacing:0;color:#aaa!important;display:inline;font-size:7pt;margin:0;padding:0;font-weight:700}.comment-identifier cite a{font-weight:700;color:#222;text-decoration:none}.comment-identifier a.comment_permalink{font-weight:400;color:#aaa;text-decoration:none}.comment_permalink_copy:before{display:none}div#comments_sidebar .comments_container .reply{font-size:110%;padding:.2em 0 1em;border:none!important}div#comments_sidebar .paragraph_wrapper{display:block!important}a.comment-reply-link,div#comments_sidebar .paragraph_wrapper.no_comments{display:none!important}div#comments_sidebar .comments_container .comment-content h1,div#comments_sidebar .comments_container .comment-content h2,div#comments_sidebar .comments_container .comment-content h3,div#comments_sidebar .comments_container .comment-content h4,div#comments_sidebar .comments_container .comment-content h5,div#comments_sidebar .comments_container .comment-content h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}div#comments_sidebar .comments_container .comment-content p{line-height:1.4;padding:0 0 .6em .2em;margin:0}div#comments_sidebar .comments_container .comment-content ol,div#comments_sidebar .comments_container .comment-content ul{line-height:1.4;padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content>ol,div#comments_sidebar .comments_container .comment-content>ul{padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content ol li,div#comments_sidebar .comments_container .comment-content ul li{margin-bottom:2pt;line-height:1.4}ul.all_comments_listing div.item_body{display:block!important}#footer{position:static!important;border:none;margin:0;padding:1em 0 0;color:#aaa;-webkit-box-shadow:0 0 0 #fff;-moz-box-shadow:0 0 0 #fff;-khtml-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff}#footer_inner{margin:0;padding:0}#footer address,#footer h3,#footer h4,#footer h5,#footer h6,#footer ol li,#footer p,#footer span,#footer ul li{color:#aaa;font-size:.8em;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#footer a,#footer_inner p a{color:#aaa!important;text-decoration:none}p.hidden_page_url{display:block;color:#aaa!important;background:0 0;text-align:center;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:.8em}blockquote,pre,table{page-break-inside:avoid}blockquote{margin:0;padding-left:10pt;border-left:1px solid #aaa;font-style:italic}table{width:auto}.post table td,.post table th,table td,table th{border:1px solid #ccc}dl,ol,ul{page-break-before:avoid}dt{font-weight:700}.fee-content-body,.fee-insert-thumbnail,.fee-thumbnail-toolbar,.fee-toolbar,.footnotes li .footnotereverse,.footnotes li.list_commenticon .commenticonbox,.footnotes li.list_commenticon .para_marker,.footnotes li>a:last-child,.simple-footnotes .commenticonbox,.simple-footnotes .para_marker,.simple-footnotes li.list_commenticon .commenticonbox,.simple-footnotes li.list_commenticon .para_marker,.simple-footnotes li>a:last-child,.wp-core-ui{display:none}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title{padding:0!important}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0 0 0 24pt}}
     1@media print{*,:after,:before,html{background:#fff!important}img,span.captioned_image{page-break-after:avoid;page-break-inside:avoid}div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}*,:after,:before{-webkit-transition:none!important;-moz-transition:none!important;transition:none!important;box-sizing:inherit}html{color:#000;margin:0;padding:0}body,body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-3,body.is-groupblog.blogtype-4{background:#fff!important;color:#000;font-size:9pt;font-family:Georgia,serif;margin:24pt;padding:0}a{color:#000!important;text-decoration:underline}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6,h1,h2,h3,h4,h5,h6{padding-left:0;padding-right:0;color:#000;font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;page-break-after:avoid;page-break-inside:avoid;text-transform:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#000;text-decoration:none}#content div.sharedaddy,#document_search,#footer .menu,#header img,#main div.sharedaddy,#navigation,#respond,#respond_wrapper,#switcher,#tagline,#user_links,#wpadminbar,.comment-identifier span.comment-assign,.comment-identifier span.comment-edit,.comment-popover-holder,.comment-upvote,.cp_logo_image,.entry-category-meta,.entry-meta,.multipager,.no_comments,.page_navigation,.popover-holder,a.comment-edit-link,a.skip,div#activity_sidebar,div#toc_sidebar,div.fb_reset,div.feature-burry-comments,div.feature-bury-comments,div.reply,div.reply_to_para,div.sharedaddy,div.ui-helper-hidden-accessible,div.ui-helper-hidden-accessible div,div.ui-resizable-handle,div.ui-tooltip,form.contact-form,img.avatar,p.edit_link,p.postmetadata,span.commenticonbox,span.off-left,ul#sidebar_tabs{display:none!important}#header,#title{position:static!important;top:auto;height:auto;border:none;margin:0;padding:0;min-height:0}#page_title,#title{float:none;margin:0;padding:0}#header #title h1,#header #title h1 a,#header #title h1 a:active,#header #title h1 a:hover,#header #title h1 a:link,#header #title h1 a:visited{display:block;width:auto;height:auto;letter-spacing:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:11pt;font-weight:400;color:#ccc!important;margin:0;padding:0;text-indent:0!important}.cp_featured_title_inner h2.post_title a,.post h2.post_title a{color:#000}#header #title h1{padding-left:24pt}body.commentpress_page #header #title h1,body.not_commentable #header #title h1{padding-left:0}#container{position:static!important;top:auto!important;background:#fff;width:auto!important;padding:0!important;margin:0!important}#content_container,#header,#main_wrapper,#page_wrapper,#wrapper,.sidebar_minimiser{float:none;position:static!important;width:auto!important;height:auto!important;padding:0;margin:0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;-khtml-box-shadow:none;box-shadow:none}#wrapper{z-index:auto;max-width:100%!important;min-width:100%!important}#container .cp_feature_image,.cp_feature_image{padding-top:6pt}#container .cp_feature_image .cp_featured_title .cp_featured_title_inner,.cp_feature_image .cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0}#container .cp_featured_title_inner h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none}#container #content,#content{padding:0;margin:0;height:auto;border:none}.post{padding:0 0 20pt 24pt;font-size:100%;border:none;border-bottom:1px solid #ccc}body.commentpress_page .post,body.not_commentable .post{padding:0 0 20pt}.post h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none;line-height:1.5}#content .post .search_meta,#content .post .search_meta cite,#content .post .search_meta p{margin:0;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:110%;color:#aaa;text-transform:none}#content .post .search_meta{margin:-2pt 0 24pt;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#content .post .search_meta a,#content .post .search_meta cite a{letter-spacing:0;color:#aaa;text-decoration:none;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}.post .textblock{position:relative!important;background:0 0!important}.post address,.post p,.post pre{margin:1em 0;padding:0;line-height:1.5}.selected_para{color:#000!important}.post .fluid-width-video-wrapper,.post .fluid-width-video-wrapper embed,.post .fluid-width-video-wrapper iframe,.post .fluid-width-video-wrapper object{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}.post ol,.post ul{width:auto!important;margin:1em 0 1em 2em;padding:0;line-height:1.5}.post ol li,.post ul li{margin-bottom:2pt;line-height:1.5}.post dd{line-height:1.5}.post pre{padding:1em;white-space:pre-wrap;overflow:visible}.post .fluid-width-video-wrapper{padding:0!important}span.captioned_image{border:1px solid #ccc}li.list_commenticon{float:left;width:2.5em;color:#888;margin-left:-2.5em;list-style:none}ol ol li.list_commenticon,ol ul li.list_commenticon,ul ol li.list_commenticon,ul ul li.list_commenticon{visibility:hidden;float:left;height:1px;margin:0;padding:0}#footer,#sidebar{float:none;clear:left;max-width:100%!important;min-width:100%!important}span.para_marker{display:block;position:absolute!important;width:auto!important;margin-left:0;left:-32px!important;color:#ccc!important;background-color:transparent}blockquote p span.para_marker{margin-left:-10pt}ol span.para_marker,ul span.para_marker{margin-left:-2em}#content .post span.para_marker a,#content .post span.para_marker a span,span.para_marker a{font-size:8pt;color:#ccc!important;text-decoration:none}.running_header_bottom{text-align:center;margin:3em 0 1em;padding-bottom:1em}#comments_in_page_wrapper,#comments_in_page_wrapper .comments_container{width:100%;margin:0;padding:0}#comments_sidebar,#sidebar{width:auto!important;position:static!important}#comments_in_page_wrapper ul.all_comments_listing li>h3{font-size:14pt;color:#000;border-top:none;border-bottom:1px solid #ccc}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_wrapper{border-top:1px solid #ccc;border-bottom:none;page-break-inside:avoid}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_meta{padding:3px 0 0;border:none}#comments_in_page_wrapper .comment-content h1,#comments_in_page_wrapper .comment-content h2,#comments_in_page_wrapper .comment-content h3,#comments_in_page_wrapper .comment-content h4,#comments_in_page_wrapper .comment-content h5,#comments_in_page_wrapper .comment-content h6{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none;color:#000}.post p.comments_hl{padding:0;margin:.5em 0;font-size:16pt;font-weight:700;color:#000}.general_comments{margin:0;padding:0}.post .comments_container>h3{padding:0;margin:.5em 0 1em;font-size:16pt;font-weight:700;color:#000}#comments_in_page_wrapper .comment-content{margin:0;padding:0}#sidebar{height:auto!important;top:auto!important;left:auto!important}#comments_sidebar{border-bottom:1px solid #ccc;padding-bottom:16pt;padding-left:24pt}#sidebar .sidebar_container .sidebar_header{display:block;padding-top:10pt}#sidebar .sidebar_container .sidebar_header h2{display:block;margin-top:0;padding-top:10pt;font-size:16pt;font-weight:700;text-transform:none;color:#000}.sidebar_contents_wrapper{height:auto!important;overflow:visible}div#comments_sidebar .comments_container>h3{text-transform:none;color:#000;margin:1em 0 0;padding:0 0 .2em;font-size:12pt;font-weight:700;border:none}div#comments_sidebar .comments_container>h3 a{text-transform:none;display:inline;color:#000;margin:0;padding:0}div#comments_sidebar .comments_container>h3 span.source_block{text-transform:none;display:inline!important}ol.children,ol.commentlist{margin:0;padding:0}.post ol.children li,.post ol.children li.comment,.post ol.commentlist li,.post ol.commentlist li.comment,ol.children li,ol.children li.comment,ol.commentlist li,ol.commentlist li.comment{list-style:decimal;margin:0 0 0 20pt;padding:0}.comment-wrapper{page-break-inside:avoid}div#comments_sidebar .comments_container .comment-content{font-size:100%;padding:.2em 0 .5em;border:none!important}.comment-content,.comment-identifier{border:none}.comment-identifier a.comment_permalink,.comment-identifier cite{text-transform:none;letter-spacing:0;color:#aaa!important;display:inline;font-size:7pt;margin:0;padding:0;font-weight:700}.comment-identifier cite a{font-weight:700;color:#222;text-decoration:none}.comment-identifier a.comment_permalink{font-weight:400;color:#aaa;text-decoration:none}.comment_permalink_copy:before{display:none}div#comments_sidebar .comments_container .reply{font-size:110%;padding:.2em 0 1em;border:none!important}div#comments_sidebar .paragraph_wrapper{display:block!important}a.comment-reply-link,div#comments_sidebar .paragraph_wrapper.no_comments{display:none!important}div#comments_sidebar .comments_container .comment-content h1,div#comments_sidebar .comments_container .comment-content h2,div#comments_sidebar .comments_container .comment-content h3,div#comments_sidebar .comments_container .comment-content h4,div#comments_sidebar .comments_container .comment-content h5,div#comments_sidebar .comments_container .comment-content h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}div#comments_sidebar .comments_container .comment-content p{line-height:1.4;padding:0 0 .6em .2em;margin:0}div#comments_sidebar .comments_container .comment-content ol,div#comments_sidebar .comments_container .comment-content ul{line-height:1.4;padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content>ol,div#comments_sidebar .comments_container .comment-content>ul{padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content ol li,div#comments_sidebar .comments_container .comment-content ul li{margin-bottom:2pt;line-height:1.4}ul.all_comments_listing div.item_body{display:block!important}#footer{position:static!important;border:none;margin:0;padding:1em 0 0;color:#aaa;-webkit-box-shadow:0 0 0 #fff;-moz-box-shadow:0 0 0 #fff;-khtml-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff}#footer_inner{margin:0;padding:0}#footer address,#footer h3,#footer h4,#footer h5,#footer h6,#footer ol li,#footer p,#footer span,#footer ul li{color:#aaa;font-size:.8em;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#footer a,#footer_inner p a{color:#aaa!important;text-decoration:none}p.hidden_page_url{display:block;color:#aaa!important;background:0 0;text-align:center;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:.8em}blockquote,pre,table{page-break-inside:avoid}blockquote{margin:0;padding-left:10pt;border-left:1px solid #aaa;font-style:italic}table{width:auto}.post table td,.post table th,table td,table th{border:1px solid #ccc}dl,ol,ul{page-break-before:avoid}dt{font-weight:700}.fee-content-body,.fee-insert-thumbnail,.fee-thumbnail-toolbar,.fee-toolbar,.footnotes li .footnotereverse,.footnotes li.list_commenticon .commenticonbox,.footnotes li.list_commenticon .para_marker,.footnotes li>a:last-child,.simple-footnotes .commenticonbox,.simple-footnotes .para_marker,.simple-footnotes li.list_commenticon .commenticonbox,.simple-footnotes li.list_commenticon .para_marker,.simple-footnotes li>a:last-child,.wp-core-ui{display:none}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title{padding:0!important}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0 0 0 24pt}}
  • commentpress-core/trunk/themes/commentpress-flat/assets/css/screen.css

    r1695759 r1782116  
    22012201}
    22022202
     2203.entry-meta
     2204{
     2205    clear: both;
     2206}
     2207
    22032208.post img
    22042209{
     
    35933598    margin-top: 0;
    35943599    margin-bottom: 0.3em;
     3600}
     3601
     3602.cp_feature_image + .page_navigation
     3603{
     3604    position: relative;
    35953605}
    35963606
  • commentpress-core/trunk/themes/commentpress-flat/assets/css/screen.min.css

    r1695759 r1782116  
    1 html,legend{color:#000}html{background-color:#fff;font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%}blockquote,body,code,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:400}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}q:after,q:before{content:''}abbr,acronym{border:0;font-variant:normal;border-bottom:1px dotted #000;cursor:help}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}dt,h1,h2,h3,h4,h5,h6,strong,th{font-weight:700}h1{font-size:138.5%}h2{font-size:123.1%}h3{font-size:108%}h1,h2,h3{margin:1em 0}address,caption,cite,dfn,em,q,th,var{font-style:italic}blockquote,dl,ol,ul{margin:1em}dl,ol,ul{margin-left:2em}ol{list-style:decimal}ul{list-style:disc}dl dd{margin-left:1em}td,th{border:1px solid #000;padding:.5em}th{text-align:center}caption{margin-bottom:.5em;text-align:center}address,fieldset,p,pre,table{margin-top:.7em;margin-bottom:.7em}li,p{-ms-word-wrap:break-word;word-wrap:break-word}ins,u{text-decoration:underline}code,kbd,samp,tt{font-family:monospace}input[type=password],input[type=text],textarea{width:12.25em}a:focus{outline:0}.blockquote-in-para,blockquote{margin-left:0;margin-right:0;padding:0 15px;border-left:1px solid #ddd;font-style:italic}.blockquote-in-para{display:block;margin:.7em 0}.alignright{float:right}.alignleft{float:left}.alignnone{float:none}.aligncenter{display:block;margin:0 auto}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}#switcher ul li a.navigation-button:before,#switcher ul li a:before{content:"\f333"}* html .clearfix{height:1%}.clearfix{display:block}.off-left{position:absolute;left:-9999px;width:900px}a.skip,a.skip:hover,a.skip:visited{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}a.skip:active,a.skip:focus{left:6px;top:7px;height:auto;width:auto;display:block;font-size:14px;font-weight:700;padding:15px 23px 14px;background:#f1f1f1;color:#0073aa;z-index:100000;line-height:normal;text-decoration:none;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6)}a.button,button,div.generic-button a,input[type=button],input[type=reset],input[type=submit],ul.button-nav li a{background:#fff;background:-moz-linear-gradient(top,#fff 0,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fff 0,#ededed 100%);background:-o-linear-gradient(top,#fff 0,#ededed 100%);background:-ms-linear-gradient(top,#fff 0,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );background:linear-gradient(top,#fff 0,#ededed 100%);border:1px solid #ccc;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#777;cursor:pointer;font:400 12px/20px Arial,Tahoma,Verdana,sans-serif;outline:0;padding:4px 10px;text-align:center;text-decoration:none;line-height:14px;text-transform:none}a.button:focus,div.generic-button a:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus,ul.button-nav li a:focus,ul.button-nav li.current a:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}a.button:active,a.button:hover,button:active,button:hover,div.generic-button a:active,div.generic-button a:hover,input[type=button]:active,input[type=button]:hover,input[type=reset]:active,input[type=reset]:hover,input[type=submit]:active,input[type=submit]:hover,ul.button-nav li a:active,ul.button-nav li a:hover,ul.button-nav li.current a,ul.button-nav li.current a:active{background:#ededed;background:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#e0e0e0));background:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-ms-linear-gradient(top,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0', GradientType=0 );background:linear-gradient(top,#fff 0,#e0e0e0 100%);border:1px solid #bbb;color:#555;outline:0;text-decoration:none;text-transform:none;-webkit-box-shadow:none;box-shadow:none}#switcher ul li a,.selected_para.selected_dropzone{background-color:#eee}.selected_para{color:#ca0000}#navigation,#sidebar{position:fixed;z-index:499;background-color:transparent;float:left}#content .textblock.selected_para span.commenticonbox,#content .textblock.selected_para span.para_marker,#content .textblock.textblock-in span.commenticonbox,#content .textblock.textblock-in span.para_marker{display:inline-block}pre{font-family:monospace;overflow:auto;background-color:#f8f8f8;border:1px solid #eee;padding:.6em;line-height:1.4em}table{border:0;border-collapse:collapse;border-spacing:0;border-bottom:1px solid #e6e6e6;width:100%}table td{border:0;border-top:1px solid #e6e6e6}table th{border:0;border-top:1px solid #e6e6e6;font-weight:700;font-style:normal;text-align:left}#content embed,#content iframe{max-width:100%}#container{width:100%;overflow:hidden}img.cp_logo_image{float:left;padding:12px 10px 0 72px}#header #tagline{font-style:normal;font-size:1em;color:#999;padding-top:2px;letter-spacing:1px}#switcher{z-index:1000;position:fixed;width:54%;left:16%}#switcher ul{margin:0;padding:0;list-style:none}#switcher ul li{list-style:none;height:50px;position:absolute;top:12px;width:50px}#switcher ul li.navigation-item{left:12px}#footer,#header,.active-menu #content_container,.active-sidebar #content_container{left:16%}#switcher ul li.content-item{right:136px}#switcher ul li.comments-item{right:74px}.not_commentable #switcher ul li.comments-item{display:none}#switcher ul li.activity-item{right:12px}#switcher ul li a{position:relative;display:block;width:22px;height:22px;padding:14px;text-align:center;text-indent:-9999px;border-radius:25px;font-size:20px;line-height:1;font-weight:700;font-family:sans-serif;text-transform:uppercase;text-decoration:none;color:#333}#switcher ul li a:active,#switcher ul li a:focus,#switcher ul li a:hover{color:#fff;background-color:#ddd}#switcher ul li a:before{font-family:dashicons;display:block;height:22px;padding:14px;position:absolute;top:0;left:0;width:20px;text-indent:0;font-size:110%}#switcher ul li a.content-button:before{content:"\f491"}#switcher ul li a.comments-button:before{content:"\f101"}#switcher ul li a.activity-button:before{content:"\f488"}#content_container{position:relative;left:16%;margin-top:0;-webkit-transition:left .2s ease;-moz-transition:left .2s ease;-o-transition:left .2s ease;-ms-transition:left .2s ease;transition:left .2s ease}#navigation{width:16%;top:0;left:0}body.admin-bar #navigation{top:32px}#wrapper{float:left;position:relative;width:54%;z-index:500}#sidebar{width:30%;top:0;right:0}#footer,#header{position:relative}body.admin-bar #sidebar{top:32px}.outer-shadow-ten-px{-webkit-box-shadow:#888 0 0 10px;-moz-box-shadow:#888 0 0 10px;-khtml-box-shadow:#888 0 0 10px;box-shadow:#888 0 0 10px}.outer-shadow-fifteen-px{-webkit-box-shadow:#888 0 0 15px;-moz-box-shadow:#888 0 0 15px;-khtml-box-shadow:#888 0 0 15px;box-shadow:#888 0 0 15px}#content_container>div,#footer,#header,#switcher{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;-ms-transition:all .2s ease;transition:all .2s ease}#footer{width:54%;margin-bottom:0;text-align:center}#header{width:54%;margin:0;min-height:74px}#page_title{margin:0 136px 0 72px}#page_wrapper,.page_wrapper{background-color:#fff;min-height:620px;position:relative}.page_navigation ul,.page_navigation ul li{margin:0;padding:0;list-style:none}.page_navigation ul li{position:absolute;width:87px}.page_navigation ul li.alignright{top:0;right:0}.page_navigation ul li.alignleft{top:0;left:0}.page_nav_lower{z-index:501}.page_nav_lower .page_navigation ul li.alignleft,.page_nav_lower .page_navigation ul li.alignright{top:auto;bottom:0}.page_navigation ul li.alignleft a,.page_navigation ul li.alignright a{display:block;font-family:sans-serif;height:92px;color:#fff;text-align:center;font-size:1em;text-transform:uppercase;text-decoration:none;text-indent:-4000px}.page_navigation ul li a:link{overflow:hidden!important;background-position:left top!important;background-repeat:no-repeat}.page_navigation ul li a:active,.page_navigation ul li a:focus,.page_navigation ul li a:hover{overflow:hidden!important;background-position:left -92px!important;background-repeat:no-repeat}.page_navigation ul li.alignright a{background:url(../images/nav/page-curl-top-right.jpg)}.page_navigation ul li.alignleft a{background:url(../images/nav/page-curl-top-left.jpg)}.page_nav_lower .page_navigation ul li.alignright a{background:url(../images/nav/page-curl-bottom-right.jpg)}.page_nav_lower .page_navigation ul li.alignleft a{background:url(../images/nav/page-curl-bottom-left.jpg)}.page_navigation ul li.alignleft a:hover,.page_navigation ul li.alignright a:hover{color:#ccc;text-indent:-4000px}#content,.content{margin:0 12%;padding:6% 0}#sidebar_inner,#toc_sidebar{margin:0;background-color:transparent}#sidebar_inner{position:relative;margin-left:0}#toc_sidebar{margin-right:0}#toc_sidebar .sidebar_header{text-align:center;background-color:#ccc;display:none}#toc_sidebar .sidebar_header h2{font-size:20px;line-height:1;margin:0;padding:12px 0 0;height:32px}#toc_sidebar .sidebar_minimiser ul{margin:0;padding:0}#toc_sidebar .sidebar_minimiser ul.children,#toc_sidebar .sidebar_minimiser ul.sub-menu{margin:0 0 0 1.2em;padding:0}#toc_sidebar .sidebar_minimiser ul li{list-style:none}#toc_sidebar .sidebar_minimiser ul li a{display:block;font-family:sans-serif;font-weight:400;font-size:80%;padding:6px;background-color:transparent;color:#333;text-decoration:none}#toc_sidebar .sidebar_minimiser ul li a:focus,#toc_sidebar .sidebar_minimiser ul li a:hover{background-color:#fff;color:#000}#toc_sidebar .sidebar_minimiser ul#toc_list{padding:0;background-color:transparent}#toc_sidebar .sidebar_minimiser ul#nav li.active_page>a:focus,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_ancestor>a:focus,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_item>a:focus{background-color:#fff;color:#000;font-weight:400}#toc_sidebar .sidebar_minimiser ul#nav li.active_page>a,#toc_sidebar .sidebar_minimiser ul#nav li.active_page>a:active,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_ancestor>a,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_ancestor>a:active,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_item>a,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_item>a:active{background-color:#fdd}h3.activity_heading{margin:0;font-size:80%;font-weight:700;padding:6px;background-color:#eee}#toc_sidebar .sidebar_minimiser{clear:both;padding:0}#activity_sidebar,#comments_sidebar{position:absolute;width:100%;clear:both;padding:0;background:#fff;z-index:2001}#comments_sidebar{z-index:2010}.cp_sidebar_activity #comments_sidebar{z-index:2001}.cp_sidebar_activity #activity_sidebar{z-index:2010}ul#sidebar_tabs{margin:0;padding:0;display:none}ul#sidebar_tabs h2{margin:0}ul#sidebar_tabs li{list-style:none;float:left;width:50%}ul#sidebar_tabs li a{font-size:20px;line-height:1;display:block;padding:12px 0;text-align:center;background-color:#ddd;height:20px;text-decoration:none;color:#000}ul#sidebar_tabs li a.active-tab,ul#sidebar_tabs li a:focus{background-color:#ccc}ul#sidebar_tabs li a:active,ul#sidebar_tabs li a:hover{background-color:#bbb;text-decoration:none}.sidebar_contents_wrapper{height:520px;overflow-y:scroll;padding:0;background-color:transparent;position:relative}#sidebar .sidebar_container .sidebar_header{display:none}.comments_container{padding:0}.comments_container>h3{margin:0;font-size:80%;font-weight:700;color:#222;background-color:#eee}.comments_container>h3:hover,h3.activity_heading:hover{background-color:#ddd}.comments_container>h3.nocomments:hover,.comments_container>h3.nocomments:hover span{background-color:#eee}h3.nocomments{color:#222}.comments_container>h3 a:focus,.comments_container>h3 a:hover{background-color:#ddd}.comments_container>h3 a,.comments_container>h3 a:active,.comments_container>h3>span{display:block;padding:6px;color:#222;text-decoration:none;text-transform:uppercase;background-color:#eee}.paragraph_wrapper{padding:0;background-color:transparent}#navigation .paragraph_wrapper:last-child{padding-bottom:12%}.reply_to_para p{font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:0}.reply_to_para p a{display:block;color:#000;text-decoration:none;padding:2%}ol.comment_activity,ol.commentlist{margin:0;padding:0;background-color:transparent}ol.comment_activity li,ol.commentlist li{list-style:none;padding:0}.flash-comment{background-color:red}.comment-wrapper,.comment-wrapper.background-highlight{background-color:transparent}ol.comment_activity li,ol.commentlist li.comment{background-color:transparent;padding:0}.comment-wrapper{padding:0 0 .5em}.comment-identifier{padding:2% 2% 0}.comment-identifier img{float:left;margin-right:4px}.comment-identifier cite{text-transform:uppercase;display:block;font-style:normal;font-family:sans-serif;font-size:.7em;line-height:1.5}.comment-identifier cite a:focus{text-decoration:underline}.comment-identifier cite a,.comment-identifier cite a:active{color:#000;text-decoration:none}p.comment_activity_date{margin:0}.comment_activity_link:focus,.comment_permalink:focus{text-decoration:underline}.comment_activity_link,.comment_activity_link:active,.comment_permalink,.comment_permalink:active{display:block;color:#000;font-size:.7em;line-height:1.5;font-family:sans-serif;font-style:normal;text-decoration:none}.comment_permalink_copy{display:block;width:1em;height:1em;float:left;margin:0 .3em 0 0}.comment_permalink_copy:before{font-family:dashicons;content:"\f103"}.comment-identifier .comment-edit a:focus{text-decoration:underline}.comment-identifier .comment-assign,.comment-identifier .comment-edit a,.comment-identifier .comment-edit a:active{text-transform:uppercase;font-family:sans-serif;color:#bbb;text-decoration:none}.comment-identifier .comment-assign,.comment-identifier .comment-edit{margin-left:2%;font-size:70%}.comment-content{clear:left;background-color:#fff;padding:1% 2% 1% 4%;margin:1% 2% 0;-moz-border-radius:0 20px;-khtml-border-radius:20px;-webkit-border-radius:0 20px;border-radius:0 20px;-khtml-border-top-left-radius:0;-khtml-border-bottom-right-radius:0}.comment-content ul li{list-style-type:disc;background:0 0}.comment-content ol li{list-style-type:decimal;background:0 0}.comment-content iframe{max-width:100%}.comment-content img{max-width:97%;height:auto}.reply{text-transform:uppercase;font-family:sans-serif;margin:0}.reply p{margin:0;padding:0}.reply a:focus{text-decoration:underline}.reply a,.reply a:active{font-size:70%;display:block;color:#000;text-decoration:none;padding:1% 2%;text-align:right}ol.children{margin:0 0 0 1.5em;padding:0}ol.children li.comment{background-color:transparent;padding:0}#respond{padding:2%;position:relative}div#respond>p{font-size:70%;text-transform:uppercase;font-family:sans-serif}#author_details,#comment_details{margin-bottom:.6em;margin-top:0}.author_is_logged_in{font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:0}.author_is_logged_in a:focus{text-decoration:underline}.author_is_logged_in a,.author_is_logged_in a:active{color:#000;text-decoration:none}.cancel-comment-reply p,p#respond_button{margin:0}#cancel-comment-reply-link:focus{text-decoration:underline}#cancel-comment-reply-link,#cancel-comment-reply-link:active{font-size:70%;text-transform:uppercase;font-family:sans-serif;color:#bbb;text-decoration:none;float:right}#commentform #author_details p{margin:.5em 0 0}#commentform #author_details input,#commentform textarea{width:90%}#commentform textarea{width:99%}#commentform #author_details label{text-transform:uppercase;font-family:sans-serif}#commentform #author_details input{font-family:sans-serif}#commentform #author_details p.author_not_logged_in{text-transform:uppercase}.req{color:#ca0000}.commentpress_comment_form_hidden a{text-decoration:none}#footer_inner p a:focus,#title h1 a:focus{text-decoration:underline}div#respond .subscribe_reloaded_insert{font-family:sans-serif;color:#666;padding:0;margin:15px 0;font-size:80%}#cpajax_error_msg{border:1px solid #E1CA82;border:#A71A1A;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-weight:400;margin:.6em 0;text-decoration:none;background:#DB1717;background-image:-webkit-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-moz-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-o-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));clear:left;color:#fff;font-size:90%;font-family:sans-serif;display:block;padding:.6em;line-height:1.5em}.comment-highlighted{background-color:#c2d8bc}.comment-fade{-webkit-transition:background-color 1s ease;-moz-transition:background-color 1s ease;-o-transition:background-color 1s ease;-ms-transition:background-color 1s ease;transition:background-color 1s ease;background-color:transparent}.notransition{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}.comments_container>h3.heading-highlighted{background-color:#c2d8bc}.comments_container>h3.heading-highlighted.heading-fade{-webkit-transition:background-color 1s ease;-moz-transition:background-color 1s ease;-o-transition:background-color 1s ease;-ms-transition:background-color 1s ease;transition:background-color 1s ease;background-color:#BDBDBD}#comments_in_page_wrapper .comments_container>h3.general_comments_header,#comments_in_page_wrapper .comments_container>h3.nocomments{padding:6px;color:#222}#comments_in_page_wrapper .comments_container>h3.general_comments_header:hover{background-color:#BDBDBD}#comments_in_page_wrapper .comments_container>h3.general_comments_header>span{display:inline;padding:0}.post.general_comments #respond_wrapper{background-color:#eee}#document_search,#footer_inner{margin:0;background-color:transparent}#footer_inner{padding:12px 1%;font-size:80%;text-align:center;font-family:sans-serif}#footer_inner p{margin:0}#footer_inner p a,#footer_inner p a:active{color:#000;text-decoration:none}#document_search{padding:4%}#document_search label{position:absolute;visibility:hidden;clip:rect(0,0,0,0)}#document_search input#s{width:95%;padding:4px;margin-bottom:1em}body.commentpress_page #cp-multisite-options h3{font-size:1.2em;margin:30px 0 5px}body.commentpress_page #content .mu_register #setupform #cp-multisite-options label,body.commentpress_page #content .mu_register #setupform #cp-multisite-options p{color:#000;font-size:1em;margin-top:0;padding-top:0}p.hidden_page_url{display:none}h1,h2,h3,h4,h5,h6{font-family:sans-serif;text-transform:uppercase}#title h1{letter-spacing:1px;margin:0;padding:.5em 0 0}#title h1 a,#title h1 a:active{color:#000;text-decoration:none}.search_result h3,h2.post_title{font-size:2em;line-height:1.2;-ms-word-wrap:break-word;word-wrap:break-word}div.search_meta cite,div.search_meta p a,div.search_meta p a:active{font-size:.7em;line-height:1.5;display:block;font-style:normal;font-family:sans-serif}.search_result h3 a:focus,h2.post_title a:focus{text-decoration:underline}.search_result h3 a,.search_result h3 a:active,h2.post_title a,h2.post_title a:active{color:#000;text-decoration:none;word-wrap:break-word}div.search_meta{margin-top:-2em;margin-bottom:1.6em}.search_result{margin:2em 0;border-bottom:1px solid #eee}.post h2.post_title,.search_result h3{min-height:.2em}.search_result div.search_meta{margin-top:-2em}div.search_meta img{float:left;margin-right:8px}div.search_meta cite{text-transform:uppercase}div.search_meta cite a:focus{text-decoration:underline}div.search_meta cite a,div.search_meta cite a:active{color:#000;text-decoration:none}div.search_meta p{margin:0}div.search_meta p a:focus{text-decoration:underline}div.search_meta p a,div.search_meta p a:active{color:#000;text-decoration:none}.post{position:relative;line-height:1.6;z-index:510}.post span.para_marker{position:absolute;font-style:normal;font-weight:400;left:-36px;margin-top:0;width:36px;display:block}#content .post span.para_marker a,.content .post span.para_marker a{text-decoration:none;font-family:sans-serif;color:#000;font-size:.8em}.post span.commenticonbox{position:absolute;margin-top:5px;padding-right:20px;right:-44px;font-family:sans-serif;color:#000;font-size:1em;font-style:normal;font-weight:400;width:17px;padding-left:9px;cursor:pointer}span.commenticonbox a.no_comments{background:url(../images/icons/comment_add.png) no-repeat}span.commenticonbox a.has_comments{background:url(../images/icons/comment.png) no-repeat}span.commenticonbox a.para_permalink:focus{background-color:#fdd}span.commenticonbox a.para_permalink,span.commenticonbox a.para_permalink:active{display:block;float:left;width:17px;height:14px;text-indent:-9999px;text-align:left;cursor:pointer;font-style:normal;background-color:transparent}span.commenticonbox small.comment_count{position:absolute;float:right;padding:0 0 0 3px;line-height:1}#content .post span.para_marker a.js-hover span,span.commenticonbox small.comment_count.js-hover{font-weight:700}.blogtype-1 .post p,.post.overridden_type-1 p{position:relative}.blogtype-1 .post .wp-video,.post.overridden_type-1 .wp-video{display:inline-block}span.cp-audio-shortcode+.commenticonbox,span.cp-video-shortcode+.commenticonbox{top:0}.post ol li.list_commenticon,.post ul li.list_commenticon{float:left;width:0;list-style-type:none}.running_header_bottom{clear:both;padding-top:2em;text-align:center;font-family:sans-serif;text-transform:uppercase}div.multipager{font-family:sans-serif;text-transform:uppercase;clear:both;border-top:1px solid #B5BFB2;border-bottom:1px dotted #B5BFB2;font-size:80%;padding:.2em 0;margin:4em 0 0}div.multipager .multipager_sep{visibility:hidden}#content div.multipager:after,.content div.multipager:after{content:".";display:block;height:0;clear:both;visibility:hidden}div.multipager a,div.multipager a:active,div.multipager a:hover,div.multipager a:visited{color:#666;text-decoration:none}div.multipager a:focus span{text-decoration:underline}div.multipager a:hover{color:#000}div.multipager.multipager_all{margin:0 0 15px;border:none;text-align:center;color:#666;padding-top:15px;line-height:2}div.multipager.multipager_all span{color:#666;font-weight:400}div.multipager.multipager_all span.multipager_link{margin-left:.2em;margin-right:.2em;padding:.5em .7em;border:1px solid #ddd}.entry-category-meta,.post p.postmetadata,.post p.search_meta{margin-top:1em;padding-bottom:0;font-size:80%;font-family:sans-serif}div.multipager.multipager_all a,div.multipager.multipager_all a:active{text-decoration:none}div.multipager.multipager_all a:focus span.multipager_link{color:#fff;background:#ccc}div.multipager.multipager_all a span.multipager_link,div.multipager.multipager_all a:active span.multipager_link{background:#E8E8E8;color:#000;border:none}div.multipager.multipager_all a:hover span.multipager_link{color:#fff;background:#ccc}.post p.postmetadata,.post p.search_meta{color:#666;padding-top:.7em;border-top:1px solid #ddd}.post p.postmetadata a:focus,.post p.search_meta a:focus{text-decoration:underline}.post p.postmetadata a,.post p.postmetadata a:active,.post p.search_meta a,.post p.search_meta a:active{color:#000;text-decoration:none}body.search-results .post p.postmetadata,body.search-results .post p.search_meta{padding-top:0;margin-bottom:0;border-top:none}.entry-category-meta{border-top:1px solid #ddd;color:#666;padding-top:1em}.post .entry-category-meta p,body.blogtype-1 #content .post .entry-category-meta p.category-meta,body.blogtype-2 #content .post .entry-category-meta p.category-meta,body.blogtype-3 #content .post .entry-category-meta p.category-meta,body.blogtype-4 #content .post .entry-category-meta p.category-meta{display:inline-block;margin:0;padding:0}.entry-category-meta a:focus{text-decoration:underline}.entry-category-meta a,.entry-category-meta a:active{text-decoration:none}.post img{max-width:100%;height:auto}.post img.alignleft{margin:0 .5em .5em 0}.post img.alignright{margin:0 0 .5em .5em}span.captioned_image{display:block;background:#eee;margin:7px 0;border:1px solid #B5BFB2;max-width:99%;height:auto}span.captioned_image.aligncenter{margin:.5em auto 0}span.captioned_image.alignleft{margin-right:.5em}span.captioned_image.alignright{margin-left:.5em}p>span.textblock:first-child>span.captioned_image{display:inline-block;vertical-align:top;margin-top:0}span.wp-caption{display:block;text-align:center;padding:0;margin:10px 10px 0;line-height:0}.post small.wp-caption-text{display:block;text-align:center;padding:0;margin:10px;font-family:sans-serif}dl.gallery-item{margin-left:0;margin-right:0}.gallery .wp-caption-text{margin-top:.3em;font-size:80%;line-height:1.3;text-align:center;font-family:sans-serif}#content ul.image_link,.content ul.image_link{margin:2em 0 0;padding:0;list-style-type:none}ul.image_link .alignright h4{text-align:right}ul.image_link .alignleft h4{text-align:left}.image_attachment h2.post_title>a{font-size:60%}.image_attachment h2.post_title span{display:block}p.back_button{margin-top:-1em;margin-bottom:2em}p.back_button a.button{font:400 12px/20px Arial,Tahoma,Verdana,sans-serif}div.the_image_attachment{margin:1em 0 1.3em;padding:0}p.image_attachment_wrap{text-align:center;margin:0;padding:0;line-height:0}div.image_attachment_caption{text-align:center;margin:0 3em;padding:0 0 .5em;font-family:sans-serif}div.image_attachment_caption p{margin:.3em 0 .5em;line-height:1.5}.wp-audio-shortcode{margin:2em auto}.single.single-format-chat .post p{font-family:monospace}.single.single-format-chat .post p.postmetadata{font-family:sans-serif}h3.comments_hl{margin:2em 0 0;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD}.all_comments_listing .page_li>h4{font-family:sans-serif;font-weight:400;font-size:80%;padding:6px;background-color:#d8d8d8;color:#000}.pointer{cursor:pointer}.all_comments_listing{margin:0;padding:0}.all_comments_listing li>h3{font-size:80%;padding:4px 6px;margin:0;line-height:1.9;background-color:#ddd}.all_comments_listing li>h3:hover{background-color:#ccc}.all_comments_listing li>h3 img.avatar{margin:0 4px 0 0;vertical-align:middle}.all_comments_listing>li{list-style:none;padding:0}.all_comments_listing ul.item_ul{margin:0}.all_comments_listing ul.item_ul>li{list-style:none;padding:0;background-color:#eee}.all_comments_listing ul.item_ul .comment_wrapper{padding:1.5em 1em;border-top:1px solid #ddd}.all_comments_listing ul.item_ul .comment-content{margin-left:0;margin-right:0}.all_comments_listing .comment_meta{font-size:80%;font-family:sans-serif;text-transform:uppercase;color:#666}.all_comments_listing .comment_meta a{color:#666}.archives_search_form{margin:-2em 0 2em;padding:2% 0}.archives_search_form label{font-size:80%;font-family:sans-serif;text-transform:uppercase}.archives_by_month h3,.categories h3,.tags h3{margin:2em 0 0;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD}.archives_by_month ul,.categories ul,.tags ul{margin:0;padding:0}.archives_by_month ul li,.categories ul li,.tags ul li{list-style:none}.archives_by_month ul li a,.categories ul li a,.tags ul li a,.tags ul li.no_tags{display:block;font-family:sans-serif;font-weight:400;font-size:80%;padding:6px;background-color:#ddd;color:#000;text-decoration:none}.archives_by_month ul li a:hover,.categories ul li a:hover,.tags ul li a:hover{background-color:#eee;color:#000}ul#content-tabs,ul#content-tabs li h2 a,ul#content-tabs li h2 a:hover{background-color:#bdbdbd}.tags ul li a{font-size:80%!important}.categories ul.children{margin-left:2em}ul#content-tabs{margin:0;padding:0;height:32px;z-index:1000;position:absolute;top:0;left:0;width:100%}ul#content-tabs li{list-style:none;float:left;width:33%;text-align:center;margin:0;padding:0}ul#content-tabs li#original_header{width:34%}ul#content-tabs li h2{font-size:16px;line-height:1;margin:0;padding:0;height:24px}ul#content-tabs li h2 a{display:block;padding:8px 0;text-decoration:none;color:#000}ul#content-tabs li.default-content-tab h2 a{background-color:#fff}#page_wrapper.with-content-tabs{margin-top:32px}#literal,#original{margin:0 12%;padding:0}#content div.version_info,.content div.version_info{margin:-2em 0 1.6em;background:#EFEFEF;border-top:1px solid #B5BFB2;border-bottom:1px solid #B5BFB2;color:red}#content div.version_info ul,#content div.version_info ul li,.content div.version_info ul,.content div.version_info ul li{list-style:none}#content div.version_info ul,.content div.version_info ul{margin:0;padding:0;overflow:auto}#content div.version_info ul li,.content div.version_info ul li{margin:0;padding:0}#content div.version_info ul li.newer_version,.content div.version_info ul li.newer_version{float:right;text-align:right;width:50%}#content div.version_info ul li.older_version,.content div.version_info ul li.older_version{width:50%}#content div.version_info a,.content div.version_info a{padding:6px;font-family:sans-serif;font-size:.7em;font-weight:400;display:block;line-height:1;text-decoration:none;text-transform:uppercase}#content div.version_info a:hover,.content div.version_info a:hover{color:#222}h3.author_pages_heading{margin:2em 0 0;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD}ul.author_pages{margin:0;padding:0}ul.author_pages li{list-style:none}ul.author_pages li a{display:block;font-family:sans-serif;font-weight:400;padding:6px;background-color:#ddd;color:#000;text-decoration:none;font-size:80%!important}ul.author_pages li a:hover{background-color:#eee;color:#000}.post-identifier{margin:0;border-bottom:1px solid #ddd;padding:6px;background:#EFEFEF}.post-identifier img{float:left;margin-right:4px}.post-identifier cite{text-transform:uppercase;display:block;font-family:sans-serif;font-weight:400;font-style:normal;font-size:.8em;line-height:1}#toc_sidebar .sidebar_minimiser .post-identifier cite a,#toc_sidebar .sidebar_minimiser .post-identifier cite a:active,#toc_sidebar .sidebar_minimiser .post-identifier cite a:hover,#toc_sidebar .sidebar_minimiser .post-identifier cite a:link,#toc_sidebar .sidebar_minimiser .post-identifier cite a:visited{display:inline;font-weight:400;text-decoration:none;background:0 0;padding:0;margin:0}.post_activity_date{margin-top:.3em;margin-bottom:0;display:block;color:#000;font-size:.7em;line-height:1.5;font-family:sans-serif;font-style:normal;text-decoration:none}#toc_sidebar .sidebar_minimiser ul li a.post_activity_link{border-bottom:6px solid #ccc}#tern_members .tern_members_search{padding:0 0 20px}#tern_members .tern_members_view{margin-bottom:0;font-family:sans-serif;text-transform:uppercase;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD;border:none}#tern_members .tern_wp_members_list li{height:auto;padding-top:0;list-style:none}html>body #tern_members .tern_wp_members_list li{height:auto;min-height:0}#tern_members .tern_wp_members_list{margin:0;padding:0}#tern_members .tern_wp_members_list li .tern_wp_member_info a{display:block;font-family:sans-serif;font-weight:400;padding:6px;background-color:#ddd;color:#000;text-decoration:none;font-size:80%!important}#tern_members .tern_wp_members_list li .tern_wp_member_info a:hover{background-color:#eee;color:#000}#tern_members .tern_members_alpha span{font-size:inherit;font-style:italic}#tern_members .tern_members_alpha{font-family:sans-serif;text-transform:uppercase;font-size:80%;border:none}.tern_members_alpha a{padding:0 3px;margin-right:5px;background-color:#ddd;text-decoration:none;color:#222;font-family:sans-serif}.tern_members_alpha a:hover{background-color:#eee}#content div.zp-Zotpress,.content div.zp-Zotpress{margin-top:1em;padding-top:1em;border-top:none}.csl-entry{line-height:1.6;font-size:80%}.footnotes ol,.simple-footnotes ol,ol.footnotes{font-family:sans-serif}.post ol.footnotes{font-size:inherit;color:inherit}.simple-footnotes{font-family:sans-serif}.footnotes ol li:not(.list_commenticon),.post ol.footnotes li:not(.list_commenticon),.simple-footnotes ol li:not(.list_commenticon){font-size:.8em}.simple-footnotes p.notes{font-size:1em;font-weight:700}#content a.simple-footnote,#content sup a.footnote-link,#content sup.footnote,.content a.simple-footnote,.content sup a.footnote-link,.content sup.footnote{font-weight:700;font-family:sans-serif;text-decoration:none}#content a.simple-footnote sup,#content sup a.footnote-link,#content sup.footnote a,.content a.simple-footnote sup,.content sup a.footnote-link,.content sup.footnote a{padding:3px 5px;background-color:#fdd;text-decoration:none;font-size:70%;font-weight:700;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px}.footnote-link.footnote-back-link,.footnotereverse a,.simple-footnotes li>a{text-decoration:none}.footnotereverse a,.simple-footnotes li>a{vertical-align:top}.footnote-link.footnote-back-link{vertical-align:baseline;margin-left:5px;margin-right:5px}#content a.simple-footnote sup,.content a.simple-footnote sup{font-size:60%}.post hr{margin:20px 0 8px;padding-left:7px;padding-right:7px;color:#999;background-color:#999;height:1px;border:none}#content div.sharedaddy div.sd-block,.content div.sharedaddy div.sd-block{padding-top:1.5em}p.comment-subscription-form{font-size:70%;margin:.5em 0;font-family:sans-serif;text-transform:uppercase}.feature-burry-comments,.feature-bury-comments{float:right;clear:right;line-height:1;margin-left:2%}#comments_in_page_wrapper .feature-burry-comments,#comments_in_page_wrapper .feature-bury-comments{line-height:.8;margin-left:2%}.feature-burry-comments a.feature-comments,.feature-bury-comments a.feature-comments{padding:0;font-size:70%;text-transform:uppercase;font-family:sans-serif;color:#bbb;text-decoration:none}.comment_tagger_select2_container h5.comment_tagger_select2_heading,.qmt-categories{font-size:80%}.qmt-categories h4{margin:2em 0 0;padding:2%;font-weight:700;color:#222;background-color:#BDBDBD}.qmt-categories ul{margin:0;padding:0}.qmt-categories ul li{list-style:none}.qmt-categories ul li label{display:block;font-family:sans-serif;font-weight:400;padding:6px;background-color:#ddd;color:#000;text-decoration:none}.qmt-categories ul li label:hover{cursor:pointer;background-color:#eee;color:#000}.qmt-categories ul ul{margin-left:2em}.single-bp_doc #respond{margin-top:0}body>img{float:left}.comment_tagger_select2_container{padding:5px 0}.comment_tagger_select2_container p.comment_tagger_select2_description{font-size:60%;margin:.2em 0;font-family:sans-serif;text-transform:uppercase;line-height:1.3}#respond .select2-container--default .select2-selection--multiple,.select2-dropdown{border:1px solid #dedede}#respond .select2-container--default .select2-search--inline .select2-search__field{-webkit-appearance:textfield}.comment_tagger_tags{font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:.3em 0}.comment_tagger_tags p{margin:0}.comment_tagger_tag_link:focus{text-decoration:underline}.comment_tagger_tag_link,.comment_tagger_tag_link:active{text-decoration:none}body.buddypress.group-sites #blogs-list li{padding:15px}body.group-admin.group-sites #buddypress .standard-form{padding:0}.standard-form .bpgsites_group_linkage{border:1px solid #eee;padding:0;clear:none;float:left;width:70%;margin-top:1em}.standard-form h5.bpgsites_group_linkage_heading{padding:.5em;line-height:1;background-color:#fbfbfb;font-size:80%;color:#666}.standard-form .bpgsites_group_linkages{margin:0;padding:1em;border-top:1px solid #eee;border-bottom:1px solid #eee}body.group-admin.group-sites #blogs-list ol.bpgsites_group_linkages_list li{padding:5px;font-family:sans-serif;font-size:80%}.standard-form .bpgsites_group_linkages h6{margin-bottom:.6em}.standard-form .bpgsites_group_linkages_invite{padding:1em}#item-body .bpgsites_group_linkages_invite p{margin-top:.2em}#item-body .bpgsites_group_linkages_invite p.bpgsites_invite_actions{padding:0}.standard-form .bpgsites_linked_group{display:block}.standard-form label.bpgsites_linked_group_label{display:inline-block;cursor:pointer;margin:0}#bpgsites-dir-list ul#blogs-list>li{padding:15px}.select2-results__option{font-family:sans-serif;font-size:80%}.select2_results_group_description,.select2_results_group_name{margin-left:38px}.select2_results_group_description{color:#666;margin-top:3px}.select2-container{font-family:sans-serif}.select2-container .selection{font-size:80%}body.group-admin.group-sites .standard-form .bpgsites_group_linkages_pending{margin:0;border:none;font-family:sans-serif}.bpgsites_group_linkages_pending_heading{margin-bottom:1em}.bpgsites_invite_received{font-size:80%;margin-right:1em}.commentpress_jstor p.commentpress_jstor_trigger{padding:2%;font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:0;background-color:#8FB7D3;color:#fff}.commentpress_jstor p.commentpress_jstor_trigger:hover{cursor:pointer;background-color:#97CFEF}.commentpress_jstor p.commentpress_jstor_triggered:hover{cursor:default;background-color:#8FB7D3}.commentpress_jstor .comment-title a{text-decoration:none;font-family:sans-serif;font-weight:700}.commentpress_jstor .commentpress_jstor_spinner{font-size:70%;margin:0;padding:2% 2% 1%;background-color:#eee}.commentpress_jstor ol,.commentpress_jstor ol li{padding:0;background-color:#eee}.commentpress_jstor ol{margin:0}.commentpress_jstor .comment-content{margin-top:2%}.commentpress_jstor .comment-not-found{padding:2%;margin:0;font-size:80%;color:#ca0000;text-transform:uppercase;font-family:sans-serif;background-color:#eee}.cp_alert_text{font-family:sans-serif;line-height:1.6em;font-size:90%;color:red}.comment-assign{display:none}.comment-assign:hover{cursor:move}.comment-content.comment-orphan{background-color:#F5B0A6!important}.cp_feature_image{position:relative;line-height:0}#wp-link-wrap #link-options,#wp-link-wrap .howto{font-size:13px;line-height:1.5}.cp_feature_image img.wp-post-image{width:100%;height:auto}.cp_feature_image .cp_featured_title{width:100%;background:#fff;background:rgba(255,255,255,.66);position:absolute;bottom:0}.cp_feature_image .cp_featured_title .cp_featured_title_inner{padding:2% 12%}.cp_feature_image .cp_featured_title .cp_featured_title_inner h2.post_title{margin:0}.cp_feature_image .cp_featured_title .cp_featured_title_inner div.search_meta{margin-top:0;margin-bottom:.3em}body .wp-dialog{font-family:sans-serif}@media screen and (max-width:782px){html body #wpadminbar{z-index:99999!important}}body.tinymce-4.mce-fullscreen #header,body.tinymce-4.mce-fullscreen #sidebar,body.tinymce-4.mce-fullscreen #switcher{z-index:500}body.tinymce-4.mce-fullscreen #wpadminbar{z-index:100}body.tinymce-4 .mce-toolbar .mce-btn button:hover{background:0 0;filter:none;border:none;color:#333;outline:0;text-decoration:none}body.tinymce-4 .wp-editor-container{border:1px solid #dedede}body.tinymce-4 #commentform #wp-comment-wrap textarea{width:100%;margin:0}.accessibly-hidden,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}#wp-link-wrap{font-family:"Open Sans",sans-serif;color:#444}#wp-link-wrap .howto{color:#666;font-style:italic;display:block}#wp-link-wrap input[type=text],#wp-link-wrap input[type=password],#wp-link-wrap input[type=checkbox],#wp-link-wrap input[type=color],#wp-link-wrap input[type=date],#wp-link-wrap input[type=datetime],#wp-link-wrap input[type=datetime-local],#wp-link-wrap input[type=email],#wp-link-wrap input[type=month],#wp-link-wrap input[type=number],#wp-link-wrap input[type=search],#wp-link-wrap input[type=radio],#wp-link-wrap input[type=tel],#wp-link-wrap input[type=time],#wp-link-wrap input[type=url],#wp-link-wrap input[type=week],#wp-link-wrap select,#wp-link-wrap textarea{margin:1px;padding:3px 5px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out}#wp-link-wrap input[type=checkbox],#wp-link-wrap input[type=radio]{border:1px solid #b4b9be;background:#fff;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-4px 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}#wp-link-wrap input[type=checkbox]:checked:before,#wp-link-wrap input[type=radio]:checked:before{float:left;display:inline-block;vertical-align:middle;width:16px;font:400 21px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wp-link-wrap input[type=checkbox]:checked:before{content:'\f147';margin:-3px 0 0 -4px;color:#1e8cbe}#wp-link-wrap #search-panel{font-size:13px;line-height:1.4em}#wp-link-wrap #search-panel .alternate{background-color:#f9f9f9}#wp-link-wrap .submitbox .submitdelete{text-decoration:none;padding:1px 2px;color:#a00;font-size:13px}div.wp-link-input input.ui-autocomplete-input{font-family:"Open Sans",sans-serif;font-size:100%;width:250px;padding:4px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out}div.wp-link-input input:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}.wplink-autocomplete li{font-family:"Open Sans",sans-serif;font-size:80%;color:#444}@media screen and (max-width:782px){.mce-container div.wp-link-input{width:auto;max-width:none}.wplink-autocomplete li,div.wp-link-input input.ui-autocomplete-input{font-size:20px}}body.fee #content{padding-top:3%}body.fee .cp_feature_image{min-height:150px}body.fee-on .fee-thumbnail.fee-empty{min-height:0}body.fee-on .fee-insert-thumbnail{top:40px;left:12%}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title{position:relative;padding:6% 0 0}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner{padding:0 12%}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner h2.post_title{margin:1em 0 0}.fee-url{font-size:50%;text-transform:lowercase}.comment-backlink,body.fee .metabox_container label{text-transform:uppercase}.fee-url ins,body.fee.fee-on .fee-content-body,body.fee.fee-on .fee-title{background-color:#f4f4f4}body.fee.fee-on .fee-content-body.mce-edit-focus,body.fee.fee-on .fee-title.mce-edit-focus{background-color:transparent}body.fee .metabox_container{font-family:sans-serif;font-size:80%;padding:2%;background-color:#dadada}#container #navigation .paragraph_wrapper.editor_toggle_wrapper{display:block}.paragraph_wrapper.editor_toggle_wrapper .editor_toggle{margin:0 4%;padding:4% 0 5%}.cp_next_page_loading_wrapper{padding:40px 0}.page_wrapper+.page_wrapper{margin-top:60px}.comment-popover-holder,.popover-holder{position:absolute;z-index:9999999;display:none}.popover-holder-inner{position:absolute;width:300px;top:25px;left:-60px}.popover-holder-caret{background:url(../images/texthighlighter/highlight-caret.png) no-repeat;width:14px;height:7px;position:absolute;top:-6px;left:44px}.popover-holder-btn-left,.popover-holder-btn-right{display:inline-block;vertical-align:middle;float:left;padding:0 10px;border:1px solid #bbb;cursor:pointer;font-family:sans-serif;font-weight:700;color:#444;text-transform:uppercase;font-size:80%;line-height:2.6;-webkit-box-shadow:rgba(0,0,0,.1) 0 1px 3px;-moz-box-shadow:rgba(0,0,0,.1) 0 1px 3px;box-shadow:rgba(0,0,0,.1) 0 1px 3px;background:#eee}.popover-holder-btn-left{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;padding:0}.popover-holder-btn-right{border-left:none;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.comment-popover-holder-btn-left-quote,.popover-holder-btn-left-comment,.popover-holder-btn-left-quote{padding:.7em 10px}.comment-popover-holder-btn-left-quote:hover,.popover-holder-btn-left-comment:hover,.popover-holder-btn-left-quote:hover,.popover-holder-btn-right:hover{background:#ddd}.popover-holder-btn-left-comment{padding-right:10px}.popover-holder-btn-left-quote{padding-left:10px;border-left:1px solid #999}.inline-highlight{background:rgba(255,252,105,.3);padding:4px 0}.inline-highlight-per-comment{background:rgba(255,225,105,.3);padding:4px 0}.comment-backlink{font-size:70%;text-decoration:none;font-family:sans-serif;float:right;margin-left:2%}#footer .widget .widget-title{display:none}.sidebar_container .widget{font-family:sans-serif}.sidebar_container .widget_calendar .widget_wrapper,.sidebar_container .widget_search .widget_wrapper,.sidebar_container .widget_text .widget_wrapper{margin:10px}.sidebar_container .widget.widget_archive ul,.sidebar_container .widget.widget_categories ul,.sidebar_container .widget.widget_meta ul,.sidebar_container .widget.widget_pages ul{margin:0;padding:0}.sidebar_container .widget.widget_archive ul li a:focus,.sidebar_container .widget.widget_archive ul li a:hover,.sidebar_container .widget.widget_categories ul li a:focus,.sidebar_container .widget.widget_categories ul li a:hover,.sidebar_container .widget.widget_meta ul li a:focus,.sidebar_container .widget.widget_meta ul li a:hover,.sidebar_container .widget.widget_pages ul li a:focus,.sidebar_container .widget.widget_pages ul li a:hover{background-color:#fff;color:#333}.sidebar_container .widget.widget_archive ul li a,.sidebar_container .widget.widget_archive ul li a:active,.sidebar_container .widget.widget_categories ul li a,.sidebar_container .widget.widget_categories ul li a:active,.sidebar_container .widget.widget_meta ul li a,.sidebar_container .widget.widget_meta ul li a:active,.sidebar_container .widget.widget_pages ul li a,.sidebar_container .widget.widget_pages ul li a:active{display:block;font-family:sans-serif;font-weight:400;font-size:100%;padding:8px 10px;text-decoration:none;background-color:transparent;color:#333}.sidebar_container .widget.widget_archive select,.sidebar_container .widget.widget_categories select{margin:10px}.sidebar_container .widget.widget_archive ul li,.sidebar_container .widget.widget_categories ul li{list-style:none}.sidebar_container .widget.widget_recent_entries ul{margin:0;padding:0}.sidebar_container .widget.widget_recent_entries ul li{padding:8px 10px}.sidebar_container .widget.widget_recent_entries .post-date{font-style:italic;padding:0 1em}.sidebar_container .widget.widget_recent_entries a:focus,.sidebar_container .widget.widget_recent_entries a:hover{text-decoration:underline}.sidebar_container .widget.widget_recent_entries a,.sidebar_container .widget.widget_recent_entries a:active{color:#333;text-decoration:none}.sidebar_container .widget.widget_recent_comments ul{margin:0;padding:0}.sidebar_container .widget.widget_recent_comments ul li{padding:8px 10px}.sidebar_container .widget.widget_recent_comments ul li a:focus,.sidebar_container .widget.widget_recent_comments ul li a:hover{text-decoration:underline;background-color:transparent}.sidebar_container .widget.widget_recent_comments ul li a,.sidebar_container .widget.widget_recent_comments ul li a:active{font-family:sans-serif;font-weight:400;font-size:100%;text-decoration:none;background-color:transparent;color:#333}.sidebar_container .widget ul.menu{margin:0;padding:0}.sidebar_container .widget ul.menu li{list-style:none}.sidebar_container .widget ul.menu li a:focus,.sidebar_container .widget ul.menu li a:hover{background-color:#fff;color:#333}.sidebar_container .widget ul.menu li a,.sidebar_container .widget ul.menu li a:active{display:block;font-family:sans-serif;font-weight:400;font-size:100%;padding:8px 10px;text-decoration:none;background-color:transparent;color:#333}.sidebar_container .widget ul.sub-menu{margin:0 0 0 1.2em;padding:0}#footer .widget_nav_menu,#footer div.commentpress-footer-nav-menu{text-align:center}#footer .widget_nav_menu ul.menu,#footer div.commentpress-footer-nav-menu ul.menu{list-style:none;margin:1.25em 0;padding:0;line-height:1.8}#footer .widget_nav_menu ul.menu li,#footer div.commentpress-footer-nav-menu ul.menu li{list-style:none;display:inline-block;padding-right:5px}#footer .widget_nav_menu ul.menu li:after,#footer div.commentpress-footer-nav-menu ul.menu li:after{content:"|";display:inline;padding-left:10px}#footer .widget_nav_menu ul.menu li:last-child:after,#footer div.commentpress-footer-nav-menu ul.menu li:last-child:after{display:none}#footer .widget_nav_menu ul.menu a:focus,#footer .widget_nav_menu ul.menu a:hover,#footer div.commentpress-footer-nav-menu ul.menu a:focus,#footer div.commentpress-footer-nav-menu ul.menu a:hover{text-decoration:underline}#footer .widget_nav_menu ul.menu a,#footer .widget_nav_menu ul.menu a:active,#footer div.commentpress-footer-nav-menu ul.menu a,#footer div.commentpress-footer-nav-menu ul.menu a:active{color:#333;text-decoration:none}#footer .commentpress_widget{margin:1.25em 0;line-height:1.8}@media all and (max-width:1400px){#content_container{left:0}#navigation{width:33%;left:-33%}#wrapper{width:67%}#sidebar{width:33%;right:0}.active-nav #content_container{left:33%}.active-nav #navigation,.active-sidebar #content_container{left:0}.active-nav #wrapper{width:67%}.active-nav #sidebar{right:-33%}.active-sidebar #navigation{left:-33%}#footer,#header,#switcher{left:0;width:67%}.active-sidebar #wrapper{width:67%}.active-sidebar #sidebar{right:0}#footer{margin-bottom:50px}.active-nav #footer,.active-nav #header,.active-nav #switcher{width:67%;left:33%}.active-sidebar #footer,.active-sidebar #header,.active-sidebar #switcher{width:67%;left:0}h3.activity_heading{font-size:1em;padding:8px}.comments_container>h3{font-size:1em}.comments_container>h3 a,.comments_container>h3 a:active,.comments_container>h3>span,h3.nocomments{padding:8px}.comments_container>h3.nocomments>span{padding:0}#toc_sidebar .sidebar_minimiser ul li a,.sidebar_container .widget ul.menu li a,.sidebar_container .widget.widget_archive ul li a,.sidebar_container .widget.widget_categories ul li a,.sidebar_container .widget.widget_recent_comments ul li,.sidebar_container .widget.widget_recent_entries ul li{font-size:100%;padding:8px 10px}.comment-content,.post{font-size:110%}a.button,button,div.generic-button a,input[type=button],input[type=reset],input[type=submit],ul.button-nav li a{font-size:100%;padding-top:8px;padding-bottom:8px}.reply a,.reply a:active{font-size:80%;padding-top:.8em;padding-bottom:.8em}p.comment-subscription-form{font-size:75%;margin:1.5em 0}}@media all and (max-width:1020px){#sidebar,.active-nav #sidebar{right:-50%}#footer{text-align:center}#content_container{left:0}#navigation{left:-40%;width:40%}#wrapper{width:100%}#sidebar{width:50%}.active-nav #content_container{left:40%}.active-nav #navigation{left:0}.active-nav #wrapper{width:100%}.active-sidebar #content_container{left:-50%}.active-sidebar #navigation{left:-100%}.active-sidebar #wrapper{width:100%}.active-sidebar #sidebar{right:0}#footer,#header,#switcher{width:100%;left:0}.active-nav #footer,.active-nav #header,.active-nav #switcher{width:100%;left:40%}.active-sidebar #footer,.active-sidebar #header,.active-sidebar #switcher{width:100%;left:-50%}#toc_sidebar .sidebar_minimiser ul li a,.sidebar_container .widget ul.menu li a,.sidebar_container .widget.widget_archive ul li a,.sidebar_container .widget.widget_categories ul li a,.sidebar_container .widget.widget_recent_comments ul li,.sidebar_container .widget.widget_recent_entries ul li{font-size:1em;padding:15px 10px}.comment-content,.post{font-size:120%}#blogs-dir-list,#groups-dir-list,#members-dir-list,.activity{font-size:110%}.comments_container>h3 a,.comments_container>h3 a:active,.comments_container>h3>span,h3.activity_heading,h3.nocomments{padding:15px 10px}}@media all and (max-width:600px){#content_container{left:0}.active-nav #content_container,.active-nav #header,.active-nav #switcher{left:70%}.active-sidebar #content_container,.active-sidebar #header,.active-sidebar #switcher{left:-70%}.active-nav #sidebar{right:-70%}.active-sidebar #sidebar{right:0}#navigation{width:70%;left:-70%}#wrapper{width:100%}#header,.comment-content,.post{font-size:80%}#blogs-dir-list,#groups-dir-list,#members-dir-list,.activity{font-size:90%}#title h1{line-height:1.2}#header #tagline{font-size:.9em;padding-top:0;padding-bottom:8px}.search_result h3,h2.post_title{font-size:1.5em;line-height:1.5}.cp_featured_title_inner h2.post_title{line-height:1.5}#toc_sidebar .sidebar_header h2,ul#sidebar_tabs li a{font-size:16px}#content,.content{padding:12% 0}.reply a,.reply a:active{font-size:70%}#sidebar{width:70%;right:-70%}.active-nav #footer{left:70%}.active-sidebar #footer{left:-70%}.comments_container>h3 span.source_block{display:block}}
     1html,legend{color:#000}html{background-color:#fff;font-size:100%;overflow-y:scroll;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%}blockquote,body,code,dd,div,dl,dt,fieldset,form,h1,h2,h3,h4,h5,h6,legend,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:400}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400}q:after,q:before{content:''}abbr,acronym{border:0;font-variant:normal;border-bottom:1px dotted #000;cursor:help}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}input,select,textarea{font-family:inherit;font-size:inherit;font-weight:inherit}dt,h1,h2,h3,h4,h5,h6,strong,th{font-weight:700}h1{font-size:138.5%}h2{font-size:123.1%}h3{font-size:108%}h1,h2,h3{margin:1em 0}address,caption,cite,dfn,em,q,th,var{font-style:italic}blockquote,dl,ol,ul{margin:1em}dl,ol,ul{margin-left:2em}ol{list-style:decimal}ul{list-style:disc}dl dd{margin-left:1em}td,th{border:1px solid #000;padding:.5em}th{text-align:center}caption{margin-bottom:.5em;text-align:center}address,fieldset,p,pre,table{margin-top:.7em;margin-bottom:.7em}li,p{-ms-word-wrap:break-word;word-wrap:break-word}ins,u{text-decoration:underline}code,kbd,samp,tt{font-family:monospace}input[type=password],input[type=text],textarea{width:12.25em}a:focus{outline:0}.blockquote-in-para,blockquote{margin-left:0;margin-right:0;padding:0 15px;border-left:1px solid #ddd;font-style:italic}.blockquote-in-para{display:block;margin:.7em 0}.alignright{float:right}.alignleft{float:left}.alignnone{float:none}.aligncenter{display:block;margin:0 auto}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}#switcher ul li a.navigation-button:before,#switcher ul li a:before{content:"\f333"}* html .clearfix{height:1%}.clearfix{display:block}.off-left{position:absolute;left:-9999px;width:900px}a.skip,a.skip:hover,a.skip:visited{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}a.skip:active,a.skip:focus{left:6px;top:7px;height:auto;width:auto;display:block;font-size:14px;font-weight:700;padding:15px 23px 14px;background:#f1f1f1;color:#0073aa;z-index:100000;line-height:normal;text-decoration:none;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6)}a.button,button,div.generic-button a,input[type=button],input[type=reset],input[type=submit],ul.button-nav li a{background:#fff;background:-moz-linear-gradient(top,#fff 0,#ededed 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#ededed));background:-webkit-linear-gradient(top,#fff 0,#ededed 100%);background:-o-linear-gradient(top,#fff 0,#ededed 100%);background:-ms-linear-gradient(top,#fff 0,#ededed 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );background:linear-gradient(top,#fff 0,#ededed 100%);border:1px solid #ccc;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#777;cursor:pointer;font:400 12px/20px Arial,Tahoma,Verdana,sans-serif;outline:0;padding:4px 10px;text-align:center;text-decoration:none;line-height:14px;text-transform:none}a.button:focus,div.generic-button a:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus,ul.button-nav li a:focus,ul.button-nav li.current a:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}a.button:active,a.button:hover,button:active,button:hover,div.generic-button a:active,div.generic-button a:hover,input[type=button]:active,input[type=button]:hover,input[type=reset]:active,input[type=reset]:hover,input[type=submit]:active,input[type=submit]:hover,ul.button-nav li a:active,ul.button-nav li a:hover,ul.button-nav li.current a,ul.button-nav li.current a:active{background:#ededed;background:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(100%,#e0e0e0));background:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background:-ms-linear-gradient(top,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0', GradientType=0 );background:linear-gradient(top,#fff 0,#e0e0e0 100%);border:1px solid #bbb;color:#555;outline:0;text-decoration:none;text-transform:none;-webkit-box-shadow:none;box-shadow:none}#switcher ul li a,.selected_para.selected_dropzone{background-color:#eee}.selected_para{color:#ca0000}#navigation,#sidebar{position:fixed;z-index:499;background-color:transparent;float:left}#content .textblock.selected_para span.commenticonbox,#content .textblock.selected_para span.para_marker,#content .textblock.textblock-in span.commenticonbox,#content .textblock.textblock-in span.para_marker{display:inline-block}pre{font-family:monospace;overflow:auto;background-color:#f8f8f8;border:1px solid #eee;padding:.6em;line-height:1.4em}table{border:0;border-collapse:collapse;border-spacing:0;border-bottom:1px solid #e6e6e6;width:100%}table td{border:0;border-top:1px solid #e6e6e6}table th{border:0;border-top:1px solid #e6e6e6;font-weight:700;font-style:normal;text-align:left}#content embed,#content iframe{max-width:100%}#container{width:100%;overflow:hidden}img.cp_logo_image{float:left;padding:12px 10px 0 72px}#header #tagline{font-style:normal;font-size:1em;color:#999;padding-top:2px;letter-spacing:1px}#switcher{z-index:1000;position:fixed;width:54%;left:16%}#switcher ul{margin:0;padding:0;list-style:none}#switcher ul li{list-style:none;height:50px;position:absolute;top:12px;width:50px}#switcher ul li.navigation-item{left:12px}#footer,#header,.active-menu #content_container,.active-sidebar #content_container{left:16%}#switcher ul li.content-item{right:136px}#switcher ul li.comments-item{right:74px}.not_commentable #switcher ul li.comments-item{display:none}#switcher ul li.activity-item{right:12px}#switcher ul li a{position:relative;display:block;width:22px;height:22px;padding:14px;text-align:center;text-indent:-9999px;border-radius:25px;font-size:20px;line-height:1;font-weight:700;font-family:sans-serif;text-transform:uppercase;text-decoration:none;color:#333}#switcher ul li a:active,#switcher ul li a:focus,#switcher ul li a:hover{color:#fff;background-color:#ddd}#switcher ul li a:before{font-family:dashicons;display:block;height:22px;padding:14px;position:absolute;top:0;left:0;width:20px;text-indent:0;font-size:110%}#switcher ul li a.content-button:before{content:"\f491"}#switcher ul li a.comments-button:before{content:"\f101"}#switcher ul li a.activity-button:before{content:"\f488"}#content_container{position:relative;left:16%;margin-top:0;-webkit-transition:left .2s ease;-moz-transition:left .2s ease;-o-transition:left .2s ease;-ms-transition:left .2s ease;transition:left .2s ease}#navigation{width:16%;top:0;left:0}body.admin-bar #navigation{top:32px}#wrapper{float:left;position:relative;width:54%;z-index:500}#sidebar{width:30%;top:0;right:0}#footer,#header{position:relative}body.admin-bar #sidebar{top:32px}.outer-shadow-ten-px{-webkit-box-shadow:#888 0 0 10px;-moz-box-shadow:#888 0 0 10px;-khtml-box-shadow:#888 0 0 10px;box-shadow:#888 0 0 10px}.outer-shadow-fifteen-px{-webkit-box-shadow:#888 0 0 15px;-moz-box-shadow:#888 0 0 15px;-khtml-box-shadow:#888 0 0 15px;box-shadow:#888 0 0 15px}#content_container>div,#footer,#header,#switcher{-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;-ms-transition:all .2s ease;transition:all .2s ease}#footer{width:54%;margin-bottom:0;text-align:center}#header{width:54%;margin:0;min-height:74px}#page_title{margin:0 136px 0 72px}#page_wrapper,.page_wrapper{background-color:#fff;min-height:620px;position:relative}.page_navigation ul,.page_navigation ul li{margin:0;padding:0;list-style:none}.page_navigation ul li{position:absolute;width:87px}.page_navigation ul li.alignright{top:0;right:0}.page_navigation ul li.alignleft{top:0;left:0}.page_nav_lower{z-index:501}.page_nav_lower .page_navigation ul li.alignleft,.page_nav_lower .page_navigation ul li.alignright{top:auto;bottom:0}.page_navigation ul li.alignleft a,.page_navigation ul li.alignright a{display:block;font-family:sans-serif;height:92px;color:#fff;text-align:center;font-size:1em;text-transform:uppercase;text-decoration:none;text-indent:-4000px}.page_navigation ul li a:link{overflow:hidden!important;background-position:left top!important;background-repeat:no-repeat}.page_navigation ul li a:active,.page_navigation ul li a:focus,.page_navigation ul li a:hover{overflow:hidden!important;background-position:left -92px!important;background-repeat:no-repeat}.page_navigation ul li.alignright a{background:url(../images/nav/page-curl-top-right.jpg)}.page_navigation ul li.alignleft a{background:url(../images/nav/page-curl-top-left.jpg)}.page_nav_lower .page_navigation ul li.alignright a{background:url(../images/nav/page-curl-bottom-right.jpg)}.page_nav_lower .page_navigation ul li.alignleft a{background:url(../images/nav/page-curl-bottom-left.jpg)}.page_navigation ul li.alignleft a:hover,.page_navigation ul li.alignright a:hover{color:#ccc;text-indent:-4000px}#content,.content{margin:0 12%;padding:6% 0}#sidebar_inner,#toc_sidebar{margin:0;background-color:transparent}#sidebar_inner{position:relative;margin-left:0}#toc_sidebar{margin-right:0}#toc_sidebar .sidebar_header{text-align:center;background-color:#ccc;display:none}#toc_sidebar .sidebar_header h2{font-size:20px;line-height:1;margin:0;padding:12px 0 0;height:32px}#toc_sidebar .sidebar_minimiser ul{margin:0;padding:0}#toc_sidebar .sidebar_minimiser ul.children,#toc_sidebar .sidebar_minimiser ul.sub-menu{margin:0 0 0 1.2em;padding:0}#toc_sidebar .sidebar_minimiser ul li{list-style:none}#toc_sidebar .sidebar_minimiser ul li a{display:block;font-family:sans-serif;font-weight:400;font-size:80%;padding:6px;background-color:transparent;color:#333;text-decoration:none}#toc_sidebar .sidebar_minimiser ul li a:focus,#toc_sidebar .sidebar_minimiser ul li a:hover{background-color:#fff;color:#000}#toc_sidebar .sidebar_minimiser ul#toc_list{padding:0;background-color:transparent}#toc_sidebar .sidebar_minimiser ul#nav li.active_page>a:focus,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_ancestor>a:focus,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_item>a:focus{background-color:#fff;color:#000;font-weight:400}#toc_sidebar .sidebar_minimiser ul#nav li.active_page>a,#toc_sidebar .sidebar_minimiser ul#nav li.active_page>a:active,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_ancestor>a,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_ancestor>a:active,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_item>a,#toc_sidebar .sidebar_minimiser ul#toc_list li.current_page_item>a:active{background-color:#fdd}h3.activity_heading{margin:0;font-size:80%;font-weight:700;padding:6px;background-color:#eee}#toc_sidebar .sidebar_minimiser{clear:both;padding:0}#activity_sidebar,#comments_sidebar{position:absolute;width:100%;clear:both;padding:0;background:#fff;z-index:2001}#comments_sidebar{z-index:2010}.cp_sidebar_activity #comments_sidebar{z-index:2001}.cp_sidebar_activity #activity_sidebar{z-index:2010}ul#sidebar_tabs{margin:0;padding:0;display:none}ul#sidebar_tabs h2{margin:0}ul#sidebar_tabs li{list-style:none;float:left;width:50%}ul#sidebar_tabs li a{font-size:20px;line-height:1;display:block;padding:12px 0;text-align:center;background-color:#ddd;height:20px;text-decoration:none;color:#000}ul#sidebar_tabs li a.active-tab,ul#sidebar_tabs li a:focus{background-color:#ccc}ul#sidebar_tabs li a:active,ul#sidebar_tabs li a:hover{background-color:#bbb;text-decoration:none}.sidebar_contents_wrapper{height:520px;overflow-y:scroll;padding:0;background-color:transparent;position:relative}#sidebar .sidebar_container .sidebar_header{display:none}.comments_container{padding:0}.comments_container>h3{margin:0;font-size:80%;font-weight:700;color:#222;background-color:#eee}.comments_container>h3:hover,h3.activity_heading:hover{background-color:#ddd}.comments_container>h3.nocomments:hover,.comments_container>h3.nocomments:hover span{background-color:#eee}h3.nocomments{color:#222}.comments_container>h3 a:focus,.comments_container>h3 a:hover{background-color:#ddd}.comments_container>h3 a,.comments_container>h3 a:active,.comments_container>h3>span{display:block;padding:6px;color:#222;text-decoration:none;text-transform:uppercase;background-color:#eee}.paragraph_wrapper{padding:0;background-color:transparent}#navigation .paragraph_wrapper:last-child{padding-bottom:12%}.reply_to_para p{font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:0}.reply_to_para p a{display:block;color:#000;text-decoration:none;padding:2%}ol.comment_activity,ol.commentlist{margin:0;padding:0;background-color:transparent}ol.comment_activity li,ol.commentlist li{list-style:none;padding:0}.flash-comment{background-color:red}.comment-wrapper,.comment-wrapper.background-highlight{background-color:transparent}ol.comment_activity li,ol.commentlist li.comment{background-color:transparent;padding:0}.comment-wrapper{padding:0 0 .5em}.comment-identifier{padding:2% 2% 0}.comment-identifier img{float:left;margin-right:4px}.comment-identifier cite{text-transform:uppercase;display:block;font-style:normal;font-family:sans-serif;font-size:.7em;line-height:1.5}.comment-identifier cite a:focus{text-decoration:underline}.comment-identifier cite a,.comment-identifier cite a:active{color:#000;text-decoration:none}p.comment_activity_date{margin:0}.comment_activity_link:focus,.comment_permalink:focus{text-decoration:underline}.comment_activity_link,.comment_activity_link:active,.comment_permalink,.comment_permalink:active{display:block;color:#000;font-size:.7em;line-height:1.5;font-family:sans-serif;font-style:normal;text-decoration:none}.comment_permalink_copy{display:block;width:1em;height:1em;float:left;margin:0 .3em 0 0}.comment_permalink_copy:before{font-family:dashicons;content:"\f103"}.comment-identifier .comment-edit a:focus{text-decoration:underline}.comment-identifier .comment-assign,.comment-identifier .comment-edit a,.comment-identifier .comment-edit a:active{text-transform:uppercase;font-family:sans-serif;color:#bbb;text-decoration:none}.comment-identifier .comment-assign,.comment-identifier .comment-edit{margin-left:2%;font-size:70%}.comment-content{clear:left;background-color:#fff;padding:1% 2% 1% 4%;margin:1% 2% 0;-moz-border-radius:0 20px;-khtml-border-radius:20px;-webkit-border-radius:0 20px;border-radius:0 20px;-khtml-border-top-left-radius:0;-khtml-border-bottom-right-radius:0}.comment-content ul li{list-style-type:disc;background:0 0}.comment-content ol li{list-style-type:decimal;background:0 0}.comment-content iframe{max-width:100%}.comment-content img{max-width:97%;height:auto}.reply{text-transform:uppercase;font-family:sans-serif;margin:0}.reply p{margin:0;padding:0}.reply a:focus{text-decoration:underline}.reply a,.reply a:active{font-size:70%;display:block;color:#000;text-decoration:none;padding:1% 2%;text-align:right}ol.children{margin:0 0 0 1.5em;padding:0}ol.children li.comment{background-color:transparent;padding:0}#respond{padding:2%;position:relative}div#respond>p{font-size:70%;text-transform:uppercase;font-family:sans-serif}#author_details,#comment_details{margin-bottom:.6em;margin-top:0}.author_is_logged_in{font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:0}.author_is_logged_in a:focus{text-decoration:underline}.author_is_logged_in a,.author_is_logged_in a:active{color:#000;text-decoration:none}.cancel-comment-reply p,p#respond_button{margin:0}#cancel-comment-reply-link:focus{text-decoration:underline}#cancel-comment-reply-link,#cancel-comment-reply-link:active{font-size:70%;text-transform:uppercase;font-family:sans-serif;color:#bbb;text-decoration:none;float:right}#commentform #author_details p{margin:.5em 0 0}#commentform #author_details input,#commentform textarea{width:90%}#commentform textarea{width:99%}#commentform #author_details label{text-transform:uppercase;font-family:sans-serif}#commentform #author_details input{font-family:sans-serif}#commentform #author_details p.author_not_logged_in{text-transform:uppercase}.req{color:#ca0000}.commentpress_comment_form_hidden a{text-decoration:none}#footer_inner p a:focus,#title h1 a:focus{text-decoration:underline}div#respond .subscribe_reloaded_insert{font-family:sans-serif;color:#666;padding:0;margin:15px 0;font-size:80%}#cpajax_error_msg{border:1px solid #E1CA82;border:#A71A1A;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-weight:400;margin:.6em 0;text-decoration:none;background:#DB1717;background-image:-webkit-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-moz-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:-o-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));background-image:linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,0));clear:left;color:#fff;font-size:90%;font-family:sans-serif;display:block;padding:.6em;line-height:1.5em}.comment-highlighted{background-color:#c2d8bc}.comment-fade{-webkit-transition:background-color 1s ease;-moz-transition:background-color 1s ease;-o-transition:background-color 1s ease;-ms-transition:background-color 1s ease;transition:background-color 1s ease;background-color:transparent}.notransition{-webkit-transition:none!important;-moz-transition:none!important;-o-transition:none!important;-ms-transition:none!important;transition:none!important}.comments_container>h3.heading-highlighted{background-color:#c2d8bc}.comments_container>h3.heading-highlighted.heading-fade{-webkit-transition:background-color 1s ease;-moz-transition:background-color 1s ease;-o-transition:background-color 1s ease;-ms-transition:background-color 1s ease;transition:background-color 1s ease;background-color:#BDBDBD}#comments_in_page_wrapper .comments_container>h3.general_comments_header,#comments_in_page_wrapper .comments_container>h3.nocomments{padding:6px;color:#222}#comments_in_page_wrapper .comments_container>h3.general_comments_header:hover{background-color:#BDBDBD}#comments_in_page_wrapper .comments_container>h3.general_comments_header>span{display:inline;padding:0}.post.general_comments #respond_wrapper{background-color:#eee}#document_search,#footer_inner{margin:0;background-color:transparent}#footer_inner{padding:12px 1%;font-size:80%;text-align:center;font-family:sans-serif}#footer_inner p{margin:0}#footer_inner p a,#footer_inner p a:active{color:#000;text-decoration:none}#document_search{padding:4%}#document_search label{position:absolute;visibility:hidden;clip:rect(0,0,0,0)}#document_search input#s{width:95%;padding:4px;margin-bottom:1em}body.commentpress_page #cp-multisite-options h3{font-size:1.2em;margin:30px 0 5px}body.commentpress_page #content .mu_register #setupform #cp-multisite-options label,body.commentpress_page #content .mu_register #setupform #cp-multisite-options p{color:#000;font-size:1em;margin-top:0;padding-top:0}p.hidden_page_url{display:none}h1,h2,h3,h4,h5,h6{font-family:sans-serif;text-transform:uppercase}#title h1{letter-spacing:1px;margin:0;padding:.5em 0 0}#title h1 a,#title h1 a:active{color:#000;text-decoration:none}.search_result h3,h2.post_title{font-size:2em;line-height:1.2;-ms-word-wrap:break-word;word-wrap:break-word}div.search_meta cite,div.search_meta p a,div.search_meta p a:active{font-size:.7em;line-height:1.5;display:block;font-style:normal;font-family:sans-serif}.search_result h3 a:focus,h2.post_title a:focus{text-decoration:underline}.search_result h3 a,.search_result h3 a:active,h2.post_title a,h2.post_title a:active{color:#000;text-decoration:none;word-wrap:break-word}div.search_meta{margin-top:-2em;margin-bottom:1.6em}.search_result{margin:2em 0;border-bottom:1px solid #eee}.post h2.post_title,.search_result h3{min-height:.2em}.search_result div.search_meta{margin-top:-2em}div.search_meta img{float:left;margin-right:8px}div.search_meta cite{text-transform:uppercase}div.search_meta cite a:focus{text-decoration:underline}div.search_meta cite a,div.search_meta cite a:active{color:#000;text-decoration:none}div.search_meta p{margin:0}div.search_meta p a:focus{text-decoration:underline}div.search_meta p a,div.search_meta p a:active{color:#000;text-decoration:none}.post{position:relative;line-height:1.6;z-index:510}.post span.para_marker{position:absolute;font-style:normal;font-weight:400;left:-36px;margin-top:0;width:36px;display:block}#content .post span.para_marker a,.content .post span.para_marker a{text-decoration:none;font-family:sans-serif;color:#000;font-size:.8em}.post span.commenticonbox{position:absolute;margin-top:5px;padding-right:20px;right:-44px;font-family:sans-serif;color:#000;font-size:1em;font-style:normal;font-weight:400;width:17px;padding-left:9px;cursor:pointer}span.commenticonbox a.no_comments{background:url(../images/icons/comment_add.png) no-repeat}span.commenticonbox a.has_comments{background:url(../images/icons/comment.png) no-repeat}span.commenticonbox a.para_permalink:focus{background-color:#fdd}span.commenticonbox a.para_permalink,span.commenticonbox a.para_permalink:active{display:block;float:left;width:17px;height:14px;text-indent:-9999px;text-align:left;cursor:pointer;font-style:normal;background-color:transparent}span.commenticonbox small.comment_count{position:absolute;float:right;padding:0 0 0 3px;line-height:1}#content .post span.para_marker a.js-hover span,span.commenticonbox small.comment_count.js-hover{font-weight:700}.blogtype-1 .post p,.post.overridden_type-1 p{position:relative}.blogtype-1 .post .wp-video,.post.overridden_type-1 .wp-video{display:inline-block}span.cp-audio-shortcode+.commenticonbox,span.cp-video-shortcode+.commenticonbox{top:0}.post ol li.list_commenticon,.post ul li.list_commenticon{float:left;width:0;list-style-type:none}.running_header_bottom{clear:both;padding-top:2em;text-align:center;font-family:sans-serif;text-transform:uppercase}div.multipager{font-family:sans-serif;text-transform:uppercase;clear:both;border-top:1px solid #B5BFB2;border-bottom:1px dotted #B5BFB2;font-size:80%;padding:.2em 0;margin:4em 0 0}div.multipager .multipager_sep{visibility:hidden}#content div.multipager:after,.content div.multipager:after{content:".";display:block;height:0;clear:both;visibility:hidden}div.multipager a,div.multipager a:active,div.multipager a:hover,div.multipager a:visited{color:#666;text-decoration:none}div.multipager a:focus span{text-decoration:underline}div.multipager a:hover{color:#000}div.multipager.multipager_all{margin:0 0 15px;border:none;text-align:center;color:#666;padding-top:15px;line-height:2}div.multipager.multipager_all span{color:#666;font-weight:400}div.multipager.multipager_all span.multipager_link{margin-left:.2em;margin-right:.2em;padding:.5em .7em;border:1px solid #ddd}.entry-category-meta,.post p.postmetadata,.post p.search_meta{margin-top:1em;padding-bottom:0;font-size:80%;font-family:sans-serif}div.multipager.multipager_all a,div.multipager.multipager_all a:active{text-decoration:none}div.multipager.multipager_all a:focus span.multipager_link{color:#fff;background:#ccc}div.multipager.multipager_all a span.multipager_link,div.multipager.multipager_all a:active span.multipager_link{background:#E8E8E8;color:#000;border:none}div.multipager.multipager_all a:hover span.multipager_link{color:#fff;background:#ccc}.post p.postmetadata,.post p.search_meta{color:#666;padding-top:.7em;border-top:1px solid #ddd}.post p.postmetadata a:focus,.post p.search_meta a:focus{text-decoration:underline}.post p.postmetadata a,.post p.postmetadata a:active,.post p.search_meta a,.post p.search_meta a:active{color:#000;text-decoration:none}body.search-results .post p.postmetadata,body.search-results .post p.search_meta{padding-top:0;margin-bottom:0;border-top:none}.entry-category-meta{border-top:1px solid #ddd;color:#666;padding-top:1em}.post .entry-category-meta p,body.blogtype-1 #content .post .entry-category-meta p.category-meta,body.blogtype-2 #content .post .entry-category-meta p.category-meta,body.blogtype-3 #content .post .entry-category-meta p.category-meta,body.blogtype-4 #content .post .entry-category-meta p.category-meta{display:inline-block;margin:0;padding:0}.entry-category-meta a:focus{text-decoration:underline}.entry-category-meta a,.entry-category-meta a:active{text-decoration:none}.entry-meta{clear:both}.post img{max-width:100%;height:auto}.post img.alignleft{margin:0 .5em .5em 0}.post img.alignright{margin:0 0 .5em .5em}span.captioned_image{display:block;background:#eee;margin:7px 0;border:1px solid #B5BFB2;max-width:99%;height:auto}span.captioned_image.aligncenter{margin:.5em auto 0}span.captioned_image.alignleft{margin-right:.5em}span.captioned_image.alignright{margin-left:.5em}p>span.textblock:first-child>span.captioned_image{display:inline-block;vertical-align:top;margin-top:0}span.wp-caption{display:block;text-align:center;padding:0;margin:10px 10px 0;line-height:0}.post small.wp-caption-text{display:block;text-align:center;padding:0;margin:10px;font-family:sans-serif}dl.gallery-item{margin-left:0;margin-right:0}.gallery .wp-caption-text{margin-top:.3em;font-size:80%;line-height:1.3;text-align:center;font-family:sans-serif}#content ul.image_link,.content ul.image_link{margin:2em 0 0;padding:0;list-style-type:none}ul.image_link .alignright h4{text-align:right}ul.image_link .alignleft h4{text-align:left}.image_attachment h2.post_title>a{font-size:60%}.image_attachment h2.post_title span{display:block}p.back_button{margin-top:-1em;margin-bottom:2em}p.back_button a.button{font:400 12px/20px Arial,Tahoma,Verdana,sans-serif}div.the_image_attachment{margin:1em 0 1.3em;padding:0}p.image_attachment_wrap{text-align:center;margin:0;padding:0;line-height:0}div.image_attachment_caption{text-align:center;margin:0 3em;padding:0 0 .5em;font-family:sans-serif}div.image_attachment_caption p{margin:.3em 0 .5em;line-height:1.5}.wp-audio-shortcode{margin:2em auto}.single.single-format-chat .post p{font-family:monospace}.single.single-format-chat .post p.postmetadata{font-family:sans-serif}h3.comments_hl{margin:2em 0 0;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD}.all_comments_listing .page_li>h4{font-family:sans-serif;font-weight:400;font-size:80%;padding:6px;background-color:#d8d8d8;color:#000}.pointer{cursor:pointer}.all_comments_listing{margin:0;padding:0}.all_comments_listing li>h3{font-size:80%;padding:4px 6px;margin:0;line-height:1.9;background-color:#ddd}.all_comments_listing li>h3:hover{background-color:#ccc}.all_comments_listing li>h3 img.avatar{margin:0 4px 0 0;vertical-align:middle}.all_comments_listing>li{list-style:none;padding:0}.all_comments_listing ul.item_ul{margin:0}.all_comments_listing ul.item_ul>li{list-style:none;padding:0;background-color:#eee}.all_comments_listing ul.item_ul .comment_wrapper{padding:1.5em 1em;border-top:1px solid #ddd}.all_comments_listing ul.item_ul .comment-content{margin-left:0;margin-right:0}.all_comments_listing .comment_meta{font-size:80%;font-family:sans-serif;text-transform:uppercase;color:#666}.all_comments_listing .comment_meta a{color:#666}.archives_search_form{margin:-2em 0 2em;padding:2% 0}.archives_search_form label{font-size:80%;font-family:sans-serif;text-transform:uppercase}.archives_by_month h3,.categories h3,.tags h3{margin:2em 0 0;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD}.archives_by_month ul,.categories ul,.tags ul{margin:0;padding:0}.archives_by_month ul li,.categories ul li,.tags ul li{list-style:none}.archives_by_month ul li a,.categories ul li a,.tags ul li a,.tags ul li.no_tags{display:block;font-family:sans-serif;font-weight:400;font-size:80%;padding:6px;background-color:#ddd;color:#000;text-decoration:none}.archives_by_month ul li a:hover,.categories ul li a:hover,.tags ul li a:hover{background-color:#eee;color:#000}ul#content-tabs,ul#content-tabs li h2 a,ul#content-tabs li h2 a:hover{background-color:#bdbdbd}.tags ul li a{font-size:80%!important}.categories ul.children{margin-left:2em}ul#content-tabs{margin:0;padding:0;height:32px;z-index:1000;position:absolute;top:0;left:0;width:100%}ul#content-tabs li{list-style:none;float:left;width:33%;text-align:center;margin:0;padding:0}ul#content-tabs li#original_header{width:34%}ul#content-tabs li h2{font-size:16px;line-height:1;margin:0;padding:0;height:24px}ul#content-tabs li h2 a{display:block;padding:8px 0;text-decoration:none;color:#000}ul#content-tabs li.default-content-tab h2 a{background-color:#fff}#page_wrapper.with-content-tabs{margin-top:32px}#literal,#original{margin:0 12%;padding:0}#content div.version_info,.content div.version_info{margin:-2em 0 1.6em;background:#EFEFEF;border-top:1px solid #B5BFB2;border-bottom:1px solid #B5BFB2;color:red}#content div.version_info ul,#content div.version_info ul li,.content div.version_info ul,.content div.version_info ul li{list-style:none}#content div.version_info ul,.content div.version_info ul{margin:0;padding:0;overflow:auto}#content div.version_info ul li,.content div.version_info ul li{margin:0;padding:0}#content div.version_info ul li.newer_version,.content div.version_info ul li.newer_version{float:right;text-align:right;width:50%}#content div.version_info ul li.older_version,.content div.version_info ul li.older_version{width:50%}#content div.version_info a,.content div.version_info a{padding:6px;font-family:sans-serif;font-size:.7em;font-weight:400;display:block;line-height:1;text-decoration:none;text-transform:uppercase}#content div.version_info a:hover,.content div.version_info a:hover{color:#222}h3.author_pages_heading{margin:2em 0 0;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD}ul.author_pages{margin:0;padding:0}ul.author_pages li{list-style:none}ul.author_pages li a{display:block;font-family:sans-serif;font-weight:400;padding:6px;background-color:#ddd;color:#000;text-decoration:none;font-size:80%!important}ul.author_pages li a:hover{background-color:#eee;color:#000}.post-identifier{margin:0;border-bottom:1px solid #ddd;padding:6px;background:#EFEFEF}.post-identifier img{float:left;margin-right:4px}.post-identifier cite{text-transform:uppercase;display:block;font-family:sans-serif;font-weight:400;font-style:normal;font-size:.8em;line-height:1}#toc_sidebar .sidebar_minimiser .post-identifier cite a,#toc_sidebar .sidebar_minimiser .post-identifier cite a:active,#toc_sidebar .sidebar_minimiser .post-identifier cite a:hover,#toc_sidebar .sidebar_minimiser .post-identifier cite a:link,#toc_sidebar .sidebar_minimiser .post-identifier cite a:visited{display:inline;font-weight:400;text-decoration:none;background:0 0;padding:0;margin:0}.post_activity_date{margin-top:.3em;margin-bottom:0;display:block;color:#000;font-size:.7em;line-height:1.5;font-family:sans-serif;font-style:normal;text-decoration:none}#toc_sidebar .sidebar_minimiser ul li a.post_activity_link{border-bottom:6px solid #ccc}#tern_members .tern_members_search{padding:0 0 20px}#tern_members .tern_members_view{margin-bottom:0;font-family:sans-serif;text-transform:uppercase;padding:2%;font-size:80%;font-weight:700;color:#222;background-color:#BDBDBD;border:none}#tern_members .tern_wp_members_list li{height:auto;padding-top:0;list-style:none}html>body #tern_members .tern_wp_members_list li{height:auto;min-height:0}#tern_members .tern_wp_members_list{margin:0;padding:0}#tern_members .tern_wp_members_list li .tern_wp_member_info a{display:block;font-family:sans-serif;font-weight:400;padding:6px;background-color:#ddd;color:#000;text-decoration:none;font-size:80%!important}#tern_members .tern_wp_members_list li .tern_wp_member_info a:hover{background-color:#eee;color:#000}#tern_members .tern_members_alpha span{font-size:inherit;font-style:italic}#tern_members .tern_members_alpha{font-family:sans-serif;text-transform:uppercase;font-size:80%;border:none}.tern_members_alpha a{padding:0 3px;margin-right:5px;background-color:#ddd;text-decoration:none;color:#222;font-family:sans-serif}.tern_members_alpha a:hover{background-color:#eee}#content div.zp-Zotpress,.content div.zp-Zotpress{margin-top:1em;padding-top:1em;border-top:none}.csl-entry{line-height:1.6;font-size:80%}.footnotes ol,.simple-footnotes ol,ol.footnotes{font-family:sans-serif}.post ol.footnotes{font-size:inherit;color:inherit}.simple-footnotes{font-family:sans-serif}.footnotes ol li:not(.list_commenticon),.post ol.footnotes li:not(.list_commenticon),.simple-footnotes ol li:not(.list_commenticon){font-size:.8em}.simple-footnotes p.notes{font-size:1em;font-weight:700}#content a.simple-footnote,#content sup a.footnote-link,#content sup.footnote,.content a.simple-footnote,.content sup a.footnote-link,.content sup.footnote{font-weight:700;font-family:sans-serif;text-decoration:none}#content a.simple-footnote sup,#content sup a.footnote-link,#content sup.footnote a,.content a.simple-footnote sup,.content sup a.footnote-link,.content sup.footnote a{padding:3px 5px;background-color:#fdd;text-decoration:none;font-size:70%;font-weight:700;-moz-border-radius:6px;-khtml-border-radius:6px;-webkit-border-radius:6px;border-radius:6px}.footnote-link.footnote-back-link,.footnotereverse a,.simple-footnotes li>a{text-decoration:none}.footnotereverse a,.simple-footnotes li>a{vertical-align:top}.footnote-link.footnote-back-link{vertical-align:baseline;margin-left:5px;margin-right:5px}#content a.simple-footnote sup,.content a.simple-footnote sup{font-size:60%}.post hr{margin:20px 0 8px;padding-left:7px;padding-right:7px;color:#999;background-color:#999;height:1px;border:none}#content div.sharedaddy div.sd-block,.content div.sharedaddy div.sd-block{padding-top:1.5em}p.comment-subscription-form{font-size:70%;margin:.5em 0;font-family:sans-serif;text-transform:uppercase}.feature-burry-comments,.feature-bury-comments{float:right;clear:right;line-height:1;margin-left:2%}#comments_in_page_wrapper .feature-burry-comments,#comments_in_page_wrapper .feature-bury-comments{line-height:.8;margin-left:2%}.feature-burry-comments a.feature-comments,.feature-bury-comments a.feature-comments{padding:0;font-size:70%;text-transform:uppercase;font-family:sans-serif;color:#bbb;text-decoration:none}.comment_tagger_select2_container h5.comment_tagger_select2_heading,.qmt-categories{font-size:80%}.qmt-categories h4{margin:2em 0 0;padding:2%;font-weight:700;color:#222;background-color:#BDBDBD}.qmt-categories ul{margin:0;padding:0}.qmt-categories ul li{list-style:none}.qmt-categories ul li label{display:block;font-family:sans-serif;font-weight:400;padding:6px;background-color:#ddd;color:#000;text-decoration:none}.qmt-categories ul li label:hover{cursor:pointer;background-color:#eee;color:#000}.qmt-categories ul ul{margin-left:2em}.single-bp_doc #respond{margin-top:0}body>img{float:left}.comment_tagger_select2_container{padding:5px 0}.comment_tagger_select2_container p.comment_tagger_select2_description{font-size:60%;margin:.2em 0;font-family:sans-serif;text-transform:uppercase;line-height:1.3}#respond .select2-container--default .select2-selection--multiple,.select2-dropdown{border:1px solid #dedede}#respond .select2-container--default .select2-search--inline .select2-search__field{-webkit-appearance:textfield}.comment_tagger_tags{font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:.3em 0}.comment_tagger_tags p{margin:0}.comment_tagger_tag_link:focus{text-decoration:underline}.comment_tagger_tag_link,.comment_tagger_tag_link:active{text-decoration:none}body.buddypress.group-sites #blogs-list li{padding:15px}body.group-admin.group-sites #buddypress .standard-form{padding:0}.standard-form .bpgsites_group_linkage{border:1px solid #eee;padding:0;clear:none;float:left;width:70%;margin-top:1em}.standard-form h5.bpgsites_group_linkage_heading{padding:.5em;line-height:1;background-color:#fbfbfb;font-size:80%;color:#666}.standard-form .bpgsites_group_linkages{margin:0;padding:1em;border-top:1px solid #eee;border-bottom:1px solid #eee}body.group-admin.group-sites #blogs-list ol.bpgsites_group_linkages_list li{padding:5px;font-family:sans-serif;font-size:80%}.standard-form .bpgsites_group_linkages h6{margin-bottom:.6em}.standard-form .bpgsites_group_linkages_invite{padding:1em}#item-body .bpgsites_group_linkages_invite p{margin-top:.2em}#item-body .bpgsites_group_linkages_invite p.bpgsites_invite_actions{padding:0}.standard-form .bpgsites_linked_group{display:block}.standard-form label.bpgsites_linked_group_label{display:inline-block;cursor:pointer;margin:0}#bpgsites-dir-list ul#blogs-list>li{padding:15px}.select2-results__option{font-family:sans-serif;font-size:80%}.select2_results_group_description,.select2_results_group_name{margin-left:38px}.select2_results_group_description{color:#666;margin-top:3px}.select2-container{font-family:sans-serif}.select2-container .selection{font-size:80%}body.group-admin.group-sites .standard-form .bpgsites_group_linkages_pending{margin:0;border:none;font-family:sans-serif}.bpgsites_group_linkages_pending_heading{margin-bottom:1em}.bpgsites_invite_received{font-size:80%;margin-right:1em}.commentpress_jstor p.commentpress_jstor_trigger{padding:2%;font-size:70%;text-transform:uppercase;font-family:sans-serif;margin:0;background-color:#8FB7D3;color:#fff}.commentpress_jstor p.commentpress_jstor_trigger:hover{cursor:pointer;background-color:#97CFEF}.commentpress_jstor p.commentpress_jstor_triggered:hover{cursor:default;background-color:#8FB7D3}.commentpress_jstor .comment-title a{text-decoration:none;font-family:sans-serif;font-weight:700}.commentpress_jstor .commentpress_jstor_spinner{font-size:70%;margin:0;padding:2% 2% 1%;background-color:#eee}.commentpress_jstor ol,.commentpress_jstor ol li{padding:0;background-color:#eee}.commentpress_jstor ol{margin:0}.commentpress_jstor .comment-content{margin-top:2%}.commentpress_jstor .comment-not-found{padding:2%;margin:0;font-size:80%;color:#ca0000;text-transform:uppercase;font-family:sans-serif;background-color:#eee}.cp_alert_text{font-family:sans-serif;line-height:1.6em;font-size:90%;color:red}.comment-assign{display:none}.comment-assign:hover{cursor:move}.comment-content.comment-orphan{background-color:#F5B0A6!important}.cp_feature_image{position:relative;line-height:0}#wp-link-wrap #link-options,#wp-link-wrap .howto{font-size:13px;line-height:1.5}.cp_feature_image img.wp-post-image{width:100%;height:auto}.cp_feature_image .cp_featured_title{width:100%;background:#fff;background:rgba(255,255,255,.66);position:absolute;bottom:0}.cp_feature_image .cp_featured_title .cp_featured_title_inner{padding:2% 12%}.cp_feature_image .cp_featured_title .cp_featured_title_inner h2.post_title{margin:0}.cp_feature_image .cp_featured_title .cp_featured_title_inner div.search_meta{margin-top:0;margin-bottom:.3em}.cp_feature_image+.page_navigation{position:relative}body .wp-dialog{font-family:sans-serif}@media screen and (max-width:782px){html body #wpadminbar{z-index:99999!important}}body.tinymce-4.mce-fullscreen #header,body.tinymce-4.mce-fullscreen #sidebar,body.tinymce-4.mce-fullscreen #switcher{z-index:500}body.tinymce-4.mce-fullscreen #wpadminbar{z-index:100}body.tinymce-4 .mce-toolbar .mce-btn button:hover{background:0 0;filter:none;border:none;color:#333;outline:0;text-decoration:none}body.tinymce-4 .wp-editor-container{border:1px solid #dedede}body.tinymce-4 #commentform #wp-comment-wrap textarea{width:100%;margin:0}.accessibly-hidden,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;margin:-1px;padding:0;height:1px;width:1px;overflow:hidden;clip:rect(0 0 0 0);border:0}#wp-link-wrap{font-family:"Open Sans",sans-serif;color:#444}#wp-link-wrap .howto{color:#666;font-style:italic;display:block}#wp-link-wrap input[type=text],#wp-link-wrap input[type=password],#wp-link-wrap input[type=checkbox],#wp-link-wrap input[type=color],#wp-link-wrap input[type=date],#wp-link-wrap input[type=datetime],#wp-link-wrap input[type=datetime-local],#wp-link-wrap input[type=email],#wp-link-wrap input[type=month],#wp-link-wrap input[type=number],#wp-link-wrap input[type=search],#wp-link-wrap input[type=radio],#wp-link-wrap input[type=tel],#wp-link-wrap input[type=time],#wp-link-wrap input[type=url],#wp-link-wrap input[type=week],#wp-link-wrap select,#wp-link-wrap textarea{margin:1px;padding:3px 5px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out}#wp-link-wrap input[type=checkbox],#wp-link-wrap input[type=radio]{border:1px solid #b4b9be;background:#fff;color:#555;clear:none;cursor:pointer;display:inline-block;line-height:0;height:16px;margin:-4px 4px 0 0;outline:0;padding:0!important;text-align:center;vertical-align:middle;width:16px;min-width:16px;-webkit-appearance:none;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-transition:.05s border-color ease-in-out;transition:.05s border-color ease-in-out}#wp-link-wrap input[type=checkbox]:checked:before,#wp-link-wrap input[type=radio]:checked:before{float:left;display:inline-block;vertical-align:middle;width:16px;font:400 21px/1 dashicons;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#wp-link-wrap input[type=checkbox]:checked:before{content:'\f147';margin:-3px 0 0 -4px;color:#1e8cbe}#wp-link-wrap #search-panel{font-size:13px;line-height:1.4em}#wp-link-wrap #search-panel .alternate{background-color:#f9f9f9}#wp-link-wrap .submitbox .submitdelete{text-decoration:none;padding:1px 2px;color:#a00;font-size:13px}div.wp-link-input input.ui-autocomplete-input{font-family:"Open Sans",sans-serif;font-size:100%;width:250px;padding:4px;border:1px solid #ddd;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.07);box-shadow:inset 0 1px 2px rgba(0,0,0,.07);background-color:#fff;color:#32373c;outline:0;-webkit-transition:50ms border-color ease-in-out;transition:50ms border-color ease-in-out}div.wp-link-input input:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 2px rgba(30,140,190,.8);box-shadow:0 0 2px rgba(30,140,190,.8)}.wplink-autocomplete li{font-family:"Open Sans",sans-serif;font-size:80%;color:#444}@media screen and (max-width:782px){.mce-container div.wp-link-input{width:auto;max-width:none}.wplink-autocomplete li,div.wp-link-input input.ui-autocomplete-input{font-size:20px}}body.fee #content{padding-top:3%}body.fee .cp_feature_image{min-height:150px}body.fee-on .fee-thumbnail.fee-empty{min-height:0}body.fee-on .fee-insert-thumbnail{top:40px;left:12%}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title{position:relative;padding:6% 0 0}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner{padding:0 12%}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner h2.post_title{margin:1em 0 0}.fee-url{font-size:50%;text-transform:lowercase}.comment-backlink,body.fee .metabox_container label{text-transform:uppercase}.fee-url ins,body.fee.fee-on .fee-content-body,body.fee.fee-on .fee-title{background-color:#f4f4f4}body.fee.fee-on .fee-content-body.mce-edit-focus,body.fee.fee-on .fee-title.mce-edit-focus{background-color:transparent}body.fee .metabox_container{font-family:sans-serif;font-size:80%;padding:2%;background-color:#dadada}#container #navigation .paragraph_wrapper.editor_toggle_wrapper{display:block}.paragraph_wrapper.editor_toggle_wrapper .editor_toggle{margin:0 4%;padding:4% 0 5%}.cp_next_page_loading_wrapper{padding:40px 0}.page_wrapper+.page_wrapper{margin-top:60px}.comment-popover-holder,.popover-holder{position:absolute;z-index:9999999;display:none}.popover-holder-inner{position:absolute;width:300px;top:25px;left:-60px}.popover-holder-caret{background:url(../images/texthighlighter/highlight-caret.png) no-repeat;width:14px;height:7px;position:absolute;top:-6px;left:44px}.popover-holder-btn-left,.popover-holder-btn-right{display:inline-block;vertical-align:middle;float:left;padding:0 10px;border:1px solid #bbb;cursor:pointer;font-family:sans-serif;font-weight:700;color:#444;text-transform:uppercase;font-size:80%;line-height:2.6;-webkit-box-shadow:rgba(0,0,0,.1) 0 1px 3px;-moz-box-shadow:rgba(0,0,0,.1) 0 1px 3px;box-shadow:rgba(0,0,0,.1) 0 1px 3px;background:#eee}.popover-holder-btn-left{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;padding:0}.popover-holder-btn-right{border-left:none;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.comment-popover-holder-btn-left-quote,.popover-holder-btn-left-comment,.popover-holder-btn-left-quote{padding:.7em 10px}.comment-popover-holder-btn-left-quote:hover,.popover-holder-btn-left-comment:hover,.popover-holder-btn-left-quote:hover,.popover-holder-btn-right:hover{background:#ddd}.popover-holder-btn-left-comment{padding-right:10px}.popover-holder-btn-left-quote{padding-left:10px;border-left:1px solid #999}.inline-highlight{background:rgba(255,252,105,.3);padding:4px 0}.inline-highlight-per-comment{background:rgba(255,225,105,.3);padding:4px 0}.comment-backlink{font-size:70%;text-decoration:none;font-family:sans-serif;float:right;margin-left:2%}#footer .widget .widget-title{display:none}.sidebar_container .widget{font-family:sans-serif}.sidebar_container .widget_calendar .widget_wrapper,.sidebar_container .widget_search .widget_wrapper,.sidebar_container .widget_text .widget_wrapper{margin:10px}.sidebar_container .widget.widget_archive ul,.sidebar_container .widget.widget_categories ul,.sidebar_container .widget.widget_meta ul,.sidebar_container .widget.widget_pages ul{margin:0;padding:0}.sidebar_container .widget.widget_archive ul li a:focus,.sidebar_container .widget.widget_archive ul li a:hover,.sidebar_container .widget.widget_categories ul li a:focus,.sidebar_container .widget.widget_categories ul li a:hover,.sidebar_container .widget.widget_meta ul li a:focus,.sidebar_container .widget.widget_meta ul li a:hover,.sidebar_container .widget.widget_pages ul li a:focus,.sidebar_container .widget.widget_pages ul li a:hover{background-color:#fff;color:#333}.sidebar_container .widget.widget_archive ul li a,.sidebar_container .widget.widget_archive ul li a:active,.sidebar_container .widget.widget_categories ul li a,.sidebar_container .widget.widget_categories ul li a:active,.sidebar_container .widget.widget_meta ul li a,.sidebar_container .widget.widget_meta ul li a:active,.sidebar_container .widget.widget_pages ul li a,.sidebar_container .widget.widget_pages ul li a:active{display:block;font-family:sans-serif;font-weight:400;font-size:100%;padding:8px 10px;text-decoration:none;background-color:transparent;color:#333}.sidebar_container .widget.widget_archive select,.sidebar_container .widget.widget_categories select{margin:10px}.sidebar_container .widget.widget_archive ul li,.sidebar_container .widget.widget_categories ul li{list-style:none}.sidebar_container .widget.widget_recent_entries ul{margin:0;padding:0}.sidebar_container .widget.widget_recent_entries ul li{padding:8px 10px}.sidebar_container .widget.widget_recent_entries .post-date{font-style:italic;padding:0 1em}.sidebar_container .widget.widget_recent_entries a:focus,.sidebar_container .widget.widget_recent_entries a:hover{text-decoration:underline}.sidebar_container .widget.widget_recent_entries a,.sidebar_container .widget.widget_recent_entries a:active{color:#333;text-decoration:none}.sidebar_container .widget.widget_recent_comments ul{margin:0;padding:0}.sidebar_container .widget.widget_recent_comments ul li{padding:8px 10px}.sidebar_container .widget.widget_recent_comments ul li a:focus,.sidebar_container .widget.widget_recent_comments ul li a:hover{text-decoration:underline;background-color:transparent}.sidebar_container .widget.widget_recent_comments ul li a,.sidebar_container .widget.widget_recent_comments ul li a:active{font-family:sans-serif;font-weight:400;font-size:100%;text-decoration:none;background-color:transparent;color:#333}.sidebar_container .widget ul.menu{margin:0;padding:0}.sidebar_container .widget ul.menu li{list-style:none}.sidebar_container .widget ul.menu li a:focus,.sidebar_container .widget ul.menu li a:hover{background-color:#fff;color:#333}.sidebar_container .widget ul.menu li a,.sidebar_container .widget ul.menu li a:active{display:block;font-family:sans-serif;font-weight:400;font-size:100%;padding:8px 10px;text-decoration:none;background-color:transparent;color:#333}.sidebar_container .widget ul.sub-menu{margin:0 0 0 1.2em;padding:0}#footer .widget_nav_menu,#footer div.commentpress-footer-nav-menu{text-align:center}#footer .widget_nav_menu ul.menu,#footer div.commentpress-footer-nav-menu ul.menu{list-style:none;margin:1.25em 0;padding:0;line-height:1.8}#footer .widget_nav_menu ul.menu li,#footer div.commentpress-footer-nav-menu ul.menu li{list-style:none;display:inline-block;padding-right:5px}#footer .widget_nav_menu ul.menu li:after,#footer div.commentpress-footer-nav-menu ul.menu li:after{content:"|";display:inline;padding-left:10px}#footer .widget_nav_menu ul.menu li:last-child:after,#footer div.commentpress-footer-nav-menu ul.menu li:last-child:after{display:none}#footer .widget_nav_menu ul.menu a:focus,#footer .widget_nav_menu ul.menu a:hover,#footer div.commentpress-footer-nav-menu ul.menu a:focus,#footer div.commentpress-footer-nav-menu ul.menu a:hover{text-decoration:underline}#footer .widget_nav_menu ul.menu a,#footer .widget_nav_menu ul.menu a:active,#footer div.commentpress-footer-nav-menu ul.menu a,#footer div.commentpress-footer-nav-menu ul.menu a:active{color:#333;text-decoration:none}#footer .commentpress_widget{margin:1.25em 0;line-height:1.8}@media all and (max-width:1400px){#content_container{left:0}#navigation{width:33%;left:-33%}#wrapper{width:67%}#sidebar{width:33%;right:0}.active-nav #content_container{left:33%}.active-nav #navigation,.active-sidebar #content_container{left:0}.active-nav #wrapper{width:67%}.active-nav #sidebar{right:-33%}.active-sidebar #navigation{left:-33%}#footer,#header,#switcher{left:0;width:67%}.active-sidebar #wrapper{width:67%}.active-sidebar #sidebar{right:0}#footer{margin-bottom:50px}.active-nav #footer,.active-nav #header,.active-nav #switcher{width:67%;left:33%}.active-sidebar #footer,.active-sidebar #header,.active-sidebar #switcher{width:67%;left:0}h3.activity_heading{font-size:1em;padding:8px}.comments_container>h3{font-size:1em}.comments_container>h3 a,.comments_container>h3 a:active,.comments_container>h3>span,h3.nocomments{padding:8px}.comments_container>h3.nocomments>span{padding:0}#toc_sidebar .sidebar_minimiser ul li a,.sidebar_container .widget ul.menu li a,.sidebar_container .widget.widget_archive ul li a,.sidebar_container .widget.widget_categories ul li a,.sidebar_container .widget.widget_recent_comments ul li,.sidebar_container .widget.widget_recent_entries ul li{font-size:100%;padding:8px 10px}.comment-content,.post{font-size:110%}a.button,button,div.generic-button a,input[type=button],input[type=reset],input[type=submit],ul.button-nav li a{font-size:100%;padding-top:8px;padding-bottom:8px}.reply a,.reply a:active{font-size:80%;padding-top:.8em;padding-bottom:.8em}p.comment-subscription-form{font-size:75%;margin:1.5em 0}}@media all and (max-width:1020px){#sidebar,.active-nav #sidebar{right:-50%}#footer{text-align:center}#content_container{left:0}#navigation{left:-40%;width:40%}#wrapper{width:100%}#sidebar{width:50%}.active-nav #content_container{left:40%}.active-nav #navigation{left:0}.active-nav #wrapper{width:100%}.active-sidebar #content_container{left:-50%}.active-sidebar #navigation{left:-100%}.active-sidebar #wrapper{width:100%}.active-sidebar #sidebar{right:0}#footer,#header,#switcher{width:100%;left:0}.active-nav #footer,.active-nav #header,.active-nav #switcher{width:100%;left:40%}.active-sidebar #footer,.active-sidebar #header,.active-sidebar #switcher{width:100%;left:-50%}#toc_sidebar .sidebar_minimiser ul li a,.sidebar_container .widget ul.menu li a,.sidebar_container .widget.widget_archive ul li a,.sidebar_container .widget.widget_categories ul li a,.sidebar_container .widget.widget_recent_comments ul li,.sidebar_container .widget.widget_recent_entries ul li{font-size:1em;padding:15px 10px}.comment-content,.post{font-size:120%}#blogs-dir-list,#groups-dir-list,#members-dir-list,.activity{font-size:110%}.comments_container>h3 a,.comments_container>h3 a:active,.comments_container>h3>span,h3.activity_heading,h3.nocomments{padding:15px 10px}}@media all and (max-width:600px){#content_container{left:0}.active-nav #content_container,.active-nav #header,.active-nav #switcher{left:70%}.active-sidebar #content_container,.active-sidebar #header,.active-sidebar #switcher{left:-70%}.active-nav #sidebar{right:-70%}.active-sidebar #sidebar{right:0}#navigation{width:70%;left:-70%}#wrapper{width:100%}#header,.comment-content,.post{font-size:80%}#blogs-dir-list,#groups-dir-list,#members-dir-list,.activity{font-size:90%}#title h1{line-height:1.2}#header #tagline{font-size:.9em;padding-top:0;padding-bottom:8px}.search_result h3,h2.post_title{font-size:1.5em;line-height:1.5}.cp_featured_title_inner h2.post_title{line-height:1.5}#toc_sidebar .sidebar_header h2,ul#sidebar_tabs li a{font-size:16px}#content,.content{padding:12% 0}.reply a,.reply a:active{font-size:70%}#sidebar{width:70%;right:-70%}.active-nav #footer{left:70%}.active-sidebar #footer{left:-70%}.comments_container>h3 span.source_block{display:block}}
  • commentpress-core/trunk/themes/commentpress-flat/assets/js/screen.js

    r1695759 r1782116  
    169169                // show current item and ancestors
    170170                styles += '#toc_sidebar .sidebar_contents_wrapper ul li.current_page_ancestor > ul { display: block; } ';
     171                styles += '#toc_sidebar .sidebar_contents_wrapper ul li.current-menu-ancestor > ul { display: block; } ';
     172                styles += '#toc_sidebar .sidebar_contents_wrapper ul li.current_page_item > ul { display: block; } ';
    171173                //styles += '#toc_sidebar .sidebar_contents_wrapper ul li.current_page_item { display: block; } ';
    172174
     
    730732
    731733        // toggle for navigation
    732         $('.navigation-button').click( function(e) {
     734        $('#switcher .navigation-button').click( function(e) {
    733735            e.preventDefault();
    734736            me.show_nav();
     
    736738
    737739        // toggle for content (we don't have one of these in this theme!)
    738         $('.content-button').click( function(e) {
     740        $('#switcher .content-button').click( function(e) {
    739741            e.preventDefault();
    740742            me.show_content();
     
    742744
    743745        // toggle for comments sidebar
    744         $('.comments-button').click( function(e) {
     746        $('#switcher .comments-button').click( function(e) {
    745747            e.preventDefault();
    746748            me.show_comments();
     
    749751
    750752        // toggle for activity sidebar
    751         $('.activity-button').click( function(e) {
     753        $('#switcher .activity-button').click( function(e) {
    752754            e.preventDefault();
    753755            me.show_activity();
  • commentpress-core/trunk/themes/commentpress-flat/assets/js/screen.min.js

    r1695759 r1782116  
    1 CommentPress.theme={},CommentPress.theme.settings=new function(){jQuery.noConflict();this.init=function(){},this.dom_ready=function(){}},CommentPress.theme.DOM=new function(){var e=this,t=jQuery.noConflict();this.init=function(){e.head(),t("html").addClass("js")},this.dom_ready=function(){},this.head=function(){var e,t;e="",t=70,document.getElementById&&(e+='<style type="text/css" media="screen">',"0"==cp_is_mobile&&"0"==cp_textblock_meta&&(e+="#content .textblock span.para_marker, #content .textblock span.commenticonbox { display: none; } ",e+=".content .textblock span.para_marker, .content .textblock span.commenticonbox { display: none; } "),e+="ul.all_comments_listing div.item_body { display: none; } ","y"==CommentPress.settings.DOM.get_wp_adminbar()&&"32"==CommentPress.settings.DOM.get_wp_adminbar_height()&&(e+="@media screen and ( max-width: 782px ) { body.admin-bar #sidebar, #sidebar, body.admin-bar #navigation, #navigation { top: "+CommentPress.settings.DOM.get_wp_adminbar_expanded()+"px; }  } "),"0"==cp_show_subpages&&(e+="#toc_sidebar .sidebar_contents_wrapper ul li ul { display: none; } ",e+="#toc_sidebar .sidebar_contents_wrapper ul li.current_page_ancestor > ul { display: block; } "),"0"==cp_special_page&&(e+="#respond { display: none; } "),e+="#sidebar .paragraph_wrapper { display: none; } ",e+="#navigation .paragraph_wrapper { display: none; } ",e+="#sidebar .paragraph_wrapper.start_open { display: block; } ",e+="#navigation .paragraph_wrapper.start_open { display: block; } ",e+=".commentpress_page #navigation .paragraph_wrapper.special_pages_wrapper { display: block; } ",e+=".cp_sidebar_activity #comments_sidebar { display: none; } ",e+="#original .post, #literal .post { display: none; } ",e+="</style>"),document.write(e)}},CommentPress.theme.header=new function(){jQuery.noConflict();this.init=function(){},this.dom_ready=function(){},this.get_offset=function(){var e;return e=-72,"y"==CommentPress.settings.DOM.get_wp_adminbar()&&(e-=CommentPress.settings.DOM.get_wp_adminbar_height()),e}},CommentPress.theme.switcher=new function(){var e=this,t=jQuery.noConflict();this.init=function(){e.init_active()},this.dom_ready=function(){e.init_discuss()},e.active="content",this.init_active=function(){},this.get_active=function(){return e.active},this.set_active=function(t){e.active=t},e.discuss="comments",this.init_discuss=function(){t("body").hasClass("cp_sidebar_activity")&&e.set_discuss("activity")},this.get_discuss=function(){return e.discuss},this.set_discuss=function(t){e.discuss=t}},CommentPress.theme.navigation=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.menu()},this.menu=function(){t("#toc_sidebar").on("click","ul#nav li a",function(e){var n;n=t(this).parent().find("ul"),n.length>0&&(t(this).next("ul").slideToggle(),e.preventDefault())})}},CommentPress.theme.content=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.tabs()},this.tabs=function(){var e,n;e=t("#page_wrapper").css("min-height"),n=t("#page_wrapper").css("padding-bottom"),t("#literal .post").css("display","none"),t("#original .post").css("display","none"),CommentPress.common.content.workflow_tabs(e,n)}},CommentPress.theme.sidebars=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.enable_buttons(),e.set_height()},this.set_height=function(){var e,n,s,o;e=t(window).height(),"1"!=cp_is_mobile&&"1"!=cp_is_tablet||(window_inner=window.innerHeight,e<window_inner&&(e=window_inner)),n="y"==CommentPress.settings.DOM.get_wp_adminbar()?t("#wpadminbar").height():0,t("html body #content_container #sidebar,html body #content_container #navigation").css("top",n+"px"),s=e-n,t("#toc_sidebar .sidebar_contents_wrapper").css("height",s+"px"),o=e-n,t("#sidebar .sidebar_contents_wrapper").css("height",o+"px")},this.activate_sidebar=function(e){var n;n=t("#"+e+"_sidebar").css("z-index"),"2001"==n&&(t(".sidebar_container").css("z-index","2001"),t("#sidebar_tabs h2 a").removeClass("active-tab"),t("#"+e+"_sidebar").css("z-index","2010").css("display","block"),t("#sidebar_tabs #"+e+"_header h2 a").addClass("active-tab"))},this.enable_buttons=function(){t(".navigation-button").click(function(t){t.preventDefault(),e.show_nav()}),t(".content-button").click(function(t){t.preventDefault(),e.show_content()}),t(".comments-button").click(function(t){t.preventDefault(),e.show_comments(),e.activate_sidebar("comments")}),t(".activity-button").click(function(t){t.preventDefault(),e.show_activity(),e.activate_sidebar("activity")})},this.show_nav=function(){t("body").toggleClass("active-nav").removeClass("active-sidebar"),t("body").hasClass("active-nav")?CommentPress.theme.switcher.set_active("nav"):CommentPress.theme.switcher.set_active("content")},this.show_content=function(){t("body").removeClass("active-sidebar").removeClass("active-nav"),CommentPress.theme.switcher.set_active("content")},this.show_discuss=function(){t("body").toggleClass("active-sidebar").removeClass("active-nav"),CommentPress.theme.switcher.set_active("discuss")},this.show_comments=function(){"discuss"!=CommentPress.theme.switcher.get_active()?(e.show_discuss(),e.activate_sidebar("comments")):"comments"!=CommentPress.theme.switcher.get_discuss()?e.activate_sidebar("comments"):e.show_content(),CommentPress.theme.switcher.set_discuss("comments")},this.show_activity=function(){"discuss"!=CommentPress.theme.switcher.get_active()?(e.show_discuss(),e.activate_sidebar("activity")):"activity"!=CommentPress.theme.switcher.get_discuss()?e.activate_sidebar("activity"):e.show_content(),CommentPress.theme.switcher.set_discuss("activity")}},CommentPress.theme.viewport=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.track_resize(),e.track_scrolling()},this.track_resize=function(){t(window).resize(function(){CommentPress.theme.sidebars.set_height(),"y"==CommentPress.settings.DOM.get_wp_adminbar()?t("html body #switcher").css("top",t("#wpadminbar").height()+"px"):t("html body #switcher").css("top","0px")})},this.track_scrolling=function(){t(window).scroll(function(){var e,n,s,o,i,m;if("y"==CommentPress.settings.DOM.get_wp_adminbar()?(s=t("#wpadminbar"),position=s.css("position")):position="static","absolute"==position)if(n=s.height(),o=s.position(),i=window.pageYOffset-(o.top+n),parseInt(i)>0){if(m=t.px_to_num(t("html body #content_container #sidebar").css("top")),"0"==m)return;t("html body #content_container #sidebar,html body #content_container #navigation").css("top","0"),t("html body #switcher").css("top","0"),e=t(window).height(),t("#toc_sidebar .sidebar_contents_wrapper").css("height",e+"px"),t("#sidebar .sidebar_contents_wrapper").css("height",e+"px")}else{if(m=t.px_to_num(t("html body #content_container #sidebar").css("top")),m==n)return;t("html body #content_container #sidebar,html body #content_container #navigation").css("top",n+"px"),t("html body #switcher").css("top",n+"px"),CommentPress.theme.sidebars.set_height()}else"1"!=cp_is_mobile&&"1"!=cp_is_tablet||("y"==CommentPress.settings.DOM.get_wp_adminbar()?t("html body #switcher").css("top",s.height()+"px"):t("html body #switcher").css("top","0px"),CommentPress.theme.sidebars.set_height())})},this.scroll_to_top=function(e,n){if("undefined"!=typeof e){var s;"0"!=cp_is_mobile&&"1"!=cp_is_tablet||(0==e&&(s=t(".comments_container").prop("id"),"undefined"!=typeof s&&(target_id=s.split("-")[1],e=t("#post-"+target_id))),t(window).stop(!0).scrollTo(e,{duration:1.5*n,axis:"y",offset:CommentPress.theme.header.get_offset()}))}},this.on_load_scroll_to_anchor=function(){var n,s,o,i,m,c;if(n="",c=!1,s=document.location.toString(),s.match("#comment-"))return tmp=s.split("#comment-"),o=0,2==tmp.length&&(o=parseInt(tmp[1])),0!==o&&e.on_load_scroll_to_comment(o),void CommentPress.common.DOM.location_reset();if(t("span.para_marker > a").each(function(){var n;n=t(this).prop("id"),(s.match("#"+n)||s.match("#para_heading-"+n))&&(e.align_content(n,"para_heading"),CommentPress.common.DOM.location_reset(),c=!0)}),c!==!0){if(s.match("#respond"))return CommentPress.theme.sidebars.show_comments(),s.match("replytocom")?(comment_parent=parseInt(t("#comment_parent").val()),e.on_load_scroll_to_comment(comment_parent)):s.match("replytopara")?(n=t("#text_signature").val(),e.align_content(n,"commentform")):t("h3#para_heading- a.comment_block_permalink").click(),void CommentPress.common.DOM.location_reset();if(s.match("#")){if(i=s.split("#")[1],"edit=true"==i)return;if("fee-edit-link"==i)return;return m=t("#"+i),m.length&&CommentPress.common.content.scroll_page(m),void CommentPress.common.DOM.location_reset()}}},this.on_load_scroll_to_comment=function(e){var n,s,o,i,m,c,r;CommentPress.theme.sidebars.show_comments(),s=t("#comment-"+e).parents("div.paragraph_wrapper").map(function(){return this}),s.length>0&&(o=t(s[0]),n=o.prop("id").split("-")[1],"y"==cp_comments_open&&(i=t("#para_wrapper-"+n+" .reply_to_para").prop("id"),m=i.split("-")[1],c=t("#comment_post_ID").prop("value"),"1"==cp_tinymce?""!==t("#comment-"+e+" > .reply").text()&&(cp_tinymce="0",addComment.moveForm("comment-"+e,e,"respond",c,n),cp_tinymce="1"):addComment.moveForm("comment-"+e,e,"respond",c,n)),o.show(),CommentPress.common.comments.scroll_comments(t("#comment-"+e),1,"flash"),""!==n?(r=t("#textblock-"+n),t.highlight_para(r),CommentPress.common.content.scroll_page(r)):(CommentPress.settings.page.get_highlight()||CommentPress.theme.viewport.scroll_to_top(0,cp_scroll_speed),CommentPress.settings.page.toggle_highlight()))},this.align_content=function(e,n){if("none"!=n){CommentPress.theme.sidebars.show_comments();var s,o,i,m,c,r,a,_,p,d;if(s=t("#para_heading-"+e).next("div.paragraph_wrapper"),0!=s.length){if(o=t("#para_wrapper-"+e+" .commentlist"),i=s.find("#respond"),m=addComment.getLevel(),c=!1,r=s.css("display"),"none"==r&&(c=!0),t.unhighlight_para(),""!==e&&(a=t("#textblock-"+e),("1"!=cp_promote_reading||c)&&(t.highlight_para(a),CommentPress.common.content.scroll_page(a))),"0"==cp_promote_reading){if("y"==cp_comments_open&&(_=t("#comment_post_ID").prop("value"),p=t("#para_wrapper-"+e+" .reply_to_para").prop("id"),d=p.split("-")[1]),i[0]||"y"==cp_comments_open&&addComment.moveFormToPara(d,e,_),i[0]&&!m)return void("y"==cp_comments_open?(addComment.moveFormToPara(d,e,_),"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed)):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));if(!i[0]&&o[0]&&!c)return void("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));if(!c&&o[0])return void("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));if(i[0]&&!o[0]&&!c)return void("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));c||o[0]||(s.css("display","none"),c=!0)}s.slideToggle("slow",function(){"1"==cp_promote_reading&&c?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):c&&("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed))})}}}},CommentPress.theme.flat={},CommentPress.theme.settings.init(),CommentPress.theme.DOM.init(),CommentPress.theme.header.init(),CommentPress.theme.switcher.init(),CommentPress.theme.navigation.init(),CommentPress.theme.content.init(),CommentPress.theme.sidebars.init(),CommentPress.theme.viewport.init(),jQuery(document).ready(function(e){CommentPress.theme.settings.dom_ready(),CommentPress.theme.DOM.dom_ready(),CommentPress.theme.header.dom_ready(),CommentPress.theme.switcher.dom_ready(),CommentPress.theme.navigation.dom_ready(),CommentPress.theme.content.dom_ready(),CommentPress.theme.sidebars.dom_ready(),CommentPress.theme.viewport.dom_ready(),CommentPress.common.comments.comment_rollovers(),e(document).on("commentpress-comment-highlight",function(t,n){e("#li-comment-"+n+" > .comment-wrapper").addClass("background-highlight")}),e(document).on("commentpress-comment-unhighlight",function(e,t){jQuery("#li-comment-"+t+" > .comment-wrapper").removeClass("background-highlight")}),e(document).on("commentpress-comment-highlights-clear",function(){jQuery(".comment-wrapper").removeClass("background-highlight")}),e(document).on("commentpress-post-changed",function(){var t,n,s;n=document.location.href,t=e(".editor_toggle a"),0!=t.length&&(s=t.attr("href"),nonce=s.split("?")[1],n+="?"+nonce,t.attr("href",n))}),"1"==cp_special_page?setTimeout(function(){CommentPress.common.content.on_load_scroll_to_comment()},100):setTimeout(function(){CommentPress.theme.viewport.on_load_scroll_to_anchor()},100),e(document).trigger("commentpress-document-ready")});
     1CommentPress.theme={},CommentPress.theme.settings=new function(){jQuery.noConflict();this.init=function(){},this.dom_ready=function(){}},CommentPress.theme.DOM=new function(){var e=this,t=jQuery.noConflict();this.init=function(){e.head(),t("html").addClass("js")},this.dom_ready=function(){},this.head=function(){var e,t;e="",t=70,document.getElementById&&(e+='<style type="text/css" media="screen">',"0"==cp_is_mobile&&"0"==cp_textblock_meta&&(e+="#content .textblock span.para_marker, #content .textblock span.commenticonbox { display: none; } ",e+=".content .textblock span.para_marker, .content .textblock span.commenticonbox { display: none; } "),e+="ul.all_comments_listing div.item_body { display: none; } ","y"==CommentPress.settings.DOM.get_wp_adminbar()&&"32"==CommentPress.settings.DOM.get_wp_adminbar_height()&&(e+="@media screen and ( max-width: 782px ) { body.admin-bar #sidebar, #sidebar, body.admin-bar #navigation, #navigation { top: "+CommentPress.settings.DOM.get_wp_adminbar_expanded()+"px; }  } "),"0"==cp_show_subpages&&(e+="#toc_sidebar .sidebar_contents_wrapper ul li ul { display: none; } ",e+="#toc_sidebar .sidebar_contents_wrapper ul li.current_page_ancestor > ul { display: block; } ",e+="#toc_sidebar .sidebar_contents_wrapper ul li.current-menu-ancestor > ul { display: block; } ",e+="#toc_sidebar .sidebar_contents_wrapper ul li.current_page_item > ul { display: block; } "),"0"==cp_special_page&&(e+="#respond { display: none; } "),e+="#sidebar .paragraph_wrapper { display: none; } ",e+="#navigation .paragraph_wrapper { display: none; } ",e+="#sidebar .paragraph_wrapper.start_open { display: block; } ",e+="#navigation .paragraph_wrapper.start_open { display: block; } ",e+=".commentpress_page #navigation .paragraph_wrapper.special_pages_wrapper { display: block; } ",e+=".cp_sidebar_activity #comments_sidebar { display: none; } ",e+="#original .post, #literal .post { display: none; } ",e+="</style>"),document.write(e)}},CommentPress.theme.header=new function(){jQuery.noConflict();this.init=function(){},this.dom_ready=function(){},this.get_offset=function(){var e;return e=-72,"y"==CommentPress.settings.DOM.get_wp_adminbar()&&(e-=CommentPress.settings.DOM.get_wp_adminbar_height()),e}},CommentPress.theme.switcher=new function(){var e=this,t=jQuery.noConflict();this.init=function(){e.init_active()},this.dom_ready=function(){e.init_discuss()},e.active="content",this.init_active=function(){},this.get_active=function(){return e.active},this.set_active=function(t){e.active=t},e.discuss="comments",this.init_discuss=function(){t("body").hasClass("cp_sidebar_activity")&&e.set_discuss("activity")},this.get_discuss=function(){return e.discuss},this.set_discuss=function(t){e.discuss=t}},CommentPress.theme.navigation=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.menu()},this.menu=function(){t("#toc_sidebar").on("click","ul#nav li a",function(e){var n;n=t(this).parent().find("ul"),n.length>0&&(t(this).next("ul").slideToggle(),e.preventDefault())})}},CommentPress.theme.content=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.tabs()},this.tabs=function(){var e,n;e=t("#page_wrapper").css("min-height"),n=t("#page_wrapper").css("padding-bottom"),t("#literal .post").css("display","none"),t("#original .post").css("display","none"),CommentPress.common.content.workflow_tabs(e,n)}},CommentPress.theme.sidebars=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.enable_buttons(),e.set_height()},this.set_height=function(){var e,n,s,o;e=t(window).height(),"1"!=cp_is_mobile&&"1"!=cp_is_tablet||(window_inner=window.innerHeight,e<window_inner&&(e=window_inner)),n="y"==CommentPress.settings.DOM.get_wp_adminbar()?t("#wpadminbar").height():0,t("html body #content_container #sidebar,html body #content_container #navigation").css("top",n+"px"),s=e-n,t("#toc_sidebar .sidebar_contents_wrapper").css("height",s+"px"),o=e-n,t("#sidebar .sidebar_contents_wrapper").css("height",o+"px")},this.activate_sidebar=function(e){var n;n=t("#"+e+"_sidebar").css("z-index"),"2001"==n&&(t(".sidebar_container").css("z-index","2001"),t("#sidebar_tabs h2 a").removeClass("active-tab"),t("#"+e+"_sidebar").css("z-index","2010").css("display","block"),t("#sidebar_tabs #"+e+"_header h2 a").addClass("active-tab"))},this.enable_buttons=function(){t("#switcher .navigation-button").click(function(t){t.preventDefault(),e.show_nav()}),t("#switcher .content-button").click(function(t){t.preventDefault(),e.show_content()}),t("#switcher .comments-button").click(function(t){t.preventDefault(),e.show_comments(),e.activate_sidebar("comments")}),t("#switcher .activity-button").click(function(t){t.preventDefault(),e.show_activity(),e.activate_sidebar("activity")})},this.show_nav=function(){t("body").toggleClass("active-nav").removeClass("active-sidebar"),t("body").hasClass("active-nav")?CommentPress.theme.switcher.set_active("nav"):CommentPress.theme.switcher.set_active("content")},this.show_content=function(){t("body").removeClass("active-sidebar").removeClass("active-nav"),CommentPress.theme.switcher.set_active("content")},this.show_discuss=function(){t("body").toggleClass("active-sidebar").removeClass("active-nav"),CommentPress.theme.switcher.set_active("discuss")},this.show_comments=function(){"discuss"!=CommentPress.theme.switcher.get_active()?(e.show_discuss(),e.activate_sidebar("comments")):"comments"!=CommentPress.theme.switcher.get_discuss()?e.activate_sidebar("comments"):e.show_content(),CommentPress.theme.switcher.set_discuss("comments")},this.show_activity=function(){"discuss"!=CommentPress.theme.switcher.get_active()?(e.show_discuss(),e.activate_sidebar("activity")):"activity"!=CommentPress.theme.switcher.get_discuss()?e.activate_sidebar("activity"):e.show_content(),CommentPress.theme.switcher.set_discuss("activity")}},CommentPress.theme.viewport=new function(){var e=this,t=jQuery.noConflict();this.init=function(){},this.dom_ready=function(){e.track_resize(),e.track_scrolling()},this.track_resize=function(){t(window).resize(function(){CommentPress.theme.sidebars.set_height(),"y"==CommentPress.settings.DOM.get_wp_adminbar()?t("html body #switcher").css("top",t("#wpadminbar").height()+"px"):t("html body #switcher").css("top","0px")})},this.track_scrolling=function(){t(window).scroll(function(){var e,n,s,o,i,m;if("y"==CommentPress.settings.DOM.get_wp_adminbar()?(s=t("#wpadminbar"),position=s.css("position")):position="static","absolute"==position)if(n=s.height(),o=s.position(),i=window.pageYOffset-(o.top+n),parseInt(i)>0){if(m=t.px_to_num(t("html body #content_container #sidebar").css("top")),"0"==m)return;t("html body #content_container #sidebar,html body #content_container #navigation").css("top","0"),t("html body #switcher").css("top","0"),e=t(window).height(),t("#toc_sidebar .sidebar_contents_wrapper").css("height",e+"px"),t("#sidebar .sidebar_contents_wrapper").css("height",e+"px")}else{if(m=t.px_to_num(t("html body #content_container #sidebar").css("top")),m==n)return;t("html body #content_container #sidebar,html body #content_container #navigation").css("top",n+"px"),t("html body #switcher").css("top",n+"px"),CommentPress.theme.sidebars.set_height()}else"1"!=cp_is_mobile&&"1"!=cp_is_tablet||("y"==CommentPress.settings.DOM.get_wp_adminbar()?t("html body #switcher").css("top",s.height()+"px"):t("html body #switcher").css("top","0px"),CommentPress.theme.sidebars.set_height())})},this.scroll_to_top=function(e,n){if("undefined"!=typeof e){var s;"0"!=cp_is_mobile&&"1"!=cp_is_tablet||(0==e&&(s=t(".comments_container").prop("id"),"undefined"!=typeof s&&(target_id=s.split("-")[1],e=t("#post-"+target_id))),t(window).stop(!0).scrollTo(e,{duration:1.5*n,axis:"y",offset:CommentPress.theme.header.get_offset()}))}},this.on_load_scroll_to_anchor=function(){var n,s,o,i,m,r;if(n="",r=!1,s=document.location.toString(),s.match("#comment-"))return tmp=s.split("#comment-"),o=0,2==tmp.length&&(o=parseInt(tmp[1])),0!==o&&e.on_load_scroll_to_comment(o),void CommentPress.common.DOM.location_reset();if(t("span.para_marker > a").each(function(){var n;n=t(this).prop("id"),(s.match("#"+n)||s.match("#para_heading-"+n))&&(e.align_content(n,"para_heading"),CommentPress.common.DOM.location_reset(),r=!0)}),r!==!0){if(s.match("#respond"))return CommentPress.theme.sidebars.show_comments(),s.match("replytocom")?(comment_parent=parseInt(t("#comment_parent").val()),e.on_load_scroll_to_comment(comment_parent)):s.match("replytopara")?(n=t("#text_signature").val(),e.align_content(n,"commentform")):t("h3#para_heading- a.comment_block_permalink").click(),void CommentPress.common.DOM.location_reset();if(s.match("#")){if(i=s.split("#")[1],"edit=true"==i)return;if("fee-edit-link"==i)return;return m=t("#"+i),m.length&&CommentPress.common.content.scroll_page(m),void CommentPress.common.DOM.location_reset()}}},this.on_load_scroll_to_comment=function(e){var n,s,o,i,m,r,c;CommentPress.theme.sidebars.show_comments(),s=t("#comment-"+e).parents("div.paragraph_wrapper").map(function(){return this}),s.length>0&&(o=t(s[0]),n=o.prop("id").split("-")[1],"y"==cp_comments_open&&(i=t("#para_wrapper-"+n+" .reply_to_para").prop("id"),m=i.split("-")[1],r=t("#comment_post_ID").prop("value"),"1"==cp_tinymce?""!==t("#comment-"+e+" > .reply").text()&&(cp_tinymce="0",addComment.moveForm("comment-"+e,e,"respond",r,n),cp_tinymce="1"):addComment.moveForm("comment-"+e,e,"respond",r,n)),o.show(),CommentPress.common.comments.scroll_comments(t("#comment-"+e),1,"flash"),""!==n?(c=t("#textblock-"+n),t.highlight_para(c),CommentPress.common.content.scroll_page(c)):(CommentPress.settings.page.get_highlight()||CommentPress.theme.viewport.scroll_to_top(0,cp_scroll_speed),CommentPress.settings.page.toggle_highlight()))},this.align_content=function(e,n){if("none"!=n){CommentPress.theme.sidebars.show_comments();var s,o,i,m,r,c,a,_,p,d;if(s=t("#para_heading-"+e).next("div.paragraph_wrapper"),0!=s.length){if(o=t("#para_wrapper-"+e+" .commentlist"),i=s.find("#respond"),m=addComment.getLevel(),r=!1,c=s.css("display"),"none"==c&&(r=!0),t.unhighlight_para(),""!==e&&(a=t("#textblock-"+e),("1"!=cp_promote_reading||r)&&(t.highlight_para(a),CommentPress.common.content.scroll_page(a))),"0"==cp_promote_reading){if("y"==cp_comments_open&&(_=t("#comment_post_ID").prop("value"),p=t("#para_wrapper-"+e+" .reply_to_para").prop("id"),d=p.split("-")[1]),i[0]||"y"==cp_comments_open&&addComment.moveFormToPara(d,e,_),i[0]&&!m)return void("y"==cp_comments_open?(addComment.moveFormToPara(d,e,_),"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed)):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));if(!i[0]&&o[0]&&!r)return void("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));if(!r&&o[0])return void("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));if(i[0]&&!o[0]&&!r)return void("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed));r||o[0]||(s.css("display","none"),r=!0)}s.slideToggle("slow",function(){"1"==cp_promote_reading&&r?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):r&&("y"==cp_comments_open?"para_heading"==n?CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#respond"),cp_scroll_speed):CommentPress.common.comments.scroll_comments(t("#para_heading-"+e),cp_scroll_speed))})}}}},CommentPress.theme.flat={},CommentPress.theme.settings.init(),CommentPress.theme.DOM.init(),CommentPress.theme.header.init(),CommentPress.theme.switcher.init(),CommentPress.theme.navigation.init(),CommentPress.theme.content.init(),CommentPress.theme.sidebars.init(),CommentPress.theme.viewport.init(),jQuery(document).ready(function(e){CommentPress.theme.settings.dom_ready(),CommentPress.theme.DOM.dom_ready(),CommentPress.theme.header.dom_ready(),CommentPress.theme.switcher.dom_ready(),CommentPress.theme.navigation.dom_ready(),CommentPress.theme.content.dom_ready(),CommentPress.theme.sidebars.dom_ready(),CommentPress.theme.viewport.dom_ready(),CommentPress.common.comments.comment_rollovers(),e(document).on("commentpress-comment-highlight",function(t,n){e("#li-comment-"+n+" > .comment-wrapper").addClass("background-highlight")}),e(document).on("commentpress-comment-unhighlight",function(e,t){jQuery("#li-comment-"+t+" > .comment-wrapper").removeClass("background-highlight")}),e(document).on("commentpress-comment-highlights-clear",function(){jQuery(".comment-wrapper").removeClass("background-highlight")}),e(document).on("commentpress-post-changed",function(){var t,n,s;n=document.location.href,t=e(".editor_toggle a"),0!=t.length&&(s=t.attr("href"),nonce=s.split("?")[1],n+="?"+nonce,t.attr("href",n))}),"1"==cp_special_page?setTimeout(function(){CommentPress.common.content.on_load_scroll_to_comment()},100):setTimeout(function(){CommentPress.theme.viewport.on_load_scroll_to_anchor()},100),e(document).trigger("commentpress-document-ready")});
  • commentpress-core/trunk/themes/commentpress-flat/page.php

    r1695759 r1782116  
    149149    );
    150150
    151     // do we have a featured image?
    152     if ( ! commentpress_has_feature_image() ) {
    153 
    154         // load it if we find it
    155         if ( $cp_page_navigation != '' ) load_template( $cp_page_navigation, false );
    156 
    157     }
     151    // load it if we find it
     152    if ( $cp_page_navigation != '' ) load_template( $cp_page_navigation, false );
    158153
    159154    ?>
  • commentpress-core/trunk/themes/commentpress-flat/single.php

    r1695759 r1782116  
    148148);
    149149
    150 // do we have a featured image?
    151 if ( ! commentpress_has_feature_image() ) {
    152 
    153     // load it if we find it
    154     if ( $cp_page_navigation != '' ) load_template( $cp_page_navigation, false );
    155 
    156 }
     150// load it if we find it
     151if ( $cp_page_navigation != '' ) load_template( $cp_page_navigation, false );
    157152
    158153?>
  • commentpress-core/trunk/themes/commentpress-modern/assets/css/print.css

    r1695759 r1782116  
    132132    #main div.sharedaddy,
    133133
     134    /* JetPack contact form */
     135    form.contact-form,
     136
    134137    /* Featured Comments */
    135138    div.feature-burry-comments,
     
    139142    .comment-upvote,
    140143
     144    /* Facebook */
     145    div.fb_reset,
     146
    141147    /* WordPress */
    142148    #wpadminbar,
     149
     150    /* Footer menu */
     151    #footer .menu,
    143152
    144153    /* force comment form to be hidden */
     
    160169        margin: 0;
    161170        padding: 0;
     171        min-height: 0;
    162172    }
    163173
     
    178188    #header #title h1 a:visited
    179189    {
     190        display: block;
     191        width: auto;
     192        height: auto;
    180193        letter-spacing: 0;
    181194        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     
    193206    }
    194207
    195     body.commentpress_page #header #title h1
     208    body.commentpress_page #header #title h1,
     209    body.not_commentable #header #title h1
    196210    {
    197211        padding-left: 0;
     
    269283    }
    270284
     285    #container #content,
    271286    #content
    272287    {
     
    286301    }
    287302
    288     body.commentpress_page .post
     303    body.commentpress_page .post,
     304    body.not_commentable .post
    289305    {
    290306        padding: 0 0 20pt 0;
     
    397413        white-space: pre-wrap;
    398414        overflow: visible;
     415    }
     416
     417    .post .fluid-width-video-wrapper
     418    {
     419        width: auto !important;
     420        height: auto !important;
     421        min-height: 0 !important;
     422        color: #000;
     423        position: static !important;
     424        padding: 0 !important;
     425    }
     426
     427    .post .fluid-width-video-wrapper iframe,
     428    .post .fluid-width-video-wrapper object,
     429    .post .fluid-width-video-wrapper embed
     430    {
     431        width: auto !important;
     432        height: auto !important;
     433        min-height: 0 !important;
     434        color: #000;
     435        position: static !important;
    399436    }
    400437
  • commentpress-core/trunk/themes/commentpress-modern/assets/css/print.min.css

    r1695759 r1782116  
    1 @media print{*,:after,:before,html{background:#fff!important}#container,div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{position:static!important;width:auto!important}img,span.captioned_image{page-break-after:avoid;page-break-inside:avoid}div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{height:auto!important;min-height:0!important;color:#000}*,:after,:before{-webkit-transition:none!important;-moz-transition:none!important;transition:none!important;box-sizing:inherit}html{color:#000;margin:0;padding:0}body,body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-3,body.is-groupblog.blogtype-4{background:#fff!important;color:#000;font-size:9pt;font-family:Georgia,serif;margin:24pt;padding:0}a{color:#000!important;text-decoration:underline}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6,h1,h2,h3,h4,h5,h6{padding-left:0;padding-right:0;color:#000;font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;page-break-after:avoid;page-break-inside:avoid;text-transform:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#000;text-decoration:none}#content div.sharedaddy,#document_search,#header img,#main div.sharedaddy,#navigation,#respond,#respond_wrapper,#switcher,#tagline,#user_links,#wpadminbar,.comment-identifier span.comment-assign,.comment-identifier span.comment-edit,.comment-popover-holder,.comment-upvote,.cp_logo_image,.entry-category-meta,.entry-meta,.multipager,.no_comments,.page_navigation,.popover-holder,a.comment-edit-link,a.skip,div#activity_sidebar,div#toc_sidebar,div.feature-burry-comments,div.feature-bury-comments,div.reply,div.reply_to_para,div.sharedaddy,div.ui-helper-hidden-accessible,div.ui-helper-hidden-accessible div,div.ui-resizable-handle,div.ui-tooltip,img.avatar,p.edit_link,p.postmetadata,span.commenticonbox,span.off-left,ul#sidebar_tabs{display:none!important}#header,#title{position:static!important;top:auto;height:auto;border:none;margin:0;padding:0}#page_title,#title{float:none;margin:0;padding:0}#header #title h1,#header #title h1 a,#header #title h1 a:active,#header #title h1 a:hover,#header #title h1 a:link,#header #title h1 a:visited{letter-spacing:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:11pt;font-weight:400;color:#ccc!important;margin:0;padding:0;text-indent:0!important}.cp_featured_title_inner h2.post_title a,.post h2.post_title a{color:#000}#header #title h1{padding-left:24pt}body.commentpress_page #header #title h1{padding-left:0}#container{top:auto!important;background:#fff;padding:0!important;margin:0!important}#content_container,#header,#main_wrapper,#page_wrapper,#wrapper,.sidebar_minimiser{float:none;position:static!important;width:auto!important;height:auto!important;padding:0;margin:0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;-khtml-box-shadow:none;box-shadow:none}#wrapper{z-index:auto;max-width:100%!important;min-width:100%!important}.cp_feature_image .cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0 0 0 24pt}.cp_featured_title_inner h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none}#content{padding:0;margin:0;height:auto;border:none}.post{padding:0 0 20pt 24pt;font-size:100%;border:none;border-bottom:1px solid #ccc}body.commentpress_page .post{padding:0 0 20pt}.post h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none;line-height:1.5}#content .post .search_meta,#content .post .search_meta cite,#content .post .search_meta p{margin:0;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:110%;color:#aaa;text-transform:none}#content .post .search_meta{margin:-2pt 0 24pt;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#content .post .search_meta a,#content .post .search_meta cite a{letter-spacing:0;color:#aaa;text-decoration:none;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}.post .textblock{position:relative!important;background:0 0!important}.post address,.post p,.post pre{margin:1em 0;padding:0;line-height:1.5}.selected_para{color:#000!important}.post ol,.post ul{width:auto!important;margin:1em 0 1em 2em;padding:0;line-height:1.5}.post ol li,.post ul li{margin-bottom:2pt;line-height:1.5}.post dd{line-height:1.5}.post pre{padding:1em;white-space:pre-wrap;overflow:visible}span.captioned_image{border:1px solid #ccc}li.list_commenticon{float:left;width:2.5em;color:#888;margin-left:-2.5em;list-style:none}ol ol li.list_commenticon,ol ul li.list_commenticon,ul ol li.list_commenticon,ul ul li.list_commenticon{visibility:hidden;float:left;height:1px;margin:0;padding:0}#footer,#sidebar{float:none;clear:left;max-width:100%!important;min-width:100%!important}span.para_marker{display:block;position:absolute!important;width:auto!important;margin-left:0;left:-32px!important;color:#ccc!important;background-color:transparent}blockquote p span.para_marker{margin-left:-10pt}ol span.para_marker,ul span.para_marker{margin-left:-2em}#content .post span.para_marker a,#content .post span.para_marker a span,span.para_marker a{font-size:8pt;color:#ccc!important;text-decoration:none}.running_header_bottom{text-align:center;margin:3em 0 1em;padding-bottom:1em}#comments_in_page_wrapper,#comments_in_page_wrapper .comments_container{width:100%;margin:0;padding:0}#comments_sidebar,#sidebar{width:auto!important;position:static!important}#comments_in_page_wrapper ul.all_comments_listing li>h3{font-size:14pt;color:#000;border-top:none;border-bottom:1px solid #ccc}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_wrapper{border-top:1px solid #ccc;border-bottom:none;page-break-inside:avoid}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_meta{padding:3px 0 0;border:none}#comments_in_page_wrapper .comment-content h1,#comments_in_page_wrapper .comment-content h2,#comments_in_page_wrapper .comment-content h3,#comments_in_page_wrapper .comment-content h4,#comments_in_page_wrapper .comment-content h5,#comments_in_page_wrapper .comment-content h6{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none;color:#000}.post p.comments_hl{padding:0;margin:.5em 0;font-size:16pt;font-weight:700;color:#000}.general_comments{margin:0;padding:0}.post .comments_container>h3{padding:0;margin:.5em 0 1em;font-size:16pt;font-weight:700;color:#000}#comments_in_page_wrapper .comment-content{margin:0;padding:0}#sidebar{height:auto!important;top:auto!important;left:auto!important}#comments_sidebar{border-bottom:1px solid #ccc;padding-bottom:16pt}#sidebar .sidebar_container .sidebar_header{display:block;padding-top:10pt}#sidebar .sidebar_container .sidebar_header h2{display:block;margin-top:0;padding-top:10pt;font-size:16pt;font-weight:700;text-transform:none;color:#000}.sidebar_contents_wrapper{height:auto!important;overflow:visible}div#comments_sidebar .comments_container>h3{text-transform:none;color:#000;margin:1em 0 0;padding:0 0 .2em;font-size:12pt;font-weight:700;border:none}div#comments_sidebar .comments_container>h3 a{text-transform:none;display:inline;color:#000;margin:0;padding:0}div#comments_sidebar .comments_container>h3 span.source_block{text-transform:none;display:inline!important}ol.children,ol.commentlist{margin:0;padding:0}.post ol.children li,.post ol.children li.comment,.post ol.commentlist li,.post ol.commentlist li.comment,ol.children li,ol.children li.comment,ol.commentlist li,ol.commentlist li.comment{list-style:decimal;margin:0 0 0 20pt;padding:0}.comment-wrapper{page-break-inside:avoid}div#comments_sidebar .comments_container .comment-content{font-size:100%;padding:.2em 0 .5em;border:none!important}.comment-content,.comment-identifier{border:none}.comment-identifier a.comment_permalink,.comment-identifier cite{text-transform:none;letter-spacing:0;color:#aaa!important;display:inline;font-size:7pt;margin:0;padding:0;font-weight:700}.comment-identifier cite a{font-weight:700;color:#222;text-decoration:none}.comment-identifier a.comment_permalink{font-weight:400;color:#aaa;text-decoration:none}.comment_permalink_copy:before{display:none}div#comments_sidebar .comments_container .reply{font-size:110%;padding:.2em 0 1em;border:none!important}div#comments_sidebar .paragraph_wrapper{display:block!important}a.comment-reply-link,div#comments_sidebar .paragraph_wrapper.no_comments{display:none!important}div#comments_sidebar .comments_container .comment-content h1,div#comments_sidebar .comments_container .comment-content h2,div#comments_sidebar .comments_container .comment-content h3,div#comments_sidebar .comments_container .comment-content h4,div#comments_sidebar .comments_container .comment-content h5,div#comments_sidebar .comments_container .comment-content h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}div#comments_sidebar .comments_container .comment-content p{line-height:1.4;padding:0 0 .6em .2em;margin:0}div#comments_sidebar .comments_container .comment-content ol,div#comments_sidebar .comments_container .comment-content ul{line-height:1.4;padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content>ol,div#comments_sidebar .comments_container .comment-content>ul{padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content ol li,div#comments_sidebar .comments_container .comment-content ul li{margin-bottom:2pt;line-height:1.4}ul.all_comments_listing div.item_body{display:block!important}#footer{position:static!important;border:none;margin:0;padding:1em 0 0;color:#aaa;-webkit-box-shadow:0 0 0 #fff;-moz-box-shadow:0 0 0 #fff;-khtml-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff}#footer_inner{margin:0;padding:0}#footer address,#footer h3,#footer h4,#footer h5,#footer h6,#footer ol li,#footer p,#footer span,#footer ul li{color:#aaa;font-size:.8em;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#footer a,#footer_inner p a{color:#aaa!important;text-decoration:none}p.hidden_page_url{display:block;color:#aaa!important;background:0 0;text-align:center;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:.8em}blockquote,pre,table{page-break-inside:avoid}blockquote{margin:0;padding-left:10pt;border-left:1px solid #aaa;font-style:italic}table{width:auto}.post table td,.post table th,table td,table th{border:1px solid #ccc}dl,ol,ul{page-break-before:avoid}dt{font-weight:700}.fee-content-body,.fee-insert-thumbnail,.fee-thumbnail-toolbar,.fee-toolbar,.footnotes li .footnotereverse,.footnotes li.list_commenticon .commenticonbox,.footnotes li.list_commenticon .para_marker,.footnotes li>a:last-child,.simple-footnotes .commenticonbox,.simple-footnotes .para_marker,.simple-footnotes li.list_commenticon .commenticonbox,.simple-footnotes li.list_commenticon .para_marker,.simple-footnotes li>a:last-child,.wp-core-ui{display:none}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title{padding:0!important}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0 0 0 24pt}}
     1@media print{*,:after,:before,html{background:#fff!important}img,span.captioned_image{page-break-after:avoid;page-break-inside:avoid}div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}*,:after,:before{-webkit-transition:none!important;-moz-transition:none!important;transition:none!important;box-sizing:inherit}html{color:#000;margin:0;padding:0}body,body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-3,body.is-groupblog.blogtype-4{background:#fff!important;color:#000;font-size:9pt;font-family:Georgia,serif;margin:24pt;padding:0}a{color:#000!important;text-decoration:underline}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6,h1,h2,h3,h4,h5,h6{padding-left:0;padding-right:0;color:#000;font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;page-break-after:avoid;page-break-inside:avoid;text-transform:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#000;text-decoration:none}#content div.sharedaddy,#document_search,#footer .menu,#header img,#main div.sharedaddy,#navigation,#respond,#respond_wrapper,#switcher,#tagline,#user_links,#wpadminbar,.comment-identifier span.comment-assign,.comment-identifier span.comment-edit,.comment-popover-holder,.comment-upvote,.cp_logo_image,.entry-category-meta,.entry-meta,.multipager,.no_comments,.page_navigation,.popover-holder,a.comment-edit-link,a.skip,div#activity_sidebar,div#toc_sidebar,div.fb_reset,div.feature-burry-comments,div.feature-bury-comments,div.reply,div.reply_to_para,div.sharedaddy,div.ui-helper-hidden-accessible,div.ui-helper-hidden-accessible div,div.ui-resizable-handle,div.ui-tooltip,form.contact-form,img.avatar,p.edit_link,p.postmetadata,span.commenticonbox,span.off-left,ul#sidebar_tabs{display:none!important}#header,#title{position:static!important;top:auto;height:auto;border:none;margin:0;padding:0;min-height:0}#page_title,#title{float:none;margin:0;padding:0}#header #title h1,#header #title h1 a,#header #title h1 a:active,#header #title h1 a:hover,#header #title h1 a:link,#header #title h1 a:visited{display:block;width:auto;height:auto;letter-spacing:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:11pt;font-weight:400;color:#ccc!important;margin:0;padding:0;text-indent:0!important}.cp_featured_title_inner h2.post_title a,.post h2.post_title a{color:#000}#header #title h1{padding-left:24pt}body.commentpress_page #header #title h1,body.not_commentable #header #title h1{padding-left:0}#container{position:static!important;top:auto!important;background:#fff;width:auto!important;padding:0!important;margin:0!important}#content_container,#header,#main_wrapper,#page_wrapper,#wrapper,.sidebar_minimiser{float:none;position:static!important;width:auto!important;height:auto!important;padding:0;margin:0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;-khtml-box-shadow:none;box-shadow:none}#wrapper{z-index:auto;max-width:100%!important;min-width:100%!important}.cp_feature_image .cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0 0 0 24pt}.cp_featured_title_inner h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none}#container #content,#content{padding:0;margin:0;height:auto;border:none}.post{padding:0 0 20pt 24pt;font-size:100%;border:none;border-bottom:1px solid #ccc}body.commentpress_page .post,body.not_commentable .post{padding:0 0 20pt}.post h2.post_title{padding:0;margin-top:10pt;margin-bottom:4pt;font-size:24pt;text-transform:none;line-height:1.5}#content .post .search_meta,#content .post .search_meta cite,#content .post .search_meta p{margin:0;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:110%;color:#aaa;text-transform:none}#content .post .search_meta{margin:-2pt 0 24pt;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#content .post .search_meta a,#content .post .search_meta cite a{letter-spacing:0;color:#aaa;text-decoration:none;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}.post .textblock{position:relative!important;background:0 0!important}.post address,.post p,.post pre{margin:1em 0;padding:0;line-height:1.5}.selected_para{color:#000!important}.post .fluid-width-video-wrapper,.post .fluid-width-video-wrapper embed,.post .fluid-width-video-wrapper iframe,.post .fluid-width-video-wrapper object{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}.post ol,.post ul{width:auto!important;margin:1em 0 1em 2em;padding:0;line-height:1.5}.post ol li,.post ul li{margin-bottom:2pt;line-height:1.5}.post dd{line-height:1.5}.post pre{padding:1em;white-space:pre-wrap;overflow:visible}.post .fluid-width-video-wrapper{padding:0!important}span.captioned_image{border:1px solid #ccc}li.list_commenticon{float:left;width:2.5em;color:#888;margin-left:-2.5em;list-style:none}ol ol li.list_commenticon,ol ul li.list_commenticon,ul ol li.list_commenticon,ul ul li.list_commenticon{visibility:hidden;float:left;height:1px;margin:0;padding:0}#footer,#sidebar{float:none;clear:left;max-width:100%!important;min-width:100%!important}span.para_marker{display:block;position:absolute!important;width:auto!important;margin-left:0;left:-32px!important;color:#ccc!important;background-color:transparent}blockquote p span.para_marker{margin-left:-10pt}ol span.para_marker,ul span.para_marker{margin-left:-2em}#content .post span.para_marker a,#content .post span.para_marker a span,span.para_marker a{font-size:8pt;color:#ccc!important;text-decoration:none}.running_header_bottom{text-align:center;margin:3em 0 1em;padding-bottom:1em}#comments_in_page_wrapper,#comments_in_page_wrapper .comments_container{width:100%;margin:0;padding:0}#comments_sidebar,#sidebar{width:auto!important;position:static!important}#comments_in_page_wrapper ul.all_comments_listing li>h3{font-size:14pt;color:#000;border-top:none;border-bottom:1px solid #ccc}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_wrapper{border-top:1px solid #ccc;border-bottom:none;page-break-inside:avoid}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_meta{padding:3px 0 0;border:none}#comments_in_page_wrapper .comment-content h1,#comments_in_page_wrapper .comment-content h2,#comments_in_page_wrapper .comment-content h3,#comments_in_page_wrapper .comment-content h4,#comments_in_page_wrapper .comment-content h5,#comments_in_page_wrapper .comment-content h6{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none;color:#000}.post p.comments_hl{padding:0;margin:.5em 0;font-size:16pt;font-weight:700;color:#000}.general_comments{margin:0;padding:0}.post .comments_container>h3{padding:0;margin:.5em 0 1em;font-size:16pt;font-weight:700;color:#000}#comments_in_page_wrapper .comment-content{margin:0;padding:0}#sidebar{height:auto!important;top:auto!important;left:auto!important}#comments_sidebar{border-bottom:1px solid #ccc;padding-bottom:16pt}#sidebar .sidebar_container .sidebar_header{display:block;padding-top:10pt}#sidebar .sidebar_container .sidebar_header h2{display:block;margin-top:0;padding-top:10pt;font-size:16pt;font-weight:700;text-transform:none;color:#000}.sidebar_contents_wrapper{height:auto!important;overflow:visible}div#comments_sidebar .comments_container>h3{text-transform:none;color:#000;margin:1em 0 0;padding:0 0 .2em;font-size:12pt;font-weight:700;border:none}div#comments_sidebar .comments_container>h3 a{text-transform:none;display:inline;color:#000;margin:0;padding:0}div#comments_sidebar .comments_container>h3 span.source_block{text-transform:none;display:inline!important}ol.children,ol.commentlist{margin:0;padding:0}.post ol.children li,.post ol.children li.comment,.post ol.commentlist li,.post ol.commentlist li.comment,ol.children li,ol.children li.comment,ol.commentlist li,ol.commentlist li.comment{list-style:decimal;margin:0 0 0 20pt;padding:0}.comment-wrapper{page-break-inside:avoid}div#comments_sidebar .comments_container .comment-content{font-size:100%;padding:.2em 0 .5em;border:none!important}.comment-content,.comment-identifier{border:none}.comment-identifier a.comment_permalink,.comment-identifier cite{text-transform:none;letter-spacing:0;color:#aaa!important;display:inline;font-size:7pt;margin:0;padding:0;font-weight:700}.comment-identifier cite a{font-weight:700;color:#222;text-decoration:none}.comment-identifier a.comment_permalink{font-weight:400;color:#aaa;text-decoration:none}.comment_permalink_copy:before{display:none}div#comments_sidebar .comments_container .reply{font-size:110%;padding:.2em 0 1em;border:none!important}div#comments_sidebar .paragraph_wrapper{display:block!important}a.comment-reply-link,div#comments_sidebar .paragraph_wrapper.no_comments{display:none!important}div#comments_sidebar .comments_container .comment-content h1,div#comments_sidebar .comments_container .comment-content h2,div#comments_sidebar .comments_container .comment-content h3,div#comments_sidebar .comments_container .comment-content h4,div#comments_sidebar .comments_container .comment-content h5,div#comments_sidebar .comments_container .comment-content h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}div#comments_sidebar .comments_container .comment-content p{line-height:1.4;padding:0 0 .6em .2em;margin:0}div#comments_sidebar .comments_container .comment-content ol,div#comments_sidebar .comments_container .comment-content ul{line-height:1.4;padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content>ol,div#comments_sidebar .comments_container .comment-content>ul{padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content ol li,div#comments_sidebar .comments_container .comment-content ul li{margin-bottom:2pt;line-height:1.4}ul.all_comments_listing div.item_body{display:block!important}#footer{position:static!important;border:none;margin:0;padding:1em 0 0;color:#aaa;-webkit-box-shadow:0 0 0 #fff;-moz-box-shadow:0 0 0 #fff;-khtml-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff}#footer_inner{margin:0;padding:0}#footer address,#footer h3,#footer h4,#footer h5,#footer h6,#footer ol li,#footer p,#footer span,#footer ul li{color:#aaa;font-size:.8em;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#footer a,#footer_inner p a{color:#aaa!important;text-decoration:none}p.hidden_page_url{display:block;color:#aaa!important;background:0 0;text-align:center;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:.8em}blockquote,pre,table{page-break-inside:avoid}blockquote{margin:0;padding-left:10pt;border-left:1px solid #aaa;font-style:italic}table{width:auto}.post table td,.post table th,table td,table th{border:1px solid #ccc}dl,ol,ul{page-break-before:avoid}dt{font-weight:700}.fee-content-body,.fee-insert-thumbnail,.fee-thumbnail-toolbar,.fee-toolbar,.footnotes li .footnotereverse,.footnotes li.list_commenticon .commenticonbox,.footnotes li.list_commenticon .para_marker,.footnotes li>a:last-child,.simple-footnotes .commenticonbox,.simple-footnotes .para_marker,.simple-footnotes li.list_commenticon .commenticonbox,.simple-footnotes li.list_commenticon .para_marker,.simple-footnotes li>a:last-child,.wp-core-ui{display:none}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title{padding:0!important}body.fee .cp_feature_image .fee-thumbnail.fee-empty+.cp_featured_title .cp_featured_title_inner{margin:0!important;padding:0 0 0 24pt}}
  • commentpress-core/trunk/themes/commentpress-theme/assets/css/print.css

    r1695759 r1782116  
    119119    #main div.sharedaddy,
    120120
     121    /* JetPack contact form */
     122    form.contact-form,
     123
    121124    /* Featured Comments */
    122125    div.feature-burry-comments,
     
    126129    .comment-upvote,
    127130
     131    /* Facebook */
     132    div.fb_reset,
     133
    128134    /* WordPress */
    129135    #wpadminbar,
     136
     137    /* Footer menu */
     138    #footer .menu,
    130139
    131140    /* force comment form to be hidden */
     
    341350        white-space: pre-wrap;
    342351        overflow: visible;
     352    }
     353
     354    .post .fluid-width-video-wrapper
     355    {
     356        width: auto !important;
     357        height: auto !important;
     358        min-height: 0 !important;
     359        color: #000;
     360        position: static !important;
     361        padding: 0 !important;
     362    }
     363
     364    .post .fluid-width-video-wrapper iframe,
     365    .post .fluid-width-video-wrapper object,
     366    .post .fluid-width-video-wrapper embed
     367    {
     368        width: auto !important;
     369        height: auto !important;
     370        min-height: 0 !important;
     371        color: #000;
     372        position: static !important;
    343373    }
    344374
  • commentpress-core/trunk/themes/commentpress-theme/assets/css/print.min.css

    r1695759 r1782116  
    1 @media print{#book_header,#content,#titlewrap{padding:0;height:auto;border:none}img,span.captioned_image{page-break-after:avoid;page-break-inside:avoid}div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}*,:after,:before{-webkit-transition:none!important;-moz-transition:none!important;transition:none!important;background:#fff!important;box-sizing:inherit}body,body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-3,body.is-groupblog.blogtype-4{background:#fff!important;color:#000;font-size:9pt;font-family:Georgia,serif;margin:24pt;padding:0}a{color:#000!important;text-decoration:underline}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6,h1,h2,h3,h4,h5,h6{padding-left:0;padding-right:0;color:#000;font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;page-break-after:avoid;page-break-inside:avoid;text-transform:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#000;text-decoration:none}#book_header img,#book_search,#content div.sharedaddy,#header,#main div.sharedaddy,#respond,#respond_wrapper,#tagline,#user_links,#wpadminbar,.comment-identifier span.comment-assign,.comment-identifier span.comment-edit,.comment-popover-holder,.comment-upvote,.cp_logo_image,.entry-category-meta,.entry-meta,.multipager,.no_comments,.popover-holder,a.comment-edit-link,a.skip,div#activity_sidebar,div#toc_sidebar,div.feature-burry-comments,div.feature-bury-comments,div.reply,div.reply_to_para,div.sharedaddy,div.ui-helper-hidden-accessible,div.ui-helper-hidden-accessible div,div.ui-resizable-handle,div.ui-tooltip,img.avatar,p.edit_link,p.postmetadata,span.commenticonbox,span.off-left,ul#sidebar_tabs{display:none!important}#book_header,#titlewrap{position:static!important;top:auto;margin:0}#page_title,#title{float:none;margin:0;padding:0}#book_header #title h1,#book_header #title h1 a,#book_header #title h1 a:active,#book_header #title h1 a:hover,#book_header #title h1 a:link,#book_header #title h1 a:visited{letter-spacing:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:11pt;font-weight:400;color:#ccc!important;margin:0;padding:0;text-indent:0!important}#book_header #title h1{padding-left:24pt}body.commentpress_page #book_header #title h1{padding-left:0}#container{position:static!important;top:auto!important;background:#fff}#page_wrapper,.sidebar_minimiser{width:auto;padding:0;margin:0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;-khtml-box-shadow:none;box-shadow:none}#content{margin:0}.post{padding:0 0 20pt 24pt;font-size:100%;border:none;border-bottom:2px solid #ccc}body.commentpress_page .post{padding:0 0 20pt}.post h2.post_title{margin:0;padding-top:10pt;padding-bottom:4pt;padding-left:0;font-size:24pt;text-transform:none}.post h2.post_title a{color:#000}#content .post .search_meta,#content .post .search_meta cite,#content .post .search_meta p{margin:0;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:90%;color:#aaa}.post address,.post ol,.post p,.post pre,.post ul{margin:1em 0;padding:0;line-height:1.5}#content .post .search_meta a,#content .post .search_meta cite a{letter-spacing:0;color:#aaa;text-decoration:none;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}.post .textblock{position:relative!important;background:0 0!important}.selected_para{color:#000!important}.post ol li,.post ul li{margin-bottom:2pt;line-height:1.5}.post dd{line-height:1.5}.post pre{padding:1em;white-space:pre-wrap;overflow:visible}span.captioned_image{border:1px solid #ccc}li.list_commenticon{float:left;width:2.5em;color:#888;margin-left:-2.5em;list-style:none}ol ol li.list_commenticon,ol ul li.list_commenticon,ul ol li.list_commenticon,ul ul li.list_commenticon{visibility:hidden;float:left;height:1px;margin:0;padding:0}#footer,#sidebar{float:none;clear:left;max-width:100%!important;min-width:100%!important}span.para_marker{display:block;position:absolute!important;width:auto!important;margin-left:0;left:-32px!important;color:#ccc!important;background-color:transparent}blockquote p span.para_marker{margin-left:-10pt}ol span.para_marker,ul span.para_marker{margin-left:-2em}#content .post span.para_marker a,#content .post span.para_marker a span,span.para_marker a{font-size:8pt;color:#ccc!important;text-decoration:none}.running_header_bottom{text-align:center;margin:3em 0 1em;padding-bottom:1em}#comments_in_page_wrapper,#comments_in_page_wrapper .comments_container{width:100%;margin:0;padding:0}#comments_sidebar,#sidebar{width:auto!important;position:static!important}#comments_in_page_wrapper ul.all_comments_listing li>h3{font-size:14pt;color:#000;border-top:none;border-bottom:1px solid #ccc}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_wrapper{border-top:1px solid #ccc;border-bottom:none;page-break-inside:avoid}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_meta{padding:3px 0 0;border:none}#comments_in_page_wrapper .comment-content h1,#comments_in_page_wrapper .comment-content h2,#comments_in_page_wrapper .comment-content h3,#comments_in_page_wrapper .comment-content h4,#comments_in_page_wrapper .comment-content h5,#comments_in_page_wrapper .comment-content h6{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none;color:#000}.post p.comments_hl{padding:0;margin:.5em 0;font-size:16pt;font-weight:700;color:#000}.general_comments{margin:0;padding:0}.post .comments_container>h3{padding:0;margin:.5em 0 1em;font-size:16pt;font-weight:700;color:#000}#comments_in_page_wrapper .comment-content{margin:0;padding:0}#sidebar{height:auto!important;top:auto!important;left:auto!important}#comments_sidebar{border-bottom:2px solid #ccc}#comments_sidebar .sidebar_header{display:block;padding-top:10pt}#comments_sidebar .sidebar_header h2{display:block;padding-top:10pt;font-size:16pt;font-weight:700;text-transform:none;color:#000}.sidebar_contents_wrapper{height:auto!important;overflow:visible}div#comments_sidebar .comments_container>h3{text-transform:none;color:#000;margin:1em 0;padding:0 0 .2em;font-size:12pt;font-weight:700;border:none}div#comments_sidebar .comments_container>h3 a{text-transform:none;display:inline;color:#000;margin:0;padding:0}ol.children,ol.commentlist{margin:0;padding:0}.post ol.children li,.post ol.children li.comment,.post ol.commentlist li,.post ol.commentlist li.comment,ol.children li,ol.children li.comment,ol.commentlist li,ol.commentlist li.comment{list-style:decimal;margin:0 0 0 20pt;padding:0}.comment-wrapper{page-break-inside:avoid}div#comments_sidebar .comments_container .comment-content{font-size:100%;padding:.2em 0 .5em;border:none!important}.comment-content,.comment-identifier{border:none}.comment-identifier a.comment_permalink,.comment-identifier cite{text-transform:none;letter-spacing:0;color:#aaa!important;display:inline;font-size:7pt;margin:0;padding:0;font-weight:700}.comment-identifier cite a,.comment-identifier cite a:active,.comment-identifier cite a:hover,.comment-identifier cite a:visited{font-weight:700;color:#aaa;text-decoration:none}.comment-identifier a{color:#aaa;text-decoration:none}.comment_permalink_copy:before{display:none}div#comments_sidebar .comments_container .reply{font-size:110%;padding:.2em 0 1em;border:none!important}div#comments_sidebar .paragraph_wrapper{display:block!important}a.comment-reply-link,div#comments_sidebar .paragraph_wrapper.no_comments{display:none!important}div#comments_sidebar .comments_container .comment-content h1,div#comments_sidebar .comments_container .comment-content h2,div#comments_sidebar .comments_container .comment-content h3,div#comments_sidebar .comments_container .comment-content h4,div#comments_sidebar .comments_container .comment-content h5,div#comments_sidebar .comments_container .comment-content h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}div#comments_sidebar .comments_container .comment-content p{line-height:1.4;padding:0 0 .6em .2em;margin:0}div#comments_sidebar .comments_container .comment-content ol,div#comments_sidebar .comments_container .comment-content ul{line-height:1.4;padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content>ol,div#comments_sidebar .comments_container .comment-content>ul{padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content ol li,div#comments_sidebar .comments_container .comment-content ul li{margin-bottom:2pt;line-height:1.4}ul.all_comments_listing div.item_body{display:block!important}#footer{position:static!important;border:none;margin:0;padding:1em 0 0;color:#aaa;-webkit-box-shadow:0 0 0 #fff;-moz-box-shadow:0 0 0 #fff;-khtml-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff}#footer_inner{margin:0;padding:0}#footer address,#footer h3,#footer h4,#footer h5,#footer h6,#footer ol li,#footer p,#footer span,#footer ul li{color:#aaa;font-size:.8em;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#footer a{color:#aaa!important;text-decoration:none}#footer_inner p.hidden_page_url{display:block;color:#aaa!important;background:0 0;text-align:center;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:.8em}blockquote,pre,table{page-break-inside:avoid}blockquote{margin:0;padding:1pt 0;border-left:1px solid #aaa;font-style:italic}table{width:auto}.post table td,.post table th,table td,table th{border:1px solid #aaa}dl,ol,ul{page-break-before:avoid}dt{font-weight:700}.footnotes li .footnotereverse,.footnotes li.list_commenticon .commenticonbox,.footnotes li.list_commenticon .para_marker,.footnotes li>a:last-child,.simple-footnotes .commenticonbox,.simple-footnotes .para_marker,.simple-footnotes li.list_commenticon .commenticonbox,.simple-footnotes li.list_commenticon .para_marker,.simple-footnotes li>a:last-child{display:none}}
     1@media print{#book_header,#content,#titlewrap{padding:0;height:auto;border:none}img,span.captioned_image{page-break-after:avoid;page-break-inside:avoid}div,h1,h2,h3,h4,h5,h6,li,ol,p,ul{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}*,:after,:before{-webkit-transition:none!important;-moz-transition:none!important;transition:none!important;background:#fff!important;box-sizing:inherit}body,body.is-groupblog.blogtype-0,body.is-groupblog.blogtype-1,body.is-groupblog.blogtype-2,body.is-groupblog.blogtype-3,body.is-groupblog.blogtype-4{background:#fff!important;color:#000;font-size:9pt;font-family:Georgia,serif;margin:24pt;padding:0}a{color:#000!important;text-decoration:underline}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6,h1,h2,h3,h4,h5,h6{padding-left:0;padding-right:0;color:#000;font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;page-break-after:avoid;page-break-inside:avoid;text-transform:none}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#000;text-decoration:none}#book_header img,#book_search,#content div.sharedaddy,#footer .menu,#header,#main div.sharedaddy,#respond,#respond_wrapper,#tagline,#user_links,#wpadminbar,.comment-identifier span.comment-assign,.comment-identifier span.comment-edit,.comment-popover-holder,.comment-upvote,.cp_logo_image,.entry-category-meta,.entry-meta,.multipager,.no_comments,.popover-holder,a.comment-edit-link,a.skip,div#activity_sidebar,div#toc_sidebar,div.fb_reset,div.feature-burry-comments,div.feature-bury-comments,div.reply,div.reply_to_para,div.sharedaddy,div.ui-helper-hidden-accessible,div.ui-helper-hidden-accessible div,div.ui-resizable-handle,div.ui-tooltip,form.contact-form,img.avatar,p.edit_link,p.postmetadata,span.commenticonbox,span.off-left,ul#sidebar_tabs{display:none!important}#book_header,#titlewrap{position:static!important;top:auto;margin:0}#page_title,#title{float:none;margin:0;padding:0}#book_header #title h1,#book_header #title h1 a,#book_header #title h1 a:active,#book_header #title h1 a:hover,#book_header #title h1 a:link,#book_header #title h1 a:visited{letter-spacing:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:11pt;font-weight:400;color:#ccc!important;margin:0;padding:0;text-indent:0!important}#book_header #title h1{padding-left:24pt}body.commentpress_page #book_header #title h1{padding-left:0}#container{position:static!important;top:auto!important;background:#fff}#page_wrapper,.sidebar_minimiser{width:auto;padding:0;margin:0;border:none;-webkit-box-shadow:none;-moz-box-shadow:none;-khtml-box-shadow:none;box-shadow:none}#content{margin:0}.post{padding:0 0 20pt 24pt;font-size:100%;border:none;border-bottom:2px solid #ccc}body.commentpress_page .post{padding:0 0 20pt}.post h2.post_title{margin:0;padding-top:10pt;padding-bottom:4pt;padding-left:0;font-size:24pt;text-transform:none}.post h2.post_title a{color:#000}#content .post .search_meta,#content .post .search_meta cite,#content .post .search_meta p{margin:0;padding:0;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:90%;color:#aaa}.post address,.post ol,.post p,.post pre,.post ul{margin:1em 0;padding:0;line-height:1.5}#content .post .search_meta a,#content .post .search_meta cite a{letter-spacing:0;color:#aaa;text-decoration:none;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}.post h1,.post h2,.post h3,.post h4,.post h5,.post h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}.post .textblock{position:relative!important;background:0 0!important}.selected_para{color:#000!important}.post .fluid-width-video-wrapper,.post .fluid-width-video-wrapper embed,.post .fluid-width-video-wrapper iframe,.post .fluid-width-video-wrapper object{width:auto!important;height:auto!important;min-height:0!important;color:#000;position:static!important}.post ol li,.post ul li{margin-bottom:2pt;line-height:1.5}.post dd{line-height:1.5}.post pre{padding:1em;white-space:pre-wrap;overflow:visible}.post .fluid-width-video-wrapper{padding:0!important}span.captioned_image{border:1px solid #ccc}li.list_commenticon{float:left;width:2.5em;color:#888;margin-left:-2.5em;list-style:none}ol ol li.list_commenticon,ol ul li.list_commenticon,ul ol li.list_commenticon,ul ul li.list_commenticon{visibility:hidden;float:left;height:1px;margin:0;padding:0}#footer,#sidebar{float:none;clear:left;max-width:100%!important;min-width:100%!important}span.para_marker{display:block;position:absolute!important;width:auto!important;margin-left:0;left:-32px!important;color:#ccc!important;background-color:transparent}blockquote p span.para_marker{margin-left:-10pt}ol span.para_marker,ul span.para_marker{margin-left:-2em}#content .post span.para_marker a,#content .post span.para_marker a span,span.para_marker a{font-size:8pt;color:#ccc!important;text-decoration:none}.running_header_bottom{text-align:center;margin:3em 0 1em;padding-bottom:1em}#comments_in_page_wrapper,#comments_in_page_wrapper .comments_container{width:100%;margin:0;padding:0}#comments_sidebar,#sidebar{width:auto!important;position:static!important}#comments_in_page_wrapper ul.all_comments_listing li>h3{font-size:14pt;color:#000;border-top:none;border-bottom:1px solid #ccc}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_wrapper{border-top:1px solid #ccc;border-bottom:none;page-break-inside:avoid}#comments_in_page_wrapper ul.all_comments_listing div.item_body div.comment_meta{padding:3px 0 0;border:none}#comments_in_page_wrapper .comment-content h1,#comments_in_page_wrapper .comment-content h2,#comments_in_page_wrapper .comment-content h3,#comments_in_page_wrapper .comment-content h4,#comments_in_page_wrapper .comment-content h5,#comments_in_page_wrapper .comment-content h6{font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none;color:#000}.post p.comments_hl{padding:0;margin:.5em 0;font-size:16pt;font-weight:700;color:#000}.general_comments{margin:0;padding:0}.post .comments_container>h3{padding:0;margin:.5em 0 1em;font-size:16pt;font-weight:700;color:#000}#comments_in_page_wrapper .comment-content{margin:0;padding:0}#sidebar{height:auto!important;top:auto!important;left:auto!important}#comments_sidebar{border-bottom:2px solid #ccc}#comments_sidebar .sidebar_header{display:block;padding-top:10pt}#comments_sidebar .sidebar_header h2{display:block;padding-top:10pt;font-size:16pt;font-weight:700;text-transform:none;color:#000}.sidebar_contents_wrapper{height:auto!important;overflow:visible}div#comments_sidebar .comments_container>h3{text-transform:none;color:#000;margin:1em 0;padding:0 0 .2em;font-size:12pt;font-weight:700;border:none}div#comments_sidebar .comments_container>h3 a{text-transform:none;display:inline;color:#000;margin:0;padding:0}ol.children,ol.commentlist{margin:0;padding:0}.post ol.children li,.post ol.children li.comment,.post ol.commentlist li,.post ol.commentlist li.comment,ol.children li,ol.children li.comment,ol.commentlist li,ol.commentlist li.comment{list-style:decimal;margin:0 0 0 20pt;padding:0}.comment-wrapper{page-break-inside:avoid}div#comments_sidebar .comments_container .comment-content{font-size:100%;padding:.2em 0 .5em;border:none!important}.comment-content,.comment-identifier{border:none}.comment-identifier a.comment_permalink,.comment-identifier cite{text-transform:none;letter-spacing:0;color:#aaa!important;display:inline;font-size:7pt;margin:0;padding:0;font-weight:700}.comment-identifier cite a,.comment-identifier cite a:active,.comment-identifier cite a:hover,.comment-identifier cite a:visited{font-weight:700;color:#aaa;text-decoration:none}.comment-identifier a{color:#aaa;text-decoration:none}.comment_permalink_copy:before{display:none}div#comments_sidebar .comments_container .reply{font-size:110%;padding:.2em 0 1em;border:none!important}div#comments_sidebar .paragraph_wrapper{display:block!important}a.comment-reply-link,div#comments_sidebar .paragraph_wrapper.no_comments{display:none!important}div#comments_sidebar .comments_container .comment-content h1,div#comments_sidebar .comments_container .comment-content h2,div#comments_sidebar .comments_container .comment-content h3,div#comments_sidebar .comments_container .comment-content h4,div#comments_sidebar .comments_container .comment-content h5,div#comments_sidebar .comments_container .comment-content h6{font-weight:700;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;text-transform:none}div#comments_sidebar .comments_container .comment-content p{line-height:1.4;padding:0 0 .6em .2em;margin:0}div#comments_sidebar .comments_container .comment-content ol,div#comments_sidebar .comments_container .comment-content ul{line-height:1.4;padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content>ol,div#comments_sidebar .comments_container .comment-content>ul{padding:0 0 0 1.1em;margin:0}div#comments_sidebar .comments_container .comment-content ol li,div#comments_sidebar .comments_container .comment-content ul li{margin-bottom:2pt;line-height:1.4}ul.all_comments_listing div.item_body{display:block!important}#footer{position:static!important;border:none;margin:0;padding:1em 0 0;color:#aaa;-webkit-box-shadow:0 0 0 #fff;-moz-box-shadow:0 0 0 #fff;-khtml-box-shadow:0 0 0 #fff;box-shadow:0 0 0 #fff}#footer_inner{margin:0;padding:0}#footer address,#footer h3,#footer h4,#footer h5,#footer h6,#footer ol li,#footer p,#footer span,#footer ul li{color:#aaa;font-size:.8em;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif}#footer a{color:#aaa!important;text-decoration:none}#footer_inner p.hidden_page_url{display:block;color:#aaa!important;background:0 0;text-align:center;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:.8em}blockquote,pre,table{page-break-inside:avoid}blockquote{margin:0;padding:1pt 0;border-left:1px solid #aaa;font-style:italic}table{width:auto}.post table td,.post table th,table td,table th{border:1px solid #aaa}dl,ol,ul{page-break-before:avoid}dt{font-weight:700}.footnotes li .footnotereverse,.footnotes li.list_commenticon .commenticonbox,.footnotes li.list_commenticon .para_marker,.footnotes li>a:last-child,.simple-footnotes .commenticonbox,.simple-footnotes .para_marker,.simple-footnotes li.list_commenticon .commenticonbox,.simple-footnotes li.list_commenticon .para_marker,.simple-footnotes li>a:last-child{display:none}}
  • commentpress-core/trunk/themes/commentpress-theme/functions.php

    r1695759 r1782116  
    839839
    840840
     841/**
     842 * Filter the default sidebar before modifications.
     843 *
     844 * @since 3.9.8
     845 *
     846 * @param str $sidebar The default sidebar before any contextual modifications.
     847 * @return str $sidebar The modified sidebar before any contextual modifications.
     848 */
     849function commentpress_default_theme_default_sidebar( $sidebar ) {
     850
     851    // this theme has three sidebars and it makes sense for the TOC to be default
     852    return 'toc';
     853
     854}
     855
     856add_filter( 'commentpress_default_sidebar', 'commentpress_default_theme_default_sidebar' );
     857
     858
     859
Note: See TracChangeset for help on using the changeset viewer.